/* ==========================================================================
   VASHU TRAVELS — PREMIUM LANDING PAGE
   Aesthetic: Deep midnight navy + champagne gold · Boutique travel concierge
   ========================================================================== */

:root {
  /* ---- Color Tokens ---- */
  --navy: #0A1628;
  --navy-2: #142238;
  --navy-3: #1d3354;
  --gold: #D4A574;
  --gold-2: #C39463;
  --gold-deep: #A57843;
  --accent: #F4B942;
  --cream: #FAF6EF;
  --cream-2: #F2EBDB;
  --ink: #1A1A1A;
  --ink-2: #3A3A3A;
  --muted: #6B6B6B;
  --line: #E8E2D4;
  --white: #ffffff;
  --whatsapp: #25D366;
  --whatsapp-2: #128C7E;

  /* ---- Typography ---- */
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---- Layout ---- */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 14px rgba(10, 22, 40, 0.06);
  --shadow: 0 18px 50px -20px rgba(10, 22, 40, 0.18);
  --shadow-lg: 0 30px 80px -30px rgba(10, 22, 40, 0.35);
  --shadow-gold: 0 18px 40px -18px rgba(212, 165, 116, 0.55);

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   GLOBAL RESETS & BASE
   ========================================================================== */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }

::selection { background: var(--gold); color: var(--navy); }

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.eyebrow-dark { color: var(--gold-deep); }
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.18);
}
.eyebrow-dark .dot { background: var(--gold-deep); box-shadow: 0 0 0 4px rgba(165, 120, 67, 0.15); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.text-light .section-title,
.section-title.text-light { color: var(--cream); }

.section-lead {
  font-size: 1.125rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.section-pad { padding: clamp(72px, 9vw, 130px) 0; }
.section-dark { background: var(--navy); color: var(--cream); position: relative; }
.section-dark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(212, 165, 116, 0.08), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(244, 185, 66, 0.06), transparent 50%);
  pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 1; }
.section-cream { background: var(--cream-2); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 13px 26px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -18px rgba(212, 165, 116, 0.75);
}
.btn-gold::after {
  content: "";
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.7s var(--ease);
}
.btn-gold:hover::after { left: 100%; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 18px 40px -18px rgba(37, 211, 102, 0.6);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-2);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -18px rgba(18, 140, 126, 0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250, 246, 239, 0.35);
}
.btn-ghost:hover {
  background: rgba(250, 246, 239, 0.08);
  border-color: var(--cream);
  color: var(--cream);
  transform: translateY(-3px);
}

.btn-dark-pill {
  background: var(--navy);
  color: var(--cream);
  border: 1.5px solid var(--navy);
}
.btn-dark-pill:hover {
  background: var(--navy-2);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-outline-dark-pill {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-outline-dark-pill:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
  font-size: 13.5px;
  padding: 10px 0;
  text-align: center;
}
.announcement-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.announcement-bar i { color: var(--gold); }
.ann-link {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ann-link:hover { color: var(--accent); }

/* ==========================================================================
   HEADER & NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 6px 24px -10px rgba(10, 22, 40, 0.12);
  border-bottom-color: rgba(232, 226, 212, 0.6);
}
.site-header .navbar { padding: 16px 0; transition: padding 0.3s var(--ease); }
.site-header.scrolled .navbar { padding: 10px 0; }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.navbar-brand:hover { color: var(--navy); }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.brand-name em {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 8px 16px !important;
  letter-spacing: 0.01em;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px;
  bottom: 4px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}
.navbar-nav .nav-link:hover { color: var(--gold-deep); }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

.navbar-toggler {
  border: none;
  padding: 8px;
  background: transparent;
}
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 90px 0 80px;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 22, 40, 0.92) 0%, rgba(20, 34, 56, 0.78) 50%, rgba(10, 22, 40, 0.95) 100%),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=2000&fit=crop") center/cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(212, 165, 116, 0.14), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(244, 185, 66, 0.08), transparent 55%);
}
.hero-inner { position: relative; z-index: 1; }

.hero-content { animation: fadeUp 1s var(--ease) both; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--cream);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  display: inline-block;
}
.hero-lead {
  font-size: 1.18rem;
  line-height: 1.65;
  color: rgba(250, 246, 239, 0.82);
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.badge-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(250, 246, 239, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(250, 246, 239, 0.16);
  padding: 14px 20px;
  border-radius: var(--radius);
}
.badge-icon { font-size: 1.6rem; color: var(--gold); }
.badge-text strong {
  display: block;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.badge-text span {
  display: block;
  font-size: 0.78rem;
  color: rgba(250, 246, 239, 0.65);
  letter-spacing: 0.02em;
}
.stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 1px; line-height: 1; }
.stars-lg { font-size: 1.3rem; }

/* Hero quote card */
.hero-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  animation: fadeUp 1s var(--ease) 0.2s both;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -12px; right: -12px;
  width: 80px; height: 80px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  z-index: -1;
}
.hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.hero-card-head span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}
.hero-card-head i { color: var(--gold-deep); margin-right: 4px; }
.hero-card-head small { color: var(--muted); font-size: 0.78rem; }

