/* ============================================
   Kaptan Çağdaş — Datça Tekne Turu
   Modern, canlı deniz teması
   ============================================ */
:root {
  --deep: #04263b;
  --deep-2: #063a52;
  --navy: #0a3d5c;
  --sea: #0e7a9e;
  --turq: #17b5c8;
  --turq-bright: #2dd4e8;
  --aqua: #7ceee0;
  --coral: #ff6b5e;
  --coral-dark: #e8503f;
  --sand: #fdf6ec;
  --sand-2: #f6ecdd;
  --white: #ffffff;
  --ink: #10314a;
  --muted: #4d6b80;
  --wa: #25d366;
  --radius: 22px;
  --shadow: 0 18px 50px -18px rgba(4, 38, 59, 0.35);
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-script: "Caveat", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  overflow-x: hidden;
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--sea);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--coral); border-radius: 2px; }
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.15; margin: 12px 0 16px; letter-spacing: -0.5px; }
.section-sub { color: var(--muted); font-size: 17px; max-width: 640px; }
.script { font-family: var(--font-script); color: var(--coral); font-size: clamp(22px, 3vw, 30px); font-weight: 600; }
section { padding: 90px 0; position: relative; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  font-weight: 700; font-size: 15.5px; transition: transform .25s, box-shadow .25s, background .25s;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-3px); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 12px 30px -10px rgba(37, 211, 102, .55); }
.btn-wa:hover { background: #1fbd5a; box-shadow: 0 16px 36px -10px rgba(37, 211, 102, .65); }
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 12px 30px -10px rgba(255, 107, 94, .55); }
.btn-coral:hover { background: var(--coral-dark); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.45); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-outline { border: 2px solid var(--sea); color: var(--sea); background: transparent; }
.btn-outline:hover { background: var(--sea); color: #fff; }
.btn svg { width: 20px; height: 20px; flex: none; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 18px 0;
}
.site-header.scrolled { background: rgba(4, 38, 59, .92); backdrop-filter: blur(14px); box-shadow: 0 8px 30px rgba(0,0,0,.25); padding: 10px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; color: #fff; }
.logo-badge {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  color: var(--turq-bright);
}
.logo-badge svg { width: 32px; height: 32px; }
.logo-name { font-weight: 800; font-size: 18px; line-height: 1.1; letter-spacing: .3px; }
.logo-tag { font-size: 11.5px; opacity: .75; letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: rgba(255,255,255,.85); font-weight: 600; font-size: 14.5px; position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--coral); border-radius: 2px; transition: width .3s; }
.nav-links a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 11px 20px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.12); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 4px auto; border-radius: 2px; transition: .3s; }

/* mobile nav */
@media (max-width: 960px) {
  .nav-links {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
    background: var(--deep); flex-direction: column; padding: 100px 34px 34px;
    gap: 22px; transition: right .4s cubic-bezier(.16,1,.3,1); box-shadow: -20px 0 60px rgba(0,0,0,.4);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 17px; }
  .nav-toggle { display: block; z-index: 110; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .header-cta .btn-text { display: none; }
}

/* ---------- hero ---------- */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  position: relative; color: #fff; padding: 130px 0 120px; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(4,38,59,.62) 0%, rgba(4,38,59,.35) 45%, rgba(4,38,59,.78) 100%);
}
.hero-content { max-width: 780px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.14); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25); border-radius: 999px;
  padding: 9px 18px; font-size: 13.5px; font-weight: 600; letter-spacing: .4px;
  animation: floatIn 1s ease both;
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 12px var(--aqua); animation: pulse 2s infinite; }
.hero h1 { font-size: clamp(38px, 6.4vw, 70px); font-weight: 800; line-height: 1.06; letter-spacing: -1.5px; margin: 22px 0 8px; animation: floatIn 1s .15s ease both; }
.hero h1 .accent { color: var(--turq-bright); }
.hero-script { font-family: var(--font-script); font-size: clamp(26px, 4vw, 40px); color: var(--aqua); animation: floatIn 1s .25s ease both; }
.hero p.lead { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,.88); max-width: 600px; margin: 18px 0 30px; animation: floatIn 1s .35s ease both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: floatIn 1s .45s ease both; }
.hero-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 44px; animation: floatIn 1s .6s ease both; }
.stat-chip {
  background: rgba(255,255,255,.12); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.22); border-radius: 18px;
  padding: 14px 22px; min-width: 128px;
}
.stat-chip .num { font-size: 24px; font-weight: 800; color: var(--aqua); line-height: 1; }
.stat-chip .num .star { color: #ffd166; font-size: 18px; }
.stat-chip .lbl { font-size: 12.5px; opacity: .85; margin-top: 5px; letter-spacing: .3px; }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; position: relative; }
.scroll-hint .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: #fff; border-radius: 4px; animation: scrollWheel 1.8s infinite; }

