/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --accent: #d69e2e;
    --accent-hover: #b7791f;
    --dark: #1a202c;
    --light: #f7fafc;
    --gray: #718096;
    --gray-light: #e2e8f0;
    --success: #38a169;
    --danger: #e53e3e;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.animate-fade-in { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(26, 54, 93, 0.95); backdrop-filter: blur(20px);
    padding: 1rem 2rem; transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar.scrolled { padding: 0.7rem 2rem; background: rgba(26, 54, 93, 0.98); }
.nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: white; }
.nav-logo img { width: 120px; height: auto; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.nav-logo .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo .logo-text .short-name { font-size: 1.3rem; font-weight: 800; color: white; }
.nav-logo .logo-text .full-name { font-size: 0.85rem; opacity: 0.9; color: rgba(255,255,255,0.85); font-weight: 500; }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; padding: 10px; z-index: 1001; }
.hamburger span { width: 28px; height: 3px; background: white; border-radius: 3px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-menu a { color: white; text-decoration: none; font-weight: 500; transition: var(--transition); position: relative; padding: 5px 0; }
.nav-menu a:hover { color: var(--accent); }

.btn { padding: 10px 24px; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: white; color: var(--primary); }
.btn-whatsapp { background: #25D366; color: white; }

/* ===== HERO SECTION - MAXIMUM CLARITY ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.3) 0%, rgba(26, 32, 44, 0.4) 100%);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    padding: 120px 2rem 60px;
}

.hero-bg-images {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0; overflow: hidden; pointer-events: none;
}

/* Mansion Background Images */
.mansion-bg {
    position: absolute; border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background-size: cover; background-position: center;
    background-repeat: no-repeat;
    background-color: #2c5282; 
}

.mansion-1 { top: 5%; left: 2%; width: 400px; height: 300px; background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=800&q=80'); opacity: 0.95; animation: floatMansion1 20s ease-in-out infinite; }
.mansion-2 { bottom: 10%; right: 3%; width: 450px; height: 320px; background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=800&q=80'); opacity: 0.95; animation: floatMansion2 22s ease-in-out infinite; }
.mansion-3 { top: 40%; left: 1%; width: 350px; height: 260px; background-image: url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?w=800&q=80'); opacity: 0.85; animation: floatMansion3 25s ease-in-out infinite; }

/* Electronics Background Images */
.electronics-bg {
    position: absolute; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    background-size: cover; background-position: center;
    background-repeat: no-repeat;
    background-color: #d69e2e; 
}

.tv-bg { top: 3%; right: 8%; width: 240px; height: 160px; background-image: url('https://images.unsplash.com/photo-1593784697996-f2e369e59e87?w=600&q=80'); opacity: 0.95; animation: floatTV 18s ease-in-out infinite; }
.fridge-bg { bottom: 15%; left: 5%; width: 180px; height: 240px; background-image: url('https://images.unsplash.com/photo-1571175443880-49e1d25b2bc5?w=600&q=80'); opacity: 0.95; animation: floatFridge 20s ease-in-out infinite; }
.laptop-bg { top: 35%; right: 12%; width: 220px; height: 150px; background-image: url('https://images.unsplash.com/photo-1496181133206-80ce9b88a853?w=600&q=80'); opacity: 0.95; animation: floatLaptop 22s ease-in-out infinite; }
.ac-bg { top: 60%; right: 6%; width: 200px; height: 120px; background-image: url('https://images.unsplash.com/photo-1614730341194-75c607400070?w=600&q=80'); opacity: 0.95; animation: floatAC 19s ease-in-out infinite; }

/* Floating Animations */
@keyframes floatMansion1 { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-20px) translateX(15px); } }
@keyframes floatMansion2 { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-25px) translateX(-15px); } }
@keyframes floatMansion3 { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-15px) translateX(10px); } }
@keyframes floatTV { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes floatFridge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes floatLaptop { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-15px) translateX(-12px); } }
@keyframes floatAC { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-12px) translateX(10px); } }

/* Gradient Overlay */
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(214, 158, 46, 0.05) 0%, transparent 60%),
                linear-gradient(to bottom, rgba(26, 54, 93, 0.2), rgba(26, 32, 44, 0.3));
    z-index: 1; pointer-events: none;
}

.hero-content { max-width: 1200px; width: 100%; text-align: center; position: relative; z-index: 2; }
.hero h1 { font-size: 3.5rem; color: white; margin-bottom: 1rem; font-weight: 800; text-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.3rem; color: rgba(255,255,255,0.95); margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }

.rc-badge { display: inline-block; background: rgba(214, 158, 46, 0.3); border: 2px solid var(--accent); padding: 8px 24px; border-radius: 50px; color: var(--accent); font-weight: 700; font-size: 1.1rem; margin-bottom: 1.5rem; backdrop-filter: blur(10px); }