.hero-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 12px 0 6px;
}
.hero-form input,
.hero-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.hero-form input:focus,
.hero-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.16);
}
.hero-form button { margin-top: 18px; }
.form-foot {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.form-foot i { color: var(--whatsapp); }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(250, 246, 239, 0.4);
  border-radius: 14px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 2s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { top: 8px; opacity: 1; }
  60% { top: 22px; opacity: 0.2; }
  100% { top: 8px; opacity: 1; }
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip {
  background: var(--cream);
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}
.trust-row {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.trust-cell {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.trust-cell:hover { background: var(--cream-2); }
.trust-cell:last-child { border-right: none; }
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-num span { color: var(--gold); font-style: italic; }
.trust-label {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.coverage-line {
  text-align: center;
  margin-top: 30px;
  font-size: 1rem;
  color: var(--ink-2);
}
.coverage-line i { color: var(--gold-deep); margin-right: 6px; }
.coverage-line strong { color: var(--navy); }

@media (min-width: 992px) {
  .trust-cell { border-bottom: none; }
}
@media (max-width: 991.98px) {
  .trust-cell:nth-child(2n) { border-right: none; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-section { background: var(--cream); }
.about-visual {
  position: relative;
  padding: 0 0 60px 60px;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 540px;
  object-fit: cover;
}
.about-img-sub {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 8px solid var(--cream);
  box-shadow: var(--shadow);
}
.about-floating {
  position: absolute;
  top: 30px;
  right: -10px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  max-width: 230px;
}
.about-floating i {
  font-size: 1.6rem;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.about-floating strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.2;
}
.about-floating span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
  color: var(--ink-2);
}
.about-points i {
  color: var(--gold-deep);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}
.link-call {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link-call i { color: var(--gold-deep); }
.link-call:hover { color: var(--gold-deep); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-section .row.mb-5 { margin-bottom: 56px !important; }

.service-card {
  background: rgba(250, 246, 239, 0.04);
  border: 1px solid rgba(250, 246, 239, 0.1);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  height: 100%;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  background: rgba(250, 246, 239, 0.07);
  border-color: rgba(212, 165, 116, 0.4);
}
.service-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 165, 116, 0.12);
  color: var(--gold);
  border-radius: 16px;
  font-size: 1.7rem;
  margin-bottom: 22px;
  transition: transform 0.4s var(--ease-bounce), background 0.4s var(--ease);
}
.service-card:hover .svc-icon {
  transform: rotate(-6deg) scale(1.05);
  background: var(--gold);
  color: var(--navy);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card p {
  color: rgba(250, 246, 239, 0.7);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 22px;
}
.svc-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease), border 0.3s var(--ease);
}
.svc-cta:hover {
  color: var(--accent);
  gap: 12px;
  border-bottom-color: var(--gold);
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-section { background: var(--cream); }
.why-section .text-center { margin-bottom: 24px; }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border 0.4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.ft-num {
  position: absolute;
  top: 24px; right: 30px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--cream-2);
  font-weight: 500;
  line-height: 1;
  transition: color 0.4s var(--ease);
}
.feature-card:hover .ft-num { color: var(--gold); }
.ft-icon {
  font-size: 2rem;
  color: var(--gold-deep);
  margin-bottom: 18px;
  display: inline-block;
}
.feature-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  color: var(--ink-2);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-section { background: var(--cream-2); }
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  background: var(--navy);
  border-radius: 50%;
  box-shadow: var(--shadow);
  position: relative;
}
.step-num::after {
  content: "";
  position: absolute; inset: -8px;
  border: 1.5px dashed rgba(212, 165, 116, 0.4);
  border-radius: 50%;
}
.step-icon {
  font-size: 1.5rem;
  color: var(--gold-deep);
  margin-bottom: 12px;
  display: inline-block;
}
.process-step h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p {
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 240px;
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .process-track::before { display: none; }
}
@media (max-width: 575.98px) {
  .process-track { grid-template-columns: 1fr; }
}

/* ==========================================================================
   GALLERY (MASONRY)
   ========================================================================== */
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  display: block;
  background: var(--cream);
}
.masonry-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.masonry-item:hover img { transform: scale(1.06); }
.masonry-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.65) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.masonry-item:hover::after { opacity: 1; }
.m-cap {
  position: absolute;
  bottom: 16px; left: 16px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.masonry-item:hover .m-cap {
  opacity: 1;
  transform: translateY(0);
}
.m-tall { grid-row: span 2; }
.m-wide { grid-column: span 2; }

@media (max-width: 991.98px) {
  .masonry { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575.98px) {
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .m-wide { grid-column: span 2; }
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-section { background: var(--cream); }
.rating-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.rs-score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.rating-summary small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.85rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.review-quote {
  position: absolute;
  top: 16px; right: 24px;
  font-size: 3.5rem;
  color: var(--cream-2);
  line-height: 1;
}
.review-card .stars { margin-bottom: 16px; }
.review-card p {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.rv-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.reviewer strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.2;
}
.reviewer span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.rv-google {
  margin-left: auto;
  font-size: 1.2rem;
  color: #4285F4;
}

/* ==========================================================================
   URGENCY BAND
   ========================================================================== */
.urgency-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.urgency-band::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.25), transparent 70%);
  border-radius: 50%;
}
.urg-flex {
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 1;
}
.urg-icon {
  font-size: 2.6rem;
  color: var(--accent);
  flex-shrink: 0;
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(244, 185, 66, 0.5)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 12px rgba(244, 185, 66, 0.7)); }
}
.urgency-band h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.urgency-band p {
  color: rgba(250, 246, 239, 0.72);
  font-size: 0.95rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { background: var(--cream-2); }
.custom-accordion .accordion-item {
  background: var(--white);
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.custom-accordion .accordion-button {
  background: var(--white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--navy);
  padding: 22px 26px;
  border: none;
  letter-spacing: -0.005em;
}
.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--cream);
  color: var(--navy);
  box-shadow: none;
}
.custom-accordion .accordion-button:focus {
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.18);
  border-color: var(--gold);
}
.custom-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-deep);
  width: auto;
  height: auto;
  font-weight: 300;
  line-height: 1;
  transform: none;
  transition: transform 0.3s var(--ease);
}
.custom-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: rotate(180deg);
}
.custom-accordion .accordion-body {
  padding: 4px 26px 26px;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.7;
  background: var(--cream);
}

