:root {
  --brand: #2dab57;
  --brand-dark: #1e7a3d;
  --brand-light: #eaf7ee;
  --ink: #1a2b22;
  --muted: #667a6e;
  --border: #e3ece6;
  --gold: #c9971f;
  --gold-light: #fbf1dc;
  --danger: #dc2626;
  --danger-light: #fdecec;
  --bg: #f7faf8;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(20, 61, 36, .08);
  --sticky-bar-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

h1, h2, h3, .heading-font {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}
.btn:hover { background: var(--brand-dark); }
.btn-outline { background: transparent; color: var(--brand-dark); border: 1.5px solid var(--brand); }
.btn-outline:hover { background: var(--brand-light); }
.btn-block { width: 100%; justify-content: center; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
}
.site-header .logo img { height: 78px; width: auto; }
.site-header nav.desktop-nav { display: flex; gap: 4px; }
.site-header nav.desktop-nav > .nav-item { position: relative; }
.site-header nav.desktop-nav a.top-link {
  display: block; padding: 10px 16px; font-weight: 600; font-size: 14.5px; color: var(--ink); border-radius: 8px;
}
.site-header nav.desktop-nav a.top-link:hover { background: var(--brand-light); color: var(--brand-dark); }
.site-header nav.desktop-nav a.top-link.active {
  background: var(--brand-light);
  color: var(--brand-dark);
  font-weight: 700;
  box-shadow: inset 0 -2.5px 0 var(--brand);
}
.site-header .submenu {
  position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border);
  border-radius: 10px; box-shadow: var(--shadow); min-width: 200px; padding: 6px; display: none; z-index: 10;
}
.nav-item:hover .submenu { display: block; }
.submenu a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14px; }
.submenu a:hover { background: var(--brand-light); }
.submenu a.active { background: var(--brand-light); color: var(--brand-dark); font-weight: 700; }

.header-contact { display: flex; align-items: center; gap: 14px; }
.header-contact a { font-size: 14px; font-weight: 600; color: var(--brand-dark); display:flex; align-items:center; gap:6px; }
.btn-call-me {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap; line-height: 1; width: fit-content;
  background: var(--brand); color: #fff; border: none;
  padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: 14px;
  cursor: pointer; transition: background .2s ease;
  font-family: inherit;
}
.btn-call-me:hover { background: var(--brand-dark); }
.btn-call-me .call-icon { width: 17px; height: 17px; flex: 0 0 17px; }
.header-contact a.btn-call-me, .mobile-nav a.btn-call-me { color: #fff; }
.menu-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--brand); color: #fff;
  border: none; border-radius: 10px;
  font-size: 34px; line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.menu-toggle:hover { background: var(--brand-dark); }

.mobile-nav {
  display: none;
  position: fixed; inset: 0; background: #fff; z-index: 100; padding: 20px; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav .close-btn { float: right; font-size: 28px; background: none; border: none; cursor: pointer; }
.mobile-nav a { display: block; padding: 14px 4px 14px 12px; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--border); border-left: 3px solid transparent; }
.mobile-nav .submenu-mobile a { padding-left: 20px; font-weight: 500; font-size: 15.5px; color: var(--muted); }
.btn-call-me-mobile { width: fit-content; margin: 18px auto 0; padding: 14px 20px; font-size: 16px; }
.mobile-nav a.btn-call-me-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 16px;
  border-bottom: none;
  border-left: none;
}
.mobile-nav a.active {
  color: var(--brand-dark);
  background: var(--brand-light);
  border-left-color: var(--brand);
}
.mobile-nav .submenu-mobile a.active { color: var(--brand-dark); font-weight: 700; }

@media (max-width: 900px) {
  .site-header nav.desktop-nav, .header-contact { display: none; }
  .menu-toggle { display: flex; }
}

