:root {
    --zen-dark: #1A2530;
    --zen-gold: #C5A059;
    --zen-gold-hover: #b08d4b;
    --zen-light: #F9F9F9;
    --zen-sage: #E8F1EE;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #444444;
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Lato', sans-serif; 
    background: var(--zen-light); 
    color: var(--text); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

h1, h2, h3, h4 { 
    font-family: 'Playfair Display', serif; 
    color: var(--zen-dark); 
    margin-bottom: 20px; 
    line-height: 1.3; 
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; }

/* --- HEADER --- */
.zen-header { 
    background: var(--white); 
    padding: 0 40px; 
    height: 90px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    box-shadow: 0 2px 20px rgba(0,0,0,0.05); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

.logo { 
    font-size: 28px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: var(--zen-dark); 
    z-index: 1001;
}

.logo span { color: var(--zen-gold); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { 
    font-size: 13px; 
    text-transform: uppercase; 
    font-weight: 700; 
    letter-spacing: 1px; 
    color: var(--zen-dark); 
}
.nav-links a:hover { color: var(--zen-gold); }

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--zen-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* --- HERO VIDEO SECTION --- */
.hero-video-container { 
    position: relative; 
    height: 100vh; 
    width: 100%;
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%; 
    left: 50%;
    min-width: 100%; 
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: brightness(0.5);
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    text-align: center; 
    color: white; 
    max-width: 900px; 
    padding: 20px; 
}

.hero-content h1 { 
    color: white; 
    font-size: 4rem; 
    text-shadow: 0 4px 30px rgba(0,0,0,0.9); 
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p { 
    color: #f0f0f0; 
    font-size: 1.4rem; 
    margin-bottom: 50px; 
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0,0,0,0.9);
}

/* --- HERO STATIC --- */
.hero { 
    height: 60vh; 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
}

.hero::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.4); 
}

/* --- SEARCH BAR --- */
.search-wrapper {
    background: var(--zen-dark);
    padding: 40px 20px;
    margin-bottom: 60px;
}

.search-bar { 
    background: white; 
    padding: 30px; 
    border-radius: 4px; 
    display: flex; 
    gap: 20px; 
    max-width: 1100px; 
    margin: 0 auto; 
    flex-wrap: wrap; 
    align-items: flex-end;
}

.search-group { flex: 1; min-width: 200px; }
.search-group label { 
    display: block; 
    font-size: 0.8rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    margin-bottom: 8px; 
    color: var(--zen-dark); 
}

.search-input { 
    width: 100%; 
    height: 50px; 
    padding: 0 15px; 
    border: 1px solid #ddd; 
    background: #fff; 
    font-size: 1rem; 
    border-radius: 4px; 
}

.search-btn { 
    height: 50px; 
    padding: 0 40px; 
    background: var(--zen-gold); 
    color: white; 
    border: none; 
    font-weight: bold; 
    cursor: pointer; 
    text-transform: uppercase; 
    border-radius: 4px; 
}

.search-btn:hover { background: var(--zen-gold-hover); }

/* SEARCH HERO VERSION */
.search-wrapper-hero { 
    background: rgba(255,255,255,0.98); 
    padding: 25px; 
    border-radius: 10px; 
    display: flex; 
    gap: 12px; 
    max-width: 900px; 
    margin: 0 auto; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.4); 
    align-items: center;
    backdrop-filter: blur(10px);
}

.search-input-hero {
    padding: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    flex: 1;
    transition: all 0.3s;
}

