/* ============================================================
   EstatePro Real Estate Agency — Shared Stylesheet
   Brand: Deep Navy #0A1628 | Gold #C9A84C | White #F8F9FC
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0A1628;
  --navy-mid:    #1E3A5F;
  --navy-light:  #2C5282;
  --gold:        #C9A84C;
  --gold-light:  #E2C06E;
  --gold-dark:   #A8872C;
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --light-gray:  #EDF2F7;
  --mid-gray:    #A0AEC0;
  --text:        #1A1A2E;
  --text-light:  #4A5568;
  --text-muted:  #718096;
  --border:      rgba(10, 22, 40, 0.1);
  --border-gold: rgba(201, 168, 76, 0.3);
  --shadow-sm:   0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md:   0 8px 24px rgba(10, 22, 40, 0.12);
  --shadow-lg:   0 20px 48px rgba(10, 22, 40, 0.18);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  0.25s ease;
  --max-width:   1280px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography ────────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-title.light { color: var(--white); }

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.75;
}
.section-subtitle.light { color: rgba(255,255,255,0.7); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-sm { padding: 10px 20px; font-size: 0.84rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  padding: 12px 0;
}
.navbar.light-nav { background: transparent; }
.navbar.light-nav.scrolled { background: rgba(10,22,40,0.97); }

.navbar .container {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  position: relative;
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo-name em { color: var(--gold); font-style: normal; }
.logo-tagline {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-links li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-weight: 500;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #0d2040 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 65%; height: 80%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 65%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 20%; left: -5%;
  width: 40%; height: 50%;
  background: radial-gradient(ellipse, rgba(44,82,130,0.3) 0%, transparent 65%);
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,168,76,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
}
.hero-inner .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 600px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.eyebrow-line { width: 36px; height: 2px; background: var(--gold); }
.eyebrow-text {
  font-size: 0.74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat-item { text-align: left; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero search bar */
.hero-search-bar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 8px 8px 8px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.hero-search-bar select,
.hero-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.9rem;
  color: var(--text);
  font-family: inherit;
  background: transparent;
  padding: 8px 4px;
}
.hero-search-bar select { min-width: 120px; cursor: pointer; }
.search-divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.hero-search-bar .btn { flex-shrink: 0; white-space: nowrap; }

/* Hero visual (property card) */
.hero-visual { position: relative; }
.hero-prop-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.prop-card-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}
.prop-card-visual .status-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.prop-card-info { padding: 20px 22px; }
.prop-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.prop-card-title { font-size: 0.95rem; color: var(--white); font-weight: 600; margin-bottom: 10px; }
.prop-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.prop-meta-item { font-size: 0.8rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 4px; }
.hero-float-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
}
.float-badge-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; line-height: 1; }
.float-badge-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px; }

/* Hero search wrapper below */
.hero-search-wrap {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 0;
  padding: 28px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
}
.trust-icon { font-size: 1rem; }

/* ── Properties Grid ───────────────────────────────────────── */
.properties-section { padding: 100px 0; background: var(--off-white); }

.property-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0 48px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.84rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  font-weight: 500;
}
.filter-btn:hover { border-color: var(--gold); color: var(--navy); }
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

/* Property Card */
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.property-card.featured { border: 2px solid var(--gold); }

.prop-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.prop-status {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
}
.status-for-sale { background: #E8F5E9; color: #2E7D32; }
.status-for-rent { background: #E3F2FD; color: #1565C0; }
.status-sold { background: #FFEBEE; color: #C62828; }
.status-featured { background: var(--gold); color: var(--navy); }
.prop-type-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(10,22,40,0.75);
  color: var(--white);
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.prop-body { padding: 22px; }
.prop-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}
.prop-title {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.prop-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.prop-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.prop-spec {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.prop-spec span { font-weight: 600; color: var(--text); }

/* ── Why Us ────────────────────────────────────────────────── */
.why-section { padding: 100px 0; background: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }

/* ── Agents ────────────────────────────────────────────────── */
.agents-section { padding: 100px 0; background: var(--white); }
.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.agent-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.agent-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.agent-avatar {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}
.agent-avatar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--off-white), transparent);
}
.agent-info { padding: 20px 24px 28px; }
.agent-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.agent-title {
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-weight: 600;
}
.agent-bio { color: var(--text-muted); font-size: 0.86rem; line-height: 1.65; margin-bottom: 16px; }
.agent-stats { display: flex; gap: 20px; margin-bottom: 16px; }
.agent-stat { text-align: center; }
.agent-stat-num { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); font-weight: 700; display: block; }
.agent-stat-label { font-size: 0.72rem; color: var(--text-muted); }
.agent-contacts { display: flex; gap: 10px; }
.agent-contact-btn {
  flex: 1;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
}