/* Search Tabs */
.search-tabs { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.search-tab { padding: 12px 28px; background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2); color: white; border-radius: 50px; cursor: pointer; font-weight: 600; transition: var(--transition); backdrop-filter: blur(10px); }
.search-tab:hover, .search-tab.active { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

/* Search Form */
.search-form { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); border-radius: 20px; padding: 2rem; max-width: 900px; margin: 0 auto 2rem; box-shadow: var(--shadow-lg); }
.search-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 1rem; }
.search-grid input, .search-grid select { padding: 14px 18px; border: 2px solid var(--gray-light); border-radius: 10px; font-size: 1rem; transition: var(--transition); background: white; }
.search-grid input:focus, .search-grid select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.1); }
.search-btn { width: 100%; padding: 16px; background: var(--primary); color: white; border: none; border-radius: 10px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: var(--transition); }
.search-btn:hover { background: var(--primary-light); transform: translateY(-2px); }

/* Electronics Search - STRICT WIDTH FIX */
.electronics-search {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    width: 300px !important; 
    max-width: 300px !important;
    min-width: 300px !important;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.2);
    box-sizing: border-box;
}

.electronics-search h3 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.3;
    width: 100%;
}

.electronics-search .search-row {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.electronics-search input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    width: 100%;
    min-width: 0;
}

.electronics-search button {
    padding: 10px 14px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Statistics */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 900px; margin: 3rem auto 0; }
.stat-item { text-align: center; padding: 1.5rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 15px; border: 1px solid rgba(255,255,255,0.15); transition: var(--transition); }
.stat-item:hover { transform: translateY(-5px); background: rgba(255,255,255,0.15); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--accent); display: block; }
.stat-label { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-top: 0.3rem; }

/* ===== SECTIONS & GRIDS ===== */
.section { padding: 5rem 2rem; max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 0.5rem; font-weight: 800; }
.section-header .accent-line { width: 80px; height: 4px; background: var(--accent); margin: 1rem auto; border-radius: 2px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.service-card { background: white; border-radius: var(--radius); padding: 2.5rem; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--gray-light); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; color: white; }

.property-grid, .electronics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.property-card, .electronic-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--gray-light); }
.property-card:hover, .electronic-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.property-image, .electronic-image { position: relative; height: 220px; overflow: hidden; }
.property-image img, .electronic-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.property-card:hover .property-image img, .electronic-card:hover .electronic-image img { transform: scale(1.1); }

.property-info, .electronic-info { padding: 1.5rem; }
.property-price { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 0.3rem; }
.property-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.property-location { color: var(--gray); font-size: 0.9rem; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 5px; }

/* FIXED: FULL DESCRIPTION VISIBLE */
.property-description { 
    color: var(--gray); 
    font-size: 0.9rem; 
    line-height: 1.6; 
    margin-bottom: 1rem; 
    /* Removed line-clamp to show full text */
}

.property-meta { display: flex; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-light); margin-bottom: 1rem; font-size: 0.85rem; color: var(--gray); }
.property-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.property-actions .btn { flex: 1; padding: 10px; font-size: 0.85rem; justify-content: center; }