.search-input-hero:focus {
    border-color: var(--zen-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/* --- BUTTONS --- */
.btn { 
    display: inline-block; 
    padding: 15px 35px; 
    border-radius: 4px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    cursor: pointer; 
    border: none; 
    transition: all 0.3s ease; 
    text-align: center; 
}

.btn-gold { background: var(--zen-gold); color: white; }
.btn-gold:hover { background: var(--zen-gold-hover); transform: translateY(-2px); }

.btn-outline { 
    border: 2px solid white; 
    color: white; 
    background: transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-outline:hover { 
    background: white; 
    color: var(--zen-dark); 
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255,255,255,0.3);
}

.btn-dark { background: var(--zen-dark); color: white; }
.btn-dark:hover { background: #0f1920; transform: translateY(-2px); }

/* --- LAYOUT --- */
.container { max-width: 1200px; margin: 0 auto; padding: 80px 20px; }
.section-bg { background-color: var(--zen-sage); padding: 80px 0; }
.section-dark { background-color: var(--zen-dark); color: white; padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-title p { font-size: 1.1rem; color: #666; max-width: 700px; margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

/* --- ICON BOX --- */
.icon-box {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon-box i {
    font-size: 3rem;
    color: var(--zen-gold);
    margin-bottom: 20px;
    display: block;
}

.icon-box h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.icon-box p {
    color: #666;
    line-height: 1.7;
}

/* --- PROPERTY CARDS --- */
.prop-card { 
    background: white; 
    border-radius: 4px; 
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    transition: 0.3s; 
}

.prop-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
}

.prop-img-wrap { 
    height: 250px; 
    overflow: hidden; 
    position: relative; 
}

.prop-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s;
}

.prop-card:hover .prop-img { transform: scale(1.05); }

.prop-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--zen-gold);
    color: white;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 10;
}

.prop-info { padding: 25px; }

.prop-price { 
    font-size: 1.4rem; 
    font-weight: 700; 
    color: var(--zen-dark); 
    margin-bottom: 5px; 
}

.prop-title { 
    font-size: 1.1rem; 
    margin-bottom: 15px; 
    font-weight: 600; 
    color: #444; 
}

.prop-location-top { 
    color: var(--zen-gold); 
    font-size: 0.8rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    display: block; 
    margin-bottom: 5px; 
}

.prop-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

.prop-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.prop-meta i {
    color: var(--zen-gold);
}

/* --- PROPERTY PAGE LAYOUT --- */
.property-layout { 
    display: grid; 
    grid-template-columns: 2fr 1fr; 
    gap: 60px; 
    margin-top: 40px; 
}

/* --- GALLERY --- */
.gallery-wrapper { 
    display: grid; 
    grid-template-columns: 2fr 1fr; 
    gap: 10px; 
    height: 500px; 
    margin-bottom: 40px; 
}

.gallery-main { grid-row: span 2; height: 100%; }
.gallery-sub { height: 100%; position: relative; }
.gallery-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 4px; 
    cursor: pointer; 
    transition: 0.3s; 
}
.gallery-img:hover { opacity: 0.9; }

.gallery-container {
    margin-bottom: 40px;
}

.main-image-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(0,0,0,0.8);
}

.gallery-nav.prev { left: 20px; }
.gallery-nav.next { right: 20px; }

.thumbnail-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.thumbnail {
    height: 80px;
    border-radius: 4px;
    cursor: pointer;
    object-fit: cover;
    border: 3px solid transparent;
    transition: 0.3s;
}

.thumbnail:hover {
    opacity: 0.8;
}

.thumbnail.active {
    border-color: var(--zen-gold);
}

.image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* --- KEY INFO BOX --- */
.key-info-box {
    background: linear-gradient(135deg, #E8F1EE 0%, #d4e7e1 100%);
    border-left: 5px solid var(--zen-gold);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.key-info-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px 30px; 
}

.key-item { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 0.95rem; 
    font-weight: 600; 
    color: #444; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    padding-bottom: 5px; 
}

.key-item i { 
    color: var(--zen-gold); 
    width: 20px; 
    font-size: 1.1rem; 
}

/* --- PROPERTY TEXT --- */
.prop-text { 
    font-size: 1.1rem; 
    line-height: 1.8; 
    color: #444; 
}

.prop-text h3 { 
    margin-top: 40px; 
    margin-bottom: 15px; 
    color: var(--zen-dark); 
}

.prop-text ul { 
    margin: 20px 0; 
    padding-left: 20px; 
    list-style-type: disc; 
}

.prop-text li { 
    margin-bottom: 8px; 
}

.prop-list {
    background: #f8f9fa;
    padding: 25px 25px 25px 45px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--zen-gold);
    list-style: none;
}

