/* =========================================================
   VİBE ANTALYA – GLOBAL STYLES
   (Opak / temiz / Turna tarzı. Glassmorphism kaldırıldı.)
   ========================================================= */

/* ---------- 1) TOKENLAR ---------- */
:root {
  --primary: #07145f;
  --primary-dark: #040b3d;
  --secondary: #00a6d6;
  --accent: #ff8a00;
  --bg: #f6f8fc;
  --white: #ffffff;
  --text: #101828;
  --muted: #667085;
  --border: #e4e7ec;
  --success: #12b76a;

  --container: 1180px;
  --radius-card: 22px;
  --radius-btn: 14px;
  --shadow: 0 12px 32px rgba(7, 20, 95, 0.08);
  --shadow-hover: 0 22px 46px rgba(7, 20, 95, 0.16);

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---------- 2) RESET ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);          /* düz açık gri – sol mavi tint KALDIRILDI */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .logo-text { font-family: var(--font-head); color: var(--primary); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--bg { background: #eef2fa; }   /* hafif gri ara bölüm */

.grad-text {
  background: linear-gradient(100deg, var(--secondary), #2d7bf5);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
  letter-spacing: .6px; text-transform: uppercase; color: var(--secondary);
  background: rgba(0,166,214,.10); border: 1px solid rgba(0,166,214,.18);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(27px, 4vw, 40px); font-weight: 700; margin-bottom: 12px; letter-spacing: -.5px; }
.section-head p { color: var(--muted); font-size: 16px; }

/* ---------- 3) BUTONLAR ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: var(--radius-btn);
  border: 1px solid transparent; cursor: pointer; transition: all .25s ease; white-space: nowrap;
}
.btn-primary { background: linear-gradient(120deg, var(--primary), #1b2e9e); color: #fff; box-shadow: 0 8px 20px rgba(7,20,95,.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(7,20,95,.32); }
.btn-secondary { background: linear-gradient(120deg, var(--secondary), #2d7bf5); color: #fff; }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,166,214,.32); }
.btn-accent { background: linear-gradient(120deg, var(--accent), #ff6a00); color: #fff; box-shadow: 0 8px 20px rgba(255,138,0,.32); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(255,138,0,.42); }
.btn-outline { background: #fff; color: var(--primary); border-color: var(--border); }
.btn-outline:hover { transform: translateY(-2px); border-color: var(--primary); box-shadow: var(--shadow); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.3); }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- 4) HEADER (opak) ---------- */
.header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo svg { width: 46px; height: 46px; flex-shrink: 0; filter: drop-shadow(0 6px 12px rgba(7,20,95,.2)); }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-text { font-size: 21px; font-weight: 700; letter-spacing: -.4px; }
.logo-text span { color: var(--secondary); }
.logo-sub { font-family: var(--font-head); font-size: 9.5px; font-weight: 600; letter-spacing: 3.4px; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav-links { display: flex; gap: 4px; background: #f0f3fa; border: 1px solid var(--border); padding: 5px; border-radius: 999px; }
.nav-links a { font-family: var(--font-head); font-weight: 500; font-size: 14.5px; color: var(--text); padding: 8px 16px; border-radius: 999px; transition: all .25s; }
.nav-links a:hover { color: var(--primary); background: rgba(0,166,214,.10); }
.nav-links a.active { color: #fff; background: linear-gradient(120deg, var(--primary), #1b2e9e); box-shadow: 0 6px 14px rgba(7,20,95,.28); }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; background: #fff; border: 1px solid var(--border); border-radius: 14px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; margin: 0 auto; background: var(--primary); border-radius: 2px; transition: all .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5) HERO ---------- */
.hero { position: relative; padding: 64px 0 84px; background: linear-gradient(180deg, #ffffff, var(--bg)); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero-copy h1 { font-size: clamp(34px, 5.2vw, 56px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 18px; }
.hero-copy p { font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 26px; }

.hero-stats { display: flex; gap: 28px; margin-top: 26px; }
.hero-stats .st strong { font-family: var(--font-head); font-size: 24px; color: var(--primary); display: block; }
.hero-stats .st small { color: var(--muted); font-size: 13px; }

.hero-media { position: relative; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-hover); aspect-ratio: 4 / 3.4; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,20,95,0) 40%, rgba(7,20,95,.32)); }
.hero-badge { position: absolute; left: 18px; bottom: 18px; z-index: 2; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow); }
.hero-badge strong { font-family: var(--font-head); color: var(--primary); display: block; font-size: 15px; }
.hero-badge small { color: var(--muted); }
.hero-badge .dot { width: 38px; height: 38px; border-radius: 12px; background: rgba(0,166,214,.12); display: grid; place-items: center; font-size: 20px; }

/* ---------- 6) TURNA TARZI ARAMA WIDGET ---------- */
.search-widget { margin-top: 4px; }
.search-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.stab {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--text);
  background: #fff; border: 1px solid var(--border); padding: 9px 16px; border-radius: 13px; cursor: pointer; transition: all .2s;
}
.stab .em { font-size: 16px; }
.stab:hover { border-color: var(--secondary); color: var(--primary); }
.stab.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 6px 14px rgba(7,20,95,.25); }
/* "boş/yapım aşamasında" sekmeler (turna'daki otobüs/uçak yerine) */
.stab.is-soon { opacity: .5; cursor: not-allowed; }
.stab.is-soon::after { content: 'yakında'; font-size: 9.5px; font-weight: 600; background: var(--border); color: var(--muted); padding: 2px 6px; border-radius: 6px; margin-left: 2px; }

.search-bar { display: flex; align-items: stretch; background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow); padding: 8px; }
.sb-field { display: flex; flex-direction: column; justify-content: center; gap: 3px; padding: 8px 20px; flex: 1; min-width: 0; }
.sb-field > label { font-family: var(--font-head); font-size: 11.5px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.sb-divider { width: 1px; background: var(--border); margin: 10px 0; }
.search-bar input[type=date] { border: none; background: transparent; font-size: 15px; font-family: var(--font-body); color: var(--text); outline: none; padding: 2px 0; width: 100%; }
.search-bar .cs-trigger { border: none; background: transparent; height: auto; padding: 2px 0; font-size: 15px; font-weight: 500; }
.search-bar .cs.open .cs-trigger { box-shadow: none; }
.sb-btn { align-self: center; padding: 16px 28px; border-radius: 14px; font-size: 15px; margin-left: 6px; }

/* ---------- 7) ÖZEL DROPDOWN (select2 tarzı, opak) ---------- */
.cs { position: relative; }
.cs-native { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.cs-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; height: 46px; padding: 0 14px; font-family: var(--font-body); font-size: 14px; color: var(--text);
  background: #fff; border: 1px solid var(--border); border-radius: 12px; cursor: pointer; transition: all .2s; text-align: left;
}
.cs-trigger:hover { border-color: #cdd5e3; }
.cs.open .cs-trigger { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(0,166,214,.15); }
.cs-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cs-arrow { width: 16px; height: 16px; stroke: var(--muted); flex-shrink: 0; transition: transform .25s; }
.cs.open .cs-arrow { transform: rotate(180deg); }
.cs-panel {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 60;
  background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-hover);
  padding: 8px; opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease; max-height: 280px; overflow: hidden; display: flex; flex-direction: column; min-width: 200px;
}
.cs.open .cs-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.cs-search { padding: 4px 4px 8px; }
.cs-search input { width: 100%; padding: 9px 12px; font-size: 13px; font-family: var(--font-body); border: 1px solid var(--border); border-radius: 10px; background: #fff; outline: none; }
.cs-search input:focus { border-color: var(--secondary); }
.cs-list { overflow-y: auto; display: flex; flex-direction: column; gap: 2px; }
.cs-option { padding: 10px 12px; font-size: 14px; border-radius: 10px; cursor: pointer; transition: all .15s; display: flex; align-items: center; justify-content: space-between; }
.cs-option:hover { background: rgba(0,166,214,.10); }
.cs-option.selected { background: linear-gradient(120deg, var(--primary), #1b2e9e); color: #fff; }
.cs-option.selected::after { content: '✓'; font-weight: 700; }
.cs-empty { padding: 14px; text-align: center; color: var(--muted); font-size: 13px; }

/* ---------- 8) TUR KARTLARI (opak) ---------- */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tour-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .35s ease, box-shadow .35s ease; }
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.tour-card .thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; display: block; }
.tour-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tour-card:hover .thumb img { transform: scale(1.07); }
.tour-card .thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,20,95,0) 55%, rgba(7,20,95,.4)); }
.tour-tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: #fff; color: var(--primary); font-family: var(--font-head); font-weight: 600; font-size: 12px; padding: 6px 13px; border-radius: 999px; border: 1px solid var(--border); }
.tour-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.tour-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.tour-card h3 a:hover { color: var(--secondary); }
.tour-card .desc { color: var(--muted); font-size: 14px; margin-bottom: 16px; flex: 1; }
.tour-meta { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.tour-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.tour-meta span svg { width: 15px; height: 15px; stroke: var(--secondary); }
.tour-price { margin-bottom: 16px; }
.tour-price small { color: var(--muted); font-size: 12px; display: block; }
.tour-price strong { font-family: var(--font-head); color: var(--primary); font-size: 20px; }
.tour-actions { display: flex; gap: 10px; }
.tour-actions .btn { flex: 1; padding: 11px 12px; font-size: 14px; }

/* ---------- 9) ROTALAR ---------- */
.routes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.route-card { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 3 / 4; box-shadow: var(--shadow); display: block; transition: transform .35s ease; }
.route-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.route-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.route-card:hover img { transform: scale(1.09); }
.route-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,20,95,0) 35%, rgba(7,20,95,.8)); }
.route-card .label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px; color: #fff; }
.route-card .label strong { font-family: var(--font-head); font-size: 18px; color: #fff; display: block; }
.route-card .label small { font-size: 13px; opacity: .85; }

/* ---------- 10) FEATURES ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 28px 24px; box-shadow: var(--shadow); transition: transform .35s ease, box-shadow .35s ease; }
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.feature .ico { width: 56px; height: 56px; border-radius: 17px; background: linear-gradient(135deg, var(--secondary), var(--primary)); display: grid; place-items: center; margin-bottom: 18px; font-size: 26px; box-shadow: 0 8px 18px rgba(7,20,95,.22); }
.feature h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14px; }

/* ---------- 11) CTA BANDI ---------- */
.cta-band { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 28px; padding: 50px; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; box-shadow: var(--shadow-hover); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(0,166,214,.5), transparent 70%); }
.cta-band::after { content: ''; position: absolute; left: -40px; bottom: -80px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(255,138,0,.35), transparent 70%); }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 33px); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 480px; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---------- 12) PAGE HERO ---------- */
.page-hero { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(0,166,214,.4), transparent 70%); }
.page-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 10px; letter-spacing: -.5px; position: relative; }
.page-hero p { color: rgba(255,255,255,.84); max-width: 600px; margin: 0 auto; position: relative; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 14px; position: relative; }
.breadcrumb a:hover { color: #fff; }

/* ---------- 13) FİLTRE ---------- */
.filter-bar { background: #fff; border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow); padding: 20px; display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 14px; align-items: end; margin-bottom: 40px; }
.filter-bar .field { display: flex; flex-direction: column; gap: 6px; }
.filter-bar label { font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }
.filter-bar .btn { height: 46px; }
.no-results { text-align: center; color: var(--muted); padding: 40px; grid-column: 1 / -1; }

/* ---------- 14) TUR DETAY ---------- */
.detail-hero { position: relative; height: 440px; border-radius: 0 0 28px 28px; overflow: hidden; }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,20,95,.15), rgba(7,20,95,.74)); }
.detail-hero .overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; }
.detail-hero .overlay .container { padding-bottom: 34px; color: #fff; }
.detail-hero .overlay h1 { color: #fff; font-size: clamp(28px, 4vw, 46px); font-weight: 700; margin-bottom: 12px; letter-spacing: -.5px; }
.detail-hero .pills { display: flex; gap: 12px; flex-wrap: wrap; }
.detail-hero .pills span { background: rgba(255,255,255,.16); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 8px 15px; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }

.detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 36px; margin-top: 48px; }
.detail-main h2 { font-size: 24px; font-weight: 700; margin: 0 0 16px; }
.detail-block { margin-bottom: 40px; }
.detail-block p { color: var(--muted); margin-bottom: 12px; }

.timeline { border-left: 2px solid var(--border); padding-left: 24px; margin-left: 6px; }
.timeline li { position: relative; padding-bottom: 22px; }
.timeline li::before { content: ''; position: absolute; left: -31px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 4px rgba(0,166,214,.15); }
.timeline li strong { display: block; font-family: var(--font-head); color: var(--primary); }
.timeline li span { color: var(--muted); font-size: 14px; }

.check-list li, .cross-list li, .info-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; color: var(--text); font-size: 15px; }
.check-list li::before { content: '✓'; color: var(--success); font-weight: 700; }
.cross-list li::before { content: '✕'; color: #f04438; font-weight: 700; }
.info-list li::before { content: 'ℹ'; color: var(--secondary); font-weight: 700; }

.booking-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); box-shadow: var(--shadow-hover); padding: 26px; position: sticky; top: 96px; }
.booking-card .price-row { display: flex; align-items: baseline; gap: 8px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--border); }
.booking-card .price-row strong { font-family: var(--font-head); font-size: 28px; color: var(--primary); }
.booking-card .price-row small { color: var(--muted); }
.booking-card h3 { font-size: 18px; margin-bottom: 4px; }
.booking-card .sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }

