/* ==========================================================================
   Tuna Fishing Turkey — landing page styles
   Ported from the Claude Design prototype (Oswald + Manrope, teal accent).
   ========================================================================== */

:root { --accent: #2FC7C9; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #03101b;
  font-family: 'Manrope', system-ui, sans-serif;
  color: #e8f1f5;
  overflow-x: hidden;
}
::selection { background: rgba(47,199,201,0.35); color: #fff; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }
img { max-width: 100%; }

@keyframes tftBob   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes tftPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes tftCue   { 0% { opacity: 0; transform: translateY(-5px); } 45% { opacity: 1; } 100% { opacity: 0; transform: translateY(9px); } }

/* Reveal-on-scroll (driven by main.js) */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .9s cubic-bezier(.16,.8,.3,1), transform .9s cubic-bezier(.16,.8,.3,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
/* Hero above-the-fold: LCP'yi (hero başlığı) reveal gizlemesin — anında görünür kalsın */
.hero [data-reveal] { opacity: 1 !important; transform: none !important; }

/* Image slot — replaces the prototype's <image-slot> custom element */
.img-slot { display: block; position: relative; overflow: hidden; background: rgba(0,0,0,.2); }
.img-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; padding: 0 clamp(16px,4vw,54px);
  background: linear-gradient(to bottom, rgba(2,8,16,0.65), rgba(2,8,16,0));
  border-bottom: none;
  transition: background .4s ease, box-shadow .4s ease;
}
.site-header.scrolled {
  background: rgba(3,15,26,0.94);
  box-shadow: 0 12px 34px rgba(0,0,0,0.4);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { height: 56px; width: auto; display: block; }
.drawer-logo { height: 46px; width: auto; display: block; }
.footer-logo { height: 92px; width: auto; display: block; filter: grayscale(1); opacity: .9; transition: filter .3s, opacity .3s; }
.footer-logo:hover { filter: grayscale(0); opacity: 1; }
.brand-mark {
  width: 50px; height: 50px; border: 1.5px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--accent); flex: none;
  background: radial-gradient(circle at 50% 35%, #1a3a5c, #091d31);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 4px 14px rgba(0,0,0,.35);
  overflow: hidden;
}
.brand-mark-img { height: 40px; width: auto; display: block; }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'Oswald'; font-weight: 700; letter-spacing: .18em; font-size: 16px; color: #fff; text-transform: uppercase; }
.brand-sub  { font-family: 'Oswald'; font-weight: 400; letter-spacing: .42em; font-size: 9px; color: var(--accent); text-transform: uppercase; margin-top: 4px; }

.nav { display: none; align-items: center; gap: 30px; }
.nav-link {
  font-family: 'Oswald'; font-weight: 500; letter-spacing: .12em; font-size: 13.5px;
  text-transform: uppercase; text-decoration: none; color: #cdd9df; transition: color .25s;
}
.nav-link:hover { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; align-items: center; border: 1px solid rgba(47,199,201,0.32); border-radius: 999px; overflow: hidden; }
.lang-btn {
  border: none; padding: 8px 13px; font-family: 'Oswald'; font-weight: 600;
  letter-spacing: .05em; font-size: 12.5px; background: transparent; color: #cdd9df;
  text-decoration: none; display: inline-block;
}
.lang-btn.active { background: var(--accent); color: #04121d; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #04121d;
  font-family: 'Oswald'; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  font-size: 13px; padding: 11px 18px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 6px 18px rgba(37,211,102,0.28);
}
.header-wa { display: none; }

.hamburger {
  width: 42px; height: 42px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(47,199,201,0.3); border-radius: 10px;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--accent); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 74px; left: 0; right: 0; z-index: 55;
  background: rgba(3,16,27,0.98); border-bottom: 1px solid rgba(47,199,201,0.2);
  padding: 18px clamp(16px,4vw,54px) 26px; backdrop-filter: blur(8px);
  display: none; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-family: 'Oswald'; font-weight: 500; letter-spacing: .1em; font-size: 17px;
  text-transform: uppercase; text-decoration: none; color: #e8f1f5; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-wa {
  margin-top: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: #25D366; color: #04121d; font-family: 'Oswald'; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; font-size: 15px; padding: 14px 18px; border-radius: 12px; text-decoration: none;
}

@media (min-width: 920px) {
  .nav { display: flex; }
  .header-wa { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ===================== HERO ===================== */
.hero { position: relative; width: 100%; height: 100vh; min-height: 600px; max-height: 1100px; overflow: hidden; background: #03101b; }
.hero-bg { position: absolute; inset: -6% 0 0 0; }
.hero-canvas { display: block; width: 100%; height: 100%; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s ease; }
.hero-overlay-1 { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to bottom, rgba(3,16,27,0.35) 0%, rgba(3,16,27,0) 28%, rgba(3,16,27,0.15) 55%, rgba(3,16,27,0.86) 100%); }
.hero-overlay-2 { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 80% at 50% 42%, rgba(0,0,0,0) 55%, rgba(2,8,15,0.55) 100%); }
.hero-content {
  position: absolute; left: 0; right: 0; bottom: 0; top: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 90px clamp(20px,5vw,40px) 80px;
}
.kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.kicker-line { width: 34px; height: 1px; background: var(--accent); opacity: .7; }
.kicker-text { font-family: 'Oswald'; font-weight: 500; letter-spacing: .34em; text-transform: uppercase; font-size: clamp(10px,1.4vw,13px); color: var(--accent); }
.hero-title { margin: 0; font-family: 'Oswald'; font-weight: 700; text-transform: uppercase; line-height: 1.12; letter-spacing: 0.01em; font-size: clamp(42px,7.4vw,104px); color: #fff; text-shadow: 0 8px 40px rgba(0,0,0,0.5); max-width: min(20ch, 92vw); }
.hero-slogan { margin: 26px auto 0; max-width: 620px; font-size: clamp(15px,2vw,20px); line-height: 1.6; color: #d2dee5; text-wrap: pretty; }
.hero-cta-row { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 11px; background: #25D366; color: #04121d;
  font-family: 'Oswald'; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  font-size: clamp(14px,1.7vw,17px); padding: 16px 30px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 12px 34px rgba(37,211,102,0.32); transition: transform .25s;
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.06); color: #fff;
  font-family: 'Oswald'; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  font-size: clamp(14px,1.7vw,17px); padding: 16px 28px; border-radius: 999px; text-decoration: none;
  border: 1px solid rgba(47,199,201,0.4); backdrop-filter: blur(4px); transition: background .25s, border-color .25s;
}
.btn-ghost:hover { background: rgba(47,199,201,0.14); border-color: var(--accent); }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: #9fb4c0; }
.scroll-cue span { font-family: 'Oswald'; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; font-size: 10px; }
.scroll-cue svg { animation: tftCue 1.8s ease-in-out infinite; }

/* ===================== SHARED SECTION BITS ===================== */
.section { position: relative; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-head { text-align: center; }
.section-kicker { font-family: 'Oswald'; font-weight: 500; letter-spacing: .32em; text-transform: uppercase; font-size: 13px; color: var(--accent); }
.section-title { font-family: 'Oswald'; font-weight: 700; text-transform: uppercase; color: #fff; }
.section-sub { color: #9fb4c0; }

/* ===================== ABOUT ===================== */
.about { scroll-margin-top: 84px; padding: clamp(70px,9vw,128px) clamp(20px,5vw,72px); background: linear-gradient(180deg, #03101b 0%, #061a2c 100%); }
.about-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px,100%),1fr)); gap: clamp(36px,5vw,72px); align-items: center; }
.about .section-kicker { margin-bottom: 16px; display: block; }
.about-title { margin: 0 0 22px; font-family: 'Oswald'; font-weight: 700; text-transform: uppercase; line-height: 1.05; font-size: clamp(32px,4.6vw,58px); color: #fff; }
.about-body { margin: 0 0 34px; font-size: clamp(15px,1.7vw,18px); line-height: 1.7; color: #b9cad3; max-width: 54ch; text-wrap: pretty; }
.about-intro { align-self: center; }
.points { max-width: 1180px; margin: clamp(34px,5vw,56px) auto 0; display: grid; grid-template-columns: repeat(var(--about-cols, 4), 1fr); gap: 22px; }
@media (max-width: 900px) { .points { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .points { grid-template-columns: 1fr; } }
.point { border-left: 2px solid rgba(47,199,201,0.45); padding-left: 16px; }
.points .point:first-child { border-left-color: transparent; }
.point-title { font-family: 'Oswald'; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: 16px; color: #fff; margin-bottom: 7px; }
.point-desc { font-size: 14px; line-height: 1.55; color: #9fb4c0; }

.about-media { position: relative; }
.about-media-frame { position: relative; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.5); border: 1px solid rgba(47,199,201,0.18); }
.about-media { max-width: 460px; justify-self: end; width: 100%; }
.about-media-frame .img-slot { width: 100%; height: clamp(240px,26vw,340px); }
.about-badge { position: absolute; left: -22px; bottom: -26px; background: rgba(3,16,27,0.92); border: 1px solid rgba(47,199,201,0.3); border-radius: 12px; padding: 18px 22px; backdrop-filter: blur(6px); box-shadow: 0 18px 40px rgba(0,0,0,0.4); }
.about-badge-num { font-family: 'Oswald'; font-weight: 700; font-size: 34px; color: var(--accent); line-height: 1; }
.about-badge-label { font-family: 'Oswald'; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; font-size: 11px; color: #cdd9df; margin-top: 4px; }
@media (max-width: 600px) { .about-badge { left: 12px; bottom: -16px; } }

.stats { max-width: 1180px; margin: clamp(48px,6vw,80px) auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 1px; background: rgba(47,199,201,0.18); border: 1px solid rgba(47,199,201,0.18); border-radius: 14px; overflow: hidden; }
.stat { background: #04141f; padding: 30px 22px; text-align: center; }
.stat-n { font-family: 'Oswald'; font-weight: 700; font-size: clamp(30px,4vw,46px); color: #fff; line-height: 1; }
.stat-l { font-family: 'Oswald'; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; font-size: 11px; color: var(--accent); margin-top: 9px; }

/* ===================== TOURS ===================== */
.tours { scroll-margin-top: 84px; padding: clamp(70px,9vw,128px) clamp(20px,5vw,72px); background: #03101b; }
.tours .section-head { margin-bottom: clamp(40px,5vw,64px); }
.tours .section-kicker { margin-bottom: 14px; display: block; }
.tours .section-title { margin: 0 0 16px; line-height: 1; font-size: clamp(32px,5vw,60px); }
.tours .section-sub { margin: 0 auto; max-width: 56ch; font-size: clamp(15px,1.7vw,18px); line-height: 1.65; }
.tour-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 620px) { .tour-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .tour-grid { grid-template-columns: repeat(2, 1fr); } }
.tour-card { display: flex; flex-direction: column; background: linear-gradient(180deg, #061f33 0%, #04151f 100%); border: 1px solid rgba(47,199,201,0.16); border-radius: 16px; overflow: hidden; box-shadow: 0 18px 44px rgba(0,0,0,0.4); transition: transform .35s ease, border-color .35s ease; }
.tour-card:hover { border-color: rgba(47,199,201,0.45); }
.tour-media { position: relative; height: clamp(230px, 23vw, 310px); overflow: hidden; }
.tour-media .img-slot { width: 100%; height: 100%; }
.tour-badge { position: absolute; top: 14px; left: 14px; background: rgba(3,16,27,0.85); border: 1px solid rgba(47,199,201,0.4); color: var(--accent); font-family: 'Oswald'; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: 11px; padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.tour-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.tour-name { margin: 0 0 12px; font-family: 'Oswald'; font-weight: 600; text-transform: uppercase; letter-spacing: .02em; font-size: 22px; color: #fff; line-height: 1.05; }
.tour-desc { margin: 0 0 18px; font-size: 14.5px; line-height: 1.6; color: #a7bac4; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; min-height: 4.8em; }
.tour-includes { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.tour-inc { display: flex; align-items: center; gap: 11px; font-size: 13.5px; color: #cdd9df; }
.tour-inc-dot { flex: none; width: 7px; height: 7px; background: var(--accent); transform: rotate(45deg); }
.btn-wa-block { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: #25D366; color: #04121d; font-family: 'Oswald'; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; font-size: 14px; padding: 13px 18px; border-radius: 10px; text-decoration: none; transition: filter .25s; }
.btn-wa-block:hover { filter: brightness(1.08); }

/* ===================== RECORDS ===================== */
.records { padding: clamp(64px,8vw,110px) clamp(20px,5vw,72px); background: linear-gradient(180deg, #03101b 0%, #05192a 100%); border-top: 1px solid rgba(47,199,201,0.1); border-bottom: 1px solid rgba(47,199,201,0.1); }
.records .section-head { margin-bottom: clamp(38px,5vw,58px); }
.records .section-kicker { margin-bottom: 14px; display: block; }
.records .section-title { margin: 0 0 14px; line-height: 1; font-size: clamp(30px,4.6vw,54px); }
.records .section-sub { margin: 0 auto; max-width: 50ch; font-size: clamp(14px,1.6vw,17px); }
.record-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; }
.record-card { text-align: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(47,199,201,0.18); border-radius: 14px; padding: 34px 18px; }
.record-weight { font-family: 'Oswald'; font-weight: 700; font-size: clamp(38px,5vw,54px); color: var(--accent); line-height: 1; }
.record-fish { font-family: 'Oswald'; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 18px; color: #fff; margin-top: 12px; }
.record-note { font-size: 13px; color: #8aa0ac; margin-top: 8px; }

/* ===================== GALLERY ===================== */
.gallery { scroll-margin-top: 84px; padding: clamp(70px,9vw,128px) clamp(20px,5vw,72px); background: #03101b; }
.gallery-inner { max-width: 1240px; margin: 0 auto; }
.gallery .section-head { margin-bottom: clamp(40px,5vw,60px); }
.gallery .section-kicker { margin-bottom: 14px; display: block; }
.gallery .section-title { margin: 0 0 14px; line-height: 1; font-size: clamp(32px,5vw,60px); }
.gallery .section-sub { margin: 0 auto; max-width: 52ch; font-size: clamp(14px,1.6vw,17px); }
.masonry { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 720px) { .masonry { grid-template-columns: repeat(var(--gallery-cols, 4), 1fr); } }
.masonry .img-slot { width: 100%; aspect-ratio: 4 / 5; border-radius: 12px; }

/* ===================== YOUTUBE SHORTS ===================== */
.shorts { padding: clamp(70px,9vw,128px) clamp(20px,5vw,72px); background: linear-gradient(180deg, #03101b 0%, #061521 100%); }
.shorts .section-head { margin-bottom: clamp(36px,5vw,52px); }
.shorts .section-kicker { margin-bottom: 14px; display: inline-flex; align-items: center; gap: 8px; }
.shorts-kicker svg { color: #FF0000; }
.shorts .section-title { margin: 0 0 14px; line-height: 1; font-size: clamp(30px,4.6vw,54px); }
.shorts .section-sub { margin: 0 auto; max-width: 52ch; font-size: clamp(14px,1.6vw,17px); }
.shorts-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(168px,100%), 1fr)); gap: 16px; justify-content: center; }
.short-card { position: relative; width: 100%; aspect-ratio: 9 / 16; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 14px 34px rgba(0,0,0,0.4); display: block; text-decoration: none; }
.short-card .img-slot { width: 100%; height: 100%; }
.short-card img { transition: transform .4s ease; }
.short-card:hover img { transform: scale(1.05); }
.short-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%); }
.short-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #FF0000; color: #fff; padding-left: 3px; box-shadow: 0 6px 22px rgba(255,0,0,0.45); transition: transform .25s; }
.short-card:hover .short-play { transform: translate(-50%,-50%) scale(1.08); }
.short-badge { position: absolute; left: 10px; bottom: 10px; display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px; border-radius: 6px; background: rgba(0,0,0,0.6); color: #fff; font-family: 'Oswald'; font-weight: 600; letter-spacing: .04em; font-size: 11px; backdrop-filter: blur(3px); }
.short-badge svg { color: #FF0000; }
.shorts-cta { text-align: center; margin-top: clamp(28px,4vw,40px); }
.btn-youtube { display: inline-flex; align-items: center; gap: 10px; background: #FF0000; color: #fff; font-family: 'Oswald'; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; font-size: clamp(14px,1.7vw,16px); padding: 15px 30px; border-radius: 999px; text-decoration: none; box-shadow: 0 12px 30px rgba(255,0,0,0.3); transition: filter .25s; }
.btn-youtube:hover { filter: brightness(1.08); }
/* Mobilde Shorts: yatay kaydırma yerine 2'li grid */
@media (max-width: 640px) {
  .shorts-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; overflow-x: visible; scroll-snap-type: none; padding: 0; }
  .short-card { flex: none; width: 100%; }
}
.theme-light .shorts { background: linear-gradient(180deg, #eef3f3 0%, #e3edee 100%); }

/* ===================== SEASON ===================== */
.season { scroll-margin-top: 84px; padding: clamp(70px,9vw,128px) clamp(20px,5vw,72px); background: linear-gradient(180deg, #03101b 0%, #061a2c 100%); }
.season-inner { max-width: 1140px; margin: 0 auto; }
.season .section-head { margin-bottom: clamp(38px,5vw,56px); }
.season .section-kicker { margin-bottom: 14px; display: block; }
.season .section-title { margin: 0 0 14px; line-height: 1; font-size: clamp(30px,4.6vw,54px); }
.season .section-sub { margin: 0 auto; max-width: 54ch; font-size: clamp(14px,1.6vw,17px); }
.season-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(47,199,201,0.16); border-radius: 16px; padding: clamp(20px,3vw,34px); }
/* Sezon: ay kartları (kapalı aylar admin'den gizlenir) */
/* Esnek + ORTALI: kaç aktif ay olursa olsun kartlar simetrik, son satır ortalanır */
.season-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.smc { flex: 0 0 158px; position: relative; border-radius: 14px; padding: 16px 16px 15px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); overflow: hidden; }
/* Hover efekti — yalnız hover destekleyen cihazlarda (desktop), POZISYON kaydırması YOK (lift'siz) */
@media (hover: hover) {
  .smc { transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease; }
  .smc:hover { border-color: rgba(47,199,201,0.5); background-color: rgba(255,255,255,0.06); box-shadow: 0 6px 22px rgba(0,0,0,0.28); }
  .theme-light .smc:hover { background-color: #fff; border-color: rgba(47,199,201,0.5); box-shadow: 0 6px 22px rgba(20,45,52,0.10); }
}
@media (max-width: 540px) { .smc { flex: 0 0 calc(50% - 6px); } }
.smc::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
.smc.level-1::before { background: linear-gradient(180deg, #3a6e84, #21495a); }
.smc.level-2::before { background: linear-gradient(180deg, #4aa6c0, #327c93); }
.smc.level-3::before { background: linear-gradient(180deg, #6fe6e8, var(--accent)); }
.smc-month { font-family: 'Oswald'; font-weight: 600; letter-spacing: .05em; font-size: 18px; color: #fff; text-transform: uppercase; }
.smc-fish { font-size: 12.5px; color: #9fb3bd; margin-top: 5px; line-height: 1.3; min-height: 1.3em; }
/* Aktivite seviyesi: 3 segmentli ölçer — dokunmadan anlaşılır, mobil-dostu (hover yok) */
.smc-meter { display: flex; gap: 4px; margin-top: 13px; }
.smc-meter span { flex: 1; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.12); }
.smc.level-1 .smc-meter span:nth-child(-n+1),
.smc.level-2 .smc-meter span:nth-child(-n+2),
.smc.level-3 .smc-meter span:nth-child(-n+3) { background: var(--accent); }
.smc-label { margin-top: 9px; font-family: 'Oswald'; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; font-size: 10.5px; color: #9fb3bd; }
/* Peak aylar her zaman belirgin (hover'a gerek yok) */
.smc--peak { background: linear-gradient(180deg, rgba(47,199,201,0.13), rgba(47,199,201,0.02)); border-color: rgba(47,199,201,0.32); }
.smc--peak .smc-month, .smc--peak .smc-label { color: var(--accent); }
.smc--peak .smc-meter span { box-shadow: 0 0 7px rgba(47,199,201,0.45); }
/* Mevcut ay — dile bağımsız teal halka */
.smc.is-now { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 8px 26px rgba(47,199,201,0.16); }
.smc.is-now .smc-month { color: var(--accent); }
.legend { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }
.legend-item { display: flex; align-items: center; gap: 8px; }
.legend-swatch { width: 14px; height: 14px; border-radius: 3px; }
.legend-swatch.level-1 { background: linear-gradient(180deg, #3a6e84, #21495a); }
.legend-swatch.level-2 { background: linear-gradient(180deg, #4aa6c0, #327c93); }
.legend-swatch.level-3 { background: linear-gradient(180deg, #6fe6e8, var(--accent)); }
.legend-label { font-family: 'Oswald'; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; font-size: 12px; color: #cdd9df; }

/* ===================== TESTIMONIALS ===================== */
.testi { padding: clamp(70px,9vw,120px) clamp(20px,5vw,72px); background: #03101b; }
.testi .section-head { margin-bottom: clamp(40px,5vw,58px); }
.testi .section-kicker { margin-bottom: 14px; display: block; }
.testi .section-title { margin: 0; line-height: 1; font-size: clamp(30px,4.6vw,54px); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px,100%),1fr)); gap: 22px; }
.testi-card { display: flex; flex-direction: column; background: linear-gradient(180deg, #061f33 0%, #04151f 100%); border: 1px solid rgba(47,199,201,0.16); border-radius: 16px; padding: 30px 28px; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--accent); }
.testi-quote { margin: 0 0 22px; font-size: 16px; line-height: 1.65; color: #dbe6ec; font-style: italic; text-wrap: pretty; }
.testi-author { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: rgba(47,199,201,0.16); border: 1px solid rgba(47,199,201,0.4); display: flex; align-items: center; justify-content: center; font-family: 'Oswald'; font-weight: 600; color: var(--accent); font-size: 17px; }
.testi-name { font-family: 'Oswald'; font-weight: 600; letter-spacing: .04em; font-size: 15px; color: #fff; }
.testi-country { font-size: 12.5px; color: #8aa0ac; }

/* Testimonials carousel */
.testi-carousel { position: relative; }
.testi-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; padding: 4px 2px 10px; scrollbar-width: none; }
.testi-track::-webkit-scrollbar { display: none; }
.testi-track .testi-card { flex: 0 0 clamp(280px, 33%, 380px); scroll-snap-align: start; }
.carousel-nav { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.carousel-btn { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(47,199,201,0.3); color: var(--accent); cursor: pointer; transition: background .2s, border-color .2s, opacity .2s; }
.carousel-btn:hover { background: rgba(47,199,201,0.14); border-color: var(--accent); }
.carousel-btn:disabled { opacity: .3; cursor: default; }
.theme-light .carousel-btn { background: rgba(20,45,52,0.05); }

/* ===================== FAQ ===================== */
.faq { scroll-margin-top: 84px; padding: clamp(70px,9vw,120px) clamp(20px,5vw,72px); background: linear-gradient(180deg, #03101b 0%, #05192a 100%); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq .section-head { margin-bottom: clamp(36px,5vw,52px); }
.faq .section-kicker { margin-bottom: 14px; display: block; }
.faq .section-title { margin: 0; line-height: 1; font-size: clamp(30px,4.6vw,54px); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(47,199,201,0.16); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; padding: 20px 22px; text-align: left; color: #fff; }
.faq-q-text { font-family: 'Oswald'; font-weight: 500; letter-spacing: .02em; font-size: clamp(15px,1.9vw,19px); }
.faq-icon { flex: none; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 22px; transition: transform .35s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { margin: 0; padding: 0 22px 22px; font-size: 15px; line-height: 1.65; color: #a7bac4; text-wrap: pretty; }

/* ===================== CLOSING CTA ===================== */
.closing { scroll-margin-top: 84px; position: relative; overflow: hidden; padding: clamp(90px,12vw,170px) clamp(20px,5vw,72px); }
.closing-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.closing-overlay-1 { position: absolute; inset: 0; background: linear-gradient(180deg, #03101b 0%, rgba(4,21,33,0.78) 22%, rgba(3,18,28,0.72) 60%, #03101b 100%); }
.closing-overlay-2 { position: absolute; inset: 0; background: radial-gradient(90% 70% at 50% 45%, rgba(11,60,93,0.45) 0%, rgba(3,16,27,0) 70%); }
.closing-card { position: relative; max-width: 880px; margin: 0 auto; text-align: center; padding: clamp(38px,5vw,64px) clamp(24px,4vw,56px); border: 1px solid rgba(47,199,201,0.28); border-radius: 18px; background: rgba(3,14,24,0.42); backdrop-filter: blur(3px); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.closing-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.closing-kicker .kicker-line { width: 30px; opacity: 1; }
.closing-title { margin: 0 0 20px; font-family: 'Oswald'; font-weight: 700; text-transform: uppercase; line-height: 1.05; font-size: clamp(38px,6.6vw,84px); color: #fff; text-shadow: 0 8px 40px rgba(0,0,0,0.55); }
.closing-sub { margin: 0 auto 38px; max-width: 50ch; font-size: clamp(16px,2vw,20px); line-height: 1.65; color: #dbe6ec; text-wrap: pretty; }
.closing-cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn-primary-lg { display: inline-flex; align-items: center; gap: 12px; background: #25D366; color: #04121d; font-family: 'Oswald'; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; font-size: clamp(15px,2vw,19px); padding: 18px 38px; border-radius: 999px; text-decoration: none; box-shadow: 0 16px 44px rgba(37,211,102,0.36); transition: transform .25s; }
.btn-primary-lg:hover { filter: brightness(1.06); }
.btn-ghost-lg { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.06); color: #fff; font-family: 'Oswald'; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: clamp(15px,2vw,18px); padding: 18px 32px; border-radius: 999px; text-decoration: none; border: 1px solid rgba(47,199,201,0.4); transition: background .25s, border-color .25s; }
.btn-ghost-lg:hover { background: rgba(47,199,201,0.14); border-color: var(--accent); }

/* ===================== FOOTER ===================== */
.footer { position: relative; overflow: hidden; background: linear-gradient(180deg, rgba(7,24,43,0.90) 0%, rgba(4,17,29,0.95) 55%, rgba(3,16,27,0.98) 100%), url('../img/boat.jpg') center / cover no-repeat; border-top: 1px solid rgba(47,199,201,0.18); }
.footer::before { content: ""; position: absolute; top: -150px; left: 50%; transform: translateX(-50%); width: 820px; max-width: 130%; height: 340px; background: radial-gradient(ellipse at center, rgba(47,199,201,0.10), rgba(47,199,201,0) 70%); pointer-events: none; }
.footer > * { position: relative; z-index: 1; }
.footer-col-label::after { content: ""; display: block; width: 26px; height: 2px; margin-top: 9px; background: var(--accent); border-radius: 2px; opacity: .55; }
.footer-top { max-width: 1180px; margin: 0 auto; padding: clamp(38px,5vw,58px) clamp(20px,5vw,72px); display: flex; flex-wrap: wrap; gap: 22px 40px; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-top-kicker { font-family: 'Oswald'; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; font-size: 12px; color: var(--accent); margin-bottom: 10px; }
.footer-top-title { font-family: 'Oswald'; font-weight: 700; text-transform: uppercase; font-size: clamp(24px,3.6vw,42px); color: #fff; line-height: 1; }
.footer-top-wa { display: inline-flex; align-items: center; gap: 11px; background: #25D366; color: #04121d; font-family: 'Oswald'; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; font-size: 15px; padding: 15px 28px; border-radius: 999px; text-decoration: none; box-shadow: 0 12px 30px rgba(37,211,102,0.3); transition: transform .25s; }
.footer-top-wa:hover { filter: brightness(1.06); }
.footer-grid { max-width: 1480px; margin: 0 auto; padding: clamp(42px,5vw,60px) clamp(24px,6vw,80px) clamp(28px,4vw,40px); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand-col { min-width: 190px; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand-mark { width: 44px; height: 44px; border: 1.5px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); flex: none; }
.footer-brand-name { font-family: 'Oswald'; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 18px; color: #fff; line-height: 1.1; }
.footer-tagline { margin: 0 0 12px; max-width: 32ch; font-size: 14px; line-height: 1.6; color: #8aa0ac; }
.footer-captain { font-family: 'Oswald'; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; font-size: 12.5px; color: var(--accent); margin-bottom: 18px; }
.social { display: flex; flex-wrap: wrap; gap: 10px; }
.social a { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(47,199,201,0.25); display: flex; align-items: center; justify-content: center; color: #fff; transition: border-color .25s; }
.social a:hover { border-color: var(--accent); }
.social a.social-wa { background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.4); color: #25D366; transition: background .25s; }
.social a.social-wa:hover { background: rgba(37,211,102,0.22); }
.footer-col-label { font-family: 'Oswald'; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; font-size: 12px; color: var(--accent); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { text-decoration: none; color: #cdd9df; font-size: 14.5px; transition: color .25s; }
.footer-links a:hover { color: #fff; }
.footer-contact a { color: #cdd9df; text-decoration: none; font-size: 14.5px; }
.footer-contact .with-icon { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.footer-contact .with-icon.email { margin-bottom: 18px; }
.footer-hours { font-size: 13.5px; color: #9fb4c0; line-height: 1.5; margin-bottom: 20px; }
/* Footer responsive: 4 kolon → 2 → 1 */
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } .footer-brand-col { min-width: 0; } }
.footer-location { display: flex; align-items: flex-start; gap: 9px; color: #cdd9df; font-size: 14.5px; line-height: 1.55; text-decoration: none; }
.footer-bottom { max-width: 1480px; margin: 0 auto; padding: 22px clamp(24px,6vw,80px) 30px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center; }
.footer-bottom div { font-size: 12.5px; color: #6f8693; }

/* ===================== FLOATING WHATSAPP ===================== */
.fab-wa { position: fixed; right: clamp(16px,3vw,28px); bottom: clamp(16px,3vw,28px); z-index: 70; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.4); animation: tftPulse 2.4s ease-out infinite; transition: transform .25s; }
.fab-wa:hover { filter: brightness(1.06); }

/* ===================== reCAPTCHA ROZETİ ===================== */
/* Sağ altta WhatsApp FAB ile üst üste biniyordu. Google, rozet gizlenirse
   bilgilendirme metninin kullanıcı akışında gösterilmesini şart koşar —
   metin iletişim formunun altında (.cf-recaptcha-note) gösterilir. */
.grecaptcha-badge { visibility: hidden !important; }
.cf-recaptcha-note { margin-top: 14px; font-size: 12px; line-height: 1.6; color: #6f8693; }
.cf-recaptcha-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ===================== ÇEREZ BİLDİRİMİ ===================== */
.cookie-note { position: fixed; left: clamp(16px,3vw,28px); bottom: clamp(16px,3vw,28px); z-index: 69; max-width: 360px; display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 14px; background: rgba(6,26,40,0.96); border: 1px solid rgba(47,199,201,0.25); box-shadow: 0 14px 40px rgba(0,0,0,0.45); color: #cfe0e6; font-size: .85rem; line-height: 1.55; }
.cookie-note[hidden] { display: none !important; } /* KRİTİK: display:flex, UA [hidden] kuralını ezer — bu satır olmadan banner herkese görünür */
.cookie-note-text { margin: 0; }
.cookie-note-link { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cookie-note-btn { flex: 0 0 auto; padding: 9px 20px; border: 0; border-radius: 999px; background: var(--accent); color: #04222c; font-weight: 700; font-size: .82rem; cursor: pointer; }
.cookie-note-btn:hover { filter: brightness(1.08); }
.cookie-note.is-in { animation: cookieIn .35s ease-out; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (max-width: 640px) { .cookie-note { left: 10px; right: 86px; bottom: 12px; max-width: none; } } /* right:86px → FAB koridoru (16+60px) boş kalır */

/* ===================== MULTI-PAGE: HEADER STATES ===================== */
.nav-link.active { color: var(--accent); font-weight: 600; }
.site-header.solid { background: rgba(3,15,26,0.94); box-shadow: 0 12px 34px rgba(0,0,0,0.4); }

/* ===================== SUB-PAGE HERO ===================== */
.subhero { position: relative; width: 100%; display: flex; align-items: center; overflow: hidden; min-height: clamp(380px,54vh,560px); padding: 120px clamp(20px,5vw,72px) clamp(50px,6vw,80px); }
.subhero.gallery { min-height: clamp(340px,48vh,500px); padding-bottom: clamp(46px,6vw,76px); }
.subhero.contact { min-height: clamp(420px,62vh,620px); padding-bottom: clamp(60px,7vw,90px); }
.subhero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.subhero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(3,16,27,0.55) 0%, rgba(3,16,27,0.5) 40%, rgba(3,16,27,0.94) 100%); }
.subhero-inner { position: relative; margin: 0 auto; width: 100%; max-width: 1180px; }
.subhero.gallery .subhero-inner { max-width: 1240px; }
.subhero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.subhero-kicker .kicker-line { width: 30px; opacity: 1; }
.subhero-title { margin: 0; font-family: 'Oswald'; font-weight: 700; text-transform: uppercase; line-height: 1.05; font-size: clamp(40px,7vw,92px); color: #fff; text-shadow: 0 8px 40px rgba(0,0,0,0.5); }
.subhero-sub { margin: 22px 0 0; max-width: 58ch; font-size: clamp(15px,2vw,20px); line-height: 1.6; color: #d2dee5; text-wrap: pretty; }
.subhero.gallery .subhero-sub, .subhero.contact .subhero-sub { max-width: 56ch; }

/* ===================== TOURS: DETAIL ROWS ===================== */
.tours-detail { padding: clamp(56px,7vw,104px) clamp(20px,5vw,72px); background: linear-gradient(180deg, #03101b 0%, #061a2c 100%); }
.tour-details { max-width: 1180px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(40px,6vw,80px); }
.tour-detail { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.tour-detail.reverse { grid-template-columns: 1fr 1.05fr; }
.tour-detail.reverse .tour-detail-media { order: 2; }
.tour-detail-media { position: relative; }
.tour-detail-frame { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 28px 64px rgba(0,0,0,0.5); border: 1px solid rgba(47,199,201,0.18); }
.tour-detail-frame .img-slot { width: 100%; height: clamp(280px,36vw,420px); }
.tour-detail-badge { position: absolute; top: 16px; left: 16px; background: rgba(3,16,27,0.85); border: 1px solid rgba(47,199,201,0.4); color: var(--accent); font-family: 'Oswald'; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; padding: 7px 14px; border-radius: 999px; backdrop-filter: blur(4px); }
.tour-tag { font-family: 'Oswald'; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; font-size: 12px; color: var(--accent); margin-bottom: 12px; }
.tour-detail-title { margin: 0 0 16px; font-family: 'Oswald'; font-weight: 700; text-transform: uppercase; line-height: 1; font-size: clamp(28px,4vw,46px); color: #fff; }
.tour-detail-desc { margin: 0 0 24px; font-size: clamp(15px,1.7vw,17px); line-height: 1.7; color: #b9cad3; max-width: 52ch; text-wrap: pretty; }
.facts { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.fact { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(47,199,201,0.18); border-radius: 999px; padding: 8px 15px; }
.fact-k { font-family: 'Oswald'; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: 11px; color: var(--accent); }
.fact-v { font-size: 13px; color: #dbe6ec; }
.detail-includes { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 9px 22px; margin-bottom: 28px; }
.detail-inc { display: flex; align-items: center; gap: 11px; font-size: 14px; color: #cdd9df; }
.btn-primary-pill { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #04121d; font-family: 'Oswald'; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; font-size: 15px; padding: 14px 26px; border-radius: 999px; text-decoration: none; box-shadow: 0 12px 30px rgba(37,211,102,0.3); transition: transform .25s; }
.btn-primary-pill:hover { filter: brightness(1.06); }
@media (max-width: 760px) {
  .tour-detail, .tour-detail.reverse { grid-template-columns: 1fr; }
  .tour-detail.reverse .tour-detail-media { order: 0; }
}

/* ===================== TOURS: HOW IT WORKS ===================== */
.how { padding: clamp(56px,7vw,100px) clamp(20px,5vw,72px); background: #03101b; border-top: 1px solid rgba(47,199,201,0.1); }
.how-inner { max-width: 1180px; margin: 0 auto; }
.how .section-head { margin-bottom: clamp(36px,4vw,56px); }
.how .section-kicker { margin-bottom: 12px; display: block; }
.how .section-title { margin: 0; line-height: 1; font-size: clamp(28px,4vw,50px); }
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
.how-card { position: relative; background: linear-gradient(180deg, #061f33 0%, #04151f 100%); border: 1px solid rgba(47,199,201,0.16); border-radius: 16px; padding: 30px 26px; }
.how-num { font-family: 'Oswald'; font-weight: 700; font-size: 42px; color: rgba(47,199,201,0.32); line-height: 1; margin-bottom: 14px; }
.how-title { font-family: 'Oswald'; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 18px; color: #fff; margin-bottom: 9px; }
.how-desc { font-size: 14px; line-height: 1.6; color: #9fb4c0; }

/* ===================== TOURS: WHAT TO BRING ===================== */
.bring { padding: clamp(56px,7vw,100px) clamp(20px,5vw,72px); background: linear-gradient(180deg, #03101b 0%, #05192a 100%); }
.bring-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px,100%),1fr)); gap: clamp(28px,4vw,52px); align-items: center; }
.bring-media { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 28px 64px rgba(0,0,0,0.5); border: 1px solid rgba(47,199,201,0.18); }
.bring-media .img-slot { width: 100%; height: clamp(300px,38vw,440px); }
.bring .section-kicker { margin-bottom: 14px; display: block; }
.bring-title { margin: 0 0 16px; font-family: 'Oswald'; font-weight: 700; text-transform: uppercase; line-height: 1; font-size: clamp(28px,4vw,46px); color: #fff; }
.bring-body { margin: 0 0 26px; font-size: clamp(15px,1.7vw,17px); line-height: 1.7; color: #b9cad3; max-width: 50ch; text-wrap: pretty; }
.bring-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 12px 24px; }
.bring-item { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: #cdd9df; }
.bring-item svg { flex: none; }

/* ===================== SUB-PAGE CLOSING BAND ===================== */
.cta-band { position: relative; overflow: hidden; padding: clamp(70px,10vw,140px) clamp(20px,5vw,72px); background: radial-gradient(120% 130% at 50% 0%, #0b3c5d 0%, #052033 55%, #03101b 100%); text-align: center; }
.cta-band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,16,27,0.74) 0%, rgba(5,32,51,0.6) 55%, rgba(3,16,27,0.85) 100%); }
.cta-band-inner { position: relative; max-width: 760px; margin: 0 auto; }
.cta-band-title { margin: 0 0 20px; font-family: 'Oswald'; font-weight: 700; text-transform: uppercase; line-height: 1.05; font-size: clamp(34px,6vw,74px); color: #fff; text-shadow: 0 6px 30px rgba(0,0,0,0.4); }
.cta-band-sub { margin: 0 auto 36px; max-width: 48ch; font-size: clamp(16px,2vw,20px); line-height: 1.6; color: #cfdbe2; }

/* ===================== GALLERY PAGE ===================== */
.photo-gallery { padding: clamp(48px,6vw,90px) clamp(20px,5vw,72px); background: linear-gradient(180deg, #03101b 0%, #061a2c 100%); }
.photo-gallery-inner { max-width: 1320px; margin: 0 auto; }
.photo-masonry { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (min-width: 640px)  { .photo-masonry { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .photo-masonry { grid-template-columns: repeat(var(--gallery-cols, 4), 1fr); } }
.photo { position: relative; margin: 0; border-radius: 14px; overflow: hidden; }
.photo .img-slot { width: 100%; aspect-ratio: 1 / 1; border-radius: 14px; }
.photo-tag { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 16px 12px; background: linear-gradient(to top, rgba(2,10,18,0.82), rgba(2,10,18,0)); pointer-events: none; }
.photo-tag span { font-family: 'Oswald'; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: 11.5px; color: var(--accent); }

/* ===================== GALLERY: FOLLOW STRIP ===================== */
.follow { padding: clamp(56px,7vw,100px) clamp(20px,5vw,72px); background: #03101b; border-top: 1px solid rgba(47,199,201,0.1); text-align: center; }
.follow-inner { max-width: 680px; margin: 0 auto; }
.follow .section-kicker { margin-bottom: 14px; display: block; }
.follow-title { margin: 0 0 16px; font-family: 'Oswald'; font-weight: 700; text-transform: uppercase; line-height: 1; font-size: clamp(28px,4.4vw,52px); color: #fff; }
.follow-sub { margin: 0 auto 30px; max-width: 46ch; font-size: clamp(15px,1.7vw,17px); line-height: 1.6; color: #9fb4c0; }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(47,199,201,0.4); color: #fff; font-family: 'Oswald'; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: 15px; padding: 14px 26px; border-radius: 999px; text-decoration: none; transition: background .25s, border-color .25s; }
.btn-outline:hover { background: rgba(47,199,201,0.12); border-color: var(--accent); }

/* ===================== CONTACT: METHODS ===================== */
.methods { padding: clamp(56px,7vw,96px) clamp(20px,5vw,72px); background: linear-gradient(180deg, #03101b 0%, #061a2c 100%); }
.methods-inner { max-width: 1180px; margin: 0 auto; }
.methods .section-head { margin-bottom: clamp(36px,4vw,52px); }
.methods .section-kicker { margin-bottom: 12px; display: block; }
.methods .section-title { margin: 0; line-height: 1; font-size: clamp(28px,4vw,48px); }
.method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 20px; }
.method-card { display: flex; flex-direction: column; text-decoration: none; background: linear-gradient(180deg, #061f33 0%, #04151f 100%); border: 1px solid rgba(47,199,201,0.16); border-radius: 16px; padding: 30px 26px; transition: transform .3s ease, border-color .3s ease; }
.method-card:hover { border-color: rgba(47,199,201,0.45); }
.method-icon { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.method-icon.wa { background: rgba(37,211,102,0.14); color: #25D366; }
.method-icon.accent { background: rgba(47,199,201,0.14); color: var(--accent); }
.method-icon.light { background: rgba(255,255,255,0.06); color: #fff; }
.method-title { font-family: 'Oswald'; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 19px; color: #fff; margin-bottom: 8px; }
.method-desc { font-size: 14px; line-height: 1.55; color: #9fb4c0; margin-bottom: 16px; flex: 1; word-break: break-word; }
.method-action { display: inline-flex; align-items: center; gap: 7px; font-family: 'Oswald'; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: 12.5px; color: var(--accent); }

/* ===================== CONTACT: LOCATION / MAP ===================== */
.location { padding: clamp(56px,7vw,96px) clamp(20px,5vw,72px); background: #03101b; }
.location-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px,100%),1fr)); gap: clamp(28px,4vw,48px); align-items: stretch; }
.location-info { display: flex; flex-direction: column; justify-content: center; }
.location-info .section-kicker { margin-bottom: 14px; display: block; }
.location-title { margin: 0 0 22px; font-family: 'Oswald'; font-weight: 700; text-transform: uppercase; line-height: 1; font-size: clamp(28px,4vw,48px); color: #fff; }
.location-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.location-row.hours { margin-bottom: 26px; }
.location-row svg { flex: none; margin-top: 2px; }
.location-addr { font-size: 16px; line-height: 1.55; color: #dbe6ec; }
.location-hours-label { font-family: 'Oswald'; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; font-size: 12px; color: var(--accent); margin-bottom: 5px; }
.location-hours { font-size: 15px; line-height: 1.6; color: #cdd9df; white-space: pre-line; }
.location-info .btn-primary-pill { align-self: flex-start; padding: 15px 26px; }
.map-wrap { position: relative; min-height: 340px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(47,199,201,0.22); box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 340px; display: block; filter: grayscale(0.15) contrast(1.05) brightness(0.92); }

/* ===================== THEME TOGGLE BUTTON ===================== */
.theme-toggle { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(47,199,201,0.32); border-radius: 999px; color: var(--accent); text-decoration: none; transition: background .25s, border-color .25s; flex: none; }
.theme-toggle:hover { border-color: var(--accent); background: rgba(47,199,201,0.14); }

/* ===================== LIGHT THEME (homepage) ===================== */
body.theme-light { --accent: #0E8A93; background: #eef3f3; color: #0e2a31; }
.theme-light ::selection { background: rgba(47,199,201,0.35); color: #0e2a31; }
.theme-light .theme-toggle { background: rgba(20,45,52,0.05); }

/* Header */
.theme-light .site-header { background: transparent; }
.theme-light .site-header.scrolled { background: rgba(238,243,243,0.94); box-shadow: 0 12px 34px rgba(20,45,52,0.12); }
.theme-light .brand-name { color: #0e2a31; }
.theme-light .nav-link { color: #41555a; }
.theme-light .lang-btn { color: #41555a; }
.theme-light .lang-btn.active { color: #fff; }
.theme-light .lang-dd-toggle { background: rgba(20,45,52,0.05); color: #41555a; }
.theme-light .lang-dd-menu { background: #ffffff; border-color: rgba(47,199,201,0.25); box-shadow: 0 18px 44px rgba(20,45,52,0.16); }
.theme-light .lang-dd-item { color: #41555a; }
.theme-light .lang-dd-item:hover { background: rgba(47,199,201,0.1); color: #0e2a31; }
.theme-light .hamburger { background: rgba(20,45,52,0.05); }
.theme-light .mobile-menu { background: rgba(238,243,243,0.98); border-bottom-color: rgba(47,199,201,0.2); }
.theme-light .mobile-link { color: #0e2a31; border-bottom-color: rgba(20,45,52,0.1); }

/* Hero — show the daytime canvas instead of the dark night video */
.theme-light .hero { background: #eef3f3; }
.theme-light .hero-video { display: none; }
.theme-light .hero-overlay-1 { background: linear-gradient(to bottom, rgba(238,243,243,0) 0%, rgba(238,243,243,0) 64%, rgba(238,243,243,0.92) 100%); }
.theme-light .hero-overlay-2 { background: radial-gradient(120% 80% at 50% 42%, rgba(238,243,243,0) 62%, rgba(238,243,243,0.14) 100%); }
.theme-light .hero-title { color: #0e2a31; text-shadow: 0 1px 14px rgba(14,42,49,0.18); }
.theme-light .hero-slogan { color: #41555a; }
.theme-light .btn-ghost { background: rgba(20,45,52,0.05); color: #0e2a31; }
.theme-light .scroll-cue { color: #5f7378; }

/* Shared headings */
.theme-light .section-title { color: #0e2a31; }
.theme-light .section-sub { color: #5f7378; }

/* About */
.theme-light .about { background: linear-gradient(180deg, #eef3f3 0%, #e3edee 100%); }
.theme-light .about-title { color: #0e2a31; }
.theme-light .about-body { color: #47595e; }
.theme-light .point-title { color: #0e2a31; }
.theme-light .point-desc { color: #5f7378; }
.theme-light .about-media-frame { box-shadow: 0 30px 70px rgba(20,45,52,0.14); }
.theme-light .about-badge { background: rgba(255,255,255,0.92); box-shadow: 0 18px 40px rgba(20,45,52,0.12); }
.theme-light .about-badge-label { color: #41555a; }
.theme-light .stat { background: #ffffff; }
.theme-light .stat-n { color: #0e2a31; }

/* Tours */
.theme-light .tours { background: #eef3f3; }
.theme-light .tour-card { background: linear-gradient(180deg, #ffffff 0%, #f3f8f8 100%); box-shadow: 0 18px 44px rgba(20,45,52,0.12); }
.theme-light .tour-badge { background: rgba(255,255,255,0.9); }
.theme-light .tour-name { color: #0e2a31; }
.theme-light .tour-desc { color: #56696e; }
.theme-light .tour-inc { color: #41555a; }

/* Records */
.theme-light .records { background: linear-gradient(180deg, #eef3f3 0%, #e3edee 100%); }
.theme-light .record-card { background: #ffffff; }
.theme-light .record-fish { color: #0e2a31; }
.theme-light .record-note { color: #6a7d82; }

/* Gallery */
.theme-light .gallery { background: #eef3f3; }

/* Season */
.theme-light .season { background: linear-gradient(180deg, #eef3f3 0%, #e3edee 100%); }
.theme-light .season-card { background: #ffffff; }
.theme-light .smc { background: #f4f8f8; border-color: rgba(20,45,52,0.1); }
.theme-light .smc--peak { background: linear-gradient(180deg, rgba(47,199,201,0.12), rgba(47,199,201,0.03)); }
.theme-light .smc-month { color: #0e2a31; }
.theme-light .smc-fish { color: #6a7d82; }
.theme-light .smc-meter span { background: rgba(20,45,52,0.1); }
.theme-light .smc-label { color: #6a7d82; }
.theme-light .legend { border-top-color: rgba(20,45,52,0.1); }
.theme-light .legend-label { color: #41555a; }

/* Testimonials */
.theme-light .testi { background: #eef3f3; }
.theme-light .testi-card { background: linear-gradient(180deg, #ffffff 0%, #f3f8f8 100%); }
.theme-light .testi-quote { color: #33474c; }
.theme-light .testi-name { color: #0e2a31; }
.theme-light .testi-country { color: #6a7d82; }

/* FAQ */
.theme-light .faq { background: linear-gradient(180deg, #eef3f3 0%, #e3edee 100%); }
.theme-light .faq-item { background: #ffffff; }
.theme-light .faq-q { color: #0e2a31; }
.theme-light .faq-a p { color: #56696e; }

/* Closing CTA */
.theme-light .closing-overlay-1 { background: linear-gradient(180deg, #eef3f3 0%, rgba(232,240,241,0.5) 22%, rgba(232,240,241,0.46) 60%, #eef3f3 100%); }
.theme-light .closing-overlay-2 { background: radial-gradient(90% 70% at 50% 45%, rgba(255,255,255,0.34) 0%, rgba(238,243,243,0) 70%); }
.theme-light .closing-card { background: rgba(255,255,255,0.68); box-shadow: 0 30px 80px rgba(20,45,52,0.14); }
.theme-light .closing-title { color: #0e2a31; text-shadow: 0 8px 40px rgba(20,45,52,0.12); }
.theme-light .closing-sub { color: #33474c; }
.theme-light .btn-ghost-lg { background: rgba(20,45,52,0.05); color: #0e2a31; }

/* Footer */
.theme-light .footer { background: linear-gradient(180deg, #e6eff0 0%, #dde9ea 100%); }
.theme-light .footer-top { border-bottom-color: rgba(20,45,52,0.1); }
.theme-light .footer-top-title { color: #0e2a31; }
.theme-light .footer-brand-name { color: #0e2a31; }
.theme-light .footer-tagline { color: #6a7d82; }
.theme-light .social a:not(.social-wa) { background: rgba(20,45,52,0.05); color: #0e2a31; }
.theme-light .footer-links a { color: #41555a; }
.theme-light .footer-links a:hover { color: #0e2a31; }
.theme-light .footer-contact a { color: #41555a; }
.theme-light .footer-hours { color: #5f7378; }
.theme-light .footer-location { color: #41555a; }
.theme-light .footer-bottom { border-top-color: rgba(20,45,52,0.1); }
.theme-light .footer-bottom div { color: #7b8d91; }
.theme-light .fab-wa { box-shadow: 0 10px 30px rgba(20,45,52,0.12); }
.theme-light .cookie-note { background: rgba(255,255,255,0.97); border-color: rgba(20,45,52,0.14); color: #33474c; box-shadow: 0 14px 40px rgba(20,45,52,0.16); }
.theme-light .cookie-note-btn { color: #fff; }

/* ===================== FLAG LANGUAGE SWITCHER ===================== */
.lang-btn { display: inline-flex; align-items: center; gap: 6px; }
.lang-flag { display: inline-flex; box-shadow: 0 0 0 1px rgba(0,0,0,0.12); border-radius: 2px; }
.lang-code { line-height: 1; }

/* Language dropdown */
.lang-dd { position: relative; }
.lang-dd-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 12px 15px; border: 1px solid rgba(47,199,201,0.32); border-radius: 999px; background: rgba(255,255,255,0.04); color: #cdd9df; font-family: 'Oswald'; font-weight: 600; letter-spacing: .05em; font-size: 13px; line-height: 1; cursor: pointer; transition: border-color .2s, background .2s; }
.lang-dd-toggle .lang-flag { height: 16px; }
.lang-dd-toggle .lang-flag svg { height: 16px; }
.lang-dd-toggle:hover { border-color: var(--accent); }
.lang-dd-caret { display: inline-flex; color: var(--accent); transition: transform .25s ease; }
.lang-dd.open .lang-dd-caret { transform: rotate(180deg); }
.lang-dd-menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 168px; background: #061a26; border: 1px solid rgba(47,199,201,0.22); border-radius: 12px; box-shadow: 0 18px 44px rgba(0,0,0,0.5); padding: 6px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; z-index: 62; }
.lang-dd.open .lang-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dd-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; text-decoration: none; color: #cdd9df; font-family: 'Oswald'; font-weight: 500; letter-spacing: .03em; font-size: 13.5px; transition: background .2s, color .2s; }
.lang-dd-item:hover { background: rgba(47,199,201,0.1); color: #fff; }
.lang-dd-item.active { color: var(--accent); }

@media (max-width: 400px) { .lang-dd-toggle .lang-code { display: none; } .lang-dd-toggle { padding: 8px 10px; } }

/* ===================== BREADCRUMB ===================== */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 18px; font-family: 'Oswald'; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; font-size: 12px; }
.breadcrumb-link { color: var(--accent); text-decoration: none; opacity: .9; transition: opacity .2s; }
.breadcrumb-link:hover { opacity: 1; text-decoration: underline; }
.breadcrumb-sep { color: rgba(255,255,255,0.35); }
.breadcrumb-current { color: #cdd9df; }

/* ===================== OFF-CANVAS DRAWER ===================== */
.drawer-root { position: fixed; inset: 0; z-index: 64; overflow: hidden; pointer-events: none; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(2,8,15,0.6); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s ease, visibility .3s ease; }
.drawer { position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 340px); background: #04141f; border-left: 1px solid rgba(47,199,201,0.18); box-shadow: -20px 0 50px rgba(0,0,0,0.45); padding: 18px clamp(20px,5vw,28px) 28px; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .35s cubic-bezier(.16,.8,.3,1); overflow-y: auto; pointer-events: auto; }
body.menu-open .drawer { transform: translateX(0); }
body.menu-open .drawer-backdrop { opacity: 1; visibility: visible; pointer-events: auto; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; margin-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.drawer-close { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(47,199,201,0.3); border-radius: 10px; color: var(--accent); }
.drawer-nav { display: flex; flex-direction: column; gap: 2px; margin-top: 6px; }
.drawer .mobile-link { border-bottom-color: rgba(255,255,255,0.07); }
.drawer .mobile-wa { margin-top: auto; }
@media (min-width: 920px) { .drawer-root { display: none; } }

/* ===================== LIGHTBOX ===================== */
.masonry-item, .photo, .td-photo { display: block; padding: 0; border: none; background: none; cursor: zoom-in; width: 100%; font: inherit; color: inherit; text-align: inherit; }
.lightbox { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; background: rgba(2,8,15,0.92); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; padding: clamp(16px,4vw,48px); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 100%; max-height: 82vh; border-radius: 10px; box-shadow: 0 30px 90px rgba(0,0,0,0.6); }
.lightbox-caption { position: absolute; bottom: clamp(14px,3vw,30px); left: 0; right: 0; text-align: center; font-family: 'Oswald'; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; font-size: 13px; color: #cdd9df; }
.lightbox-btn { position: absolute; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; color: #fff; cursor: pointer; transition: background .2s; }
.lightbox-btn:hover { background: rgba(255,255,255,0.16); }
.lightbox-close { top: clamp(14px,3vw,26px); right: clamp(14px,3vw,26px); }
.lightbox-prev { left: clamp(10px,2vw,26px); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: clamp(10px,2vw,26px); top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .lightbox-prev, .lightbox-next { display: none; } }

/* ===================== RECORDS → TROPHY CARDS ===================== */
.record-card { position: relative; text-align: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(47,199,201,0.18); border-radius: 16px; padding: 30px 20px 26px; }
.record-rank { position: absolute; top: 14px; right: 16px; font-family: 'Oswald'; font-weight: 700; font-size: 13px; letter-spacing: .06em; color: var(--medal, var(--accent)); opacity: .85; }
.record-medal { width: 60px; height: 60px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--medal, var(--accent)); border: 1.5px solid var(--medal, var(--accent)); background: rgba(255,255,255,0.04); }
.record-fish { font-family: 'Oswald'; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: 19px; color: #fff; }
.record-weight-badge { display: inline-block; margin-top: 12px; padding: 5px 16px; border-radius: 999px; background: rgba(47,199,201,0.12); border: 1px solid rgba(47,199,201,0.32); color: var(--accent); font-family: 'Oswald'; font-weight: 700; font-size: 20px; line-height: 1.1; }
.record-note { font-size: 13px; color: #8aa0ac; margin-top: 14px; }

/* ===================== TOUR ACTION BUTTONS / LINKS ===================== */
.plain-link { color: inherit; text-decoration: none; }
.plain-link:hover { color: var(--accent); }
a.tour-media { display: block; cursor: pointer; }
.tour-card-actions { display: flex; flex-direction: column; align-items: stretch; gap: 10px; margin-top: auto; }
.tour-detail-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 4px; }
.btn-detail { display: inline-flex; align-items: center; gap: 6px; font-family: 'Oswald'; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; font-size: 13px; color: var(--accent); text-decoration: none; border: 1px solid rgba(47,199,201,0.4); border-radius: 10px; padding: 12px 16px; transition: background .2s, border-color .2s; }
.btn-detail:hover { background: rgba(47,199,201,0.12); border-color: var(--accent); }
.tour-card-actions .btn-detail { width: 100%; justify-content: center; }
.tour-card-actions .btn-wa-block { margin-top: 0; }
.tour-detail-actions .btn-wa-block { margin-top: 0; }
a.tour-detail-frame { display: block; }

/* ===================== TOUR DETAIL PAGE ===================== */
.td-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(28px,4vw,52px); align-items: start; }
@media (max-width: 820px) { .td-grid { grid-template-columns: 1fr; } }
.td-desc { margin: 14px 0 30px; font-size: clamp(16px,1.9vw,19px); line-height: 1.75; color: #c4d2da; text-wrap: pretty; }
.td-subtitle { margin: 0 0 16px; font-family: 'Oswald'; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 20px; color: #fff; }
.td-card { position: sticky; top: 94px; background: linear-gradient(180deg, #061f33 0%, #04151f 100%); border: 1px solid rgba(47,199,201,0.18); border-radius: 16px; padding: 26px 24px; box-shadow: 0 18px 44px rgba(0,0,0,0.4); }
.td-card-title { font-family: 'Oswald'; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; font-size: 13px; color: var(--accent); margin-bottom: 16px; }
.td-fact-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.td-fact-k { font-family: 'Oswald'; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: 12px; color: #9fb4c0; }
.td-fact-v { font-size: 14px; color: #fff; text-align: right; }
.td-card-cta { width: 100%; justify-content: center; margin-top: 20px; }
.td-gallery-section { padding: clamp(48px,6vw,90px) clamp(20px,5vw,72px); background: #03101b; border-top: 1px solid rgba(47,199,201,0.1); }
.td-gallery-inner { max-width: 1180px; margin: 0 auto; }
.td-gallery-section .section-head { margin-bottom: clamp(28px,4vw,44px); }
.td-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 620px) { .td-gallery { grid-template-columns: repeat(5, 1fr); } }
.td-photo .img-slot { width: 100%; aspect-ratio: 1 / 1; border-radius: 12px; }

@media (prefers-reduced-motion: reduce) {
  .scroll-cue svg, .fab-wa, .cookie-note.is-in { animation: none; }
  .reveal { transition: none; }
  .drawer { transition: none; }
}

/* ========================= İLETİŞİM FORMU ========================= */
/* Bölüm yerleşimi — önceki .container/.py-16 sınıfları önyüzde yoktu (form sola yapışıyordu) */
.contact-form-section {
  padding: clamp(56px,7vw,96px) clamp(20px,5vw,72px);
  background: linear-gradient(180deg, #061a2c 0%, #03101b 100%);
}
.contact-form-section .container { max-width: 640px; margin: 0 auto; padding: 0; text-align: center; }
.contact-form-section .section-kicker { display: block; margin-bottom: 12px; }
.contact-form-section .section-title { margin: 0; font-size: clamp(26px,4vw,42px); line-height: 1.08; }
.contact-form-section .section-sub { margin: 14px auto 4px; max-width: 520px; color: #9fb4c0; }

.contact-form { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; text-align: left; }
.contact-form .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-field label { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: #9fb4c0; }
.cf-field input, .cf-field select, .cf-field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.13);
  color: #eaf2f6; font-family: 'Manrope', sans-serif; font-size: 15px; line-height: 1.4;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.cf-field input::placeholder, .cf-field textarea::placeholder { color: #5d7480; }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  outline: none; border-color: var(--accent);
  background: rgba(47,199,201,.07);
  box-shadow: 0 0 0 3px rgba(47,199,201,.16);
}
.cf-field textarea { resize: vertical; min-height: 132px; }
.cf-field select {
  -webkit-appearance: none; appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%239fb4c0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.cf-field select option { background: #0a1c2b; color: #eaf2f6; }
/* Tarayıcı otomatik-doldurma (autofill) — açık lavanta arka planını koyu form rengine uydur */
.cf-field input:-webkit-autofill,
.cf-field input:-webkit-autofill:hover,
.cf-field input:-webkit-autofill:focus,
.cf-field input:-webkit-autofill:active,
.cf-field textarea:-webkit-autofill,
.cf-field select:-webkit-autofill {
  -webkit-text-fill-color: #eaf2f6 !important;
  -webkit-box-shadow: 0 0 0 1000px #0a1c2b inset !important;
  box-shadow: 0 0 0 1000px #0a1c2b inset !important;
  caret-color: #eaf2f6;
  transition: background-color 9999s ease-in-out 0s;
}
.contact-form .btn-primary-pill { margin-top: 8px; align-self: flex-start; border: none; cursor: pointer; }
.form-success-box {
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.35);
  color: #aef0c8; padding: 20px 24px; border-radius: 14px; margin-top: 26px;
  font-size: 16px; text-align: center;
}
.form-error-box {
  background: rgba(225,60,60,.1); border: 1px solid rgba(225,60,60,.38);
  color: #f4bcbc; padding: 14px 18px; border-radius: 12px; margin: 0 0 20px;
  font-size: 14.5px;
}
@media (max-width: 640px) {
  .contact-form .cf-row { grid-template-columns: 1fr; }
}

/* ===== Sezon: kapalı aylar (admin'den) ===== */
.bar-col--closed { opacity: .5; }
.bar-col--closed .bar-track {
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.07) 0 5px, transparent 5px 10px);
}
.bar-col--closed .bar { background: rgba(255,255,255,.14) !important; }
.bar-closed-tag {
  font-size: .6rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--accent, #2FC7C9); opacity: .85; white-space: nowrap;
}

/* ===== Footer yasal sayfa linkleri ===== */
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 0; }
.footer-legal a {
  position: relative; color: rgba(255,255,255,.52); font-size: 12.5px; letter-spacing: .01em;
  text-decoration: none; padding: 2px 15px; transition: color .2s;
}
.footer-legal a:first-child { padding-left: 0; }
.footer-legal a:not(:first-child)::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 11px; background: rgba(255,255,255,.16);
}
.footer-legal a:hover { color: var(--accent, #2FC7C9); }
@media (max-width: 680px) {
  .footer-bottom { flex-direction: column; gap: 18px; align-items: center; text-align: center; padding-bottom: 92px; }
  .footer-bottom div { line-height: 1.6; }
  .footer-legal { display: grid; grid-template-columns: auto auto; justify-content: center; align-items: start; gap: 14px 26px; width: 100%; }
  .footer-legal a { padding: 0; }
  .footer-legal a:not(:first-child)::before { display: none; }
}

/* ===== Yasal / kurumsal sayfa içeriği ===== */
.legal-section { padding: 64px 0 88px; }
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.legal-content { color: rgba(255,255,255,.82); font-size: 15.5px; line-height: 1.8; }
.legal-content h2 { font-family: 'Oswald', sans-serif; font-size: 1.45rem; font-weight: 600; color: #fff; margin: 36px 0 12px; letter-spacing: .01em; }
.legal-content h3 { font-size: 1.12rem; font-weight: 600; color: #fff; margin: 26px 0 10px; }
.legal-content h2:first-child, .legal-content h3:first-child { margin-top: 0; }
.legal-content p { margin: 0 0 16px; }
.legal-content ul, .legal-content ol { margin: 0 0 18px; padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--accent, #2FC7C9); text-decoration: underline; text-underline-offset: 2px; }
.legal-content strong { color: #fff; }
.legal-content hr { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 28px 0; }
.legal-empty { color: rgba(255,255,255,.5); text-align: center; padding: 40px 0; }

/* ===== KVKK onay kutusu + yasal modal (iletişim formu) ===== */
.cf-consent { display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 4px; font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,.72); cursor: pointer; }
.cf-consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--accent, #2FC7C9); flex: 0 0 auto; }
.cf-consent a { color: var(--accent, #2FC7C9); text-decoration: underline; text-underline-offset: 2px; }
.cf-req { color: #e5736f; }
.legal-modal-ov { position: fixed; inset: 0; background: rgba(8,12,22,.72); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.legal-modal-ov[hidden] { display: none; }
.legal-modal { background: #0f1722; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; max-width: 680px; width: 100%; max-height: 84vh; display: flex; flex-direction: column; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.legal-modal-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; border-bottom: 1px solid rgba(255,255,255,.08); }
.legal-modal-head h3 { margin: 0; font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: #fff; }
.legal-modal-x { background: none; border: none; color: rgba(255,255,255,.6); font-size: 26px; line-height: 1; cursor: pointer; padding: 0 4px; }
.legal-modal-x:hover { color: #fff; }
.legal-modal-body { padding: 18px 22px; overflow-y: auto; }
.legal-modal-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 22px; border-top: 1px solid rgba(255,255,255,.08); }
.legal-modal-link { color: rgba(255,255,255,.55); font-size: 13px; }
.legal-modal-link:hover { color: var(--accent, #2FC7C9); }
/* Modal aksiyon butonu: ana CTA pill'i modal içinde daha küçük + teal + hafif gölge */
.legal-modal-foot .btn-primary-pill { padding: 10px 22px; font-size: 13px; background: var(--accent, #2FC7C9); box-shadow: 0 8px 20px rgba(47,199,201,.26); }

/* ===== YouTube Reel oynatıcı modal (dikey 9:16) ===== */
.reel-modal-ov { position: fixed; inset: 0; background: rgba(3,7,14,.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; gap: 14px; animation: reelFade .22s ease; }
.reel-modal-ov[hidden] { display: none; }
@keyframes reelFade { from { opacity: 0 } to { opacity: 1 } }
.reel-modal { position: relative; aspect-ratio: 9 / 16; height: min(86vh, 780px); max-width: 94vw; background: #000; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 90px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06); animation: reelPop .26s cubic-bezier(.2,.8,.25,1); }
@keyframes reelPop { from { transform: scale(.94); opacity: 0 } to { transform: scale(1); opacity: 1 } }
.reel-frame, .reel-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.reel-modal-x { position: absolute; top: 16px; right: 16px; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(12,18,28,.62); border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: 27px; line-height: 1; cursor: pointer; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: background .2s, transform .2s; z-index: 3; }
.reel-modal-x:hover { background: rgba(34,46,62,.95); transform: scale(1.08); }
.reel-modal-x:active { transform: scale(.95); }
.reel-modal-hint { color: rgba(255,255,255,.42); font-size: 12.5px; letter-spacing: .02em; text-align: center; }
@media (max-width: 640px) { .reel-modal-hint { display: none; } }
