/* =====================================================
   COSMIC EARTH - Main Stylesheet
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #1a3c5e;
  --primary-light: #2558a0;
  --accent: #e8a020;
  --accent-dark: #c07010;
  --text: #1c1c1c;
  --text-muted: #5a5a6a;
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --border: #e2e6f0;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(26,60,94,0.10);
  --shadow-hover: 0 8px 32px rgba(26,60,94,0.18);
  --transition: 0.25s ease;
  --max-w: 1200px;
}

body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; font-size: 15px; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1,h2,h3,h4 { line-height: 1.25; font-weight: 700; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-3 { margin-top: 2.5rem; }

/* Buttons */
.btn-primary { background: var(--accent); color: #fff; padding: 10px 22px; border-radius: 6px; font-weight: 600; font-size: 14px; display: inline-block; transition: background var(--transition), transform var(--transition); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn-outline-primary { border: 2px solid var(--primary); color: var(--primary); padding: 12px 32px; border-radius: 6px; font-weight: 600; display: inline-block; transition: all var(--transition); }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-view { background: var(--primary); color: #fff; padding: 8px 16px; border-radius: 5px; font-size: 13px; font-weight: 500; }
.btn-view:hover { background: var(--primary-light); color: #fff; }
.btn-enquire { border: 1.5px solid var(--accent); color: var(--accent); padding: 7px 15px; border-radius: 5px; font-size: 13px; font-weight: 500; }
.btn-enquire:hover { background: var(--accent); color: #fff; }
.btn-submit { background: var(--accent); color: #fff; padding: 13px; border-radius: 6px; font-weight: 600; font-size: 15px; width: 100%; border: none; cursor: pointer; transition: background var(--transition); }
.btn-submit:hover { background: var(--accent-dark); }
.form-msg { margin-top: 10px; font-size: 14px; padding: 8px 12px; border-radius: 5px; display: none; }
.form-msg.success { background: #e6f9f0; color: #1a7a4a; display: block; }
.form-msg.error { background: #fdf0f0; color: #c0392b; display: block; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.section-sub { color: var(--text-muted); font-size: 16px; margin-top: 8px; max-width: 600px; margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Header ---- */
.site-header { position: sticky; top: 0; z-index: 999; background: var(--bg); border-bottom: 1px solid var(--border); transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 20px; color: var(--primary); }
.footer-logo-img {
  max-height: 50px;  /* Adjust as needed */
  width: auto;
  object-fit: contain;
}
.logo-icon { font-size: 22px; }
.main-nav { display: flex; gap: 4px; }
.main-nav a { padding: 6px 12px; font-weight: 500; font-size: 14px; color: var(--text); border-radius: 5px; transition: all var(--transition); }
.main-nav a:hover { color: var(--primary); background: var(--bg-alt); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--primary); }
.btn-list-prop { background: var(--primary); color: #fff; padding: 9px 18px; border-radius: 6px; font-weight: 600; font-size: 13px; display: inline-block; transition: background var(--transition); border: 2px solid var(--primary); }
.btn-list-prop:hover { background: var(--primary-light); color: #fff; border-color: var(--primary-light); }
.nav-list-link { color: var(--accent) !important; font-weight: 700 !important; }

/* ---- Promo Video ---- */
.promo-video-section { background: var(--primary); color: #fff; padding: 70px 0; text-align: center; }
.promo-video-section .section-label { color: var(--accent); }
.promo-video-section h2 { font-size: 2rem; color: #fff; margin-bottom: 10px; }
.promo-video-section .section-sub { color: rgba(255,255,255,0.75); margin-bottom: 30px; }
.video-wrapper { position: relative; max-width: 860px; margin: 0 auto; border-radius: 14px; overflow: hidden; aspect-ratio: 16/9; box-shadow: 0 16px 64px rgba(0,0,0,0.4); }
.video-wrapper iframe, .video-wrapper video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }

/* ---- Hero ---- */
.hero-section { position: relative; min-height: 500px; background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,35,60,0.85) 40%, rgba(15,35,60,0.3)); }
.hero-content { position: relative; z-index: 1; padding: 80px 20px 120px; }
.hero-content h1 { font-size: 3rem; color: #fff; max-width: 600px; line-height: 1.15; margin-bottom: 14px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.2rem; color: rgba(255,255,255,0.85); max-width: 480px; margin-bottom: 28px; }
.hero-cta { background: var(--accent); color: #fff; padding: 15px 36px; border-radius: 7px; font-size: 16px; font-weight: 700; display: inline-block; transition: all var(--transition); box-shadow: 0 4px 16px rgba(232,160,32,0.4); }
.hero-cta:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.hero-search { position: relative; z-index: 1; margin-top: -40px; padding: 0 20px; }
.search-bar { background: #fff; border-radius: 10px; padding: 16px 18px; display: flex; gap: 10px; box-shadow: var(--shadow-hover); flex-wrap: wrap; }
.search-bar input, .search-bar select { flex: 1; min-width: 150px; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 14px; color: var(--text); background: var(--bg-alt); font-family: inherit; }
.search-bar button { background: var(--accent); color: #fff; border: none; padding: 10px 24px; border-radius: 6px; font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background var(--transition); }
.search-bar button:hover { background: var(--accent-dark); }

/* ---- Ad Sections ---- */
.ad-section { padding: 28px 0; }
.ad-section .container { display: flex; gap: 16px; flex-wrap: wrap; }
.ad-banner { display: block; flex: 1; min-width: 280px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition); }
.ad-banner:hover { transform: translateY(-3px); }
.ad-banner img { width: 100%; object-fit: cover; max-height: 140px; }
.ad-mid { background: var(--bg-alt); }
.sidebar-ad { display: block; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.sidebar-ad img { width: 100%; object-fit: cover; }

/* ---- Properties Grid ---- */
.properties-section { padding: 70px 0; background: var(--bg-alt); text-align: center; }
.properties-section h2 { font-size: 2rem; color: var(--primary); margin-bottom: 6px; }
.properties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 32px; text-align: left; }
.property-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.property-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.card-img-wrap { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.property-card:hover .card-img-wrap img { transform: scale(1.05); }
.img-placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--bg-alt), #dde4f0); display: flex; align-items: center; justify-content: center; }
.img-placeholder span { font-size: 3rem; opacity: 0.4; }
.img-placeholder.large { aspect-ratio: 16/9; border-radius: var(--radius); margin-bottom: 20px; }
.prop-status { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.prop-status.ready { background: #1a7a4a; color: #fff; }
.prop-status.under_construction { background: #e8a020; color: #fff; }
.prop-status.new_launch { background: #c0392b; color: #fff; }
.prop-status.exclusive { background:#f5bd02; color: #fff; }
.prop-badge { position: absolute; top: 12px; right: 12px; background: var(--primary); color: #fff; padding: 3px 9px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.card-body { padding: 18px; }
.prop-price { font-size: 1.25rem; font-weight: 800; color: var(--accent); margin-bottom: 5px; }
.prop-title { font-size: 15px; font-weight: 700; margin-bottom: 5px; line-height: 1.3; }
.prop-title a { color: var(--text); }
.prop-title a:hover { color: var(--primary); }
.prop-location { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.prop-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12px; color: var(--text-muted); padding: 10px 0; border-top: 1px solid var(--border); margin-bottom: 12px; }
.card-actions { display: flex; gap: 8px; }

/* ---- Why Us ---- */
.why-us { padding: 70px 0; text-align: center; }
.why-us h2 { font-size: 2rem; color: var(--primary); margin-bottom: 30px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 24px; }
.feature-card { background: var(--bg-alt); border-radius: var(--radius); padding: 32px 24px; text-align: center; border: 1px solid var(--border); transition: all var(--transition); }
.feature-card:hover { background: #fff; box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.feat-icon { font-size: 2.5rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); }

/* ---- Brands ---- */
.brands-section { padding: 70px 0; background: var(--bg-alt); text-align: center; }
.brands-section h2 { font-size: 2rem; color: var(--primary); }
.brands-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 32px; }
.brand-item { display: flex; align-items: center; justify-content: center; width: 160px; height: 80px; background: #fff; border-radius: var(--radius); border: 1.5px solid var(--border); padding: 16px; transition: all var(--transition); box-shadow: var(--shadow); }
.brand-item:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.brand-item img { max-height: 48px; object-fit: contain; filter: grayscale(0.5); transition: filter var(--transition); }
.brand-item:hover img { filter: none; }
.brand-name-text { font-weight: 700; font-size: 14px; color: var(--primary); text-align: center; }

/* ---- Stats ---- */
.stats-section { background: var(--primary); padding: 60px 0; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ---- Quick Contact ---- */
.quick-contact { padding: 70px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-text h2 { font-size: 2rem; color: var(--primary); margin-bottom: 12px; }
.contact-text p { color: var(--text-muted); margin-bottom: 20px; }
.contact-info p { font-size: 15px; margin-bottom: 6px; }
.quick-form { display: flex; flex-direction: column; gap: 12px; }
.quick-form input, .quick-form select, .quick-form textarea { padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 14px; font-family: inherit; background: var(--bg-alt); color: var(--text); transition: border-color var(--transition); }
.quick-form input:focus, .quick-form select:focus, .quick-form textarea:focus { border-color: var(--primary); outline: none; background: #fff; }
.whatsapp-btn { display: inline-block; background: #25d366; color: #fff; padding: 10px 20px; border-radius: 6px; font-weight: 600; font-size: 14px; margin-top: 10px; }

/* ---- Footer ---- */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.85); padding-top: 60px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { font-weight: 800; font-size: 22px; color: #fff; margin-bottom: 14px; }
.footer-col p { font-size: 14px; margin-bottom: 8px; }
.footer-col h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.75); font-size: 14px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col a { color: rgba(255,255,255,0.8); }
.footer-col a:hover { color: var(--accent); }
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.social-links a:hover { background: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 18px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--accent); }
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 54px; height: 54px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 4px 16px rgba(0,0,0,0.25); z-index: 9999; transition: transform var(--transition); }
.wa-float:hover { transform: scale(1.1); color: #fff; }

/* ---- Page Hero Small ---- */
.page-hero-sm { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 50px 0; color: #fff; text-align: center; }
.page-hero-sm h1 { font-size: 2rem; margin-bottom: 8px; }
.page-hero-sm p { font-size: 16px; color: rgba(255,255,255,0.8); }

/* ---- Listings Page ---- */
.listings-section { padding: 50px 0; }
.listings-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.filters-sidebar { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; position: sticky; top: 80px; }
.filter-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.filter-header h3 { font-size: 15px; font-weight: 700; color: var(--primary); }
.clear-filters { font-size: 12px; color: var(--text-muted); }
.filter-group { margin-bottom: 18px; }
.filter-group label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 6px; }
.filter-group input, .filter-group select { width: 100%; padding: 9px 11px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 14px; font-family: inherit; }
.bhk-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.bhk-btn { padding: 5px 12px; border: 1.5px solid var(--border); border-radius: 5px; background: #fff; font-size: 13px; cursor: pointer; transition: all var(--transition); }
.bhk-btn.active, .bhk-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-filter { width: 100%; padding: 11px; background: var(--primary); color: #fff; border: none; border-radius: 6px; font-weight: 700; font-size: 14px; cursor: pointer; margin-top: 4px; }
.listings-topbar { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.no-results { text-align: center; padding: 60px 20px; }
.no-results h3 { color: var(--primary); font-size: 1.5rem; margin-bottom: 10px; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.page-btn { padding: 8px 16px; border-radius: 5px; border: 1.5px solid var(--border); font-size: 14px; font-weight: 500; color: var(--text); transition: all var(--transition); }
.page-btn.active, .page-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---- Property Detail ---- */
.property-detail-section { padding: 40px 0 60px; }
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--primary); }
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.gallery-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; background: var(--bg-alt); }
.main-gallery-img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.thumb { width: 80px; height: 60px; object-fit: cover; border-radius: 5px; cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); }
.thumb.active, .thumb:hover { border-color: var(--primary); }
.detail-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; margin-top: 20px; }
.detail-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.detail-header h1 { font-size: 1.6rem; color: var(--text); margin: 6px 0; }
.detail-location { color: var(--text-muted); font-size: 14px; }
.detail-price { font-size: 1.8rem; font-weight: 800; color: var(--accent); white-space: nowrap; }
.detail-specs { display: flex; gap: 16px; flex-wrap: wrap; }
.spec { text-align: center; min-width: 80px; }
.spec-val { font-weight: 700; font-size: 16px; color: var(--primary); }
.spec-lbl { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.detail-card h2 { font-size: 17px; color: var(--primary); margin-bottom: 14px; }
.detail-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; }
.amenity-item { font-size: 13px; color: var(--text-muted); padding: 6px 10px; background: var(--bg-alt); border-radius: 5px; }
.enquiry-card { background: var(--primary); color: #fff; border-radius: var(--radius); padding: 24px; position: sticky; top: 80px; }
.enquiry-card h3 { color: #fff; margin-bottom: 6px; }
.enquiry-card p { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.enquiry-card input, .enquiry-card textarea { width: 100%; padding: 10px 12px; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; font-size: 13px; font-family: inherit; background: rgba(255,255,255,0.1); color: #fff; margin-bottom: 10px; }
.enquiry-card input::placeholder, .enquiry-card textarea::placeholder { color: rgba(255,255,255,0.5); }
.enquiry-card .btn-submit { background: var(--accent); }
.whatsapp-enquire { display: block; background: #25d366; color: #fff; text-align: center; padding: 11px; border-radius: 6px; font-weight: 600; font-size: 14px; margin-top: 12px; }
.share-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; margin-top: 16px; }
.share-card h4 { font-size: 14px; color: var(--primary); margin-bottom: 12px; }
.share-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.share-btns a { font-size: 12px; padding: 6px 12px; border: 1px solid var(--border); border-radius: 4px; color: var(--text); }
.share-btns a:hover { background: var(--bg-alt); }

/* ---- Contact Page ---- */
.contact-page-section { padding: 60px 0; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form-wrap h2, .contact-info-wrap h2 { font-size: 1.7rem; color: var(--primary); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 14px; font-family: inherit; transition: border-color var(--transition); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); outline: none; }
.form-note { background: var(--bg-alt); border-left: 3px solid var(--accent); padding: 10px 14px; margin-bottom: 16px; font-size: 14px; border-radius: 0 6px 6px 0; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; }
.ci-icon { font-size: 1.5rem; width: 40px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 14px; color: var(--primary); margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--text-muted); }
.working-hours { background: var(--bg-alt); border-radius: var(--radius); padding: 18px; }
.working-hours h4 { font-size: 14px; color: var(--primary); margin-bottom: 8px; }
.working-hours p { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }

/* Fade-in animation */
.feature-card, .property-card, .brand-item { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.feature-card.visible, .property-card.visible, .brand-item.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .listings-layout { grid-template-columns: 240px 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 12px 16px; gap: 4px; }
  .main-nav.open { display: flex; }
  .hamburger { display: block; }
  .hero-content h1 { font-size: 2rem; }
  .contact-grid, .contact-page-grid { grid-template-columns: 1fr; gap: 30px; }
  .listings-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .detail-layout { grid-template-columns: 1fr; }
  .enquiry-card { position: static; }
  .detail-header { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .video-wrapper { border-radius: 8px; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .properties-grid { grid-template-columns: 1fr; }
  .search-bar { flex-direction: column; }
}