.selected-tour { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding: 12px 14px; background: rgba(0,166,214,.08); border: 1px solid rgba(0,166,214,.22); border-radius: 14px; }
.selected-tour .ico { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--secondary), var(--primary)); display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
.selected-tour small { color: var(--muted); font-size: 11.5px; text-transform: uppercase; letter-spacing: .5px; font-family: var(--font-head); font-weight: 600; }
.selected-tour strong { display: block; font-family: var(--font-head); color: var(--primary); font-size: 15px; }

/* ---------- 15) FORMLAR ---------- */
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--text); }
.form-field input, .form-field textarea { font-family: var(--font-body); font-size: 14px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 12px; background: #fff; color: var(--text); outline: none; transition: border .2s; width: 100%; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--secondary); }
.form-field textarea { resize: vertical; min-height: 80px; }

/* ---------- 16) HAKKIMIZDA & İLETİŞİM ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-grid .media { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-hover); aspect-ratio: 4/3; }
.about-grid .media img { width: 100%; height: 100%; object-fit: cover; }
.about-grid h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 16px; }
.about-grid p { color: var(--muted); font-size: 16px; margin-bottom: 14px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: start; }
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-row { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); transition: transform .25s; }
.info-row:hover { transform: translateY(-4px); }
.info-row .ico { width: 46px; height: 46px; border-radius: 14px; background: rgba(0,166,214,.12); display: grid; place-items: center; font-size: 22px; flex-shrink: 0; }
.info-row strong { font-family: var(--font-head); color: var(--primary); display: block; font-size: 15px; }
.info-row span { color: var(--muted); font-size: 14px; }

.map-placeholder { margin-top: 16px; border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: linear-gradient(135deg, #e8eefb, #d9e6f7); height: 220px; display: grid; place-items: center; color: var(--primary); text-align: center; font-family: var(--font-head); font-weight: 600; }
.map-placeholder small { display: block; font-weight: 400; color: var(--muted); font-family: var(--font-body); margin-top: 4px; }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); box-shadow: var(--shadow-hover); padding: 28px; }

/* ---------- 17) FOOTER ---------- */
.footer { background: var(--primary-dark); color: rgba(255,255,255,.78); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .logo-text { color: #fff; }
.footer .logo-text span { color: var(--secondary); }
.footer .logo-sub { color: rgba(255,255,255,.5); }
.footer p { font-size: 14px; margin-top: 14px; max-width: 280px; }
.footer h4 { color: #fff; font-family: var(--font-head); font-size: 15px; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; transition: color .2s; }
.footer ul li a:hover { color: var(--secondary); }
.footer .social { display: flex; gap: 10px; margin-top: 14px; }
.footer .social a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.1); display: grid; place-items: center; transition: background .25s; }
.footer .social a:hover { background: var(--secondary); }
.footer .social svg { width: 20px; height: 20px; fill: #fff; }
.footer-bottom { text-align: center; padding-top: 22px; font-size: 13px; color: rgba(255,255,255,.55); }

/* ---------- 18) FLOATING WHATSAPP ---------- */
.float-wa { position: fixed; right: 20px; bottom: 20px; z-index: 200; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.45); animation: pulse 2.4s infinite; }
.float-wa svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.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); } }

