/* ============================================================
   Sobha Properties Theme — main stylesheet
   Cream / charcoal / gold luxury palette
   Cormorant Garamond (display) + Jost (body)
   ============================================================ */

:root {
  --cream: #faf8f4;
  --cream-dark: #f0ece2;
  --white: #ffffff;
  --charcoal: #1a1714;
  --charcoal-light: #3a352f;
  --slate: #756e63;
  --border: #e3ddd0;
  --gold: #b8986a;
  --gold-light: #d4b88a;
  --gold-dark: #957844;
  --shadow: 0 4px 18px rgba(26,23,20,0.08);
  --shadow-strong: 0 12px 32px rgba(26,23,20,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--charcoal-light);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; color: var(--charcoal); font-weight: 600; line-height: 1.25; }

a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

button { font-family: inherit; cursor: pointer; }

/* SECTION LABELS / TITLES / DIVIDERS */
.section-label { display: inline-block; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px; font-weight: 500; font-family: 'Jost', sans-serif; }
.section-title { font-size: 38px; color: var(--charcoal); margin-bottom: 16px; line-height: 1.15; }
.section-divider { width: 60px; height: 3px; background: var(--gold); margin-bottom: 28px; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--gold); color: var(--white); padding: 14px 32px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; transition: all 0.25s; text-decoration: none; }
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { display: inline-block; padding: 13px 32px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; border: 1px solid var(--gold); color: var(--gold-dark); background: transparent; cursor: pointer; transition: all 0.25s; text-decoration: none; }
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* NAV */
.sobha-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(250,248,244,0.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav-top { display: flex; align-items: center; justify-content: space-between; padding: 14px 32px; max-width: 1280px; margin: 0 auto; gap: 24px; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--charcoal); letter-spacing: 1px; text-decoration: none; flex-shrink: 0; }
.nav-logo span { color: var(--gold); }
.nav-pages-main { list-style: none; display: flex; gap: 2px; flex-grow: 1; justify-content: center; margin: 0; padding: 0; }
.nav-pages-main li { position: relative; }
.nav-pages-main li a, .nav-pages-main li button { font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--charcoal-light); font-weight: 500; padding: 10px 14px; border: none; background: none; cursor: pointer; transition: all 0.2s; font-family: 'Jost', sans-serif; white-space: nowrap; text-decoration: none; display: block; }
.nav-pages-main li a:hover, .nav-pages-main li button:hover, .nav-pages-main li.current-menu-item > a { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: 7px; font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500; color: var(--charcoal); text-decoration: none; padding: 8px 12px; border: 1px solid var(--border); transition: all 0.2s; white-space: nowrap; }
.nav-phone svg { color: var(--gold); }
.nav-phone:hover { border-color: var(--gold); color: var(--gold-dark); }
.nav-cta-top { background: var(--gold); color: var(--white); padding: 10px 22px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-family: 'Jost', sans-serif; font-weight: 500; border: none; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.nav-cta-top:hover { background: var(--gold-dark); }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--charcoal); transition: all 0.2s; }

/* Dropdown */
.has-dropdown > a::after, .has-dropdown > button::after { content: ' ▾'; font-size: 9px; margin-left: 5px; opacity: 0.7; }
.nav-dropdown { display: block; position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--charcoal); border-top: 2px solid var(--gold); box-shadow: 0 12px 32px rgba(0,0,0,0.35); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-6px); transition: all 0.25s; z-index: 210; list-style: none; padding: 8px 0; margin: 8px 0 0; }
.has-dropdown:hover .nav-dropdown, .has-dropdown:focus-within .nav-dropdown, .has-dropdown.open .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.nav-dropdown li { display: block; width: 100%; margin: 0; padding: 0; list-style: none; }
.nav-dropdown li a { display: block !important; padding: 11px 22px !important; font-size: 11.5px !important; letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255,255,255,0.78) !important; font-weight: 500; font-family: 'Jost', sans-serif; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.04); background: transparent; width: 100%; text-align: left; }
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { background: var(--gold) !important; color: var(--white) !important; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 600px; max-height: 900px; overflow: hidden; margin-top: 64px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; display: flex; align-items: flex-end; }
.hero-slide.active { opacity: 1; }
.hero-slide-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #243322 0%, #3d5c3a 45%, #7a9470 100%); background-size: cover; background-position: center; }
.hero-slide-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,12,6,0.88) 0%, rgba(16,12,6,0.25) 55%, transparent 100%); }
.hero-content { position: relative; z-index: 2; padding-bottom: 80px; color: var(--white); }
.hero-eyebrow { display: block; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.hero-title { font-size: 72px; color: var(--white); margin-bottom: 18px; line-height: 1.05; }
.hero-tagline { font-size: 19px; color: rgba(255,255,255,0.85); margin-bottom: 18px; font-weight: 300; max-width: 580px; line-height: 1.5; }
.hero-price { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.hero-price strong { color: var(--gold-light); font-weight: 600; }
.hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.hero-dot { width: 32px; height: 3px; border: none; background: rgba(255,255,255,0.35); cursor: pointer; transition: background 0.2s; padding: 0; }
.hero-dot.active { background: var(--gold-light); }

/* HIGHLIGHTS */
.highlights-strip { background: var(--charcoal); padding: 32px 0; }
.highlights-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.hl-item { display: flex; flex-direction: column; gap: 4px; }
.hl-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); font-weight: 500; }
.hl-value { font-size: 16px; color: var(--white); font-weight: 500; }
.hl-div { width: 1px; height: 36px; background: rgba(255,255,255,0.18); }