/* ── Process ───────────────────────────────────────────────── */
.process-section { padding: 100px 0; background: var(--off-white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--navy-light), var(--gold));
  opacity: 0.25;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.step-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.step-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ── Gallery Preview ───────────────────────────────────────── */
.gallery-preview-section { padding: 100px 0; background: var(--white); }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin: 48px 0;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-visual-block {
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.gallery-item.tall .gallery-visual-block { min-height: 416px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.gallery-overlay span { font-size: 0.78rem; color: var(--gold); }

/* ── Stats ─────────────────────────────────────────────────── */
.stats-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 65%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section { padding: 100px 0; background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
}
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: var(--gold); font-size: 0.9rem; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.author-role { font-size: 0.76rem; color: var(--text-muted); }
.author-location { font-size: 0.74rem; color: var(--gold); margin-top: 1px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section-home { padding: 100px 0; background: var(--white); }
.faq-grid { max-width: 840px; margin: 56px auto 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--off-white);
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); background: var(--white); }
.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  gap: 16px;
  user-select: none;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-arr { color: var(--gold); flex-shrink: 0; font-size: 1rem; transition: transform 0.3s; }
.faq-item.open .faq-arr { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-a-inner a { color: var(--gold); text-decoration: none; }

/* ── Inquiry / Contact Form ────────────────────────────────── */
.inquiry-section { padding: 100px 0; background: var(--navy); }
.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.inquiry-info h2 { margin-bottom: 14px; }
.inquiry-info p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 32px; }
.inquiry-details { display: flex; flex-direction: column; gap: 16px; }
.inq-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.inq-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.inq-detail strong { color: var(--white); display: block; margin-bottom: 1px; }

.inquiry-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.inquiry-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); background: var(--white); }
.form-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A84C' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-field select option { background: var(--white); color: var(--text); }
.form-field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  font-family: inherit;
}
.form-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success {
  display: none;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius-sm);
  padding: 16px;
  color: #2E7D32;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.6;
}
.form-success.show { display: block; }

/* ── Map / Location ────────────────────────────────────────── */
.location-section { padding: 80px 0; background: var(--off-white); }
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location-info h2 { color: var(--navy); margin-bottom: 20px; }
.location-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.loc-icon { font-size: 1.1rem; flex-shrink: 0; }
.loc-item strong { color: var(--navy); display: block; margin-bottom: 2px; }
.hours-list { display: flex; flex-direction: column; gap: 7px; margin-top: 20px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--navy); font-weight: 500; }

