/* ============================================================
   YOGI ATAMIYA – GLOBAL DESIGN SYSTEM
   Mobile Notary & Real Estate Consulting
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --navy:       #0D2B5C;
  --navy-light: #1A3F7A;
  --navy-dark:  #081B3D;
  --gold:       #C89A2B;
  --gold-light: #E6B83A;
  --gold-pale:  #FDF6E3;
  --white:      #FFFFFF;
  --off-white:  #F8F9FC;
  --gray-50:    #F4F5F8;
  --gray-100:   #E8EAF0;
  --gray-200:   #CDD0DC;
  --gray-400:   #8A90A8;
  --gray-600:   #555B72;
  --gray-800:   #1E2235;
  --text:       #1E2235;
  --text-muted: #6B7192;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 8px rgba(13,43,92,0.06);
  --shadow-md:  0 4px 24px rgba(13,43,92,0.10);
  --shadow-lg:  0 8px 40px rgba(13,43,92,0.13);
  --shadow-xl:  0 16px 56px rgba(13,43,92,0.16);
  --shadow-gold: 0 8px 32px rgba(200,154,43,0.25);

  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: 0.18s ease;

  --container: 1200px;
  --header-h:  80px;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 600; }
h5 { font-size: 0.95rem;  font-weight: 600; }

p { color: var(--text-muted); line-height: 1.8; }

.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.font-heading { font-family: var(--font-heading); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-lg {
  padding: 130px 0;
}

/* ── Section Label / Eyebrow ──────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-header {
  margin-bottom: 64px;
}

.section-header p {
  max-width: 560px;
  font-size: 1.05rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered p {
  margin: 0 auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition-fast);
}

.btn:hover::after { background: rgba(255,255,255,0.12); }

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200,154,43,0.35);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }

.btn-icon {
  width: 44px; height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 32px;
  transition: var(--transition);
}

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

.card-navy {
  background: var(--navy);
  color: var(--white);
}

.card-navy h3, .card-navy h4 { color: var(--white); }
.card-navy p { color: rgba(255,255,255,0.72); }

.card-gold {
  background: var(--gold-pale);
  border: 1px solid rgba(200,154,43,0.2);
}

/* ── Badge / Chip ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.badge-gold  { background: var(--gold-pale); color: var(--gold); border: 1px solid rgba(200,154,43,0.25); }
.badge-navy  { background: rgba(13,43,92,0.08); color: var(--navy); }
.badge-white { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px); }
.badge-green { background: #E8F8F0; color: #1A7A4A; }

/* ── Icon Box ─────────────────────────────────────────────── */
.icon-box {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box-gold { background: var(--gold-pale); color: var(--gold); }
.icon-box-navy { background: rgba(13,43,92,0.08); color: var(--navy); }
.icon-box-white { background: rgba(255,255,255,0.15); color: var(--white); }

.icon-box svg { width: 28px; height: 28px; }

/* ── Header ───────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

#site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Transparent state */
#site-header.transparent {
  background: transparent;
}

/* Scrolled state */
#site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(13,43,92,0.08);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  transition: color var(--transition-fast);
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}

#site-header.transparent .logo-name,
#site-header.transparent .logo-sub {
  color: var(--white);
}

/* Index page has a light hero — use dark header text */
body[data-page="index"] #site-header.transparent .logo-name { color: var(--navy); }
body[data-page="index"] #site-header.transparent .logo-sub  { color: var(--text-muted); }

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--navy); font-weight: 600; }
.nav-link.active::after { transform: scaleX(1); }

#site-header.transparent .nav-link { color: rgba(255,255,255,0.85); }
#site-header.transparent .nav-link:hover { color: var(--gold-light); }
#site-header.transparent .nav-link.active { color: var(--white); }

/* Index page overrides for light hero */
body[data-page="index"] #site-header.transparent .nav-link { color: var(--text); }
body[data-page="index"] #site-header.transparent .nav-link:hover { color: var(--gold); }
body[data-page="index"] #site-header.transparent .nav-link.active { color: var(--navy); font-weight: 600; }

