/* ============================================================
   LIME · Yerinde Detaylı Araç Yıkama
   Design tokens
   ============================================================ */
:root {
  /* Brand */
  --lime:        #8FE04A;   /* vivid lime */
  --lime-bright: #A7F35C;
  --lime-soft:   #d7f6b5;
  --lime-tint:   #eef8e2;
  --green-deep:  #13251b;   /* dark bottle green — text boxes */
  --green-800:   #1c3326;
  --green-700:   #24503a;

  /* Neutral surfaces */
  --bg:        #eef0ec;
  --bg-2:      #f5f6f3;
  --surface:   #ffffff;
  --ink:       #14201a;
  --ink-2:     #445247;
  --ink-3:     #7b877f;
  --line:      #e2e5df;

  /* Type */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --text-hero: clamp(2.05rem, 0.9rem + 6vw, 6rem);
  --text-h2:   clamp(1.9rem, 1.1rem + 2.6vw, 3.2rem);
  --text-lead: clamp(1.05rem, 0.98rem + 0.5vw, 1.3rem);

  /* Space */
  --space-section: clamp(4rem, 3rem + 6vw, 9rem);
  --radius:   22px;
  --radius-lg: 30px;
  --shadow-sm: 0 2px 10px rgba(19, 37, 27, .06);
  --shadow-md: 0 18px 50px -22px rgba(19, 37, 27, .28);
  --shadow-lg: 0 40px 90px -40px rgba(19, 37, 27, .45);

  /* Motion */
  --dur: 320ms;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--green-deep); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--green-700); outline-offset: 2px; border-radius: 6px; }

[hidden] { display: none !important; }

