@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --navy: #07366f;
  --navy-deep: #031d3d;
  --blue: #0b5e9c;
  --cyan: #05a9c9;
  --cyan-soft: #dff7fb;
  --gold: #c7942c;
  --gold-light: #f0cf67;
  --ink: #142136;
  --muted: #667085;
  --paper: #ffffff;
  --sand: #f7f4ee;
  --line: rgba(7, 54, 111, 0.12);
  --shadow: 0 24px 60px rgba(3, 29, 61, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-sand { background: var(--sand); }
.section-navy { background: var(--navy-deep); color: #fff; }
.section-cyan { background: var(--cyan-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--gold-light); }

h1, h2, h3, h4 { margin: 0 0 18px; line-height: 1.08; color: var(--navy-deep); }
h1, h2 { font-family: "Cormorant Garamond", Georgia, serif; }
h1 { font-size: clamp(3rem, 7vw, 6.6rem); font-weight: 600; letter-spacing: -0.045em; }
h2 { font-size: clamp(2.5rem, 4.4vw, 4.6rem); font-weight: 600; letter-spacing: -0.035em; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 18px; color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.24rem); max-width: 680px; }
.text-white, .text-white h1, .text-white h2, .text-white h3, .text-white p { color: #fff; }
.text-gold { color: var(--gold-light); }
.text-center { text-align: center; }
.centered-lead { margin-inline: auto; }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy-deep); box-shadow: 0 16px 34px rgba(199,148,44,.24); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.52); color: #fff; background: rgba(255,255,255,.04); }
.btn-outline-dark { border-color: rgba(7,54,111,.25); color: var(--navy); background: transparent; }
.btn svg { width: 18px; height: 18px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.topbar { background: var(--navy-deep); color: rgba(255,255,255,.86); font-size: 0.77rem; }
.topbar-inner { min-height: 39px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.topbar-group { display: flex; align-items: center; gap: 22px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar svg { width: 14px; height: 14px; color: var(--gold-light); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(7,54,111,.08);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(3,29,61,.09); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; width: min(350px, 31vw); }
.brand img { width: 100%; height: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { position: relative; font-size: .86rem; font-weight: 700; color: #263650; padding: 34px 0 31px; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 23px; height: 2px; background: var(--gold); transition: right .25s ease; }
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav a.active { color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { min-height: 44px; padding-inline: 18px; font-size: .8rem; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: #fff; place-items: center; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; width: 20px; height: 2px; background: var(--navy-deep); display: block; transition: .25s; }
.menu-toggle span { margin: 4px 0; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 127px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(3,29,61,.94) 0%, rgba(3,29,61,.70) 47%, rgba(3,29,61,.16) 100%), url('../images/kusadasi-coast.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -310px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(240,207,103,.30);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.025);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 780px; padding: 90px 0 110px; }
.hero h1 { color: #fff; max-width: 760px; }
.hero h1 em { color: var(--gold-light); font-style: italic; font-weight: 500; }
.hero .lead { color: rgba(255,255,255,.78); max-width: 610px; }
.hero-note { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); font-size: .82rem; margin-top: 34px; }
.hero-note::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 6px rgba(5,169,201,.17); }
.hero-scroll { position: absolute; z-index: 3; right: 4%; bottom: 38px; color: rgba(255,255,255,.7); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; display: flex; align-items: center; gap: 12px; }
.hero-scroll::after { content: ""; height: 55px; width: 1px; background: linear-gradient(var(--gold-light), transparent); }

.trust-strip { position: relative; z-index: 5; margin-top: -34px; }
.trust-grid { background: #fff; border: 1px solid rgba(7,54,111,.09); border-radius: 18px; box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; }
.trust-item { padding: 24px 26px; display: flex; gap: 14px; align-items: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%; display: grid; place-items: center; background: var(--cyan-soft); color: var(--navy); }
.trust-icon svg { width: 20px; height: 20px; }
.trust-item strong { display: block; color: var(--navy-deep); font-size: .92rem; }
.trust-item span { display: block; color: var(--muted); font-size: .72rem; margin-top: 2px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.split.reverse .media-stack { order: 2; }
.media-stack { position: relative; min-height: 550px; }
.media-main { position: absolute; inset: 0 70px 50px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-main img { width: 100%; height: 100%; object-fit: cover; }
.media-float { position: absolute; width: 43%; right: 0; bottom: 0; border: 10px solid #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.media-float img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.media-badge { position: absolute; left: -22px; bottom: 96px; background: var(--navy-deep); color: #fff; width: 145px; height: 145px; border-radius: 50%; display: grid; place-items: center; text-align: center; padding: 18px; box-shadow: var(--shadow); border: 1px solid rgba(240,207,103,.4); }
.media-badge strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; color: var(--gold-light); line-height: 1; }
.media-badge span { font-size: .67rem; line-height: 1.45; margin-top: 5px; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; color: #36445c; font-size: .92rem; }
.check-list svg { width: 20px; height: 20px; flex: 0 0 20px; color: var(--cyan); margin-top: 3px; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 48px; }
.section-head h2 { max-width: 650px; }
.section-head p { max-width: 500px; }
.section-head .btn { flex: 0 0 auto; }

.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tour-card { position: relative; background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid rgba(7,54,111,.09); transition: transform .3s ease, box-shadow .3s ease; }
.tour-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.tour-image { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.tour-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tour-card:hover .tour-image img { transform: scale(1.045); }
.tour-tag { position: absolute; top: 16px; left: 16px; padding: 8px 12px; border-radius: 999px; background: rgba(3,29,61,.88); backdrop-filter: blur(8px); color: #fff; font-size: .7rem; font-weight: 700; }
.tour-body { padding: 25px 25px 27px; }
.tour-body h3 { margin-bottom: 11px; }
.tour-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 20px; color: var(--muted); font-size: .76rem; }
.tour-meta span { display: inline-flex; align-items: center; gap: 6px; }
.tour-meta svg { width: 15px; height: 15px; color: var(--gold); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 700; font-size: .82rem; }
.text-link svg { width: 17px; height: 17px; transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { padding: 34px 30px; border-radius: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); transition: background .25s, transform .25s; }
.service-card:hover { background: rgba(255,255,255,.10); transform: translateY(-4px); }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(135deg,var(--gold-light),var(--gold)); color: var(--navy-deep); margin-bottom: 24px; }
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { color: #fff; }
.service-card p { color: rgba(255,255,255,.66); font-size: .9rem; }
.service-card .text-link { color: var(--gold-light); }

.route-panel { position: relative; overflow: hidden; border-radius: 28px; min-height: 410px; display: grid; align-items: center; color: #fff; background: var(--navy-deep); }
.route-panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(3,29,61,.97),rgba(3,29,61,.74),rgba(3,29,61,.12)), url('../images/kusadasi-sunset.webp') center/cover; }
.route-panel-content { position: relative; z-index: 2; padding: 65px; max-width: 720px; }
.route-panel h2 { color: #fff; }
.route-panel p { color: rgba(255,255,255,.75); }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; counter-reset: steps; }
.step { position: relative; padding: 10px 32px 0 0; counter-increment: steps; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 29px; right: 13px; width: calc(100% - 58px); height: 1px; background: linear-gradient(90deg,var(--gold),rgba(199,148,44,.08)); transform: translateX(100%); }
.step-number { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--sand); border: 1px solid rgba(199,148,44,.35); color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.45rem; font-weight: 700; margin-bottom: 23px; }
.step h3 { font-size: 1.05rem; }
.step p { font-size: .84rem; }

.fleet-preview { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; }
.fleet-image { min-height: 520px; border-radius: 24px; overflow: hidden; }
.fleet-image img { width: 100%; height: 100%; object-fit: cover; }
.fleet-copy { background: var(--navy-deep); color: #fff; border-radius: 24px; padding: 55px 48px; display: flex; flex-direction: column; justify-content: center; }
.fleet-copy h2, .fleet-copy h3 { color: #fff; }
.fleet-copy p { color: rgba(255,255,255,.7); }
.feature-pills { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 28px; }
.feature-pills span { border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 8px 12px; font-size: .72rem; color: rgba(255,255,255,.83); }

.page-hero { position: relative; overflow: hidden; padding: 120px 0 95px; background: var(--navy-deep); color: #fff; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg,rgba(3,29,61,.96),rgba(3,29,61,.72)), var(--page-image, url('../images/kusadasi-port.webp')); background-position: center; background-size: cover; opacity: .96; }
.page-hero::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(240,207,103,.22); right: -100px; top: -190px; box-shadow: 0 0 0 55px rgba(255,255,255,.025); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(3.2rem, 6vw, 6rem); color: #fff; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 650px; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: .72rem; color: rgba(255,255,255,.62); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb svg { width: 13px; height: 13px; }

.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 46px; }
.value-card { padding: 28px 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.value-card span { display: block; font-family: "Cormorant Garamond", Georgia, serif; color: var(--gold); font-size: 2.3rem; line-height: 1; margin-bottom: 14px; }
.value-card h3 { font-size: 1rem; }
.value-card p { font-size: .82rem; margin: 0; }

.filters { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 35px; }
.filter-btn { border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: 999px; padding: 11px 17px; font-size: .76rem; font-weight: 700; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.tour-card.is-hidden { display: none; }

.detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 48px; align-items: start; }
.detail-hero-image { border-radius: 24px; overflow: hidden; aspect-ratio: 16/9; margin-bottom: 40px; }
.detail-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-content h2 { font-size: clamp(2.1rem,3.8vw,3.4rem); margin-top: 45px; }
.detail-content h3 { margin-top: 32px; }
.itinerary { list-style: none; padding: 0; margin: 26px 0; border-left: 1px solid rgba(199,148,44,.35); }
.itinerary li { position: relative; padding: 0 0 28px 30px; }
.itinerary li::before { content: ""; position: absolute; left: -6px; top: 7px; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px #fff; }
.itinerary li:last-child { padding-bottom: 0; }
.itinerary strong { display: block; color: var(--navy-deep); margin-bottom: 5px; }
.sidebar-card { position: sticky; top: 120px; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 18px 45px rgba(3,29,61,.08); }
.sidebar-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; }
.sidebar-list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.sidebar-list li { display: flex; justify-content: space-between; gap: 12px; font-size: .82rem; padding-bottom: 11px; border-bottom: 1px solid var(--line); }
.sidebar-list span { color: var(--muted); }
.sidebar-card .btn { width: 100%; margin-top: 10px; }
.include-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
.include-box { padding: 25px; border-radius: 16px; background: var(--sand); }
.include-box h3 { font-size: 1rem; margin-bottom: 17px; }
.include-box ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.include-box li { display: flex; align-items: flex-start; gap: 9px; font-size: .8rem; color: #4d5b70; }
.include-box svg { width: 17px; height: 17px; flex: 0 0 auto; color: var(--cyan); margin-top: 2px; }
.include-box.not-included svg { color: #b86655; }

.service-list-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.service-list-card { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 30px; border-radius: 18px; border: 1px solid var(--line); background: #fff; }
.service-list-card .service-icon { margin: 0; }
.service-list-card h3 { margin-bottom: 10px; }
.service-list-card p { font-size: .86rem; margin: 0; }

.vehicle-card { display: grid; grid-template-columns: 1.1fr .9fr; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: #fff; }
.vehicle-card + .vehicle-card { margin-top: 28px; }
.vehicle-card.reverse .vehicle-image { order: 2; }
.vehicle-image { min-height: 460px; }
.vehicle-image img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-content { padding: 52px 45px; display: flex; flex-direction: column; justify-content: center; }
.spec-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 22px 0; }
.spec { background: var(--sand); padding: 13px 14px; border-radius: 12px; font-size: .76rem; color: #526079; }
.spec strong { display: block; color: var(--navy-deep); font-size: .84rem; margin-bottom: 2px; }

.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 54px; }
.contact-cards { display: grid; gap: 14px; margin-top: 30px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: 15px; }
.contact-card .contact-icon { width: 43px; height: 43px; flex: 0 0 43px; border-radius: 12px; display: grid; place-items: center; background: var(--cyan-soft); color: var(--navy); }
.contact-card svg { width: 20px; height: 20px; }
.contact-card strong { display: block; color: var(--navy-deep); margin-bottom: 3px; font-size: .88rem; }
.contact-card span, .contact-card a { color: var(--muted); font-size: .82rem; }
.form-panel { background: var(--sand); border-radius: 24px; padding: 42px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; color: var(--navy-deep); font-size: .76rem; font-weight: 700; margin-bottom: 8px; }
.form-control { width: 100%; min-height: 50px; border: 1px solid rgba(7,54,111,.14); border-radius: 12px; background: #fff; padding: 0 15px; outline: 0; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
textarea.form-control { min-height: 135px; padding-top: 13px; resize: vertical; }
.form-control:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(5,169,201,.10); }
.form-note { font-size: .7rem; color: var(--muted); margin-top: 12px; }
.map-frame { width: 100%; height: 420px; border: 0; display: block; filter: saturate(.85); }

.faq { max-width: 900px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; text-align: left; color: var(--navy-deep); font-weight: 700; }
.faq-question svg { width: 20px; height: 20px; transition: transform .25s; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 0 22px; margin: 0; }

.site-footer { background: var(--navy-deep); color: #fff; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr 1fr; gap: 55px; padding-bottom: 55px; }
.footer-logo { width: min(360px,100%); padding: 11px 15px; background: #fff; border-radius: 12px; margin-bottom: 22px; }
.footer-about p { color: rgba(255,255,255,.62); font-size: .82rem; max-width: 390px; }
.footer-title { color: #fff; font-family: "Manrope",sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin: 8px 0 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.66); font-size: .8rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.66); font-size: .8rem; }
.footer-contact svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--gold-light); margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); min-height: 70px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: rgba(255,255,255,.45); font-size: .7rem; }
.footer-bottom-links { display: flex; gap: 20px; }

.floating-actions { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: grid; gap: 10px; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 12px 28px rgba(3,29,61,.22); transition: transform .2s; }
.float-btn:hover { transform: translateY(-3px); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.phone { background: var(--navy); }
.float-btn svg { width: 23px; height: 23px; }

.credit-note { font-size: .68rem; color: #8993a2; }
.empty-state { padding: 60px 25px; text-align: center; border: 1px dashed var(--line); border-radius: 18px; }

@media (max-width: 1080px) {
  .brand { width: 280px; }
  .nav { gap: 20px; }
  .header-actions .btn { display: none; }
  .split { gap: 50px; }
  .trust-item { padding: 20px 16px; }
  .footer-grid { grid-template-columns: 1.3fr .7fr .8fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .topbar-group:first-child a:last-child { display: none; }
  .header-inner { min-height: 76px; }
  .brand { width: min(300px, 63vw); }
  .menu-toggle { display: grid; }
  .nav {
    position: fixed;
    inset: 76px 0 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 28px 120px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 17px 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .header-actions { margin-left: auto; }
  .hero { min-height: 690px; }
  .hero::before { background-image: linear-gradient(90deg,rgba(3,29,61,.94),rgba(3,29,61,.62)), url('../images/kusadasi-coast.webp'); background-position: 60% center; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .contact-grid, .detail-layout { grid-template-columns: 1fr; }
  .media-stack { min-height: 520px; }
  .tour-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .step::after { display: none; }
  .fleet-preview { grid-template-columns: 1fr; }
  .fleet-image { min-height: 450px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .sidebar-card { position: static; }
  .vehicle-card { grid-template-columns: 1fr; }
  .vehicle-card.reverse .vehicle-image { order: initial; }
  .service-list-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .section-sm { padding: 56px 0; }
  .topbar { display: none; }
  .site-header { top: 0; }
  .nav { inset-top: 76px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
  .hero { min-height: 660px; }
  .hero-content { padding: 78px 0 110px; }
  .hero .lead { font-size: .98rem; }
  .hero-scroll { display: none; }
  .btn-row { gap: 9px; }
  .btn { width: 100%; }
  .trust-strip { margin-top: -20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .split { gap: 38px; }
  .media-stack { min-height: 410px; }
  .media-main { inset: 0 35px 42px 0; }
  .media-float { width: 45%; border-width: 7px; }
  .media-badge { width: 108px; height: 108px; left: -4px; bottom: 72px; padding: 10px; }
  .media-badge strong { font-size: 1.15rem; }
  .media-badge span { font-size: .55rem; }
  .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 32px; }
  .section-head .btn { width: auto; }
  .tour-grid, .service-grid, .steps, .value-grid { grid-template-columns: 1fr; }
  .route-panel-content { padding: 45px 25px; }
  .fleet-image { min-height: 330px; }
  .fleet-copy { padding: 40px 28px; }
  .page-hero { padding: 85px 0 70px; }
  .page-hero h1 { font-size: clamp(3rem,14vw,4.5rem); }
  .include-grid { grid-template-columns: 1fr; }
  .sidebar-card { padding: 24px; }
  .service-list-card { grid-template-columns: 1fr; }
  .vehicle-image { min-height: 320px; }
  .vehicle-content { padding: 38px 26px; }
  .form-panel { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 18px 0; }
  .floating-actions { right: 14px; bottom: 14px; }
  .float-btn { width: 48px; height: 48px; }
}