@keyframes floatIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes scrollWheel { 0% { opacity: 1; transform: translateY(0); } 70% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* wave divider */
.wave { display: block; width: 100%; height: 70px; margin-bottom: -1px; }
.wave.flip { transform: scaleY(-1); }

/* ---------- marquee strip ---------- */
.strip { background: var(--deep); color: #fff; padding: 18px 0; overflow: hidden; position: relative; }
.strip-track { display: flex; gap: 48px; width: max-content; animation: marquee 30s linear infinite; }
.strip-item { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 15px; letter-spacing: .5px; white-space: nowrap; }
.strip-item .ic { color: var(--turq-bright); display: inline-flex; }
.strip-item .ic svg { width: 19px; height: 19px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.about-collage { position: relative; }
.about-collage .main-img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/4.6; object-fit: cover; width: 100%; }
.about-collage .float-img {
  position: absolute; width: 46%; border-radius: 18px; border: 6px solid var(--sand);
  box-shadow: var(--shadow); bottom: -36px; right: -22px; aspect-ratio: 1/1; object-fit: cover;
  animation: bob 6s ease-in-out infinite;
}
.about-collage .badge-float {
  position: absolute; top: 22px; left: -20px; background: #fff; border-radius: 16px;
  padding: 13px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 11px;
  animation: bob 5s ease-in-out infinite reverse;
}
.badge-float .bf-ic { display: grid; place-items: center; color: var(--sea); }
.badge-float .bf-ic svg { width: 28px; height: 28px; }
.badge-float .big { font-size: 21px; font-weight: 800; color: var(--sea); line-height: 1; }
.badge-float .small { font-size: 11.5px; color: var(--muted); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.feature-item { display: flex; gap: 13px; align-items: flex-start; background: #fff; border-radius: 16px; padding: 16px 18px; box-shadow: 0 8px 24px -12px rgba(4,38,59,.18); transition: transform .3s; }
.feature-item:hover { transform: translateY(-4px); }
.feature-item .fi-ic { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center; color: var(--sea); background: linear-gradient(135deg, #e2f7fa, #cdeff5); }
.feature-item .fi-ic svg { width: 22px; height: 22px; }
.feature-item strong { display: block; font-size: 15px; }
.feature-item span { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* ---------- route ---------- */
.route-section { background: linear-gradient(180deg, var(--deep) 0%, #06344d 60%, var(--deep) 100%); color: #fff; overflow: hidden; }
.route-section .eyebrow { color: var(--aqua); }
.route-section .section-sub { color: rgba(255,255,255,.72); }
.route-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 55px; }
.route-line { display: none; }
.route-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.route-grid::before {
  content: ""; position: absolute; top: 96px; left: 6%; right: 6%; height: 3px; z-index: 0;
  background-image: linear-gradient(90deg, var(--turq-bright) 55%, transparent 45%);
  background-size: 18px 3px; opacity: .55;
}
.route-card { position: relative; z-index: 1; text-align: center; }
.route-card .rc-img {
  width: 100%; aspect-ratio: 1/1.15; object-fit: cover; border-radius: 20px;
  border: 3px solid rgba(255,255,255,.18); box-shadow: 0 16px 36px -14px rgba(0,0,0,.5);
  transition: transform .4s, border-color .4s;
}
.route-card:hover .rc-img { transform: translateY(-8px) rotate(-1.5deg); border-color: var(--turq-bright); }
.route-card .rc-num {
  width: 40px; height: 40px; border-radius: 50%; margin: -22px auto 10px; position: relative;
  background: linear-gradient(135deg, var(--coral), #ff8f7a); color: #fff; font-weight: 800;
  display: grid; place-items: center; border: 3px solid var(--deep); font-size: 15px;
}
.route-card h3 { font-size: 17.5px; margin-bottom: 4px; }
.route-card p { font-size: 13px; color: rgba(255,255,255,.68); line-height: 1.5; padding: 0 4px; }
.route-note { margin-top: 44px; text-align: center; font-size: 14px; color: rgba(255,255,255,.65); }
.route-note strong { color: var(--aqua); }

/* ---------- menu ---------- */
.menu-section { background: var(--sand); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.menu-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 40px -16px rgba(4,38,59,.22);
  transition: transform .35s, box-shadow .35s;
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.menu-card .mc-img { height: 210px; overflow: hidden; position: relative; }
.menu-card .mc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.menu-card:hover .mc-img img { transform: scale(1.07); }
.menu-card .mc-tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); color: var(--sea); font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; }
.menu-card .mc-body { padding: 24px 26px 28px; }
.menu-card h3 { font-size: 20px; margin-bottom: 10px; }
.menu-card ul { display: grid; gap: 8px; }
.menu-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--muted); }
.menu-card li::before { content: "✓"; color: var(--turq); font-weight: 800; flex: none; }
.menu-note {
  margin-top: 34px; background: #fff; border: 2px dashed var(--turq); border-radius: 18px;
  padding: 20px 26px; display: flex; gap: 14px; align-items: center; font-size: 15px; color: var(--muted);
}
.menu-note .ic { color: var(--turq); flex: none; display: grid; place-items: center; }
.menu-note .ic svg { width: 28px; height: 28px; }

/* ---------- SUP band ---------- */
.sup-band { padding: 0; }
.sup-inner {
  border-radius: 28px; overflow: hidden; position: relative; color: #fff;
  display: grid; grid-template-columns: 1.1fr .9fr; min-height: 380px;
  background: linear-gradient(120deg, var(--sea), var(--turq));
  box-shadow: var(--shadow);
}
.sup-copy { padding: 60px 56px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.sup-copy h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; line-height: 1.15; }
.sup-copy p { color: rgba(255,255,255,.9); max-width: 460px; }
.sup-copy .free-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35); padding: 8px 18px; border-radius: 999px; font-weight: 800; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; width: fit-content; }
.sup-copy .free-badge svg { width: 18px; height: 18px; }
.sup-img { position: relative; min-height: 300px; }
.sup-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; margin-top: 50px; }
.g-item { border-radius: 18px; overflow: hidden; position: relative; cursor: pointer; }
.g-item img, .g-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.g-item:hover img { transform: scale(1.08); }
.g-item.wide { grid-column: span 2; }
.g-item.tall { grid-row: span 2; }
.g-item .g-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(4,38,59,.35); transition: background .3s;
}
.g-item .g-play span { width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; font-size: 22px; color: var(--sea); padding-left: 4px; box-shadow: 0 10px 30px rgba(0,0,0,.35); transition: transform .3s; }
.g-item:hover .g-play span { transform: scale(1.12); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(3,22,34,.94); display: none; align-items: center; justify-content: center; padding: 4vh 4vw; }
.lightbox.open { display: flex; }
.lightbox img, .lightbox video { max-width: 100%; max-height: 88vh; border-radius: 14px; box-shadow: 0 30px 90px rgba(0,0,0,.6); }
.lb-close { position: absolute; top: 22px; right: 26px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 20px; cursor: pointer; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 22px; cursor: pointer; }
.lb-prev { left: 22px; } .lb-next { right: 22px; }

/* ---------- reviews ---------- */
.reviews-section { background: linear-gradient(180deg, var(--sand) 0%, #eaf6f8 100%); overflow: hidden; }
.reviews-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.google-badge {
  display: inline-flex; align-items: center; gap: 14px; background: #fff; border-radius: 999px;
  padding: 12px 26px; box-shadow: 0 10px 30px -12px rgba(4,38,59,.25); margin-top: 22px;
}
.google-badge .g-score { font-size: 26px; font-weight: 800; color: var(--ink); }
.google-badge .g-stars { color: #ffb400; font-size: 17px; letter-spacing: 2px; }
.google-badge .g-count { font-size: 13px; color: var(--muted); }
.reviews-marquee { margin-top: 50px; display: grid; gap: 20px; }
.rev-track { display: flex; gap: 20px; width: max-content; animation: marquee 60s linear infinite; }
.rev-track.reverse { animation-direction: reverse; animation-duration: 70s; }
.rev-track:hover { animation-play-state: paused; }
.review-card {
  width: 380px; flex: none; background: #fff; border-radius: 20px; padding: 26px 28px;
  box-shadow: 0 12px 34px -16px rgba(4,38,59,.22);
}
.review-card .rc-head { display: flex; align-items: center; gap: 13px; margin-bottom: 13px; }
.review-card .avatar { width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 16px; }
.review-card .rname { font-weight: 700; font-size: 15px; }
.review-card .rmeta { font-size: 12px; color: var(--muted); }
.review-card .rstars { color: #ffb400; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.review-card p { font-size: 14.2px; color: var(--muted); line-height: 1.62; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; margin: 50px auto 0; display: grid; gap: 14px; }
.faq-item { background: #fff; border-radius: 16px; box-shadow: 0 8px 24px -14px rgba(4,38,59,.2); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 21px 26px; font-family: var(--font-body); font-size: 16.5px; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .plus { width: 30px; height: 30px; flex: none; border-radius: 50%; background: #e6f5f8; color: var(--sea); display: grid; place-items: center; font-size: 18px; transition: transform .3s, background .3s; }
.faq-item.open .plus { transform: rotate(45deg); background: var(--coral); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: 15px; }

/* ---------- reservation CTA ---------- */
.cta-section { padding: 0 0 90px; }
.cta-box {
  border-radius: 30px; overflow: hidden; position: relative; color: #fff;
  padding: clamp(50px, 7vw, 90px) clamp(28px, 6vw, 80px); text-align: center;
  background: var(--deep);
}
.cta-box .cta-bg { position: absolute; inset: 0; }
.cta-box .cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.cta-box .cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(4,38,59,.88), rgba(14,122,158,.55)); }
.cta-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(28px, 4.4vw, 46px); font-weight: 800; line-height: 1.12; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: 17px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-phone { margin-top: 26px; font-size: 15px; color: rgba(255,255,255,.8); }
.cta-phone a { color: var(--aqua); font-weight: 800; }

/* ---------- footer ---------- */
.site-footer { background: var(--deep); color: rgba(255,255,255,.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer-grid h4 { color: #fff; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid a { display: block; padding: 5px 0; font-size: 14.5px; transition: color .25s, transform .25s; }
.footer-grid a:hover { color: var(--turq-bright); transform: translateX(4px); }
.footer-about p { font-size: 14.5px; margin-top: 14px; max-width: 320px; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 13px; }
.footer-bottom a { color: var(--turq-bright); font-weight: 700; }

/* ---------- floating WA + call ---------- */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; box-shadow: 0 14px 34px -8px rgba(37,211,102,.65);
  animation: waPulse 2.6s infinite;
}
.float-wa svg { width: 30px; height: 30px; fill: #fff; }
.float-call {
  position: fixed; bottom: 96px; right: 24px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%; background: var(--sea);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 14px 34px -8px rgba(14,122,158,.6);
  transition: transform .25s, background .25s;
}
.float-call:hover { transform: translateY(-3px); background: var(--navy); }
.float-call svg { width: 26px; height: 26px; }
@keyframes waPulse { 0%,100% { box-shadow: 0 14px 34px -8px rgba(37,211,102,.65), 0 0 0 0 rgba(37,211,102,.4); } 50% { box-shadow: 0 14px 34px -8px rgba(37,211,102,.65), 0 0 0 16px rgba(37,211,102,0); } }

/* ---------- subpage hero ---------- */
.page-hero { min-height: 62svh; display: flex; align-items: flex-end; position: relative; color: #fff; padding: 150px 0 70px; }
.page-hero .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; max-width: 720px; }
.page-hero .crumbs { font-size: 13.5px; color: rgba(255,255,255,.75); margin-bottom: 14px; }
.page-hero .crumbs a { color: var(--aqua); }
.page-hero p.lead { max-width: 640px; margin-top: 16px; color: rgba(255,255,255,.88); font-size: 17px; }

.content-cols { display: grid; grid-template-columns: 1.4fr .9fr; gap: 54px; align-items: start; }
.prose h2 { font-size: clamp(23px, 3vw, 30px); margin: 38px 0 14px; letter-spacing: -.4px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }
.prose ul { margin: 0 0 16px; display: grid; gap: 9px; }
.prose li { display: flex; gap: 11px; color: var(--muted); font-size: 15.5px; }
.prose li::before {
  content: ""; width: 15px; height: 15px; flex: none; margin-top: 4px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230e7a9e" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="5" r="3"/><line x1="12" x2="12" y1="22" y2="8"/><path d="M5 12H2a10 10 0 0 0 20 0h-3"/></svg>') center/contain no-repeat;
}
.side-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; position: sticky; top: 100px; }
.side-card img { height: 190px; width: 100%; object-fit: cover; }
.side-card .sc-body { padding: 26px; }
.side-card h3 { font-size: 19px; margin-bottom: 8px; }
.side-card p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.side-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.side-links { margin-top: 22px; background: #eaf6f8; border-radius: 16px; padding: 20px 24px; }
.side-links h4 { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sea); margin-bottom: 10px; }
.side-links a { display: block; padding: 6px 0; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.side-links a:hover { color: var(--coral); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .route-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .route-grid::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  section { padding: 66px 0; }
  .about-grid, .content-cols { grid-template-columns: 1fr; gap: 44px; }
  .about-collage { max-width: 480px; margin: 0 auto; }
  .menu-grid { grid-template-columns: 1fr; }
  .sup-inner { grid-template-columns: 1fr; }
  .sup-img { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .side-card { position: static; }
}
@media (max-width: 640px) {
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .feature-list { grid-template-columns: 1fr; }
  .review-card { width: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-stats { gap: 9px; }
  .stat-chip { min-width: 0; flex: 1 1 40%; padding: 12px 14px; }
}
