/* ===================================================
   AFA Insurance Landing Page — Premium CSS
   =================================================== */

:root {
  --primary: #194C9F;        /* AFA brand blue (from logo) */
  --primary-dark: #123469;   /* darker shade of brand blue — dark sections & depth */
  --primary-light: #3D6FC7;  /* lighter tint of brand blue */
  --accent: #194C9F;         /* brand blue (replaces former gold) */
  --accent-hover: #123469;   /* darker brand blue for hover */
  --green: #194C9F;          /* brand blue (replaces former green) */
  --green-hover: #123469;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #f0f2f7;
  --mid-gray: #e2e6ed;
  --text-dark: #1a1f36;
  --text-body: #444c5e;
  --text-light: #717b8e;
  --border: #dde1ea;
  --shadow-sm: 0 2px 8px rgba(26,58,107,0.08);
  --shadow-md: 0 8px 32px rgba(26,58,107,0.12);
  --shadow-lg: 0 20px 60px rgba(26,58,107,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.25s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25,76,159,0.35);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25,76,159,0.35);
}

/* On dark brand-blue sections, flip the primary CTA to a white button
   with brand-blue text so it stays high-contrast (white is a brand colour). */
.process-section .btn-primary,
.final-cta .btn-primary,
.problem-cta .btn-primary,
.featured-card .btn-primary,
.featured-card .btn-green {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.process-section .btn-primary:hover,
.final-cta .btn-primary:hover,
.problem-cta .btn-primary:hover,
.featured-card .btn-primary:hover,
.featured-card .btn-green:hover {
  background: #eaf0fb;
  border-color: #eaf0fb;
  color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

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

.btn-whatsapp {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-whatsapp:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25,76,159,0.4);
}

.btn-outline-blue {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-blue:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ===== SECTION STYLING ===== */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.highlight { color: var(--primary); }

/* ===== HEADER ===== */
/* ===== TOP UTILITY BAR ===== */
.utility-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--primary-dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  height: 40px;
  display: flex;
  align-items: center;
}
.utility-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 18px;
}
.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.utility-item i { color: #B9D0F2; font-size: 0.8rem; }
.utility-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.utility-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
}
.utility-phone i { color: #B9D0F2; }
.utility-phone:hover { color: #B9D0F2; }

.site-header {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 1000;
  background-color: #ffffff; /* white header so the true-colour logo is legible */
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 24px rgba(26,58,107,0.12);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}

.logo-wrap { flex-shrink: 0; }
.logo-img { height: 62px; width: auto; object-fit: contain; }
.logo-fallback {
  display: none;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.04em;
}
.footer-logo-fallback {
  display: none;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--text-body);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  border-radius: 8px;
}
.hamburger:focus { outline: none; }
.hamburger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--primary-dark);
  padding: 16px 24px 24px;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:last-child { border-bottom: none; padding: 14px 0 0; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: #ffffff;
  padding: 162px 0 70px;   /* clears fixed utility bar (40) + header (84) */
  overflow: hidden;
  color: var(--text-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.hero-headline {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-headline .hl-dark { color: var(--text-dark); display: block; }
.hero-headline .hl-blue { color: var(--primary); display: block; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.6rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-body);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.hero-pill i { color: var(--primary); font-size: 0.9rem; }

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 540px;
}

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

.hero-disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
}
.hero-disclaimer i { color: var(--primary); margin-right: 4px; }

/* Hero photo (right column) */
.hero-col-img { display: flex; justify-content: center; }
.hero-photo-wrap { position: relative; max-width: 420px; width: 100%; }
.hero-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  object-position: center top;
  box-shadow: var(--shadow-lg);
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -18px -18px 28px 22px;
  background: linear-gradient(135deg, rgba(25,76,159,0.12), rgba(25,76,159,0.03));
  border-radius: var(--radius-lg);
  z-index: -1;
}
.hero-photo-badge {
  position: absolute;
  bottom: 20px;
  left: -18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.hero-photo-badge i { color: var(--primary); font-size: 1.3rem; }
.hero-photo-badge-txt strong { display: block; font-size: 0.92rem; color: var(--text-dark); }
.hero-photo-badge-txt span { font-size: 0.78rem; color: var(--text-light); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--light-gray);
  padding: 24px 0 12px;
  border-bottom: 1px solid var(--mid-gray);
}

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