/* GENERIC SECTIONS */
.overview-section, .fp-section, .price-section, .gallery-section, .projects-section { padding: 90px 0; }
.overview-section { background: var(--cream); }
.fp-section { background: var(--cream-dark); }
.price-section { background: var(--cream); }
.gallery-section { background: var(--cream-dark); }
.projects-section { background: var(--cream); }

.overview-content { font-size: 16px; color: var(--charcoal-light); line-height: 1.95; max-width: 820px; font-weight: 300; }
.overview-content p { margin-bottom: 16px; }

/* FLOOR PLAN GRID */
.fp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 12px; }
.fp-card { background: var(--white); box-shadow: var(--shadow); transition: all 0.3s; cursor: pointer; overflow: hidden; }
.fp-card:hover { box-shadow: var(--shadow-strong); transform: translateY(-3px); }
.fp-card:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.fp-card-img-wrap { position: relative; height: 220px; overflow: hidden; }
.fp-card-img { position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; transition: filter 0.3s, transform 0.4s; }
.fp-card-img.fp-locked { filter: blur(8px) brightness(0.7); transform: scale(1.06); /* hide blur edges */ }
.fp-card-img.fp-placeholder { background: linear-gradient(135deg, var(--cream-dark) 0%, #e0d8c4 100%); display: flex; align-items: center; justify-content: center; filter: blur(2px); color: var(--gold-dark); }
.fp-locked-overlay { position: absolute; inset: 0; background: rgba(26,23,20,0.55); color: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; z-index: 2; transition: background 0.3s; }
.fp-card:hover .fp-locked-overlay { background: rgba(26,23,20,0.7); }
.fp-lock-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(184,152,106,0.95); display: flex; align-items: center; justify-content: center; color: var(--white); margin-bottom: 4px; box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.fp-locked-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); font-weight: 600; }
.fp-locked-cta { font-size: 11px; color: rgba(255,255,255,0.75); font-weight: 300; letter-spacing: 0.5px; }
.fp-card-body { padding: 22px 24px; pointer-events: none; /* clicks pass through to card */ }
.fp-card-body h3 { font-size: 22px; margin-bottom: 4px; }
.fp-size { font-size: 13px; color: var(--slate); margin-bottom: 16px; }
.fp-unlock-btn { display: inline-block; color: var(--gold-dark); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; font-family: 'Jost', sans-serif; }
.fp-card:hover .fp-unlock-btn { color: var(--gold); }

/* PRICE GRID */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.price-card { background: var(--white); padding: 28px; text-align: center; box-shadow: var(--shadow); }
.price-card h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); font-family: 'Jost', sans-serif; margin-bottom: 10px; }
.price-val { font-size: 26px; color: var(--charcoal); font-family: 'Cormorant Garamond', serif; font-weight: 600; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; cursor: pointer; background: var(--cream-dark); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }

/* PROJECTS GRID */
.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 12px; }
.project-card { background: var(--white); box-shadow: var(--shadow); transition: all 0.3s; }
.project-card:hover { box-shadow: var(--shadow-strong); transform: translateY(-3px); }
.pc-img { height: 180px; background: var(--cream-dark) center/cover no-repeat; }
.pc-body { padding: 20px 22px; }
.pc-loc { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; }
.pc-name { font-size: 20px; margin-bottom: 8px; }
.pc-name a { color: var(--charcoal); text-decoration: none; }
.pc-name a:hover { color: var(--gold-dark); }
.pc-desc { font-size: 13px; color: var(--slate); margin-bottom: 12px; line-height: 1.6; }
.pc-link { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); font-weight: 500; }