/* ==========================================================================
   SERVICE AREAS
   ========================================================================== */
.area-group {
  background: rgba(250, 246, 239, 0.04);
  border: 1px solid rgba(250, 246, 239, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: background 0.3s var(--ease), border 0.3s var(--ease);
}
.area-group:hover {
  background: rgba(250, 246, 239, 0.07);
  border-color: rgba(212, 165, 116, 0.35);
}
.area-group h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 165, 116, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
}
.area-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 16px;
}
.area-group li {
  color: rgba(250, 246, 239, 0.75);
  font-size: 0.92rem;
  padding: 4px 0;
  position: relative;
  padding-left: 14px;
}
.area-group li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-section { background: var(--cream); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list i {
  font-size: 1.2rem;
  color: var(--gold-deep);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 165, 116, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
}
.contact-list small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-list a, .contact-list span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
}
.contact-list a:hover { color: var(--gold-deep); }

.map-embed {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  height: 260px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.85rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  font-family: var(--font-body);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.16);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.82rem;
  color: var(--muted);
}
.form-note i { color: var(--whatsapp-2); margin-right: 4px; }

@media (max-width: 575.98px) {
  .contact-form-wrap { padding: 28px 22px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: rgba(250, 246, 239, 0.7);
  padding: 80px 0 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.footer-brand { color: var(--cream); margin-bottom: 18px; }
.footer-brand:hover { color: var(--cream); }
.site-footer p {
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 320px;
  margin-bottom: 24px;
}
.site-footer h6 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  padding: 5px 0;
  font-size: 0.92rem;
}
.site-footer ul a {
  color: rgba(250, 246, 239, 0.7);
  transition: color 0.25s var(--ease), padding 0.25s var(--ease);
}
.site-footer ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact i {
  color: var(--gold);
  font-size: 0.95rem;
}

.socials {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.socials a {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 246, 239, 0.07);
  border: 1px solid rgba(250, 246, 239, 0.12);
  border-radius: 50%;
  color: var(--cream);
  font-size: 1.05rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.socials a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 239, 0.08);
  margin-top: 56px;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(250, 246, 239, 0.55);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--accent); }

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.fab {
  position: fixed;
  right: 22px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease);
}
.fab-whatsapp {
  background: var(--whatsapp);
  bottom: 92px;
}
.fab-whatsapp:hover { background: var(--whatsapp-2); color: var(--white); transform: scale(1.08); }
.fab-call {
  background: var(--navy);
  color: var(--gold);
  bottom: 22px;
}
.fab-call:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.08);
}
.fab-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.55);
  z-index: -1;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 991.98px) {
  .fab-whatsapp { bottom: 152px; }
  .fab-call { bottom: 82px; }
}