.trust-item {
  padding: 0 28px;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--mid-gray);
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-bar-label {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 12px 24px 0;
}

/* ===== ADVISER INTRO ===== */
.adviser-intro {
  padding: 72px 0;
  background: var(--white);
}

.adviser-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

.adviser-img-wrap {
  position: relative;
}

.adviser-img-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

.adviser-img-placeholder i {
  font-size: 5rem;
  opacity: 0.6;
}

.adviser-img-placeholder p {
  font-size: 1.4rem;
  font-weight: 700;
}

.adviser-img-placeholder span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.adviser-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mid-gray);
}

.adviser-badge-float i {
  font-size: 1.6rem;
  color: var(--accent);
}

.adviser-badge-float strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.adviser-badge-float span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.adviser-copy p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-body);
}

.adviser-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 2rem 0;
  padding: 24px;
  background: var(--light-gray);
  border-radius: var(--radius);
}

.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}
.stat span {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  padding: 64px 0;
  background: var(--off-white);
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 2.25rem 0;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.problem-icon {
  font-size: 1.6rem;
  color: #e53e3e;
  margin-bottom: 14px;
}

.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.problem-cta {
  background: var(--primary-dark);
  border-radius: var(--radius);
  padding: 36px;
}

.problem-cta-text {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 72px 0;
  background: var(--white);
}

.featured-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 2.25rem 0 2.75rem;
}

.featured-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.featured-primary {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
}

.featured-secondary {
  background: linear-gradient(135deg, #123469 0%, #194C9F 100%);
  color: var(--white);
}

.featured-tag {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.featured-tag-green {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

.featured-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  opacity: 0.9;
}

.featured-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.featured-card p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 28px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
}

.service-features li i {
  color: #B9D0F2;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.featured-secondary .service-features li i {
  color: rgba(255,255,255,0.7);
}

.services-grid-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover { color: var(--accent); }

/* ===== WHY AFA ===== */
.why-afa {
  padding: 72px 0;
  background: var(--off-white);
}

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

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ===== PROCESS ===== */
.process-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.process-section .section-eyebrow { color: #B9D0F2; }
.process-section .section-heading { color: var(--white); }
.process-section .section-heading .highlight { color: #B9D0F2; }

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.process-step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  width: 280px;
  transition: var(--transition);
}

.process-step:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: #B9D0F2;
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 14px;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

.process-arrow {
  color: var(--accent);
  font-size: 1.5rem;
  opacity: 0.7;
  padding: 0 12px;
}

/* ===== REVIEWS — PREMIUM REBUILD ===== */
.reviews-section {
  background: var(--white);
  overflow: hidden;
}

/* --- Header --- */
.reviews-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0d3060 60%, var(--primary) 100%);
  padding: 60px 0 48px;
  position: relative;
  overflow: hidden;
}

.reviews-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(25,76,159,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.reviews-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.reviews-header-copy {
  flex: 1;
}

.reviews-header-copy .section-eyebrow {
  color: #B9D0F2;
}

.reviews-header-copy .section-heading {
  color: var(--white);
  margin-bottom: 1rem;
}

.highlight-gold { color: #B9D0F2; }

.reviews-header-sub {
  color: rgba(255,255,255,0.68);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 520px;
}

/* Google Widget Card */
.google-widget-card {
  flex-shrink: 0;
  background: var(--white);
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 4px 16px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
}

.google-widget-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.3);
}

.google-widget-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.google-widget-logo {
  flex-shrink: 0;
}