.map-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-placeholder {
  height: 280px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-pin { font-size: 2.5rem; position: relative; }
.map-placeholder p { font-size: 0.9rem; color: rgba(255,255,255,0.7); position: relative; }
.map-placeholder a {
  color: var(--gold);
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 7px 16px;
  border-radius: 6px;
  position: relative;
  transition: background var(--transition);
}
.map-placeholder a:hover { background: rgba(201,168,76,0.15); }
.map-footer { padding: 18px 22px; display: flex; gap: 24px; flex-wrap: wrap; }
.map-info { font-size: 0.82rem; color: var(--text-muted); }
.map-info strong { color: var(--navy); display: block; margin-bottom: 1px; }

/* ── Newsletter ────────────────────────────────────────────── */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 65%);
}
.newsletter-section h2 { color: var(--white); margin-bottom: 10px; position: relative; }
.newsletter-section p { color: rgba(255,255,255,0.65); margin-bottom: 32px; position: relative; }
.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.newsletter-form input {
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  min-width: 280px;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-note { margin-top: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.4); position: relative; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 16px 0 20px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
}
.footer-col h4 {
  font-size: 0.78rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ── WhatsApp ──────────────────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  z-index: 900;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Badges & Utilities ────────────────────────────────────── */
.badge { padding: 3px 10px; border-radius: 10px; font-size: 0.74rem; font-weight: 600; display: inline-block; }
.badge-new    { background: rgba(201,168,76,0.15); color: var(--gold); }
.badge-active { background: #E8F5E9; color: #2E7D32; }
.badge-sold   { background: #FFEBEE; color: #C62828; }
.text-center  { text-align: center; }
.mt-auto      { margin-top: auto; }
.section-cta  { text-align: center; margin-top: 48px; }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 65%);
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  position: relative;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ── Responsive 1024px ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .properties-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .agents-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .inquiry-layout { grid-template-columns: 1fr; gap: 48px; }
  .location-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── Responsive 768px ──────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,22,40,0.99);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li a { font-size: 1.15rem; padding: 12px 24px; }
  .nav-toggle { display: flex; }
  .nav-actions .btn { display: none; }
  .properties-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .agents-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall .gallery-visual-block { min-height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-search-bar { flex-direction: column; align-items: stretch; border-radius: var(--radius-md); }
  .search-divider { display: none; }
  .newsletter-form { flex-direction: column; align-items: center; }
  .newsletter-form input { min-width: 100%; max-width: 420px; }
}

/* ── Responsive 480px ──────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 20px; }
}

/* ── Image-based property cards ──────────────────────────── */
.prop-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.prop-card-link:hover .property-card {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(10,22,40,0.18);
}
.prop-visual {
  overflow: hidden;
  position: relative;
  min-height: 200px;
}
.prop-visual img {
  display: block;
  transition: transform 0.45s ease;
}
.prop-card-link:hover .prop-visual img {
  transform: scale(1.04);
}
.prop-full-visual {
  overflow: hidden;
  position: relative;
}
.prop-full-visual img {
  display: block;
}
.agent-avatar {
  overflow: hidden;
}
.agent-avatar img {
  display: block;
}
.gallery-visual-block {
  overflow: hidden;
  position: relative;
}
.gallery-visual-block img {
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-visual-block img {
  transform: scale(1.06);
}
.spec-icon {
  vertical-align: middle;
  margin-right: 3px;
  opacity: 0.7;
}
.loc-svg {
  vertical-align: middle;
  margin-right: 3px;
}
.hero-prop-card-inner {
  text-decoration: none;
  color: inherit;
  display: block;
}
.hero-prop-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-prop-card-inner:hover .hero-prop-card {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.step-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-icon svg { display: block; }
.trust-icon svg { vertical-align: middle; }
.sidebar-agent-avatar {
  overflow: hidden;
  border-radius: 50%;
}
.sidebar-agent-avatar img {
  display: block;
  border-radius: 50%;
}
.prop-agent-avatar {
  overflow: hidden;
}
.prop-agent-avatar img {
  display: block;
  border-radius: 50%;
}
.blog-card-img {
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  display: block;
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
/* Professional Agents Section Fix */
.pro-agents-section {
  background: #ffffff;
  padding: 110px 0;
}

.pro-agents-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 56px;
}

.pro-agent-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e3e8f0;
  box-shadow: 0 18px 45px rgba(10, 22, 40, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pro-agent-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 65px rgba(10, 22, 40, 0.14);
}

.pro-agent-image {
  height: 330px;
  overflow: hidden;
  background: #0a1628;
}

.pro-agent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}

.pro-agent-card:hover .pro-agent-image img {
  transform: scale(1.05);
}

.pro-agent-body {
  padding: 28px;
}

.pro-agent-body h3 {
  margin-bottom: 8px;
  color: #0a1628;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.2;
}

.pro-agent-role {
  margin-bottom: 18px;
  color: #c9a84c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pro-agent-bio {
  min-height: 112px;
  margin-bottom: 24px;
  color: #66758c;
  font-size: 16px;
  line-height: 1.75;
}

.pro-agent-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid #edf0f4;
}

.pro-agent-stats strong {
  display: block;
  color: #0a1628;
  font-family: "Playfair Display", serif;
  font-size: 23px;
  line-height: 1;
}

.pro-agent-stats span {
  display: block;
  margin-top: 7px;
  color: #718096;
  font-size: 13px;
}

.pro-agent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pro-agent-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.2s ease;
}

.pro-agent-btn.dark {
  background: #0a1628;
  color: #ffffff;
  border: 2px solid #0a1628;
}