.electronic-price { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.electronic-badge { position: absolute; top: 12px; right: 12px; background: var(--success); color: white; padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }

/* Badges */
.property-badge { position: absolute; top: 12px; left: 12px; padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-sale { background: var(--primary); color: white; }
.badge-rent { background: var(--success); color: white; }
.badge-shortlet { background: #805ad5; color: white; }
.badge-jv { background: var(--accent); color: white; }
.badge-sold { background: var(--danger); color: white; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-15deg); font-size: 1.5rem; padding: 10px 30px; z-index: 5; letter-spacing: 2px; }
.property-sold .property-image::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 4; }

/* Comments */
.comments-section { margin-top: 1rem; border-top: 1px solid var(--gray-light); padding-top: 1rem; }
.comments-toggle { background: none; border: none; color: var(--primary); cursor: pointer; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; }
.comments-list { display: none; margin-top: 1rem; max-height: 200px; overflow-y: auto; }
.comments-list.active { display: block; }
.comment-item { background: var(--light); padding: 1rem; border-radius: 8px; margin-bottom: 0.5rem; }
.comment-name { font-weight: 700; color: var(--primary); font-size: 0.9rem; }
.comment-text { color: var(--gray); font-size: 0.85rem; margin-top: 0.3rem; }
.comment-form { display: flex; gap: 0.5rem; margin-top: 1rem; }
.comment-form input { flex: 1; padding: 10px; border: 1px solid var(--gray-light); border-radius: 8px; font-size: 0.9rem; }
.comment-form button { padding: 10px 20px; background: var(--primary); color: white; border: none; border-radius: 8px; cursor: pointer; font-weight: 600; }

/* Lightbox */
.lightbox { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.95); z-index: 10000; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.active { display: flex; }
.lightbox-content { max-width: 900px; width: 100%; background: white; border-radius: var(--radius); overflow: hidden; position: relative; animation: fadeInUp 0.3s ease; }
.lightbox-close { position: absolute; top: 15px; right: 15px; width: 40px; height: 40px; background: rgba(0,0,0,0.7); color: white; border: none; border-radius: 50%; font-size: 1.5rem; cursor: pointer; z-index: 10; }
.lightbox-image { width: 100%; max-height: 500px; object-fit: contain; background: #f0f0f0; }
.lightbox-info { padding: 2rem; }
.lightbox-info .price { font-size: 2rem; font-weight: 800; color: var(--accent); margin-bottom: 1rem; }

/* Forms & Auth */
.form-container { max-width: 800px; margin: 100px auto 3rem; padding: 2rem; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 2px solid var(--gray-light); border-radius: 10px; font-size: 1rem; transition: var(--transition); font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.file-upload { border: 2px dashed var(--gray-light); border-radius: 10px; padding: 2rem; text-align: center; cursor: pointer; transition: var(--transition); }
.file-upload:hover { border-color: var(--accent); background: rgba(214, 158, 46, 0.05); }
.file-upload input { display: none; }

.auth-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); padding: 2rem; }
.auth-card { background: white; border-radius: var(--radius); padding: 3rem; max-width: 450px; width: 100%; box-shadow: var(--shadow-lg); animation: fadeInUp 0.5s ease; }
.auth-card h2 { text-align: center; color: var(--primary); margin-bottom: 0.5rem; font-size: 2rem; }
.auth-card .subtitle { text-align: center; color: var(--gray); margin-bottom: 2rem; }
.auth-card .btn { width: 100%; justify-content: center; padding: 14px; font-size: 1.1rem; }
.auth-link { text-align: center; margin-top: 1.5rem; color: var(--gray); }
.auth-link a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* Dashboard */
.dashboard-container { max-width: 1200px; margin: 100px auto 3rem; padding: 2rem; }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.dashboard-card { background: white; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--gray-light); }
.dashboard-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }
.dashboard-card .actions { display: flex; gap: 0.5rem; margin-top: 1rem; }

/* Footer */
.footer { background: var(--dark); color: white; padding: 4rem 2rem 2rem; }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; margin-bottom: 3rem; }
.footer-col h4 { color: var(--accent); margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 700; }
.footer-col p, .footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; line-height: 2; display: block; transition: var(--transition); font-size: 0.95rem; }
.footer-col a:hover { color: var(--accent); padding-left: 5px; }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a { width: 45px; height: 45px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* Find Property Button */
.find-property-btn { position: fixed; bottom: 30px; right: 30px; z-index: 999; padding: 16px 32px; background: var(--accent); color: white; border: none; border-radius: 50px; font-size: 1.1rem; font-weight: 700; cursor: pointer; box-shadow: 0 10px 30px rgba(214, 158, 46, 0.4); transition: var(--transition); display: flex; align-items: center; gap: 10px; animation: pulse 2s infinite; }
.find-property-btn:hover { transform: translateY(-3px) scale(1.05); }

/* Alerts */
.alert { padding: 1rem 1.5rem; border-radius: 10px; margin-bottom: 1.5rem; font-weight: 500; }
.alert-success { background: #f0fff4; color: var(--success); border: 1px solid #c6f6d5; }
.alert-error { background: #fff5f5; color: var(--danger); border: 1px solid #fed7d7; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .property-grid, .electronics-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .mansion-1, .mansion-2 { width: 300px; height: 220px; }
    .mansion-3 { width: 240px; height: 180px; }
    .tv-bg, .laptop-bg { width: 200px; height: 140px; }
    .fridge-bg { width: 160px; height: 200px; }
    .ac-bg { width: 160px; height: 100px; }
}

@media (max-width: 992px) {
    .property-grid, .electronics-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2.5rem; }
    .mansion-bg { opacity: 0.2 !important; }
    .electronics-bg { opacity: 0.25 !important; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 100%; max-width: 350px; height: 100vh;
        background: var(--primary); flex-direction: column; padding: 80px 2rem 2rem;
        transition: var(--transition); box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }
    .nav-menu.active { right: 0; }
    .nav-auth { flex-direction: column; width: 100%; }
    .nav-auth .btn { width: 100%; justify-content: center; }
    
    .property-grid, .electronics-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .section-header h2 { font-size: 1.8rem; }
    
    .nav-logo img { width: 200px; }
    
    .mansion-bg { opacity: 0.15 !important; }
    .electronics-bg { opacity: 0.2 !important; }
    .mansion-1 { width: 200px; height: 150px; top: 10%; left: 5%; }
    .mansion-2 { width: 220px; height: 160px; bottom: 15%; right: 5%; }
    .tv-bg { width: 120px; height: 80px; top: 5%; right: 5%; }
    .fridge-bg { width: 100px; height: 130px; bottom: 10%; left: 5%; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr; }
    .search-grid { grid-template-columns: 1fr; }
    .nav-logo img { width: 150px; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

.property-video { width: 100%; border-radius: 8px; margin-top: 1rem; }