/* ---------------- Banner slider ---------------- */
.banner-slider { position: relative; overflow: hidden; background: var(--brand-light); }
.banner-slider .slides { display: flex; transition: transform .5s ease; }
.banner-slider .slide { min-width: 100%; }
.banner-slider .slide picture { display: block; }
.banner-slider .slide img { display: block; width: 100%; aspect-ratio: 16/6; object-fit: cover; }
@media (max-width: 700px) {
  .banner-slider .slide img { aspect-ratio: 4/3; }
}
.banner-slider .dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; justify-content: center; align-items: center; gap: 7px; }
.banner-slider .dot {
  -webkit-appearance: none;
  appearance: none;
  flex: none;
  width: 8px;
  height: 8px;
  padding: 0;
  margin: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
  transition: width .3s ease, background .3s ease;
}
.banner-slider .dot.active { width: 22px; background: #fff; }

.banner-slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,.7);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(20,61,36,.18);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.banner-slider .slider-arrow:hover { background: #fff; box-shadow: 0 4px 14px rgba(20,61,36,.24); }
.banner-slider .slider-arrow:active { transform: translateY(-50%) scale(.94); }
.banner-slider .slider-arrow svg { width: 20px; height: 20px; }
.banner-slider .slider-arrow.prev { left: 14px; }
.banner-slider .slider-arrow.next { right: 14px; }
@media (max-width: 700px) {
  .banner-slider .slider-arrow { width: 34px; height: 34px; background: rgba(255,255,255,.6); }
  .banner-slider .slider-arrow svg { width: 16px; height: 16px; }
  .banner-slider .slider-arrow.prev { left: 8px; }
  .banner-slider .slider-arrow.next { right: 8px; }
}

/* ---------------- Section headings ---------------- */
.section { padding-top: 44px; padding-bottom: 44px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 22px; flex-wrap: wrap; gap: 10px; }
.section-head h2 {
  font-size: 28px;
  margin: 0;
  position: relative;
  padding-left: 16px;
}
.section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 5px;
  border-radius: 3px;
  background: var(--brand);
}

.see-all-wrap { display: flex; justify-content: center; margin-top: 28px; }
.see-all-btn {
  padding: 12px 30px;
  font-size: 14.5px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.see-all-btn .arrow { display: inline-block; transition: transform .2s ease; }
.see-all-btn:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30,122,61,.22);
}
.see-all-btn:hover .arrow { transform: translateX(3px); }

/* ---------------- Tour card ---------------- */
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .tour-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px) { .tour-grid { grid-template-columns: 1fr; gap: 30px; } }
/* Filtreli tur listeleme sayfalarinda (Umre/Hac/Kultur) yan panel oldugu icin buyuk ekranda da 2 sutun daha ferah durur */
@media (min-width: 981px) { .tour-results .tour-grid { grid-template-columns: repeat(2, 1fr); } }

