/* ── SHARED STYLES — DS MAX SAHARA GRAND ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0f1f3d;
  --navy2: #162845;
  --gold: #B8882A;
  --gold-l: #D4AA55;
  --cream: #FBF8F3;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --light: #f3f0ea;
  --border: #e5ddd0;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  padding: 8px 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.topbar a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.topbar a:hover { color: var(--gold-l); }

.topbar .wa-link {
  background: #25D366;
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.topbar .wa-link:hover { background: #1fb558; color: white; }

/* ── NAV ── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
}

.nav-brand .brand-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  line-height: 1;
}

.nav-brand .brand-sub {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links a {
  display: block;
  padding: 22px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
}

.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--gold);
  color: white !important;
  padding: 10px 22px !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  font-weight: 600 !important;
  transition: background 0.3s !important;
  margin-left: 10px;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-l) !important; color: white !important; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy2);
  padding: 50px 50px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.dsmaxproperties.com/campaigns/images/saharagrand/background/banner.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 10px;
  display: block;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
}

.page-hero h1 em { color: var(--gold-l); font-style: italic; }

/* ── SECTION ── */
.section { padding: 70px 50px; }
.section-sm { padding: 50px 50px; }
.section-light { background: var(--light); }
.section-navy { background: var(--navy); color: white; }

.section-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-title em { color: var(--gold); font-style: italic; }
.section-navy .section-title { color: white; }

.section-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 700px;
  font-weight: 300;
}

/* ── FORM ── */
.form-box {
  background: white;
  border: 1px solid var(--border);
  padding: 30px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.form-box .fb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.form-box .fb-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.fg { margin-bottom: 12px; }

.fg label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 5px;
}

.fg input, .fg textarea, .fg select {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--text);
  padding: 11px 14px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 3px;
}

.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--gold);
  background: white;
}

.fg input::placeholder, .fg textarea::placeholder { color: #bbb; }

.form-submit-btn {
  width: 100%;
  background: var(--navy);
  color: white;
  border: none;
  padding: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s;
  border-radius: 3px;
  margin-top: 4px;
}

.form-submit-btn:hover { background: var(--navy2); transform: translateY(-1px); }

.form-note {
  font-size: 10px;
  color: #aaa;
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
}

.form-note a { color: var(--gold); text-decoration: none; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 30px 50px;
  border-top: 3px solid var(--gold);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .fb-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.footer-brand .fb-loc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.footer-rera {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  text-align: right;
}

.footer-rera strong { color: var(--gold-l); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: var(--gold-l); text-decoration: none; }

.disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 800px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── FLOATING BUTTONS ── */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-wa {
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s;
}

.float-wa:hover { transform: scale(1.1); }

.float-call {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(184,136,42,0.4);
  transition: transform 0.3s;
}

.float-call:hover { transform: scale(1.1); }

/* ── TOAST ── */
.toast {
  display: none;
  position: fixed;
  top: 90px;
  right: 24px;
  background: #1a7a3c;
  color: white;
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .topbar { padding: 8px 20px; }
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .section, .section-sm { padding: 40px 24px; }
  .page-hero { padding: 40px 24px; }
  footer { padding: 24px 20px; }
  .footer-rera { text-align: left; }
}