.prop-list li {
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
}

.prop-list li:before {
    content: "✓";
    position: absolute;
    left: -25px;
    color: var(--zen-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- CONTACT SIDEBAR --- */
.contact-sidebar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    position: sticky;
    top: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-sidebar h3 {
    font-size: 1.5rem;
    color: var(--zen-dark);
    margin-bottom: 10px;
}

/* --- FORMS --- */
.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #555;
}

.form-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 0;
    border: 1px solid #ddd;
    background: #fafafa;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: var(--zen-gold);
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.btn-submit {
    width: auto;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--zen-gold) 0%, var(--zen-gold-hover) 100%);
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    font-size: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* --- CONTACT INFO --- */
.signature-img { 
    height: 50px; 
    width: auto; 
    display: block; 
    margin-top: 15px; 
    opacity: 0.8; 
}

.contact-info-list { margin-top: 30px; }

.contact-row { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 20px; 
}

.contact-icon { 
    width: 45px; 
    height: 45px; 
    background: white; 
    color: var(--zen-gold); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-box { 
    background: white; 
    padding: 40px; 
    border-radius: 8px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
}

.contact-form label { 
    display: block; 
    font-weight: bold; 
    margin-bottom: 8px; 
    color: var(--zen-dark); 
}

.contact-form input, 
.contact-form textarea { 
    width: 100%; 
    padding: 15px; 
    margin-bottom: 20px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    background: #fff; 
    font-size: 1rem; 
}

/* --- INNBOKS STILER (MAIL SYSTEM) --- */
.mail-list { 
    border-right: 1px solid #eee; 
    overflow-y: auto; 
    background: #fafafa;
    max-height: 600px;
}

.mail-item { 
    padding: 15px; 
    border-bottom: 1px solid #eee; 
    cursor: pointer; 
    transition: 0.2s; 
    border-left: 4px solid transparent; 
}

.mail-item:hover { 
    background: #f0f0f0; 
    border-left-color: var(--zen-gold); 
}

.mail-item.unseen { 
    background: #fffbe6;
    border-left: 4px solid #f9a602;
    font-weight: 600; 
}

.mail-item.deal {
    border-right: 4px solid #10b981;
}

.mail-sender {
    font-weight: 700;
    color: var(--zen-dark);
    margin-bottom: 5px;
}

.mail-subject {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 3px;
}

.mail-preview {
    font-size: 0.85rem;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mail-time {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 5px;
}

/* --- FILTER TABS --- */
#filter-tabs {
    background: #eef2f6; 
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
    padding: 5px 0;
    display: flex;
    gap: 5px;
}

.modal-tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #777;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    border-radius: 8px 8px 0 0;
    flex: 1;
    text-align: center;
}

.modal-tab:hover {
    background: rgba(255,255,255,0.5);
}

.modal-tab.active {
    color: var(--zen-dark);
    border-bottom-color: var(--zen-gold);
    background: white;
}

/* --- AI TASK BOARD --- */
.task-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.task-column {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    min-height: 400px;
}

.task-column h3 {
    color: var(--zen-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--zen-gold);
}

.task-card {
    background: white;
    border-left: 4px solid var(--zen-dark);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: 0.2s;
    cursor: pointer;
}

.task-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.priority-high { 
    border-left-color: #e74c3c;
}

.priority-medium { 
    border-left-color: #f39c12;
}

.priority-low { 
    border-left-color: #3498db;
}