.google-widget-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.google-widget-score {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.google-widget-stars {
  display: flex;
  gap: 3px;
  color: #FBBC05;
  font-size: 1rem;
}

.google-widget-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
}

.google-widget-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a73e8;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.google-widget-card:hover .google-widget-link {
  color: #1557b0;
}

.google-widget-link i {
  font-size: 0.75rem;
}

/* --- Stats Bar --- */
.reviews-stats-bar {
  background: var(--light-gray);
  border-bottom: 1px solid var(--mid-gray);
  padding: 20px 0;
}

.reviews-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.reviews-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 36px;
}

.reviews-stat-item strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.reviews-stat-item span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.reviews-stat-stars {
  display: flex;
  gap: 3px;
  color: #FBBC05;
  font-size: 1rem;
}

.reviews-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--mid-gray);
  flex-shrink: 0;
}

/* --- Marquee --- */
.reviews-marquee-wrap {
  position: relative;
  padding: 48px 0;
  background: var(--white);
  overflow: hidden;
}

.reviews-marquee {
  display: flex;
  gap: 20px;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
  will-change: transform;
}

.reviews-marquee:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Fade edges */
.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14%;
  max-width: 220px;
  z-index: 2;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--white) 55%, transparent 100%);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--white) 55%, transparent 100%);
}

/* --- Review Card v2 --- */
.review-card-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 24px 20px;
  width: 320px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(26,58,107,0.07);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card-v2:hover {
  box-shadow: 0 12px 40px rgba(26,58,107,0.14);
  transform: translateY(-3px);
  border-color: rgba(26,58,107,0.2);
}

.rc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rc-stars {
  display: flex;
  gap: 3px;
  color: #FBBC05;
  font-size: 0.88rem;
}

.rc-google-icon {
  opacity: 0.85;
}

.rc-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
  position: relative;
  padding-left: 18px;
}

.rc-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 2rem;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}