/* ==========================================================================
   MOBILE STICKY CTA BAR
   ========================================================================== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--navy);
  display: flex;
  border-top: 1px solid rgba(250, 246, 239, 0.1);
  box-shadow: 0 -8px 24px rgba(10, 22, 40, 0.18);
}
.msc-btn {
  flex: 1;
  text-align: center;
  padding: 14px 6px;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-right: 1px solid rgba(250, 246, 239, 0.08);
}
.msc-btn:last-child { border-right: none; }
.msc-btn i { font-size: 1.25rem; }
.msc-call i { color: var(--gold); }
.msc-wa i { color: var(--whatsapp); }
.msc-quote i { color: var(--accent); }
.msc-btn:active { background: var(--navy-2); color: var(--cream); }

/* ==========================================================================
   EXIT INTENT MODAL
   ========================================================================== */
.exit-modal {
  position: fixed; inset: 0;
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
}
.exit-modal.show { display: flex; animation: fadeIn 0.3s var(--ease) both; }
.exit-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(6px);
}
.exit-content {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px 44px 36px;
  max-width: 480px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: popIn 0.45s var(--ease-bounce) both;
}
.exit-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
}
.exit-close:hover { color: var(--navy); }
.exit-ribbon {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.exit-content h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.85rem;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.exit-content p {
  color: var(--ink-2);
  font-size: 0.98rem;
  margin-bottom: 22px;
}
.exit-content strong { color: var(--gold-deep); }
.exit-form {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.exit-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 0.95rem;
  background: var(--white);
}
.exit-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.16);
}
.exit-content small { color: var(--muted); font-size: 0.8rem; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 22, 40, 0.94);
  z-index: 1090;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.show { display: flex; animation: fadeIn 0.3s var(--ease) both; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lb-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
}
.lb-close:hover { color: var(--gold); }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.92) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Reveal-on-scroll (initial state) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal.in-view > * {
  animation: fadeUp 0.8s var(--ease) both;
}
.reveal.in-view > *:nth-child(1) { animation-delay: 0.05s; }
.reveal.in-view > *:nth-child(2) { animation-delay: 0.12s; }
.reveal.in-view > *:nth-child(3) { animation-delay: 0.19s; }
.reveal.in-view > *:nth-child(4) { animation-delay: 0.26s; }
.reveal.in-view > *:nth-child(5) { animation-delay: 0.33s; }
.reveal.in-view > *:nth-child(6) { animation-delay: 0.4s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) {
  body { padding-bottom: 64px; } /* room for mobile sticky CTA */

  .navbar-collapse {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-top: 14px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .navbar-nav .nav-link { padding: 12px 8px !important; }
  .navbar-nav .nav-link::after { display: none; }

  .hero { min-height: auto; padding: 56px 0 70px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-lead { font-size: 1.05rem; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { padding: 13px 22px; font-size: 0.95rem; }

  .about-visual { padding: 0; }
  .about-img-main { height: 380px; }
  .about-img-sub { display: none; }
  .about-floating { right: 12px; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 60px 0; }
  .urgency-band { padding: 40px 0; text-align: center; }
  .urg-flex { flex-direction: column; gap: 14px; text-align: center; }
  .urgency-band h3 { font-size: 1.25rem; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 575.98px) {
  .announcement-bar { font-size: 12.5px; padding: 8px 0; }
  .announcement-bar .container { gap: 12px; }
  .hero { padding: 40px 0 56px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; justify-content: center; min-width: 120px; }
  .hero-badges { flex-direction: column; gap: 10px; }
  .badge-card { width: 100%; }
  .area-group ul { columns: 1; }
  .rating-summary { padding: 14px 18px; }
  .rs-score { font-size: 2.4rem; }
  .exit-content { padding: 36px 24px 28px; }
  .exit-content h3 { font-size: 1.5rem; }
  .exit-form { flex-direction: column; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .announcement-bar, .site-header, .fab, .mobile-sticky-cta, .exit-modal,
  .scroll-cue, .urgency-band, .hero-bg, .hero-overlay { display: none !important; }
  body { background: white; color: black; }
}