.pro-agent-btn.dark:hover {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #0a1628;
}

.pro-agent-btn.light {
  background: #ffffff;
  color: #0a1628;
  border: 2px solid #0a1628;
}

.pro-agent-btn.light:hover {
  background: #0a1628;
  color: #ffffff;
}

/* Homepage Gallery Clickable Fix */
.gallery-preview-section .gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.gallery-preview-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-preview-section .gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-preview-section .gallery-overlay {
  pointer-events: none;
}

@media (max-width: 1050px) {
  .pro-agents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .pro-agents-section {
    padding: 75px 0;
  }

  .pro-agents-grid {
    grid-template-columns: 1fr;
  }

  .pro-agent-image {
    height: 300px;
  }

  .pro-agent-bio {
    min-height: auto;
  }
}


/* ============================================================
   About Page Total Fix — Story Image, Journey Cards, Full Team
   Add/keep this section at the bottom of css/style.css
   ============================================================ */

.about-story {
  padding: 100px 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-image-card {
  position: relative;
  min-height: 470px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}

.story-image-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  display: block;
}

.story-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 34px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.88), rgba(10, 22, 40, 0.18), transparent);
}

.story-image-content {
  max-width: 420px;
}

.story-year {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}

.story-image-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.75;
}

.story-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.story-float-num {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
}

.story-float-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.22;
}

.story-content h2 em {
  color: var(--gold);
  font-style: normal;
}

.story-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 24px;
}

.story-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

/* Values on About page */
.values-section {
  padding: 100px 0;
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-num {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: rgba(201, 168, 76, 0.22);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* New image-based Journey section */
.timeline-section {
  padding: 100px 0;
  background: var(--navy);
  overflow: hidden;
}

.timeline-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}

.timeline-section .sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 64px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.journey-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.18);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.journey-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.25);
}

.journey-image {
  height: 210px;
  overflow: hidden;
  background: var(--navy-mid);
  position: relative;
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.journey-card:hover .journey-image img {
  transform: scale(1.06);
}

.journey-body {
  padding: 26px;
}

.journey-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.14);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.journey-body h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.journey-body p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Full About Team section */
.team-section {
  padding: 100px 0;
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 56px;
  align-items: stretch;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  height: 310px;
  overflow: hidden;
  background: var(--navy);
  position: relative;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform var(--transition);
}

.team-card:hover .team-avatar img {
  transform: scale(1.05);
}

.team-info {
  padding: 24px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-name {
  font-family: "Playfair Display", serif;
  font-size: 1.28rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.76rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.68;
  margin-bottom: 16px;
  flex: 1;
}

.team-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.specialty-tag {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.team-contact {
  display: flex;
  gap: 8px;
}

/* About awards */
.awards-section {
  padding: 80px 0;
  background: var(--white);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.award-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.award-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.award-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-weight: 800;
}

.award-card h3 {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}

.award-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* About CTA */
.about-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.09) 0%, transparent 65%);
}

.about-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

.about-cta .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* About page responsive fixes */
@media (max-width: 1100px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .story-float {
    position: static;
    margin-top: 20px;
    display: inline-block;
  }

  .journey-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-grid,
  .awards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .about-story,
  .values-section,
  .timeline-section,
  .team-section {
    padding: 72px 0;
  }

  .story-image-card,
  .story-image-card img {
    min-height: 380px;
  }

  .story-image-overlay {
    padding: 24px;
  }

  .journey-grid,
  .team-grid,
  .values-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .team-avatar {
    height: 300px;
  }

  .team-contact {
    flex-direction: column;
  }
}
/* ============================================================
   Homepage FAQ Final Design Fix - Correct Classes
   Targets: .faq-section and .faq-list
   ============================================================ */