.rc-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.rc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.rc-av-blue   { background: linear-gradient(135deg, #123469, #194C9F); }
.rc-av-green  { background: linear-gradient(135deg, #194C9F, #3D6FC7); }
.rc-av-purple { background: linear-gradient(135deg, #1f2a44, #3a4f7a); }
.rc-av-orange { background: linear-gradient(135deg, #123469, #2a5db0); }
.rc-av-teal   { background: linear-gradient(135deg, #2a5db0, #5b86d6); }

.rc-author-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 700;
}

.rc-author-info span {
  font-size: 0.76rem;
  color: var(--text-light);
}

/* --- Bottom CTA Bar --- */
.reviews-cta-bar {
  background: var(--off-white);
  border-top: 1px solid var(--mid-gray);
  padding: 32px 0;
}

.reviews-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.reviews-cta-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.rca-stars {
  display: flex;
  gap: 3px;
  font-size: 1.1rem;
  color: #FBBC05;
  flex-shrink: 0;
}

.reviews-cta-left p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
}

.reviews-cta-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-google-reviews {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--border);
  font-size: 0.9rem;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  padding: 11px 22px;
}

.btn-google-reviews:hover {
  border-color: #1a73e8;
  color: #1a73e8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.review-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== FAQ ===== */
.faq-section {
  padding: 72px 0;
  background: var(--off-white);
}

.faq-list {
  max-width: 820px;
  margin: 2.25rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { background: var(--light-gray); }
.faq-question.open { background: var(--light-gray); color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  padding-top: 16px;
}

/* ===== BOOKING ===== */
.booking-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0d3060 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.booking-copy .section-eyebrow { color: #B9D0F2; }
.booking-copy .section-heading { color: var(--white); }
.booking-copy .section-heading .highlight { color: #B9D0F2; }

.booking-copy > p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.02rem;
}

.booking-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.9rem;
}

.booking-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.booking-trust-item i { color: #B9D0F2; font-size: 0.9rem; }

.booking-contact-alts p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.contact-alt-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: var(--transition);
}

.contact-alt-link:hover { background: rgba(255,255,255,0.18); }
.contact-alt-link.whatsapp { background: rgba(255,255,255,0.12); color: #B9D0F2; }
.contact-alt-link.whatsapp:hover { background: rgba(255,255,255,0.2); }

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.booking-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,107,0.12);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--green);
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.65;
}

/* ===== COVERAGE ===== */
.coverage-section {
  padding: 64px 0;
  background: var(--white);
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 2.5rem;
}

.city-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--light-gray);
  border: 1px solid var(--mid-gray);
  color: var(--text-body);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.city-chip:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.city-chip i { color: var(--primary); font-size: 0.82rem; }
.city-chip:hover i { color: var(--accent); }

.city-chip-more {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  font-weight: 700;
}

.city-chip-more i { color: var(--accent); }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, #0d2247 0%, var(--primary-dark) 50%, var(--primary) 100%);
}

.final-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.final-cta h2 .highlight { color: #B9D0F2; }

.final-cta > .container > p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  margin-bottom: 1.9rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.final-disclaimer {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #f5f7fb;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-logo { height: 64px; margin-bottom: 18px; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e7ecf5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
}

.footer-links h5, .footer-contact h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links ul li a {
  font-size: 0.87rem;
  color: var(--text-light);
  transition: var(--transition);
}

.footer-links ul li a:hover { color: var(--accent); }

.footer-contact p {
  font-size: 0.87rem;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.footer-contact p i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact p a {
  color: var(--text-light);
  transition: var(--transition);
}

.footer-contact p a:hover { color: var(--accent); }

.footer-bottom {
  padding: 20px 0;
  background: #eef2f8;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta .btn-whatsapp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 0;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(25,76,159,0.5);
}

.floating-cta .btn-primary {
  box-shadow: 0 4px 20px rgba(25,76,159,0.5);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STEP 1 FORM UPDATES ===== */
.form-step-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(26,58,107,0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

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

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon > i:first-child {
  position: absolute;
  left: 14px;
  color: var(--text-light);
  font-size: 0.88rem;
  z-index: 1;
  pointer-events: none;
}

.input-with-icon input,
.input-with-icon select {
  padding-left: 40px !important;
}

.select-wrap {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 14px !important;
  left: auto !important;
  color: var(--text-light);
  font-size: 0.75rem;
  pointer-events: none;
}

/* Phone input with country code */
.phone-input-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

.phone-input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,107,0.12);
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: var(--light-gray);
  border-right: 1.5px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
}

.phone-flag { font-size: 1.1rem; line-height: 1; }

.phone-code {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.phone-input {
  flex: 1;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 12px 14px !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: transparent;
  outline: none;
  min-width: 0;
}

.phone-input::placeholder { color: var(--text-light); }

.btn-step1-cta {
  margin-top: 8px;
  font-size: 1rem;
  padding: 15px 24px;
  letter-spacing: 0.02em;
}

/* ===== TYPEFORM OVERLAY ===== */
.tf-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--primary-dark);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow: hidden;
}

.tf-overlay.tf-open {
  opacity: 1;
  pointer-events: all;
}

.tf-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 100%;
}

/* Header */
.tf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 32px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.tf-logo img {
  height: 52px;
  width: auto;
}

.tf-progress-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}

.tf-progress-bar {
  flex: 1;
  height: 5px;
  background: #e3e9f3;
  border-radius: 99px;
  overflow: hidden;
}

.tf-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 20%;
}

.tf-progress-text {
  font-size: 0.8rem;
  color: var(--text-light);
  white-space: nowrap;
  font-weight: 500;
}

.tf-close {
  background: #eef2f8;
  border: none;
  color: var(--text-body);
  font-size: 1.5rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.tf-close:hover {
  background: #dde4f0;
  color: var(--primary);
}

/* Body / questions */
.tf-body {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.tf-question {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  overflow-y: auto;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
}

.tf-question-hidden {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

.tf-question-exit {
  opacity: 0;
  transform: translateY(-40px);
  pointer-events: none;
}

.tf-q-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B9D0F2;
  margin-bottom: 14px;
  text-align: center;
}

.tf-q-num span { color: rgba(255,255,255,0.4); }

.tf-q-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.25;
  max-width: 680px;
}

.tf-q-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-bottom: 36px;
  max-width: 520px;
}

/* Options grid */
.tf-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 700px;
  width: 100%;
}

.tf-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  min-width: 160px;
}

.tf-option:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.tf-option.tf-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  font-weight: 700;
}

.tf-option.tf-selected .tf-opt-icon i { color: var(--white); }

.tf-option-wide {
  width: 100%;
  max-width: 480px;
  min-width: unset;
}

.tf-opt-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
  color: #B9D0F2;
  transition: var(--transition);
}
.tf-opt-icon i { color: inherit; }

.tf-option.tf-selected .tf-opt-icon {
  background: rgba(255,255,255,0.25);
}

.tf-opt-label { flex: 1; }

/* Multi-select next btn */
.tf-next-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  margin-top: 24px;
  transition: var(--transition);
}

.tf-next-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25,76,159,0.4);
}

/* Footer / back */
.tf-footer {
  padding: 16px 32px;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.tf-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  padding: 6px 0;
}

.tf-back-btn:hover { color: rgba(255,255,255,0.85); }
.tf-back-btn.tf-hidden { opacity: 0; pointer-events: none; }

/* Thank you screen */
.tf-thankyou {
  text-align: center;
}

.tf-ty-icon {
  font-size: 4rem;
  color: #B9D0F2;
  margin-bottom: 20px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes popIn {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.tf-ty-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.tf-ty-title span { color: #B9D0F2; }

.tf-ty-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.tf-ty-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 560px;
  margin-bottom: 32px;
}

.tf-ty-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.82);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
}

.tf-ty-tag i { color: #B9D0F2; font-size: 0.75rem; }

.tf-ty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

.btn-outline-dark {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 2px solid rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.tf-ty-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* Mobile tweaks for typeform */
@media (max-width: 640px) {
  .tf-header { padding: 14px 16px; }
  .tf-logo img { height: 42px; }
  .tf-question { padding: 28px 16px; justify-content: flex-start; padding-top: 36px; }
  .tf-q-title { font-size: 1.4rem; }
  .tf-option { min-width: 130px; font-size: 0.9rem; padding: 12px 14px; }
  .tf-option-wide { max-width: 100%; }
  .tf-ty-actions { flex-direction: column; align-items: stretch; }
  .tf-footer { padding: 12px 16px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .adviser-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .adviser-img-wrap { max-width: 320px; margin: 0 auto; }
  .adviser-stats { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .reviews-header-inner { flex-direction: column; align-items: flex-start; gap: 36px; }
  .google-widget-card { align-self: flex-start; }
  .reviews-stat-item { padding: 8px 20px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .utility-hide-md { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 128px 0 52px; }
  .hero-col-img { order: -1; }
  .hero-photo-wrap { max-width: 360px; }
  .hero-sub { max-width: 100%; }
  .problem-cards { grid-template-columns: repeat(2, 1fr); }
  .featured-services { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .reviews-cta-inner { flex-direction: column; align-items: center; }
  .reviews-stat-divider { display: none; }
  .reviews-stats-inner { justify-content: flex-start; gap: 0; }
  .reviews-stat-item { padding: 10px 24px; }
}

/* Utility bar becomes an auto-rotating slideshow on mobile/tablet
   so all three credentials are visible one at a time */
@media (max-width: 768px) {
  .utility-bar-inner {
    position: relative;
    justify-content: center;
    min-height: 20px;
  }
  .utility-bar-inner .utility-divider { display: none; }
  .utility-bar-inner .utility-item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }
  .utility-bar-inner .utility-item.util-active { opacity: 1; }
}

@media (max-width: 640px) {
  .utility-hide-sm { display: none; }
  .utility-bar { font-size: 0.74rem; }
  .utility-bar-inner { gap: 10px; justify-content: center; }
  .utility-item i, .utility-phone i { font-size: 0.74rem; }
  /* allow long button labels to wrap instead of overflowing the viewport */
  .btn { white-space: normal; text-align: center; }
  .problem-cta { padding: 28px 20px; }
  .problem-cta .btn { width: 100%; }
  .problem-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .adviser-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }
  .hero-photo-badge { left: 0; }
  .booking-form-card { padding: 28px 20px; }
  .featured-card { padding: 28px 24px; }
  .process-step { width: 100%; }
  .final-cta-buttons { flex-direction: column; align-items: center; }

  /* Trust bar: drop the orphaned vertical dividers when names wrap */
  .trust-bar-inner { gap: 6px 4px; }
  .trust-divider { display: none; }
  .trust-item { padding: 4px 14px; }

  /* Adviser credential badge: keep it inside the photo bounds on mobile */
  .adviser-badge-float { right: 8px; bottom: -14px; padding: 12px 16px; }

  /* Floating CTA becomes a full-width sticky bottom bar (no mid-content overlap) */
  .floating-cta {
    bottom: 0; left: 0; right: 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    box-shadow: 0 -2px 16px rgba(26,58,107,0.14);
    backdrop-filter: blur(6px);
    transform: translateY(100%);
  }
  .floating-cta.visible { transform: translateY(0); }
  .floating-cta .btn { width: 100%; }
  body { padding-bottom: 68px; }

  .reviews-header { padding: 60px 0 40px; }
  .reviews-header-copy .section-heading { font-size: 1.7rem; }
  .google-widget-card { min-width: unset; width: 100%; max-width: 280px; }
  .reviews-cta-right { flex-direction: column; width: 100%; }
  .reviews-cta-right .btn { width: 100%; justify-content: center; }
  .reviews-cta-left { flex-direction: column; align-items: center; gap: 8px; }
  .reviews-stats-inner { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .hero-headline { font-size: 2rem; }
  .section-heading { font-size: 1.6rem; }
}

/* ===================================================
   POST-LAUNCH ADDITIONS — Adviser photo, consent, etc.
   =================================================== */

/* Real adviser photo */
.adviser-img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Privacy consent checkbox on lead form */
.form-consent {
  margin: 4px 0 18px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
  user-select: none;
  padding: 4px 0;
}

/* Visually-hidden native checkbox (still accessible + toggled by the label).
   Selector is scoped to .consent-label so the booking form's
   `.form-group input { width:100% }` rule can't stretch it. */
.consent-label .consent-checkbox {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  pointer-events: none;
  clip: rect(0 0 0 0);
}

/* Custom checkbox box — consistent across every browser */
.consent-box {
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 2px solid var(--border);
  border-radius: 6px;
  background: #fff;
  position: relative;
  transition: all 0.15s ease;
}
.consent-checkbox:checked + .consent-box {
  background: var(--primary);
  border-color: var(--primary);
}
.consent-checkbox:checked + .consent-box::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent-checkbox:focus-visible + .consent-box {
  box-shadow: 0 0 0 3px rgba(25,76,159,0.28);
}
/* Error state when submitted without ticking */
.consent-label.consent-error .consent-box {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.18);
}

.consent-text a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.consent-text a:hover {
  color: var(--primary-dark);
}

/* Reviews disclaimer */
.reviews-disclaimer {
  text-align: center;
  max-width: 720px;
  margin: 8px auto 0;
  padding: 0 24px;
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.55;
}

.reviews-disclaimer i {
  margin-right: 4px;
  color: rgba(25, 76, 159, 0.6);
}