.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

#site-header.transparent .nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: var(--transition);
}

#site-header.transparent .nav-toggle span { background: var(--white); }
body[data-page="index"] #site-header.transparent .nav-toggle span { background: var(--navy); }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hide mobile nav globally */
.mobile-nav { display: none; }

/* ── Footer ───────────────────────────────────────────────── */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--gold);
}

#site-footer::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.12;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.5); }

.footer-desc {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.social-btn svg { width: 16px; height: 16px; }

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

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
  background: var(--white);
}

/* Subtle grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(200,154,43,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,154,43,0.03) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230D2B5C' fill-opacity='0.018'%3E%3Cpath d='M20 20h1v1h-1z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Floating soft shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-shape-1 {
  width: 520px; height: 520px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(200,154,43,0.07) 0%, rgba(200,154,43,0) 70%);
  animation: heroShapeFloat1 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 380px; height: 380px;
  bottom: -60px; left: -60px;
  background: radial-gradient(circle, rgba(13,43,92,0.04) 0%, rgba(13,43,92,0) 70%);
  animation: heroShapeFloat2 10s ease-in-out infinite;
}

.hero-shape-3 {
  width: 180px; height: 180px;
  top: 30%; left: 42%;
  background: radial-gradient(circle, rgba(200,154,43,0.05) 0%, rgba(200,154,43,0) 70%);
  animation: heroShapeFloat3 7s ease-in-out infinite;
}

.hero-shape-4 {
  width: 100px; height: 100px;
  bottom: 20%; right: 8%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  border: 1px solid rgba(200,154,43,0.1);
  animation: heroShapeFloat1 9s ease-in-out infinite reverse;
}

.hero-shape-5 {
  width: 60px; height: 60px;
  top: 18%; left: 12%;
  border-radius: 50%;
  border: 1px solid rgba(13,43,92,0.06);
  animation: heroShapeFloat2 6s ease-in-out infinite;
}

/* Gold accent line */
.hero-accent-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent 10%, var(--gold) 40%, var(--gold) 60%, transparent 90%);
  opacity: 0.25;
  z-index: 0;
}

@keyframes heroShapeFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12px, 18px) scale(1.04); }
}
@keyframes heroShapeFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -14px) scale(1.03); }
}
@keyframes heroShapeFloat3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(8px, -8px); }
  66% { transform: translate(-6px, 6px); }
}

/* Hero content grid */
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

/* ── Hero LEFT: Text ──────────────────────────────────────── */
.hero-text { }

/* Hero Logo (inline before badge) */
.hero-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-logo-mark {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold) 0%, #D4A832 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-dark);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(200,154,43,0.3);
}

.hero-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.hero-logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.hero-logo-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid rgba(200,154,43,0.22);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: heroPulse 2s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(200,154,43,0.4); }
  50% { opacity: 0.7; transform: scale(1.3); box-shadow: 0 0 0 6px rgba(200,154,43,0); }
}

/* Heading */
.hero h1 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--gold);
  position: relative;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 6px;
  background: rgba(200,154,43,0.12);
  border-radius: 3px;
  z-index: -1;
}

/* Subheading */
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

/* Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-btn-call {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.hero-btn-call:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Trust badges row */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.hero-trust-badge:hover {
  border-color: rgba(200,154,43,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  background: var(--gold-pale);
}

.hero-trust-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #E8F8F0;
  color: #1A7A4A;
  flex-shrink: 0;
}

.hero-trust-check svg { width: 11px; height: 11px; }

/* ── Hero RIGHT: Visual ───────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

/* Decorative frame behind image */
.hero-image-frame {
  position: absolute;
  top: -16px; right: -16px; bottom: -16px; left: -16px;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid rgba(200,154,43,0.15);
  pointer-events: none;
  z-index: 0;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: 12px; right: 12px;
  width: 60px; height: 60px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 12px 0 0;
  opacity: 0.5;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  bottom: 12px; left: 12px;
  width: 60px; height: 60px;
  border-bottom: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: 0 0 0 12px;
  opacity: 0.5;
}