.task-title {
    font-weight: 700;
    color: var(--zen-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.task-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.task-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.task-assignee {
    display: flex;
    align-items: center;
    gap: 5px;
}

.task-due-date {
    font-weight: 600;
}

.task-labels {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.task-label {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #e0e0e0;
    color: #555;
}

.task-label.urgent {
    background: #ffebee;
    color: #c62828;
}

.task-label.follow-up {
    background: #fff3e0;
    color: #e65100;
}

/* --- FOOTER --- */
.zen-footer { 
    background: var(--zen-dark); 
    color: #ccc; 
    padding: 60px 20px; 
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--zen-gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .zen-header { 
        padding: 20px;
        height: 70px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }
    
    /* Mobile navigation */
    .nav-links { 
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px 40px;
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        gap: 25px;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 16px;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    /* Mobile overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .hero { height: 50vh; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-video-container { height: 60vh; }
    
    .search-wrapper { padding: 30px 15px; }
    .search-bar { 
        flex-direction: column; 
        padding: 20px; 
        align-items: stretch;
    }
    
    .search-wrapper-hero { 
        flex-direction: column; 
        padding: 20px; 
        max-width: 90%;
    }
    
    .search-wrapper-hero input, 
    .search-wrapper-hero select, 
    .search-wrapper-hero button { 
        width: 100%; 
    }
    
    .search-group { min-width: 100%; }
    .search-btn { width: 100%; }
    
    .grid-2 { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .property-layout { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    
    .gallery-wrapper { 
        grid-template-columns: 1fr; 
        height: auto; 
    }
    
    .gallery-sub { display: none; }
    
    .main-image-wrapper {
        height: 300px;
    }
    
    .key-info-grid { 
        grid-template-columns: 1fr; 
    }
    
    .contact-sidebar { 
        position: static; 
    }
    
    .contact-box { 
        padding: 25px; 
    }
    
    .container {
        padding: 40px 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .icon-box {
        padding: 30px 20px;
    }
    
    .prop-card {
        margin: 0 10px;
    }
    
    .prop-info {
        padding: 20px;
    }
    
    .prop-meta {
        font-size: 0.85rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .task-board {
        grid-template-columns: 1fr;
    }
    
    .mail-list {
        max-height: 400px;
    }
    
    #filter-tabs {
        flex-wrap: wrap;
    }
    
    .modal-tab {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

@media (max-width: 600px) {
    .zen-header {
        padding: 15px;
        height: 60px;
    }
    
    .logo {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .hamburger span {
        width: 24px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-video-container {
        height: 50vh;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .search-wrapper-hero {
        padding: 15px;
        max-width: 95%;
    }
    
    .search-input-hero {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .prop-price {
        font-size: 1.2rem;
    }
    
    .prop-title {
        font-size: 1rem;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .gallery-nav.prev { left: 10px; }
    .gallery-nav.next { right: 10px; }
    
    .key-info-box {
        padding: 25px 20px;
    }
    
    .key-item {
        font-size: 0.85rem;
    }
    
    .prop-text {
        font-size: 1rem;
    }
    
    .contact-sidebar {
        padding: 25px 20px;
    }
    
    .contact-sidebar h3 {
        font-size: 1.3rem;
    }
    
    .contact-box {
        padding: 20px;
    }
    
    .btn-submit {
        width: 100%;
        padding: 15px 30px;
    }
    
    .container {
        padding: 30px 15px;
    }
    
    .thumbnail-container {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
    
    .thumbnail {
        height: 60px;
    }
    
    .mail-item {
        padding: 12px;
    }
    
    .mail-sender {
        font-size: 0.9rem;
    }
    
    .mail-subject {
        font-size: 0.85rem;
    }
    
    .mail-preview {
        font-size: 0.8rem;
    }
    
    .task-card {
        padding: 12px;
    }
    
    .task-title {
        font-size: 0.95rem;
    }
    
    .task-description {
        font-size: 0.85rem;
    }
    
    .task-column {
        padding: 15px;
    }
    
    .modal-tab {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}