/* ---------- 19) RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .detail-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .filter-bar { grid-template-columns: repeat(2, 1fr); }
  .filter-bar .btn { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .section { padding: 48px 0; }
  .hero { padding: 36px 0 52px; }

  .hamburger { display: flex; }
  .nav { gap: 0; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0; flex-direction: column; gap: 4px;
    background: #fff; border-radius: 0; border: none; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-hover);
    padding: 14px 18px 18px; transform: translateY(-130%); opacity: 0; pointer-events: none;
    transition: transform .35s ease, opacity .35s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 16px; border-radius: 12px; }
  .nav-cta-desktop { display: none; }
  .nav-links .mobile-cta { display: block; }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { order: -1; aspect-ratio: 16/11; }
  .hero-stats { gap: 20px; }

  /* arama widget mobil */
  .search-bar { flex-direction: column; padding: 10px; }
  .sb-divider { width: auto; height: 1px; margin: 0 12px; }
  .sb-btn { width: 100%; margin: 8px 0 0; }

  .tours-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  .filter-bar { grid-template-columns: 1fr; }

  .cta-band { padding: 32px 24px; text-align: center; justify-content: center; }
  .cta-band .actions { justify-content: center; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .detail-hero { height: 340px; }
}

.nav-links .mobile-cta { display: none; }