.hero-image-card {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 24px 56px rgba(13,43,92,0.12),
    0 8px 24px rgba(13,43,92,0.06);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img { transform: scale(1.03); }

/* Floating glassmorphism cards */
.hero-floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200,154,43,0.15);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(13,43,92,0.1);
}

.hero-floating-card-1 {
  bottom: 48px; left: -44px;
  animation: heroFloat1 5s ease-in-out infinite;
}

.hero-floating-card-2 {
  top: 48px; right: -36px;
  animation: heroFloat2 6s ease-in-out infinite;
}

@keyframes heroFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes heroFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(14px); }
}

.hero-floating-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, #D4A832 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200,154,43,0.25);
}

.hero-floating-icon svg {
  width: 22px; height: 22px;
  color: var(--navy-dark);
}

.hero-floating-text-main {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.hero-floating-text-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Gold accent dot cluster (decorative) */
.hero-dot-cluster {
  position: absolute;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(5, 6px);
  gap: 10px;
  opacity: 0.25;
}

.hero-dot-cluster span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-dot-cluster-1 {
  top: 12%; right: -60px;
}

.hero-dot-cluster-2 {
  bottom: 8%; left: -50px;
}

/* ── Hero Scroll Animations ───────────────────────────────── */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-anim.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-anim-d1 { transition-delay: 0.08s; }
.hero-anim-d2 { transition-delay: 0.18s; }
.hero-anim-d3 { transition-delay: 0.28s; }
.hero-anim-d4 { transition-delay: 0.38s; }
.hero-anim-d5 { transition-delay: 0.48s; }
.hero-anim-d6 { transition-delay: 0.58s; }

.hero-anim-right {
  opacity: 0;
  transform: translateX(40px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.25s;
}

.hero-anim-right.in-view {
  opacity: 1;
  transform: translateX(0) scale(1);
}


/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  font-weight: 500;
}

/* ── Service Cards ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(200,154,43,0.15);
}

.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-icon svg { width: 30px; height: 30px; }
.service-card:hover .service-icon { background: var(--gold); color: var(--white); }

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition-fast);
}

.service-link:hover { gap: 10px; }
.service-link svg { width: 14px; height: 14px; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-wrap {
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  position: relative;
  flex: 0 0 380px;
  scroll-snap-align: center;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-pale);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
}

.stars svg { width: 16px; height: 16px; fill: currentColor; }

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--gold);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Trust / Certifications ───────────────────────────────── */
.trust-strip {
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 40px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.trust-item svg {
  width: 22px; height: 22px;
  color: var(--gold);
}

.trust-divider {
  width: 1px; height: 28px;
  background: var(--gray-200);
}

/* ── CTA Strip ────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C89A2B' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-strip-orb {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(120px);
  opacity: 0.08;
  right: -100px; top: -100px;
  pointer-events: none;
}

.cta-strip-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-strip h2 { color: var(--white); margin-bottom: 16px; }
.cta-strip p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C89A2B' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
}

.page-hero-orb-1 { width: 400px; height: 400px; background: var(--gold); top: -100px; right: -100px; }
.page-hero-orb-2 { width: 300px; height: 300px; background: #3A6BE0; bottom: -80px; left: -50px; }

.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .page-hero-desc { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
}

.form-control::placeholder { color: var(--gray-400); }

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,154,43,0.12);
}

.form-control:valid:not(:placeholder-shown) {
  border-color: var(--gold);
}

textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Custom Calendar (Calendly Style) ─────────────────────── */
.calendly-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

@media (max-width: 800px) {
  .calendly-layout {
    flex-direction: column;
  }
}

.custom-calendar-wrap {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.calendar-month-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.calendar-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13, 43, 92, 0.04);
  color: var(--navy);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calendar-nav-btn:hover {
  background: rgba(13, 43, 92, 0.08);
}

.calendar-nav-btn svg { width: 18px; height: 18px; }

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.cal-day:hover:not(.empty):not(.disabled) {
  background: rgba(200, 154, 43, 0.1);
  color: var(--gold);
}

.cal-day.selected {
  background: var(--navy) !important;
  color: var(--white) !important;
}

.cal-day.disabled {
  color: var(--gray-300);
  cursor: not-allowed;
}

.cal-day.empty {
  cursor: default;
}

.time-slots-wrap {
  flex: 1;
  min-width: 240px;
  border-left: 1px solid var(--gray-100);
  padding-left: 32px;
}

@media (max-width: 800px) {
  .time-slots-wrap {
    border-left: none;
    border-top: 1px solid var(--gray-100);
    padding-left: 0;
    padding-top: 32px;
    width: 100%;
  }
}

.time-slots-header {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.time-slots-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 8px;
}

.time-slot.booked {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--gray-50);
  border-color: var(--gray-200);
  color: var(--gray-400);
}
.time-slot.booked:hover {
  border-color: var(--gray-200);
  color: var(--gray-400);
  box-shadow: none;
}

/* ── Accordion / FAQ ──────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  transition: box-shadow var(--transition-fast);
}

.accordion-item:hover { box-shadow: var(--shadow-sm); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast);
}

.accordion-trigger:hover { background: var(--off-white); }
.accordion-trigger.active { background: var(--gold-pale); }

.accordion-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.accordion-icon svg { width: 14px; height: 14px; color: var(--navy); }

.accordion-trigger.active .accordion-icon {
  background: var(--gold);
  transform: rotate(180deg);
}

.accordion-trigger.active .accordion-icon svg { color: var(--white); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.accordion-body.open {
  max-height: 500px;
  transition: max-height 0.5s ease-in-out;
}

.accordion-body-inner {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Pricing Table ────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  background: var(--white);
}

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

.pricing-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.02);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.pricing-header {
  padding: 36px 32px 24px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
}

.pricing-card.featured .pricing-header {
  background: var(--navy);
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-tier { color: var(--gold-light); }

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.pricing-card.featured .pricing-name { color: var(--white); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-currency {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-card.featured .pricing-currency { color: rgba(255,255,255,0.7); }

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pricing-card.featured .pricing-amount { color: var(--white); }

.pricing-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-card.featured .pricing-unit { color: rgba(255,255,255,0.55); }

.pricing-body {
  padding: 28px 32px 36px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-feature-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #E8F8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1A7A4A;
}

.pricing-feature-icon svg { width: 11px; height: 11px; }

/* ── Process Steps ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(200,154,43,0.2));
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.step-item.active .step-number {
  background: var(--gold);
  color: var(--navy-dark);
}

.step-item h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,154,43,0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-100);
}

.timeline-item:last-child { border-bottom: none; margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.timeline-item h4 { color: var(--navy); margin-bottom: 8px; }

/* ── Values ───────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,154,43,0.2);
}

.value-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.value-icon svg { width: 32px; height: 32px; }
.value-card:hover .value-icon { background: var(--gold); color: var(--white); }

/* ── Service Detail ───────────────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-detail-card.featured {
  background: var(--navy);
  border-color: transparent;
}

.service-detail-card.featured h3 { color: var(--white); }
.service-detail-card.featured p  { color: rgba(255,255,255,0.7); }

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-detail-card.featured .service-list-item {
  color: rgba(255,255,255,0.75);
}

.service-list-item svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Real Estate ──────────────────────────────────────────── */
.re-consulting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.re-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--gray-100);
}

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

