/* ==========================================================================
   Let's Drive Halton — Styles
   Brand: Clean, friendly, trustworthy, local
   ========================================================================== */

:root {
  /* Brand colors */
  --blue-900: #14294A;
  --blue-700: #1E3A5F;
  --blue-600: #2A4B77;
  --blue-50:  #EEF3F9;

  --green-600: #2F9E5E;
  --green-500: #38B26D;
  --green-400: #55C685;
  --green-50:  #E8F6EE;

  --gold: #C89B3C;

  /* Neutrals */
  --ink: #0F1B2D;
  --body: #3A4659;
  --muted: #6B7687;
  --line: #E4E8EE;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FB;
  --bg-alt:  #F1F4F8;

  /* Type */
  --font-head: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Radius & shadow */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(20, 41, 74, 0.05), 0 2px 4px rgba(20, 41, 74, 0.04);
  --shadow: 0 8px 24px rgba(20, 41, 74, 0.08), 0 2px 6px rgba(20, 41, 74, 0.04);
  --shadow-lg: 0 24px 60px rgba(20, 41, 74, 0.14), 0 8px 20px rgba(20, 41, 74, 0.06);

  /* Layout */
  --container: 1200px;
  --header-h: 76px;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { margin: 0; }

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

.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--alt { background: var(--bg-soft); }
.section--dark { background: var(--blue-900); color: rgba(255,255,255,0.86); }

.section__head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }
.section__head--light h2 { color: #fff; }
.section__head--light p { color: rgba(255,255,255,0.72); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: var(--green-50);
  border-radius: 99px;
}
.eyebrow--light {
  color: var(--green-400);
  background: rgba(56,178,109,0.12);
}

.accent { color: var(--green-500); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 24px;
  border-radius: 99px;
  transition: all 0.22s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--green-500);
  color: #fff;
  box-shadow: 0 6px 18px rgba(56,178,109,0.35);
}
.btn--primary:hover {
  background: var(--green-600);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(56,178,109,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--blue-700);
  border-color: var(--blue-700);
}
.btn--outline:hover {
  background: var(--blue-700);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--blue-700);
}
.btn--ghost:hover { color: var(--green-600); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

.btn--lg { padding: 16px 28px; font-size: 1.02rem; }
.btn--sm { padding: 10px 18px; font-size: 0.9rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Topbar
   ========================================================================== */
.topbar {
  background: var(--blue-900);
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  padding: 10px 0;
  font-weight: 500;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__phone a { color: var(--green-400); font-weight: 600; }
.topbar__phone a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .topbar__item:first-child { display: none; }
  .topbar__inner { justify-content: center; }
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
}
.logo__mark {
  width: 38px;
  height: 38px;
  display: block;
  flex-shrink: 0;
}
.logo__mark svg { width: 100%; height: 100%; }
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__text strong {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.logo__text span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--green-600);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}
.logo--light .logo__text strong { color: #fff; }

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--body);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--green-500);
  transition: width 0.25s ease;
}
.nav a:hover { color: var(--blue-700); }
.nav a:hover::after { width: 100%; }

