/* ============================================
   SOBHA CRESCENT — Shared Stylesheet
   All inner pages
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:       #1e2f42;
  --navy-2:     #243342;
  --navy-3:     #1a2535;
  --gold:       #b8965a;
  --gold-light: #d4b07a;
  --cream:      #f4f6f8;
  --cream-2:    #e8ecf0;
  --white:      #ffffff;
  --text:       #1e2f42;
  --muted:      #5a6e82;
  --ff-d: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'Jost', sans-serif;
  --radius: 10px;
  --tr: 0.3s ease;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--ff-b); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; width: 100%; padding-bottom: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4 { font-family: var(--ff-d); line-height: 1.2; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--navy); color: var(--white); }
/* Typography */
.tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.tag-dk { color: var(--navy); }
.sec-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; color: var(--navy); margin-bottom: 14px; }
.sec-title--wh { color: var(--white); }
.sec-sub { font-size: 1.05rem; color: var(--muted); max-width: 620px; line-height: 1.7; }
.sec-sub--ctr { margin: 0 auto; text-align: center; }
.divider { width: 52px; height: 2px; background: var(--gold); margin: 16px 0; }
.divider--ctr { margin: 16px auto; }
.text-center { text-align: center; }
/* Topbar */
.topbar { background: var(--navy-3); padding: 7px 0; font-size: 11px; color: #b0c4d8; border-bottom: 1px solid rgba(255,255,255,0.07); }
.topbar .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--gold-light); font-weight: 600; }
.rera-b::before { content: "✓ "; color: var(--gold); font-weight: 700; }
/* Navbar */
.navbar { position: sticky; top: 0; background: var(--navy); z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.08); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; padding-bottom: 14px; gap: 16px; }
.nav-logo { font-family: var(--ff-d); font-size: 1.35rem; font-weight: 700; color: var(--white); letter-spacing: 2px; text-transform: uppercase; flex-shrink: 0; }
.nav-logo span { color: rgba(255,255,255,0.45); font-weight: 400; }
.nav-links { display: flex; gap: 20px; list-style: none; align-items: center; flex-wrap: wrap; }
.nav-links a { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); transition: color var(--tr); }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta { background: var(--white) !important; color: var(--navy) !important; padding: 7px 16px !important; border-radius: 4px; font-weight: 700 !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--white); display: block; border-radius: 2px; }
/* Page hero banner */
.page-hero { background: var(--navy-3); padding: 52px 0 44px; position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg,rgba(184,150,90,0.08) 0%,transparent 60%); pointer-events:none; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 { font-family: var(--ff-d); font-size: clamp(2rem,4vw,3.2rem); color: var(--white); font-weight: 700; margin-bottom: 10px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 560px; }
.page-hero-meta { display: flex; gap: 24px; margin-top: 20px; flex-wrap: wrap; }
.hero-meta-item { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }
.hero-meta-item strong { color: var(--gold-light); }
/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px; font-family: var(--ff-b); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border: none; cursor: pointer; border-radius: var(--radius); transition: all var(--tr); text-decoration: none; white-space: nowrap; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(30,47,66,0.3); }
.btn-gold { background: var(--gold); color: var(--navy-3); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
/* CTA bar */
.cta-bar { background: var(--navy); padding: 44px 0; text-align: center; }
.cta-bar h2 { font-family: var(--ff-d); font-size: 2rem; color: var(--white); margin-bottom: 8px; }
.cta-bar p { color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
/* Footer */
footer { background: var(--navy-3); padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; margin-bottom: 32px; }
.footer-brand { font-family: var(--ff-d); font-size: 1.3rem; color: var(--white); font-weight: 700; margin-bottom: 12px; }
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-rera { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 10px; }
.footer-col h4 { font-family: var(--ff-d); font-size: 0.95rem; color: var(--gold); margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 13px; color: rgba(255,255,255,0.5); padding: 3px 0; }
.footer-col ul li a { color: rgba(255,255,255,0.5); transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 16px; font-size: 11px; color: rgba(255,255,255,0.3); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-disc { font-size: 10px; color: rgba(255,255,255,0.2); line-height: 1.6; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.05); }
/* Float bar — mobile only */
.float-bar { position: fixed; bottom: 0; left: 0; right: 0; display: none; z-index: 999; box-shadow: 0 -2px 16px rgba(0,0,0,0.2); }
.float-bar a, .float-bar button { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 14px 6px; font-family: var(--ff-b); font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; -webkit-tap-highlight-color: transparent; }
.float-bar svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
.float-call { background: var(--navy-2); color: var(--white); border-right: 1px solid rgba(255,255,255,0.1); }
.float-wa { background: #25D366; color: #fff; border-right: 1px solid rgba(255,255,255,0.15); }
.float-enq { background: var(--gold); color: var(--navy-3); }
/* Modal */
.modal-ov { position: fixed; inset: 0; background: rgba(0,0,0,0.78); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal-ov.open { display: flex; }
.modal-box { background: var(--white); border-radius: var(--radius); padding: 32px 28px; width: 100%; max-width: 400px; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 12px; right: 14px; font-size: 1.5rem; color: var(--muted); cursor: pointer; background: none; border: none; }
.modal-title { font-family: var(--ff-d); font-size: 1.5rem; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.modal-sub { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--cream-2); }
.form-group { margin-bottom: 10px; }
.form-group label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: #4a5e72; margin-bottom: 4px; }
.form-input { width: 100%; padding: 10px 12px; background: var(--cream); border: 1.5px solid var(--cream-2); border-radius: 6px; font-family: var(--ff-b); font-size: 13px; color: var(--navy); outline: none; -webkit-appearance: none; transition: border-color var(--tr); }
.form-input:focus { border-color: var(--navy); background: var(--white); }
.form-submit { width: 100%; padding: 12px; background: var(--navy); color: var(--white); border: none; border-radius: 6px; font-family: var(--ff-b); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; margin-top: 4px; -webkit-appearance: none; }
.form-note { font-size: 10px; color: var(--muted); text-align: center; margin-top: 8px; }
/* Mobile nav */
.mob-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 9999; flex-direction: column; overflow-y: auto; }
.mob-nav.open { display: flex; }
.mob-nav-hd { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mob-nav-logo { font-family: var(--ff-d); font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: 2px; text-transform: uppercase; }
.mob-nav-logo span { color: rgba(255,255,255,0.45); }
.mob-close { background: none; border: none; cursor: pointer; }
.mob-close svg { width: 20px; height: 20px; fill: rgba(255,255,255,0.7); }
.mob-links { display: flex; flex-direction: column; flex: 1; padding: 8px 0; }
.mob-link { font-family: var(--ff-d); font-size: 1.3rem; color: rgba(255,255,255,0.85); padding: 12px 22px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mob-link-cta { color: var(--gold-light) !important; }
.mob-nav-ft { padding: 16px 22px; border-top: 1px solid rgba(255,255,255,0.07); font-size: 10px; color: rgba(255,255,255,0.25); }
/* Responsive */
@media (max-width: 900px) {
  body { padding-bottom: 56px; }
  .float-bar { display: flex; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .container { padding: 0 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 36px 0 30px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; }
}