/* GET IN TOUCH */
.getintouch-section { padding: 90px 0; background: var(--charcoal); }
.git-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
.git-desc { font-size: 15.5px; color: rgba(255,255,255,0.65); line-height: 1.85; margin: 6px 0 32px; font-weight: 300; max-width: 520px; }
.git-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.git-phone { display: block; padding: 18px 22px; background: rgba(184,152,106,0.08); border: 1px solid rgba(184,152,106,0.28); text-decoration: none; transition: all 0.25s; }
.git-phone:hover { background: rgba(184,152,106,0.15); border-color: var(--gold); }
.git-phone-label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); font-weight: 500; margin-bottom: 4px; font-family: 'Jost', sans-serif; }
.git-phone-num { display: block; font-size: 18px; color: var(--white); font-weight: 600; letter-spacing: 0.3px; font-family: 'Jost', sans-serif; }
.git-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.git-wa { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: var(--white); padding: 11px 20px; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; font-family: 'Jost', sans-serif; font-weight: 500; text-decoration: none; transition: background 0.2s; }
.git-wa:hover { background: #1ebe5d; color: var(--white); }
.git-meeting { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.4px; font-weight: 300; }
.git-right { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 34px 32px; }
.git-form-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--gold-light); margin-bottom: 6px; }
.git-form-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; font-weight: 300; }
.git-right .sobha-form input, .git-right .sobha-form textarea { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.13); color: var(--white); }
.git-right .sobha-form input::placeholder, .git-right .sobha-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.git-right .consent-label { color: rgba(255,255,255,0.6); }
.git-right .consent-label a { color: var(--gold-light); }

/* FORMS */
.sobha-form input, .sobha-form textarea { display: block; width: 100%; padding: 12px 14px; border: 1px solid var(--border); background: var(--white); font-family: 'Jost', sans-serif; font-size: 14px; color: var(--charcoal); margin-bottom: 12px; transition: border-color 0.2s; }
.sobha-form input:focus, .sobha-form textarea:focus { outline: none; border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent-label { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--slate); line-height: 1.5; margin: 8px 0 18px; cursor: pointer; }
.consent-label input { width: auto; margin: 3px 0 0; }
.sobha-form-status { font-size: 13px; margin-top: 12px; min-height: 18px; }
.sobha-form-status.ok { color: #1ebe5d; }
.sobha-form-status.err { color: #d63638; }

/* FOOTER */
.sobha-footer { background: var(--charcoal); color: rgba(255,255,255,0.5); padding: 70px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .logo { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--white); display: block; margin-bottom: 14px; text-decoration: none; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 280px; font-weight: 300; }
.footer-contact { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.6); line-height: 2; font-weight: 300; }
.footer-contact .contact-line { padding-left: 62px; }
.footer-contact .contact-num { color: #fff !important; font-weight: 600; letter-spacing: 0.3px; }
.footer-contact .contact-num:hover { color: var(--gold-light) !important; }
.footer-col h4 { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 300; font-family: 'Jost', sans-serif; text-decoration: none; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-rera { margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-rera h5 { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 500; }
.footer-rera .rera-item { font-size: 10.5px; color: rgba(255,255,255,0.32); line-height: 1.55; margin-bottom: 8px; font-weight: 300; }
.footer-rera .rera-item span { display: block; color: rgba(255,255,255,0.55); font-weight: 500; font-size: 11px; margin-bottom: 1px; }
.footer-rera .rera-item code { display: block; font-family: 'Jost', sans-serif; font-size: 10.5px; color: rgba(255,255,255,0.45); letter-spacing: 0.3px; word-break: break-all; background: transparent; padding: 0; }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.22); margin-top: 20px; line-height: 1.65; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
.footer-bottom { margin-top: 28px; font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; }

/* WHATSAPP FLOAT + MOBILE STICKY BAR */
.wa-float { position: fixed; bottom: 84px; right: 22px; z-index: 150; background: #25D366; color: var(--white); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 22px rgba(37,211,102,0.5); text-decoration: none; transition: all 0.3s; }
.wa-float:hover { transform: scale(1.1); color: var(--white); background: #1ebe5d; }
.wa-float svg { display: block; }
.mob-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 140; background: var(--charcoal); padding: 10px 14px; gap: 8px; box-shadow: 0 -4px 14px rgba(0,0,0,0.18); }
.mob-bar .mob-call, .mob-bar .mob-enquire { flex: 1; padding: 12px 0; text-align: center; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; font-family: 'Jost', sans-serif; border: none; cursor: pointer; text-decoration: none; }
.mob-bar .mob-call { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
.mob-bar .mob-enquire { background: var(--gold); color: var(--white); }

/* MODALS / POPUP */
.sobha-modal[hidden], .sobha-popup[hidden] { display: none !important; }
.sobha-modal, .sobha-popup { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.sobha-modal-overlay, .sobha-popup-overlay { position: absolute; inset: 0; background: rgba(8,6,2,0.7); backdrop-filter: blur(4px); }
.sobha-modal-box, .sobha-popup-box { position: relative; background: var(--white); padding: 36px 36px 32px; max-width: 480px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,0.4); max-height: 90vh; overflow-y: auto; }
.sobha-popup-box { max-width: 520px; }
.sobha-modal-close, .sobha-popup-close { position: absolute; top: 10px; right: 10px; background: none; border: none; font-size: 28px; color: var(--slate); cursor: pointer; width: 36px; height: 36px; line-height: 1; }
.sobha-modal h2, .sobha-popup-body h2 { font-size: 26px; margin-bottom: 8px; }
.sobha-modal p, .sobha-popup-body p { font-size: 14px; color: var(--slate); margin-bottom: 18px; line-height: 1.6; }

/* TURNSTILE WIDGET SPACING */
.cf-turnstile { margin: 10px 0 14px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-phone span { display: none; }
  .nav-phone { padding: 8px 10px; }
  .hero-title { font-size: 56px; }
}

@media (max-width: 960px) {
  .container { padding: 0 20px; }
  .hero { margin-top: 56px; min-height: 520px; }
  .hero-title { font-size: 42px; }
  .hero-tagline { font-size: 16px; }
  .section-title { font-size: 28px; }
  .nav-mobile-toggle { display: flex; }
  .nav-pages-main { position: fixed; top: 56px; left: 0; right: 0; background: var(--charcoal); flex-direction: column; padding: 16px 0; gap: 0; display: none; border-bottom: 2px solid var(--gold); max-height: calc(100vh - 56px); overflow-y: auto; }
  .nav-pages-main.open { display: flex; }
  .nav-pages-main li { width: 100%; }
  .nav-pages-main li a, .nav-pages-main li button { width: 100%; text-align: left; color: rgba(255,255,255,0.8); padding: 14px 32px; }
  .nav-pages-main li a:hover, .nav-pages-main li button:hover { color: var(--gold-light); background: rgba(184,152,106,0.12); }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; box-shadow: none; min-width: 0; margin-top: 0; background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.08); }
  .has-dropdown.open .nav-dropdown { display: block; }
  .nav-actions { display: none; } /* Hide phone + enquire in mobile header (mob-bar covers it) */
  .fp-grid, .gallery-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .git-grid { grid-template-columns: 1fr; gap: 40px; }
  .git-contact { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hl-div { display: none; }
  .mob-bar { display: flex; }
  body { padding-bottom: 68px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 34px; }
  .fp-grid, .gallery-grid, .price-grid, .projects-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .wa-float { bottom: 88px; right: 14px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
  .sobha-modal-box, .sobha-popup-box { padding: 28px 22px; }
}

/* LEGAL PAGES */
.legal-page-main { padding: 120px 0 80px; background: var(--cream); }
.legal-header { max-width: 820px; margin: 0 auto 36px; }
.legal-header .section-title strong { color: var(--gold-dark); font-weight: 600; }
.legal-updated { font-size: 13px; color: var(--slate); margin-top: 8px; font-style: italic; }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content p { font-size: 15px; color: var(--charcoal-light); line-height: 1.9; margin-bottom: 18px; font-weight: 300; }
.legal-content h2 { font-size: 26px; color: var(--charcoal); margin: 40px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border); font-weight: 600; }
.legal-content ul { margin: 0 0 22px 24px; }
.legal-content ul li { font-size: 15px; color: var(--charcoal-light); line-height: 1.9; margin-bottom: 8px; font-weight: 300; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-callout { background: var(--cream-dark); border-left: 3px solid var(--gold); padding: 22px 28px; margin: 8px 0 36px; }
.legal-callout p { margin: 0; font-size: 14.5px; line-height: 1.85; }
.legal-callout strong { color: var(--charcoal); font-weight: 600; }