.header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--r-sm);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px 28px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  padding: 14px 4px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 8px; border-bottom: 0; }
.mobile-menu.is-open { display: flex; animation: slideDown 0.28s ease; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .nav { display: none; }
  .header__actions .btn--primary { display: none; }
  .header__call { display: none; }
  .menu-toggle { display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFBFD 0%, #F1F5FA 100%);
  padding: 80px 0 100px;
}
.hero__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero__blob--1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(56,178,109,0.38) 0%, transparent 70%);
  top: -140px;
  right: -80px;
}
.hero__blob--2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(30,58,95,0.25) 0%, transparent 70%);
  bottom: -160px;
  left: -60px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero__content { animation: fadeUp 0.7s ease both; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(56,178,109,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(56,178,109,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(56,178,109,0.08); }
}

.hero__title { margin-bottom: 20px; }
.hero__sub {
  font-size: 1.12rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__stats > div {
  display: flex;
  flex-direction: column;
}
.hero__stats strong {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue-700);
  line-height: 1;
}
.hero__stats span {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}

.hero__media {
  position: relative;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero__card--main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 4 / 5;
  transform: rotate(-1.5deg);
}
.hero__card--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.hero__badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.hero__badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 600;
}
.hero__badge span {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero__card--review {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: #fff;
  padding: 20px 22px;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  transform: rotate(2deg);
  border-left: 4px solid var(--green-500);
}
.hero__card--review .stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
.hero__card--review p {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 500;
}
.hero__card--review span {
  font-size: 0.78rem;
  color: var(--muted);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero { padding: 48px 0 80px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero__media { max-width: 480px; margin: 0 auto; width: 100%; }
  .hero__stats { gap: 28px; flex-wrap: wrap; }
  .hero__stats strong { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero__card--review {
    position: static;
    margin-top: 20px;
    transform: none;
    max-width: none;
  }
  .hero__cta .btn { flex: 1; }
}

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trustbar {
  padding: 32px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.trust strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
}
.trust span {
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 820px) {
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 440px) {
  .trustbar__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card--featured {
  background: linear-gradient(160deg, #fff 0%, #F8FBFE 100%);
  border-color: var(--blue-50);
  box-shadow: var(--shadow);
}
.service-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--blue-700);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
}
.service-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
}
.service-card p {
  color: var(--muted);
  margin-bottom: 20px;
}
.service-card ul {
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.service-card li {
  font-size: 0.92rem;
  color: var(--body);
  padding: 6px 0 6px 24px;
  position: relative;
}
.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
}
.service-card__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-700);
  transition: color 0.2s ease, gap 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.service-card__link:hover { color: var(--green-600); }

@media (max-width: 880px) {
  .services__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ==========================================================================
   Packages
   ========================================================================== */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.package {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.package--featured {
  background: var(--blue-700);
  color: rgba(255,255,255,0.88);
  border-color: var(--blue-700);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.package--featured:hover { transform: translateY(-12px); }
.package--featured h3,
.package--featured .package__amount { color: #fff; }
.package--featured .package__head p { color: rgba(255,255,255,0.72); }

.package__tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-500);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 99px;
  white-space: nowrap;
}

.package__head { margin-bottom: 24px; }
.package__head h3 { margin-bottom: 8px; }
.package__head p { font-size: 0.95rem; color: var(--muted); }

.package__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.package--featured .package__price { border-bottom-color: rgba(255,255,255,0.15); }
.package__amount {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.package__unit {
  font-size: 0.95rem;
  color: var(--muted);
}
.package--featured .package__unit { color: rgba(255,255,255,0.7); }

.package__features {
  margin-bottom: 32px;
  flex-grow: 1;
}
.package__features li {
  font-size: 0.95rem;
  padding: 8px 0 8px 28px;
  position: relative;
}
.package__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%2338B26D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}
.package--featured .package__features li::before {
  background: rgba(56,178,109,0.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%2355C685' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}

.package--featured .btn--outline,
.package--featured .btn--primary {
  background: #fff;
  color: var(--blue-700);
  border-color: #fff;
}
.package--featured .btn--primary:hover {
  background: var(--green-500);
  color: #fff;
  border-color: var(--green-500);
}

@media (max-width: 960px) {
  .packages__grid { grid-template-columns: 1fr; gap: 40px; max-width: 480px; margin: 0 auto; }
  .package--featured { transform: none; }
  .package--featured:hover { transform: translateY(-4px); }
}

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__content h2 { margin-bottom: 16px; }
.why__content > p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}
.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.feature h4 {
  margin-bottom: 6px;
  color: var(--ink);
}
.feature p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.55;
}

.why__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.why__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why__sticker {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #fff;
  padding: 18px 22px;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.why__sticker strong {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-600);
  line-height: 1;
}
.why__sticker span {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .why__inner { grid-template-columns: 1fr; gap: 48px; }
  .why__media { max-width: 480px; margin: 0 auto; width: 100%; }
}
@media (max-width: 500px) {
  .why__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ==========================================================================
   Testimonials / Carousel
   ========================================================================== */
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  flex: 1;
  padding: 10px 4px 20px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.review {
  flex: 0 0 calc(50% - 12px);
  min-width: 320px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  color: var(--body);
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.review::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 28px;
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 1;
  color: var(--green-50);
  font-weight: 800;
}
.review .stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.review p {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.review__author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--ink);
}
.review__author span {
  font-size: 0.82rem;
  color: var(--muted);
}

.carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.carousel__btn:hover {
  background: var(--green-500);
  color: #fff;
  transform: scale(1.05);
}
.carousel__btn svg { width: 22px; height: 22px; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.carousel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.25s ease;
  padding: 0;
}
.carousel__dots button.is-active {
  background: var(--green-500);
  width: 28px;
  border-radius: 99px;
}

@media (max-width: 760px) {
  .carousel__btn { display: none; }
  .review { flex: 0 0 85%; min-width: unset; }
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56,178,109,0.35) 0%, transparent 70%);
  border-radius: 50%;
}
.cta::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(56,178,109,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta__content h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta__content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 480px;
}
.cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .cta__content p { margin: 0 auto; }
  .cta__actions { justify-content: center; }
}
@media (max-width: 480px) {
  .cta__actions .btn { flex: 1; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: 48px;
}
.footer__brand p {
  margin: 20px 0 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s ease;
}
.footer__socials a svg {
  width: 18px;
  height: 18px;
}
.footer__socials a:hover {
  background: var(--green-500);
  transform: translateY(-2px);
}

.footer__col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer__col ul li {
  padding: 7px 0;
  font-size: 0.93rem;
}
.footer__col a {
  transition: color 0.2s ease;
}
.footer__col a:hover {
  color: var(--green-400);
}

.footer__form p {
  font-size: 0.9rem;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.6);
}
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-head);
  font-weight: 500;
}
.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input::placeholder { color: rgba(255,255,255,0.4); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--green-400);
  background: rgba(255,255,255,0.09);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%239BA8BA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5l3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field select option { color: var(--ink); }

.form__note {
  font-size: 0.85rem;
  margin-top: 12px;
  min-height: 20px;
  color: var(--green-400);
}

.footer__bottom {
  margin-top: 64px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a { transition: color 0.2s ease; }
.footer__legal a:hover { color: var(--green-400); }

@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand, .footer__form { grid-column: span 2; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand, .footer__form { grid-column: auto; }
}

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(20,41,74,0.08);
  gap: 10px;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__call {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.sticky-cta__call svg { width: 22px; height: 22px; }
.sticky-cta__call:active {
  background: var(--blue-700);
  color: #fff;
}
.sticky-cta__book {
  flex: 1;
  height: 52px;
  border-radius: 14px;
  background: var(--green-500);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(56,178,109,0.35);
  transition: all 0.2s ease;
}
.sticky-cta__book:active {
  background: var(--green-600);
  transform: scale(0.98);
}

@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 84px; }
}

/* ==========================================================================
   Reveal-on-scroll utility
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