.tour-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.tour-card .media { position: relative; aspect-ratio: 4/3; background: #eef3ef; }
.tour-card .media img { width: 100%; height: 100%; object-fit: cover; }
.tour-card .badges-top {
  position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; max-width: 78%;
}
.pill {
  background: var(--brand); color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 5px 10px; border-radius: 999px; letter-spacing: .01em;
}
.pill-gold { background: var(--gold); color: #fff; }
.tour-card .badge-tour-no { position: absolute; top: 10px; right: 10px; }
.tour-card .airline-badge {
  position: absolute; top: 42px; right: 10px; background: #fff; border-radius: 8px; padding: 5px 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.tour-card .airline-badge img { height: 16px; width: auto; }
.tour-card .capacity-badge {
  position: absolute; bottom: 10px; left: 10px; font-size: 12px; font-weight: 700;
  padding: 5px 11px; border-radius: 999px; color: #fff; background: var(--brand);
}
.tour-card .capacity-badge.sold-out { background: var(--danger); }

.tour-card .body { padding: 16px 18px 0; flex: 1; }
.tour-card h3 { font-size: 18px; margin: 0 0 6px; }
.tour-card .meta-line { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.tour-card .date-line {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: var(--brand-light); padding: 9px 13px; border-radius: 10px; margin-bottom: 14px;
}
.tour-card .date-line .date-block { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tour-card .date-line .date-depart { align-items: flex-start; text-align: left; }
.tour-card .date-line .date-return { align-items: flex-end; text-align: right; }
.tour-card .date-line .date-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--brand-dark); opacity: .75;
}
.tour-card .date-line .date-value { font-size: 13px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.tour-card .date-line .date-arrow { color: var(--brand); font-size: 15px; font-weight: 700; flex-shrink: 0; }
.tour-card .price-bar {
  background: var(--brand); color: #fff; text-align: center; padding: 13px 12px; font-weight: 700; font-size: 15px;
  margin-top: auto; transition: background .2s ease;
}
.tour-card .price-bar .arrow { display: inline-block; transition: transform .2s ease; }
.tour-card:hover .price-bar { background: #1e7a3d; }
.tour-card:hover .price-bar .arrow { transform: translateX(3px); }
.tour-card a.card-link { display: block; }

.empty-note { color: var(--muted); padding: 30px 0; text-align: center; }

/* ---------------- Tur listeleme filtreleri (kategori sayfalari) ---------------- */
.tour-listing { display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: start; }
.tour-listing.no-filters { display: block; }
.tour-filters {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; position: sticky; top: 20px;
}
.tour-filters-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.tour-filters-head h4 { margin: 0; font-size: 16px; }
.filters-reset {
  background: none; border: none; color: var(--brand-dark); font-size: 13px; font-weight: 700;
  cursor: pointer; padding: 4px 0;
}
.filters-reset:hover { text-decoration: underline; }
.filter-group { padding: 14px 0; border-top: 1px solid var(--border); }
.filter-group h5 { margin: 0 0 8px; font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.filter-check { display: flex; align-items: center; gap: 9px; padding: 6px 0; font-size: 14.5px; cursor: pointer; color: var(--ink); }
.filter-check input { width: 16px; height: 16px; accent-color: var(--brand); cursor: pointer; flex-shrink: 0; }
.filter-check .count { color: var(--muted); font-size: 12.5px; margin-left: auto; padding-left: 8px; }
.filters-toggle-mobile {
  display: none; width: 100%; margin-bottom: 16px; padding: 13px; border-radius: 10px;
  background: var(--brand-light); color: var(--brand-dark); border: none; font-weight: 700; font-size: 14.5px;
  align-items: center; justify-content: center; gap: 8px; cursor: pointer;
}
@media (max-width: 900px) {
  .tour-listing { grid-template-columns: 1fr; }
  .tour-filters { position: static; display: none; margin-bottom: 20px; }
  .tour-filters.open { display: block; }
  .filters-toggle-mobile { display: flex; }
}

/* ---------------- Footer ---------------- */
.site-footer { background: #143d24; color: #d7e9dc; margin-top: 50px; }
.site-footer .container { padding: 46px 20px 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
@media (max-width: 750px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 15px; margin: 0 0 14px; }
.site-footer a, .site-footer p { color: #b9d2c0; font-size: 14px; line-height: 1.9; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 30px; padding-top: 18px; font-size: 13px; color: #93ab99; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }

/* ---------------- Sticky mobile contact bar (tur detay sayfasi) ---------------- */
.mobile-sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -6px 20px rgba(0,0,0,.08);
  padding: 10px 14px; padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.mobile-sticky-bar .sticky-contact-title {
  margin: 0 0 8px; color: #1e7a3d; text-align: center;
  font-size: 17px; line-height: 24px; font-weight: 700;
}
.mobile-sticky-bar .row { display: flex; gap: 10px; }
.mobile-sticky-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 10px; border-radius: 12px; font-weight: 700; font-size: 14.5px;
}
.mobile-sticky-bar a.call { background: var(--brand-light); color: var(--brand-dark); }
.mobile-sticky-bar a.whatsapp { background: #25D366; color: #fff; }
@media (max-width: 780px) {
  .mobile-sticky-bar { display: block; }
  body.has-sticky-bar { padding-bottom: calc(112px + env(safe-area-inset-bottom)); }
}

/* ---------------- Yuzen iletisim butonlari (Ara + WhatsApp) ---------------- */
/* Yaygin kullanim: 56-60px daire, kenardan 40px (masaustu) / 20px (mobil), aralarinda ~14px bosluk, yuksek z-index. */
.floating-contact {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: bottom .2s ease;
}
.floating-contact a {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-contact a:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(0,0,0,.28); }
.floating-contact .fc-whatsapp { background: #25D366; }
.floating-contact .fc-whatsapp img { width: 30px; height: 30px; }
.floating-contact .fc-call { background: var(--brand-dark); }
.floating-contact .fc-call svg { width: 20px; height: 20px; }
@media (max-width: 700px) {
  .floating-contact { right: 20px; bottom: 20px; gap: 12px; }
  .floating-contact a { width: 50px; height: 50px; }
  .floating-contact .fc-whatsapp img { width: 25px; height: 25px; }
  .floating-contact .fc-call svg { width: 20px; height: 20px; }
}
/* Tur detay sayfasinda mobilde (sticky-bar'in gorundugu genislikte) yuzen butonlar gizlensin, cakismasin */
@media (max-width: 780px) {
  .floating-contact-desktop-only { display: none; }
}

/* ---------------- Cerez bildirimi ---------------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 13.5px; color: #d7e9dc; max-width: 640px; }
.cookie-banner .btn { flex-shrink: 0; }
.cookie-banner a.policy-link { color: #fff; text-decoration: underline; }
@media (max-width: 780px) { .cookie-banner { padding-bottom: calc(88px + 10px); } }
.cookie-banner[hidden] { display: none; }

/* ---------------- Genel sayfa (Kurumsal, Iletisim, Gizlilik) ---------------- */
.page-hero { background: var(--brand-light); padding: 40px 0; margin-bottom: 10px; }
.page-hero h1 { font-size: 30px; margin: 0; }
.page-hero-sub { margin: 8px 0 0; color: var(--muted); font-size: 15px; }
.prose { max-width: 780px; }
.prose p { margin: 0 0 16px; }
.prose h2 { font-size: 20px; margin-top: 30px; }

/* ---------------- Banka Hesaplari sayfasi ---------------- */
.bank-accounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 50px; }
@media (max-width: 900px) { .bank-accounts { grid-template-columns: 1fr; } }
.bank-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
}
.bank-card-head {
  background: var(--brand); color: #fff; font-weight: 700; font-size: 16px;
  text-align: center; padding: 16px 18px;
}
.bank-card-body { padding: 18px 20px; flex: 1; }
.bank-row { padding: 10px 0; border-bottom: 1px solid var(--border); }
.bank-row:last-child { border-bottom: none; }
.bank-row-label { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 4px; }
.bank-row-value { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.bank-row-value.iban-value { font-family: "Courier New", monospace; letter-spacing: .02em; font-size: 14px; }
.bank-copy-btn { width: calc(100% - 40px); box-sizing: border-box; margin: 0 20px 20px; }

.payment-steps { max-width: 900px; }
.payment-steps h2 { font-size: 24px; margin: 0 0 22px; }
.payment-steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 22px; }
@media (max-width: 650px) { .payment-steps-grid { grid-template-columns: 1fr; } }
.payment-step { display: flex; gap: 14px; align-items: flex-start; }
.payment-step .step-no {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--brand-light);
  color: var(--brand-dark); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 14.5px;
}
.payment-step h4 { margin: 3px 0 4px; font-size: 15.5px; }
.payment-step p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.payment-note {
  background: var(--brand-light); border-radius: 10px; padding: 14px 18px; font-size: 13.5px; color: var(--ink);
}

/* ---------------- Tur detay sayfasi ---------------- */
/* Rozet hiyerarsisi tur kartiyla ayni: sol-ust (gece/gun + ozel etiket), sag-ust (tur no),
   sol-alt (kontenjan), sag-alt (ucak firmasi logosu — kartta sag-ust'te, detay sayfasinda istege gore sag-alt'a alindi). */
.tour-hero { position: relative; }
.tour-hero img { width: 100%; max-height: 420px; object-fit: cover; }
.tour-hero .overlay-badges {
  position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; flex-wrap: wrap;
}
.tour-hero .badge-tour-no-lg { position: absolute; top: 16px; right: 16px; }
.tour-hero .capacity-badge-lg {
  position: absolute; bottom: 16px; left: 16px; font-size: 13px; font-weight: 700;
  padding: 6px 13px; border-radius: 999px; color: #fff; background: var(--brand);
}
.tour-hero .capacity-badge-lg.sold-out { background: var(--danger); }
.tour-hero .airline-badge-lg { position: absolute; bottom: 16px; right: 16px; background:#fff; border-radius:10px; padding:8px 12px; box-shadow: var(--shadow); }
.tour-hero .airline-badge-lg img { height: 22px; }
/* Buyuk ekranlarda gorsel tam genislige zorlanip kirpilmasin; icerik alani genisliginde, kirpmadan (contain) gosterilsin. Mobil gorunum degismiyor. */
@media (min-width: 900px) {
  .tour-hero { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
  .tour-hero .hero-frame {
    max-height: 480px;
    background: var(--brand-light);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tour-hero img { max-height: 480px; object-fit: contain; }
  .tour-hero .overlay-badges { left: 36px; }
  .tour-hero .badge-tour-no-lg { right: 36px; }
  .tour-hero .capacity-badge-lg { left: 36px; }
  .tour-hero .airline-badge-lg { right: 36px; }
}

.tour-detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 34px; align-items: start; }
@media (max-width: 900px) {
  .tour-detail-layout { grid-template-columns: 1fr; }
  .tour-detail-layout > * { min-width: 0; }
}

.tour-title-block h1 { font-size: 26px; margin-bottom: 4px; color: var(--ink); }
.tour-detail-layout > .tour-main > h3 { color: #1e7a3d; }
.tour-title-block .sub { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.tour-date-card {
  display: flex; align-items: center; justify-content: center; background: var(--brand-light);
  padding: 16px 22px; border-radius: 14px; margin-bottom: 20px; gap: 18px; flex-wrap: wrap;
}
.tour-date-card .date-item { display: flex; align-items: center; gap: 10px; }
.tour-date-card .date-icon { font-size: 22px; line-height: 1; }
.tour-date-card .date-text { display: flex; flex-direction: column; gap: 2px; }
.tour-date-card .date-label {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--brand-dark); opacity: .7;
}
.tour-date-card .date-value { font-size: 16px; font-weight: 700; color: var(--brand-dark); }
.tour-date-card .date-sep { font-size: 20px; font-weight: 700; color: var(--brand); }
@media (max-width: 480px) {
  .tour-date-card { flex-direction: column; gap: 14px; }
  .tour-date-card .date-sep { transform: rotate(90deg); }
}

.price-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.price-table td { padding: 11px 4px; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.price-table td:last-child { text-align: right; font-weight: 700; }

.accordion-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.accordion-item summary {
  padding: 15px 18px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  background: #fafcfa;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after { content: "+"; font-size: 20px; color: var(--brand); }
.accordion-item[open] summary::after { content: "–"; }
.accordion-item .content { padding: 4px 18px 18px; font-size: 14.5px; color: #33443a; }
.accordion-item .content ul { margin: 0; padding-left: 20px; }
.accordion-item .content li { margin-bottom: 6px; }

.gallery-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 20px; }
.gallery-strip img { height: 130px; width: 180px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }

.sidebar-contact-card {
  border: 1px solid var(--border); border-radius: 14px; padding: 22px; position: sticky; top: 90px;
}
.sidebar-contact-card h3 { font-size: 17px; }
.sidebar-contact-card a.contact-row {
  display: flex; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid var(--border); font-weight: 600;
}
.sidebar-contact-card a.contact-row:first-of-type { border-top: none; }
@media (max-width: 900px) { .sidebar-contact-card { position: static; } }
.tour-detail-layout.tour-detail-layout-full { grid-template-columns: minmax(0, 1fr); }

.mobile-sticky-bar .whatsapp-logo { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------------- Sizi Arayalim (akilli form) sayfasi ---------------- */
.callback-wrap { display: flex; justify-content: center; }
.callback-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 32px; max-width: 520px; width: 100%;
}
.callback-tour-context {
  display: flex; align-items: center; gap: 14px; background: var(--brand-light);
  border-radius: 12px; padding: 12px 14px; margin-bottom: 24px;
}
.callback-tour-context img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.callback-tour-context .ctx-label {
  display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--brand-dark); opacity: .75; margin-bottom: 2px;
}
.callback-tour-context strong { font-size: 14.5px; color: var(--ink); }

.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-errors { background: var(--danger-light); border-radius: 10px; padding: 12px 16px; margin-bottom: 20px; }
.form-errors p { margin: 0; color: var(--danger); font-size: 13.5px; }
.form-errors p + p { margin-top: 6px; }

.callback-form .form-group { margin-bottom: 18px; }
.callback-form label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.callback-form .optional { font-weight: 500; color: var(--muted); }
.callback-form input[type="text"],
.callback-form input[type="tel"],
.callback-form input[type="email"],
.callback-form select,
.callback-form textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 14px;
  font-family: inherit; font-size: 14.5px; color: var(--ink); background: #fff;
  transition: border-color .2s ease;
}
.callback-form input:focus, .callback-form select:focus, .callback-form textarea:focus {
  outline: none; border-color: var(--brand);
}
.callback-form textarea { resize: vertical; min-height: 80px; }
.callback-form select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23667a6e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.form-check {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; font-size: 13px;
  color: var(--muted); cursor: pointer; line-height: 1.5;
}
.form-check input { width: 17px; height: 17px; accent-color: var(--brand); flex-shrink: 0; margin-top: 1px; cursor: pointer; }

.callback-success { text-align: center; padding: 44px 32px; }
.callback-success .success-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 700;
  margin: 0 auto 18px;
}
.callback-success h2 { font-size: 21px; margin-bottom: 10px; }
.callback-success p { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }



