
:root{
  --bg: #0b0f10;
  --paper: #0f1416;
  --card: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --brand: #a7f3d0;
  --brand2: #7dd3fc;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 22px;
  --radius2: 16px;
  --max: 1160px;

  --heroImg: url('img11.jpg'); /* summer default */
  --accent: var(--brand);
  --accent2: var(--brand2);

  --bgSolid: #0b0f10;
  --bgGradient: radial-gradient(1200px 900px at 10% 0%, rgba(16,185,129,.16), transparent 60%), radial-gradient(1000px 700px at 90% 20%, rgba(59,130,246,.12), transparent 55%), linear-gradient(180deg, #0b0f10 0%, #0b0f10 100%);
}


html,body{height:100%; position: relative;}

body::before{content:""; position:fixed; inset:0; background: var(--bgGradient); background-repeat:no-repeat; background-size:cover; z-index:-1; pointer-events:none;}

html{overflow-x:hidden;}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(900px 420px at 15% -10%, rgba(125,211,252,.18), transparent 60%),
              radial-gradient(900px 420px at 80% -10%, rgba(167,243,208,.14), transparent 60%),
              linear-gradient(180deg, #070a0b, #0b0f10 40%, #090b0c);
  color: var(--text);
  overflow-x:hidden;
}

body.theme-summer{
  --heroImg: url('img11.jpg');
  /* Light / summer theme */
  --bg: #f5f7fb;
  --paper: rgba(255,255,255,.92);
  --card: rgba(15,23,42,.06);
  --line: rgba(15,23,42,.12);
  --text: rgba(15,23,42,.92);
  --muted: rgba(15,23,42,.66);
  --accent: #0ea5e9;
  --accent2: #10b981;

  --bgSolid: #f5f8ff;
  --bgGradient: radial-gradient(900px 650px at 15% 0%, rgba(59,130,246,.10), transparent 60%), radial-gradient(900px 650px at 85% 20%, rgba(16,185,129,.10), transparent 60%), linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}


body.theme-winter{
  --heroImg: url('koycegiz-1024x575.jpg');
  --accent: #c7d2fe;
  --accent2: #fde68a;

  --bgSolid: #0b0f10;
  --bgGradient: radial-gradient(1200px 900px at 10% 0%, rgba(16,185,129,.16), transparent 60%), radial-gradient(1000px 700px at 90% 20%, rgba(59,130,246,.12), transparent 55%), linear-gradient(180deg, #0b0f10 0%, #0b0f10 100%);
}


a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{margin:0 auto; width:min(var(--max), calc(100% - 48px)); margin:0 auto}

.header{
  position:sticky; top:0; z-index:40;
  backdrop-filter: blur(14px);
  background: rgba(9,12,13,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header__inner{display:flex; align-items:center; gap:18px; padding:12px 0}

.brand{display:flex; align-items:center; gap:12px; min-width: 240px}
.brand__mark{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border:1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font-weight:800;
}
.brand__text b{display:block; font-weight:800; letter-spacing:.2px}
.brand__text small{display:block; color:var(--muted); margin-top:2px; font-size:12px}

.nav{display:flex; gap:14px; flex:1; justify-content:center; flex-wrap:wrap}
.nav a{
  color: rgba(255,255,255,.8);
  font-size:13px;
  padding:8px 10px;
  border-radius: 999px;
  transition: .2s ease;
}
.nav a:hover{background: rgba(255,255,255,.06); color: var(--text)}

.controls{display:flex; align-items:center; gap:12px}
.lang{
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  color: var(--text);
  padding:10px 10px;
  border-radius: 14px;
  outline:none;
}

.seg{
  display:flex;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius: 999px;
  overflow:hidden;
}
.seg__btn{
  background: transparent;
  color: rgba(255,255,255,.82);
  border:0;
  padding:10px 12px;
  font-size:12px;
  cursor:pointer;
  transition: .2s ease;
}
.seg__btn:hover{background: rgba(255,255,255,.06)}
.seg__btn.is-active{
  background: rgba(255,255,255,.14);
  color: var(--text);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:650;
  transition:.2s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10)}
.btn--primary{
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  border-color: rgba(255,255,255,.2);
}
.btn--ghost{
  background: transparent;
}
.btn--wp{
  background: linear-gradient(135deg, rgba(16,185,129,.30), rgba(255,255,255,.06));
  border-color: rgba(16,185,129,.35);
}

/* --- Summer (light) refinements --- */
body.theme-summer .header{
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(15,23,42,.10);
}
body.theme-summer .brand__mark{
  background: linear-gradient(135deg, rgba(15,23,42,.06), rgba(15,23,42,.02));
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 10px 30px rgba(15,23,42,.10);
}
body.theme-summer .brand__text small{color: var(--muted)}
body.theme-summer .nav a{color: rgba(15,23,42,.78)}
body.theme-summer .nav a:hover{background: rgba(15,23,42,.06); color: rgba(15,23,42,.92)}
body.theme-summer .seg,
body.theme-summer .lang{
  background: rgba(255,255,255,.78);
  border-color: rgba(15,23,42,.12);
}
body.theme-summer .seg__btn{color: rgba(15,23,42,.78)}
body.theme-summer .seg__btn:hover{background: rgba(15,23,42,.06)}
body.theme-summer .seg__btn.is-active{background: rgba(15,23,42,.08); color: rgba(15,23,42,.92)}
body.theme-summer .btn{
  background: rgba(255,255,255,.72);
  border-color: rgba(15,23,42,.14);
  box-shadow: 0 12px 30px rgba(15,23,42,.10);
}
body.theme-summer .btn:hover{background: rgba(255,255,255,.88)}
body.theme-summer .btn--ghost{background: transparent}
body.theme-summer .lang option{color:#0f172a; background:#fff}
body.theme-winter .lang option{color:#fff; background:#0f1416}

.hero{
  position:relative;
  min-height: calc(92vh - 60px);
  display:grid;
  align-items:end;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background-image: var(--heroImg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.02);
}
.hero__bg::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 460px at 25% 25%, rgba(0,0,0,.25), transparent 65%),
    radial-gradient(900px 460px at 80% 10%, rgba(0,0,0,.35), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.72) 70%, rgba(0,0,0,.88));
}

/* Summer hero text readability (bright photo + light theme) */
body.theme-summer .hero__bg::after{
  background:
    radial-gradient(900px 460px at 25% 25%, rgba(0,0,0,.18), transparent 65%),
    radial-gradient(900px 460px at 80% 10%, rgba(0,0,0,.22), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55) 70%, rgba(0,0,0,.70));
}
body.theme-summer .hero__badge,
body.theme-summer .hero__title,
body.theme-summer .hero__lead{
  color: rgba(255,255,255,.96) !important;
}
body.theme-summer .hero__title{ text-shadow: 0 10px 28px rgba(0,0,0,.55); }
body.theme-summer .hero__badge{
  background: rgba(0,0,0,.35);
  border-color: rgba(255,255,255,.18);
}
.hero__content{position:relative; padding: 34px 0 44px}
.hero__fade{position:absolute; left:0; right:0; bottom:0; height:120px; background: linear-gradient(180deg, transparent, rgba(11,15,16,.92))}

.hero__badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border:1px solid var(--line);
  color: rgba(255,255,255,.88);
  font-size:13px;
  margin-bottom: 14px;
}
.dot{width:10px; height:10px; border-radius:50%; background: var(--accent); box-shadow: 0 0 0 6px rgba(255,255,255,.08)}