/* ============================================================
   Shared bits
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--green-700);
  margin-bottom: 1.1rem;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(143,224,74,.25); }
.eyebrow--dark { color: var(--green-700); }

.hl { color: var(--green-700); position: relative; white-space: nowrap; }
.hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .08em; height: .32em;
  background: var(--lime); border-radius: 6px; z-index: -1; opacity: .85;
}

.section { padding: var(--space-section) clamp(1.1rem, 4vw, 3rem); max-width: 1200px; margin-inline: auto; }
.section__head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section__title { font-size: var(--text-h2); font-weight: 800; }
.section__sub { color: var(--ink-2); font-size: var(--text-lead); margin-top: 1rem; }

/* Buttons */
.btn {
  --bg: var(--green-deep); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.4rem; border-radius: 999px; border: 1.6px solid transparent;
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1.05rem 1.7rem; font-size: 1.05rem; }
.btn--primary { --bg: var(--green-deep); box-shadow: var(--shadow-md); }
.btn--primary:hover { box-shadow: 0 24px 55px -20px rgba(19,37,27,.5); }
.btn--lime { --bg: var(--lime); --fg: var(--green-deep); }
.btn--lime:hover { background: var(--lime-bright); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green-700); background: #fff; }
.btn--outline { --bg: transparent; --fg: var(--green-deep); border-color: var(--green-deep); }
.btn--outline:hover { background: var(--green-deep); color: #fff; }
.btn--pill { padding: .6rem 1.1rem; font-size: .9rem; }
.btn--wa { --bg: #25D366; --fg: #06331b; }
.btn--wa:hover { background: #22c15d; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; position: -webkit-sticky; top: 0; z-index: 100;
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  background: rgba(238, 240, 236, .82); /* fallback for browsers without color-mix */
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav.is-scrolled { border-color: var(--line); background: rgba(245, 246, 243, .9); background: color-mix(in srgb, var(--bg-2) 88%, transparent); }
.nav__inner {
  max-width: 1200px; margin-inline: auto; padding: .85rem clamp(1.1rem, 4vw, 3rem);
  display: flex; align-items: center; gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .55rem; }
.brand__mark { display: grid; place-items: center; }
.brand__word {
  font-family: var(--font-display); font-weight: 800; font-size: 1.55rem;
  color: var(--green-deep); letter-spacing: -.04em;
}
.brand__word--lg { font-size: 2.6rem; }
.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a { font-weight: 500; color: var(--ink-2); position: relative; padding: .2rem 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--green-700); transition: right var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }
.nav__cta { margin-left: 0; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; gap: .3rem; padding: .5rem clamp(1.1rem, 4vw, 3rem) 1.2rem; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.nav__mobile a { padding: .7rem .2rem; font-weight: 600; color: var(--ink); }
.nav__mobile a.btn { margin-top: .4rem; color: #fff; padding: .8rem 1.1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 5vw, 6rem) clamp(1.1rem, 4vw, 3rem) clamp(2rem, 4vw, 4rem); }
.hero__inner { max-width: 1200px; margin-inline: auto; position: relative; z-index: 2; }
.hero__arc {
  position: absolute; z-index: 0; top: -34vw; right: -18vw; width: 82vw; height: 82vw; max-width: 1050px; max-height: 1050px;
  background: radial-gradient(circle at 50% 50%, transparent 55%, var(--lime) 55.4%, var(--lime) 72%, transparent 72.4%);
  transform: rotate(-8deg); opacity: .95; pointer-events: none;
  filter: saturate(108%);
}
.hero__leaves { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.leaf, .drop { position: absolute; border-radius: 60% 0 60% 0; background: linear-gradient(140deg, var(--lime-bright), var(--green-700)); opacity: .85; }
.leaf--1 { width: 34px; height: 34px; top: 22%; left: 6%; transform: rotate(20deg); animation: float 7s var(--ease) infinite; }
.leaf--2 { width: 22px; height: 22px; top: 62%; left: 14%; transform: rotate(-30deg); animation: float 9s var(--ease) infinite .6s; }
.leaf--3 { width: 28px; height: 28px; top: 12%; right: 30%; transform: rotate(50deg); animation: float 8s var(--ease) infinite .3s; }
.drop { width: 16px; height: 16px; border-radius: 50% 50% 50% 0; background: rgba(19,37,27,.14); top: 40%; right: 8%; transform: rotate(45deg); animation: float 6s var(--ease) infinite; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(var(--r,0)); } 50% { transform: translateY(-16px) rotate(20deg); } }

.hero__title { font-size: var(--text-hero); font-weight: 800; margin: .4rem 0 1.4rem; max-width: 15ch; }
.hero__lead { font-size: var(--text-lead); color: var(--ink-2); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 2rem 0 1.4rem; }
.hero__phone {
  display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 600;
  color: var(--green-700); border: 1.6px solid var(--line); padding: .55rem 1rem; border-radius: 999px; background: #fff;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.hero__phone:hover { border-color: var(--green-700); transform: translateY(-2px); }

.trust {
  position: relative; z-index: 2;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0; max-width: 1200px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.trust li { background: var(--surface); padding: 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .2rem; }
.trust strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--green-deep); }
.trust span { color: var(--ink-3); font-size: .92rem; }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages .section__head { max-width: 720px; }
.vehicle-toggle {
  position: relative; display: inline-grid; grid-template-columns: 1fr 1fr; padding: 5px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px; margin-bottom: 2.4rem; box-shadow: var(--shadow-sm);
}
.vt {
  position: relative; z-index: 2; border: 0; background: none; cursor: pointer; text-align: center;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem; color: var(--ink-2);
  padding: .6rem 1.5rem; border-radius: 999px; transition: color var(--dur) var(--ease);
}
.vt.is-active { color: var(--green-deep); }
.vt__thumb {
  position: absolute; z-index: 1; top: 5px; left: 5px; height: calc(100% - 10px); width: calc(50% - 5px);
  background: var(--lime); border-radius: 999px; transition: transform var(--dur) var(--ease);
}
.vehicle-toggle[data-active="suv"] .vt__thumb { transform: translateX(100%); }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.pkg {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.pkg--featured { border-color: var(--lime); box-shadow: 0 24px 60px -30px rgba(143,224,74,.7); }
.pkg--featured:hover { transform: translateY(-10px); }
.pkg--dark { background: var(--green-deep); border-color: var(--green-deep); color: #eaf3ea; }
.pkg--dark .pkg__tag, .pkg--dark .pkg__note { color: #a9c4b0; }
.pkg--dark .pkg__inc-h { color: #cfe3d1; }
.pkg--dark .pkg__list li { color: #eaf3ea; }
.pkg--dark .pkg__list li::before { background: var(--lime); }

.pkg__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: var(--green-deep); font-family: var(--font-display); font-weight: 700;
  font-size: .74rem; letter-spacing: .04em; padding: .35rem .85rem; border-radius: 999px; white-space: nowrap;
}
.pkg__name { font-size: 1.5rem; font-weight: 600; }
.pkg__name strong { font-weight: 800; }
.pkg__tag { color: var(--ink-3); margin-top: .3rem; font-size: .95rem; }

.pkg__price {
  display: flex; align-items: baseline; gap: .35rem; flex-wrap: wrap;
  margin: 1.4rem 0 1.2rem; padding: 1rem 1.2rem; border-radius: 18px;
  background: var(--green-deep); color: #fff;
}
.pkg__price--soft { background: var(--lime-tint); color: var(--green-deep); }
.pkg--featured .pkg__price { background: var(--lime); color: var(--green-deep); }
.pkg--dark .pkg__price { background: rgba(255,255,255,.08); color: #fff; }
.pkg__amount { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1; letter-spacing: -.03em; transition: opacity var(--dur) var(--ease); }
.pkg__cur { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; }
.pkg__vlabel { margin-left: auto; font-size: .85rem; font-weight: 600; opacity: .7; align-self: center; }
.pkg__amount.is-flip { opacity: 0; }

.pkg__inc-h { font-family: var(--font-display); font-weight: 600; color: var(--ink-2); margin-bottom: .7rem; }
.pkg__list { display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.pkg__list li { position: relative; padding-left: 1.9rem; color: var(--ink); font-size: .97rem; }
.pkg__list li em { font-style: normal; font-weight: 600; }
.pkg__list li::before {
  content: ""; position: absolute; left: 0; top: .05em; width: 1.3rem; height: 1.3rem; border-radius: 6px;
  background: var(--lime-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l4 4 10-10' stroke='%23163a1f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat;
}
.pkg__note { margin: 1.2rem 0; font-style: italic; color: var(--ink-3); font-size: .9rem; }
.pkg__cta { width: 100%; margin-top: auto; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: linear-gradient(180deg, transparent, rgba(143,224,74,.07)); border-radius: var(--radius-lg); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease);
}
.step:hover { transform: translateY(-4px); }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--lime); -webkit-text-stroke: 1px var(--green-700); }
.step h3 { font-size: 1.25rem; font-weight: 700; margin: .6rem 0 .5rem; }
.step p { color: var(--ink-2); }

/* ============================================================
   REGIONS
   ============================================================ */
.regions__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.region-pills { display: flex; flex-wrap: wrap; gap: .9rem; }
.region-pills li {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .85rem 1.4rem; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.region-pills li:hover { transform: translateY(-3px); border-color: var(--lime); }
.pin { width: 12px; height: 12px; border-radius: 50% 50% 50% 0; background: var(--lime); transform: rotate(-45deg); box-shadow: 0 0 0 4px rgba(143,224,74,.2); }

/* ============================================================
   BOOKING
   ============================================================ */
.booking__card {
  display: grid; grid-template-columns: .9fr 1.1fr;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.booking__aside {
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(143,224,74,.18), transparent 55%),
    var(--green-deep);
  color: #eaf3ea; padding: clamp(2rem, 4vw, 3.2rem);
}
.booking__aside .eyebrow { color: var(--lime); }
.booking__aside .eyebrow .dot { background: var(--lime); box-shadow: 0 0 0 4px rgba(143,224,74,.25); }
.booking__aside .section__title { color: #fff; }
.booking__aside .section__sub { color: #b7cebd; }
.booking__contact { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.booking__contact li { display: flex; align-items: center; gap: .8rem; }
.booking__contact a { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: #fff; }
.booking__contact a:hover { color: var(--lime); }
.ci { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.09); color: var(--lime); flex-shrink: 0; }

.booking__form { padding: clamp(1.6rem, 4vw, 2.6rem); display: flex; flex-direction: column; }
.steps-bar { display: flex; gap: .5rem; margin-bottom: 1.8rem; }
.steps-bar span { height: 5px; flex: 1; border-radius: 999px; background: var(--line); transition: background var(--dur) var(--ease); }
.steps-bar span.is-active { background: var(--lime); }

.fstep { border: 0; padding: 0; margin: 0; display: none; }
.fstep.is-active { display: block; animation: fade var(--dur) var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.fstep legend { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--green-deep); margin-bottom: 1.1rem; }

.opt-grid { display: grid; grid-template-columns: 1fr; gap: .7rem; margin-bottom: 1rem; }
.opt-grid--2 { grid-template-columns: 1fr 1fr; }
.opt-grid--2 .opt__body { text-align: center; align-items: center; }
.opt-grid--pills { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.opt { position: relative; cursor: pointer; }
.opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.opt__body {
  display: flex; flex-direction: column; gap: .1rem;
  border: 1.6px solid var(--line); border-radius: 14px; padding: .85rem 1.1rem;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.opt__body strong { font-family: var(--font-display); font-weight: 600; }
.opt__body small { color: var(--ink-3); font-size: .84rem; }
.opt:hover .opt__body { border-color: var(--green-700); }
.opt input:checked + .opt__body { border-color: var(--green-deep); background: var(--lime-tint); }
.opt input:focus-visible + .opt__body { outline: 3px solid var(--green-700); outline-offset: 2px; }

.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; min-width: 0; }
.field > span { font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--ink-2); }
.field > span small { color: var(--ink-3); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  border: 1.6px solid var(--line); border-radius: 12px; padding: .8rem 1rem; background-color: var(--bg-2);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
  /* iOS Safari: date/select inputs impose an intrinsic min-width that ignores
     width:100% and overflow their container — these three lines contain them */
  width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box;
}
/* Normalize native controls so they respect width on iOS */
.field select, .field input[type="date"], .field input[type="time"] {
  -webkit-appearance: none; appearance: none;
}
/* Custom chevron for select (native arrow removed by appearance:none) */
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2324503a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 14px 14px;
  padding-right: 2.8rem;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-700); background-color: #fff; outline: none; }
.field textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-row > .field { min-width: 0; }

.err { color: #c0392b; font-size: .9rem; font-weight: 500; margin-top: -.3rem; }

.summary {
  margin-top: 1.2rem; background: var(--lime-tint); border: 1px solid var(--lime-soft);
  border-radius: 16px; padding: 1.1rem 1.3rem;
}
.summary h4 { font-size: 1rem; margin-bottom: .6rem; color: var(--green-deep); }
.summary dl { display: grid; grid-template-columns: auto 1fr; gap: .35rem 1rem; margin: 0; }
.summary dt { color: var(--ink-3); font-size: .9rem; }
.summary dd { margin: 0; font-weight: 600; text-align: right; }

.booking__nav { display: flex; gap: .8rem; margin-top: 1.6rem; }
.booking__nav .btn { flex: 1; }
[data-prev] { flex: 0 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-deep); color: #cfe0d3; margin-top: var(--space-section); }
.footer__grid {
  max-width: 1200px; margin-inline: auto; padding: clamp(3rem, 5vw, 4.5rem) clamp(1.1rem, 4vw, 3rem) 2.5rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer__brand .brand__word--lg { color: #fff; }
.footer__brand p { margin-top: .8rem; max-width: 34ch; color: #9fbaa6; }
.footer__col { display: flex; flex-direction: column; gap: .55rem; }
.footer__col h4 { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); margin-bottom: .5rem; }
.footer__col a, .footer__col span { color: #cfe0d3; }
.footer__col a:hover { color: #fff; }
.footer__wa { color: var(--lime) !important; font-weight: 600; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.1); max-width: 1200px; margin-inline: auto;
  padding: 1.3rem clamp(1.1rem, 4vw, 3rem); display: flex; justify-content: space-between; gap: 1rem;
  font-size: .88rem; color: #8ba793;
}
.footer__bar a:hover { color: #fff; }

/* FAB */
.fab {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; box-shadow: 0 14px 34px -10px rgba(37,211,102,.7);
  transition: transform var(--dur) var(--ease);
}
.fab:hover { transform: scale(1.08) translateY(-2px); }

/* ============================================================
   Reveal on scroll
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile[data-open] { display: flex; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .pkg--featured { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .regions__grid { grid-template-columns: 1fr; }
  .booking__card { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .trust { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 1ms !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