.faq-section {
  padding: 120px 0 150px !important;
  background:
    radial-gradient(circle at top center, rgba(201, 168, 76, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%) !important;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 115px;
  left: 50%;
  width: min(1080px, calc(100% - 40px));
  height: calc(100% - 205px);
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(10, 22, 40, 0.09);
  z-index: 0;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-section .text-center {
  max-width: 780px;
  margin: 0 auto 48px;
}

.faq-section .section-tag {
  justify-content: center;
  color: var(--gold-dark);
  font-weight: 800;
}

.faq-section .section-title {
  font-size: clamp(2.35rem, 4vw, 3.45rem);
  margin-bottom: 16px;
}

.faq-section .section-subtitle {
  margin: 0 auto;
  max-width: 640px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.faq-list {
  max-width: 940px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}

.faq-section .faq-item {
  background: #ffffff !important;
  border: 1px solid rgba(10, 22, 40, 0.1) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 34px rgba(10, 22, 40, 0.07) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
  position: relative !important;
  margin-bottom: 0 !important;
}

.faq-section .faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 0 8px 8px 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.faq-section .faq-item:hover,
.faq-section .faq-item.open {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.65) !important;
  box-shadow: 0 22px 54px rgba(10, 22, 40, 0.13) !important;
}

.faq-section .faq-item:hover::before,
.faq-section .faq-item.open::before {
  opacity: 1;
}

.faq-section .faq-q {
  min-height: 84px !important;
  padding: 26px 34px !important;
  color: var(--navy) !important;
  font-size: 1.03rem !important;
  font-weight: 850 !important;
  letter-spacing: -0.01em;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  cursor: pointer !important;
}

.faq-section .faq-q:hover {
  color: var(--gold-dark) !important;
}

.faq-section .faq-arr {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 50% !important;
  background: rgba(201, 168, 76, 0.14) !important;
  color: var(--gold-dark) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.75rem !important;
  font-weight: 900 !important;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease !important;
}

.faq-section .faq-item.open .faq-arr {
  background: var(--gold) !important;
  color: var(--navy) !important;
  transform: rotate(180deg) !important;
}

.faq-section .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-section .faq-item.open .faq-a {
  max-height: 420px !important;
}

.faq-section .faq-a-inner {
  padding: 0 34px 30px !important;
  padding-top: 22px !important;
  color: var(--text-muted) !important;
  font-size: 0.96rem !important;
  line-height: 1.85 !important;
  border-top: 1px solid rgba(10, 22, 40, 0.08) !important;
}

.faq-section .section-cta {
  margin-top: 58px !important;
  margin-bottom: 0 !important;
  text-align: center !important;
  position: relative;
  z-index: 2;
}

.faq-section .section-cta .btn {
  min-width: 190px !important;
  min-height: 58px !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
  background: var(--navy) !important;
  color: #ffffff !important;
  border-color: var(--navy) !important;
  box-shadow: 0 16px 34px rgba(10, 22, 40, 0.18) !important;
}

.faq-section .section-cta .btn:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 85px 0 115px !important;
  }

  .faq-section::before {
    top: 90px;
    width: calc(100% - 24px);
    border-radius: 24px;
  }

  .faq-list {
    gap: 14px !important;
  }

  .faq-section .faq-q {
    min-height: auto !important;
    padding: 22px 22px !important;
    font-size: 0.95rem !important;
  }

  .faq-section .faq-a-inner {
    padding: 0 22px 24px !important;
    padding-top: 18px !important;
  }
}
/* Hidden Admin Footer Link */
.hidden-admin-link {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  color: transparent !important;
  opacity: 0.15;
  text-decoration: none;
  border-radius: 50%;
  background: transparent;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.hidden-admin-link:hover {
  opacity: 1;
  background: var(--gold);
  color: transparent !important;
}
/* ============================================================
   Contact Page Direct Team Photos Fix
   ============================================================ */

.direct-contacts-card {
  overflow: hidden;
}

.direct-contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.direct-contact {
  display: grid;
  grid-template-columns: 64px 1fr 46px;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--off-white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.direct-contact:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: var(--shadow-sm);
}

.direct-contact img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: var(--navy);
  border: 2px solid rgba(201, 168, 76, 0.35);
}

.direct-contact-info h4 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 800;
}

.direct-contact-info p {
  margin: 0 0 5px;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.direct-contact-info a {
  color: var(--gold-dark);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.direct-contact-info a:hover {
  color: var(--navy);
}

.direct-mail {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--navy);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.direct-mail svg {
  width: 17px;
  height: 17px;
}

.direct-mail:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

@media (max-width: 600px) {
  .direct-contact {
    grid-template-columns: 54px 1fr;
  }

  .direct-contact img {
    width: 54px;
    height: 54px;
  }

  .direct-mail {
    grid-column: 1 / -1;
    width: 100%;
  }
}