.hero__title{
  font-family: Fraunces, serif;
  font-weight: 650;
  letter-spacing: .3px;
  line-height: 1.03;
  font-size: clamp(42px, 5.8vw, 76px);
  margin: 0 0 12px;
}
.hero__lead{
  max-width: 720px;
  color: rgba(255,255,255,.82);
  text-shadow: 0 6px 18px rgba(0,0,0,.35);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin: 14px 0 22px}

.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  max-width: 860px;
}
.stat{
  padding:14px 14px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}
.stat b{display:block; font-weight:800}
.stat small{color: var(--muted)}

/* Hero stat readability (ensure contrast on hero photos) */
.hero__stats .stat{background: rgba(0,0,0,.38); border-color: rgba(255,255,255,.16)}
.hero__stats .stat b{color: rgba(255,255,255,.98)}
.hero__stats .stat small{color: rgba(255,255,255,.80)}

/* Summer hero: increase contrast for the 3 feature boxes on bright photos */
body.theme-summer .hero .stat{
  background: rgba(10, 15, 20, .50);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.theme-summer .hero .stat b{color: rgba(255,255,255,.95)}
body.theme-summer .hero .stat small{color: rgba(255,255,255,.75)}

.section{padding: 74px 0}
.section--alt{
  /* Avoid “banded”/repeating gradient strips between sections (especially on mobile). */
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

/* Keep a very subtle separation only in summer (light) theme */
body.theme-summer .section--alt{
  background: linear-gradient(180deg, rgba(15,23,42,.03), transparent 55%, rgba(15,23,42,.02));
}

/* Hide season badge entirely (user requested removing the mode info on hero) */
.hero__badge{display:none !important;}

/* Anchor targets shouldn't hide under the sticky header */
section, .section{scroll-margin-top: 92px;}

/* Mobile layout fixes: equal side padding + prevent “left stuck” look */
@media (max-width: 560px){
  .container{width: calc(100% - 28px);} 
  /* Mobile header fit: prevent right-side clipping */
  .header__inner{gap:10px;}
  .brand{min-width:0; flex:1; overflow:hidden;}
  .brand__text{min-width:0;}
  .brand__text b{font-size:14px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; display:block;}
  .brand__text small{display:none;}
  .controls{gap:8px; flex-shrink:0;}
  .lang{padding:8px 8px; border-radius:12px;}
  .btn--wp{padding:8px 10px; border-radius:12px; font-size:14px; line-height:1; white-space:nowrap;}
  .hamburger{width:40px; height:40px; border-radius:12px;}
/* 14px + 14px */
  section, .section{scroll-margin-top: 110px;}
  .hero{min-height: 72vh; align-items:center;}
  .hero__content{padding: 88px 0 26px;} /* give room under sticky header */
}
.section__head{margin-bottom: 26px}
.section__head h2{
  font-family: Fraunces, serif;
  font-size: clamp(28px, 3vw, 44px);
  margin:0 0 8px;
}
.section__head p{margin:0; color: var(--muted); max-width: 820px; line-height:1.6}

.split{display:grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items:start}
.mediaGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.mediaGrid figure{margin:0; overflow:hidden; border-radius: var(--radius); border:1px solid var(--line); box-shadow: var(--shadow)}
.mediaGrid__big{grid-row: 1 / span 2}
.mediaGrid img{width:100%; height:100%; object-fit: cover; transition:.35s ease}
.mediaGrid figure:hover img{transform: scale(1.04)}

.pillRow{display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 12px}
.pill{
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid var(--stroke);
  background: var(--card);
  color: var(--text);
  font-size: 13px;
}

.h3{font-size: 22px; margin: 6px 0 12px}
.text{color: rgba(255,255,255,.8); line-height:1.7}

/* Summer theme: avoid leftover white text on light backgrounds */
body.theme-summer .text{color: rgba(15,23,42,.78)}
body.theme-summer .bullets{color: rgba(15,23,42,.78)}
body.theme-summer .bullets li{color: rgba(15,23,42,.78)}

.featureList{margin-top: 14px; display:grid; gap: 12px}
.feature{
  display:flex; gap: 12px; align-items:flex-start;
  padding: 12px 12px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.ico{font-size: 20px; line-height: 1.1}
.feature b{display:block}
.feature small{color: var(--muted)}

.ctaRow{margin-top: 16px; display:flex; gap:12px; flex-wrap:wrap}
.note{
  margin-top: 18px;
  padding: 14px 14px;
  border-radius: var(--radius2);
  border:1px dashed var(--stroke);
  color: var(--text);
}

.seasonCards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.seasonCard{
  overflow:hidden;
  border-radius: 24px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.seasonCard__img{
  height: 220px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
.seasonCard__body{padding: 16px}
.seasonCard__body h3{margin:0 0 8px}
.seasonCard__body p{margin:0 0 12px; color: var(--muted); line-height:1.6}
.bullets{margin:0; padding-left: 18px; color: rgba(255,255,255,.78)}
.bullets li{margin: 6px 0}

/* Summer theme: avoid hard-coded white text on light backgrounds */
body.theme-summer .text{color: rgba(15,23,42,.78)}
body.theme-summer .bullets{color: rgba(15,23,42,.74)}
body.theme-summer .seasonCard__body p{color: rgba(15,23,42,.70)}
body.theme-summer .distance__item{background: rgba(255,255,255,.70); border-color: rgba(15,23,42,.10)}

.koyGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items:center;
}
.koyGrid__img{
  border-radius: 26px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 520px;
  justify-self: center;
}

.koyCollage{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.koyCollage img{
  width:100%;
  height: 140px;
  object-fit: cover;
}
/* Only apply tall height if there's a single direct image */
.koyGrid__img > img{height: 440px; width:100%; object-fit: cover}
.distance{margin-top: 14px; display:grid; gap: 10px}
.distance__item{
  padding: 12px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.distance__item span{display:block; color: var(--muted); margin-top:4px}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card{
  overflow:hidden;
  border-radius: 22px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  transition:.25s ease;
}
.card:hover{transform: translateY(-2px)}
.card img{height: 210px; width:100%; object-fit: cover}
.card__body{padding: 14px}
.card__body h3{margin:0 0 6px}
.card__body p{margin:0; color: var(--muted); line-height:1.6}

.strip{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 26px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.strip__img{
  min-height: 280px;
  background-size: cover;
  background-position: center;
}
.strip__txt{padding: 18px}
.strip__txt h3{margin:0 0 8px}
.strip__txt p{margin:0 0 14px; color: var(--muted); line-height:1.6}

.masonry{
  columns: 3;
  column-gap: 12px;
}
.masonry figure{
  break-inside: avoid;
  margin: 0 0 12px;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  box-shadow: 0 10px 34px rgba(0,0,0,.25);
  cursor: zoom-in;
}
.masonry img{width:100%; height:auto; display:block; transition:.35s ease}
.masonry figure:hover img{transform: scale(1.03)}

.faq{display:grid; gap: 12px}
.faq__item{
  border-radius: 20px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  padding: 12px 14px;
}
.faq__item summary{
  cursor:pointer;
  font-weight: 800;
}
.faq__item p{color: var(--muted); line-height:1.6; margin:10px 0 2px}

.ctaCenter{margin-top: 16px; display:flex; justify-content:center}

.mapBox{
  border-radius: 26px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.mapBox iframe{width:100%; height: 420px; border:0}
.mapActions{margin-top: 12px; display:flex; gap:12px; flex-wrap:wrap}

.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contactCard{
  border-radius: 22px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  padding: 16px;
  box-shadow: var(--shadow);
}
.contactCard h3{margin:0 0 8px}
.contactCard p{margin:0 0 14px; color: var(--muted); line-height:1.6}

.platforms{margin-top: 22px}
.platforms__title{margin:0 0 6px}
.platforms__sub{margin:0 0 14px; color: var(--muted)}
.platformRow{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.platform{
  display:flex; align-items:center; gap:10px;
  padding: 12px;
  border-radius: 18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  transition:.2s ease;
}
.platform:hover{transform: translateY(-1px); background: rgba(255,255,255,.08)}
.platform__logo svg{width:26px; height:26px; opacity:.92}
.platform__name{font-weight:800; font-size: 13px}

.footer{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex; justify-content:space-between; align-items:center;
  gap: 12px;
}
.footer small{color: var(--muted)}
.footer a{color: var(--text); opacity:.9}
.footer a:hover{text-decoration: underline}

.fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(16,185,129,.22);
  border: 1px solid rgba(16,185,129,.35);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.fab__dot{width:10px;height:10px;border-radius:50%;background:#34d399; box-shadow:0 0 0 7px rgba(52,211,153,.12)}
.fab__txt{font-weight: 800}
.fab:hover{transform: translateY(-1px); background: rgba(16,185,129,.28)}

.lightbox{
  position: fixed;
  inset:0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.78);
  z-index: 80;
  padding: 20px;
}
.lightbox.is-open{display:grid}
.lightbox img{
  max-width: min(980px, 96vw);
  max-height: 86vh;
  border-radius: 18px;
  border:1px solid var(--line);
  box-shadow: 0 25px 90px rgba(0,0,0,.6);
}
.lightbox__close{
  position: fixed;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size: 26px;
  cursor:pointer;
}

@media (max-width: 980px){
  .nav{display:none}
  .hero__stats{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr; gap: 18px}
  .koyGrid{grid-template-columns: 1fr}
  .koyGrid__img{max-width:none; justify-self:stretch}
  .koyGrid__img img{height: 320px}
  .koyCollage img{height:160px}
  .cards{grid-template-columns: 1fr}
  .strip{grid-template-columns: 1fr}
  .platformRow{grid-template-columns: 1fr 1fr}
  .contactGrid{grid-template-columns: 1fr}
  .masonry{columns: 2}
}

@media (max-width: 560px){
  .container{width: min(var(--max), calc(100% - 26px))}
  .controls{gap:10px}
  .seg{display:none}
  .masonry{columns: 1}
  .fab__txt{display:none}
}

/* ----- Guide page ----- */
.guide-hero{padding:110px 0 40px}
.guide-hero h1{margin:10px 0 10px; font-size: clamp(34px, 4vw, 52px)}
.guide-hero p{margin:0; color:var(--muted); max-width: 920px; line-height:1.7}
.guide-hero .kicker{display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px; border:1px solid var(--stroke); background: rgba(255,255,255,.06)}
.guide-hero .kicker .dot{width:8px; height:8px; border-radius:50%; background: var(--accent)}

.guide-grid{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px}
.guide-box{padding:16px; border-radius: 18px; border:1px solid var(--stroke); background: var(--card); box-shadow: var(--shadow)}
.guide-box h3{margin:0 0 10px; display:flex; align-items:center; gap:10px}
.guide-ico{width:34px; height:34px; border-radius:12px; display:grid; place-items:center; background: rgba(255,255,255,.08); border:1px solid var(--stroke)}
.guide-box ul{margin:0; padding-left: 18px; color: var(--text)}
.guide-box li{margin:6px 0; color: var(--muted); line-height:1.55}
.guide-box li b{color: var(--text)}

.guide-tel{display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px; border:1px solid var(--stroke); text-decoration:none; color: var(--text); background: rgba(0,0,0,.18)}
.theme-summer .guide-tel{background: rgba(255,255,255,.6)}
.guide-tel:hover{transform: translateY(-1px)}

.guide-faq{margin-top: 10px}
.guide-faq details{border-radius:16px; border:1px solid var(--stroke); background: var(--card); padding:14px 14px; box-shadow: var(--shadow)}
.guide-faq details + details{margin-top:10px}
.guide-faq summary{cursor:pointer; font-weight:800}
.guide-faq p{margin:10px 0 0; color: var(--muted); line-height:1.7}

@media (max-width: 980px){
  .guide-grid{grid-template-columns: 1fr}
  .guide-hero{padding: 96px 0 30px}
}


/* --- Mobile fixes --- */
@media (max-width: 680px){
  .hero__content{padding: 86px 0 34px;}
  .hero__title{font-size: 40px;}
  .section{scroll-margin-top: 92px;}
  #top{scroll-margin-top: 92px;}
}

/* Mobile menu */
.hamburger{
  display:none;
  width:42px; height:42px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  align-items:center; justify-content:center;
}
.hamburger span{display:block; width:18px; height:2px; background: currentColor; position:relative;}
.hamburger span:before,.hamburger span:after{content:""; position:absolute; left:0; width:18px; height:2px; background: currentColor;}
.hamburger span:before{top:-6px;}
.hamburger span:after{top:6px;}

.mobileDrawer{
  position:fixed; inset:0;
  width:100vw;
  max-width:100vw;
  background: rgba(0,0,0,.55);
  display:none;
  z-index:9999;
}
.mobileDrawer.is-open{display:block;}
.mobileDrawer__panel{
  position:absolute; top:0; right:0;
  height:100%; width:min(360px, 100vw);
  max-width:100vw;
  box-sizing:border-box;
  background: rgba(20,24,26,.92);
  backdrop-filter: blur(12px);
  border-left:1px solid var(--line);
  padding:16px;
  overflow:auto;
}
body.theme-summer .mobileDrawer__panel{
  background: rgba(255,255,255,.92);
  border-left:1px solid rgba(0,0,0,.10);
}
.mobileDrawer__top{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px;}
.mobileDrawer__close{
  width:42px; height:42px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  display:flex; align-items:center; justify-content:center;
}
body.theme-summer .mobileDrawer__close{background: rgba(0,0,0,.04); border:1px solid rgba(0,0,0,.12);}

.mobileDrawer__nav{display:flex; flex-direction:column; gap:10px; margin-top:10px;}
.mobileDrawer__nav a{
  text-decoration:none;
  color: var(--text);
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
}
body.theme-summer .mobileDrawer__nav a{
  background: rgba(0,0,0,.04);
  border:1px solid rgba(0,0,0,.12);
}

@media (max-width:980px){
  .nav{display:none !important;}
  .hamburger{display:flex;}
}


/* Guest guide CTA alignment */
.guide-cta{display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-top:24px;}


/* =========================
   Reviews
   ========================= */
.reviews__top{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 10px;
}
.reviews__scoreCard{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.reviews__score{
  display:flex;
  align-items: baseline;
  gap: 12px;
}
.reviews__scoreValue{
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.reviews__scoreLabel{
  color: var(--muted);
  font-weight: 700;
}
.reviews__meta{
  margin-top: 10px;
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.reviews__metaRow{
  display:flex;
  gap: 8px;
  align-items: baseline;
  color: var(--muted);
  font-weight: 700;
}
.reviews__metaNum{
  color: var(--text);
  font-weight: 900;
}
.reviews__stars{
  font-size: 18px;
  letter-spacing: 1px;
}
.reviews__breakdown{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.rBar{
  display:grid;
  grid-template-columns: 160px 1fr 56px;
  gap: 12px;
  align-items:center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.rBar:last-child{ border-bottom: none; }
.rBar__label{
  color: var(--text);
  font-weight: 800;
}
.rBar__track{
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  overflow:hidden;
}
.rBar__fill{
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.55));
}
.rBar__val{
  text-align:right;
  color: var(--muted);
  font-weight: 800;
}

.reviews__list{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.gReview{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction: column;
  gap: 10px;
  min-height: 210px;
}
.gReview__head{
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
.gReview__avatar{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
}
.gReview__meta{
  flex:1;
}
.gReview__name{
  font-weight: 900;
}
.gReview__sub{
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}
.gReview__stars{
  margin-left:auto;
  letter-spacing: 1px;
  font-size: 14px;
  opacity: .95;
}
.gReview__text{
  color: var(--text);
  line-height: 1.45;
}
.reviews__note{
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px){
  .reviews__top{ grid-template-columns: 1fr; }
  .reviews__list{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .reviews__list{ grid-template-columns: 1fr; }
  .rBar{ grid-template-columns: 140px 1fr 56px; }
}


/* --- LKV Mini Picker Modal --- */
.lkv-modal{position:fixed;inset:0;display:none;z-index:9999}
.lkv-modal.is-open{display:block}
.lkv-modal__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.55)}
.lkv-modal__panel{position:relative;max-width:560px;margin:10vh auto 0;background:rgba(20,20,20,.95);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.12);border-radius:18px;box-shadow:0 30px 80px rgba(0,0,0,.45);color:#fff;padding:14px}
@media (max-width:640px){.lkv-modal__panel{margin:8vh 14px 0}}
.lkv-modal__header{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:6px 8px 10px}
.lkv-modal__title{margin:0;font-size:18px;letter-spacing:.2px}
.lkv-modal__close{border:0;background:transparent;color:#fff;font-size:18px;line-height:1;cursor:pointer;opacity:.85}
.lkv-modal__close:hover{opacity:1}
.lkv-modal__body{padding:6px 8px 10px}
.lkv-modal__footer{display:flex;justify-content:flex-end;gap:10px;padding:10px 8px 6px;flex-wrap:wrap}
.lkv-formgrid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
@media (max-width:520px){.lkv-formgrid{grid-template-columns:1fr}}
.lkv-field{display:flex;flex-direction:column;gap:6px}
.lkv-field__label{font-size:13px;opacity:.85}
.lkv-field__input{height:42px;border-radius:12px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);color:#fff;padding:0 12px;outline:none}
.lkv-field__input:focus{border-color:rgba(255,255,255,.28)}
.lkv-hint{margin:10px 0 0;font-size:13px;opacity:.8}
.lkv-error{margin:10px 0 0;font-size:13px;color:#ffb4b4}


/* === Direct booking inline block (hero) === */
.directBookingBlock{
  margin-top: 14px;
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background: rgba(0,0,0,0.14);
  backdrop-filter: blur(6px);
}
html[data-theme="summer"] .directBookingBlock{
  border: 1px solid rgba(0,0,0,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(246,248,251,0.78));
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}
.directBookingBlock__adv h3{
  margin: 0 0 6px 0;
  font-size: 16px;
  line-height: 1.25;
}
.directBookingBlock__adv p{
  margin: 0 0 10px 0;
  opacity: .92;
}
.directBookingBlock__platforms h4{
  margin: 0 0 8px 0;
  font-size: 14px;
  opacity: .95;
}
.directBookingBlock__links{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.directBookingBlock__links a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
html[data-theme="summer"] .directBookingBlock__links a{
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.98);
  color: rgba(10,18,22,0.95);
}
.directBookingBlock__links a:hover{
  transform: translateY(-1px);
}

/* === Platforms row icon abbreviation fallback === */
.platform__abbr{
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: .2px;
  border: 2px solid currentColor;
  opacity: .9;
}

/* === Blog platforms section === */
.blog-platforms{
  margin: 32px auto 0;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  background: transparent;
}
html[data-theme="winter"] .blog-platforms{
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
}
.blog-platforms .muted{ opacity: .85; }


/* === Direct booking platforms panel polish === */
.directBookingBlock__platforms{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
html[data-theme="summer"] .directBookingBlock__platforms{
  border-top: 1px solid rgba(0,0,0,0.10);
}

/* --- LKV FINAL: remove grey card fill in guide boxes --- */
.guide-box{background:transparent !important;}
.ads-card,.ads-kpi{background:transparent;}

/* Anchor offset for fixed header */
:root { --anchor-offset: 96px; }
[id] { scroll-margin-top: var(--anchor-offset); }

/* Direct booking button under the direct booking text */
.direct-booking-btn { display: inline-flex; margin-top: 10px; }

/* Booking CTA row */
.direct-cta-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.direct-cta-row .btn{min-width:160px}

/* Simple modal */
.modal{position:fixed;inset:0;display:none;z-index:9999}
.modal.is-open{display:block}
.modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.55)}
.modal-card{position:relative;max-width:520px;margin:10vh auto;background:rgba(20,24,24,.96);
  border:1px solid rgba(255,255,255,.08);border-radius:18px;box-shadow:0 18px 60px rgba(0,0,0,.45);
  padding:18px}
.modal-head{display:flex;align-items:center;justify-content:space-between;gap:12px}
.modal-close{background:transparent;border:none;color:#fff;font-size:26px;line-height:1;cursor:pointer}
.modal-body{margin-top:14px}
.form-row{display:flex;flex-direction:column;gap:6px;margin-bottom:12px}
.form-row input{padding:10px 12px;border-radius:12px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.06);color:#fff}
.modal-hint{opacity:.85;margin-top:6px}
.modal-actions{display:flex;justify-content:flex-end;gap:10px;margin-top:16px;flex-wrap:wrap}


/* Anchor offset fix: ensure menu 'İletişim' lands exactly on contact section */
#contact{ scroll-margin-top: 160px; }



/* === Design tweaks (2025-12-27) === */
/* Blog hero: reduce empty space, keep content usable */
.hero.hero--compact{
  min-height: calc(70vh - 60px);
  align-items: end;
}
@media (max-width: 680px){
  .hero.hero--compact{ min-height: calc(62vh - 54px); }
}

/* Summer hero: improve readability of dark texts inside glass booking block */
html[data-theme="summer"] .directBookingBlock{
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(0,0,0,0.10);
}
html[data-theme="summer"] .directBookingBlock,
html[data-theme="summer"] .directBookingBlock h3,
html[data-theme="summer"] .directBookingBlock h4,
html[data-theme="summer"] .directBookingBlock p{
  color: rgba(10,14,16,0.92);
}


/* === WhatsApp CTA (global) === */
.wp-icon{width:18px;height:18px;display:inline-block}
.btn--wp, .btn.btn--wp{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.fab{
  display:flex;
  align-items:center;
  gap:10px;
  left:auto !important;
  top:auto !important;
  right:18px !important;
  bottom:18px !important;
}

/* WhatsApp icon inside CTA */
.btn-whatsapp .wp-icon{
  width: 18px;
  height: 18px;
  display: inline-block;
  object-fit: contain;
}