.re-card-header {
  padding: 36px 32px 28px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.re-card-header::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.re-card-header h3 { color: var(--white); margin-bottom: 8px; }
.re-card-header p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

.re-card-body { padding: 28px 32px 32px; }

.re-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.re-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.re-feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Booking ──────────────────────────────────────────────── */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.progress-step + .progress-step::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 22px;
  width: 80px;
  height: 2px;
  background: var(--gray-200);
  margin-right: -1px;
}

.progress-step.done + .progress-step::before { background: var(--gold); }

.progress-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: var(--transition);
  z-index: 1;
  position: relative;
}

.progress-step.active .progress-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}

.progress-step.done .progress-circle {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.progress-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.progress-step.active .progress-label { color: var(--navy); font-weight: 600; }

.booking-steps-wrapper {
  min-height: 400px;
}

.booking-step {
  display: none;
}

.booking-step.active { display: block; }

.service-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-type-card {
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.service-type-card:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.service-type-card.selected {
  border-color: var(--gold);
  background: var(--gold-pale);
  box-shadow: 0 0 0 4px rgba(200,154,43,0.12);
}

.service-type-card input[type="radio"] { display: none; }

.service-type-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.service-type-icon svg { width: 22px; height: 22px; }

.service-type-card.selected .service-type-icon {
  background: var(--gold);
  color: var(--white);
}

.service-type-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.service-type-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.time-slot {
  padding: 10px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.time-slot:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

.time-slot.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.booking-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 16px;
}

.contact-icon svg { width: 24px; height: 24px; }

.contact-info-card h4 { color: var(--navy); margin-bottom: 6px; font-size: 0.92rem; }
.contact-info-card p, .contact-info-card a { font-size: 0.88rem; color: var(--text-muted); }

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.map-placeholder {
  height: 340px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  position: relative;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  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; }

/* ── Utilities ────────────────────────────────────────────── */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px;  }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8   { margin-top: 8px;  }
.mt-12  { margin-top: 12px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-40  { margin-top: 40px; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }
.mb-48  { margin-bottom: 48px; }
.mb-64  { margin-bottom: 64px; }
.w-full { width: 100%; }

/* ── Why Choose Us ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-content { gap: 40px; }
  .hero-image-wrap { width: 360px; height: 460px; }
  .hero-floating-card-1 { left: -20px; }
  .hero-floating-card-2 { right: -20px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .footer-grid > *:last-child { grid-column: span 3; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav overlay */
  .mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 32px 24px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
  }

  .mobile-nav.open { display: flex; }

  .mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border-bottom: 1px solid var(--gray-100);
    transition: background var(--transition-fast);
  }

  .mobile-nav-link:hover { background: var(--off-white); }
  .mobile-nav-link.cta { background: var(--gold); color: var(--navy-dark); border: none; text-align: center; margin-top: 16px; }

  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: 85vh; }
  .hero h1 { font-size: 2.4rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: span 2; }
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .re-consulting-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 72px 0; }
  .section-lg { padding: 100px 0; }
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.15rem; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 300px; padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > *:last-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .re-consulting-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .service-type-grid { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { gap: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
  .section-sm { padding: 48px 0; }
  .section { padding: 56px 0; }
  .hero-floating-card-1, .hero-floating-card-2 { display: none; }
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Focus Styles (accessibility) ────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  z-index: 9999;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  transition: top 0.2s;
}

.skip-link:focus { top: 16px; }

/* ── Notification Toast ───────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon { color: var(--gold); }
.toast-icon svg { width: 18px; height: 18px; }

/* ── WhatsApp Floating Button ─────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  animation: bounce 2s infinite;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  animation: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Tooltip for WhatsApp */
.whatsapp-float::before {
  content: attr(title);
  position: absolute;
  left: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}

.whatsapp-float:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(5px);
}

@media (max-width: 800px) {
  .whatsapp-float::before {
    display: none;
  }
}

/* ── Page Preloader ───────────────────────────────────────── */
.page-preloader {
  position: fixed;
  inset: 0;
  background-color: var(--navy-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Back to Top Button ───────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  background-color: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--gold-light);
  transform: translateY(-5px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 600px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}
