/* ================================================
   GÜVENÇ TURİZM — Ana Stil (gezilanya.com ilhamlı)
   Primary:    #FF7846  (yalnızca CTA / hover / vurgu)
   Background: #f4f6f8
   Card:       #ffffff
   Text dark:  #1a1a2e
   Text gray:  #6b7280
================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary:       #FF7846;
    --primary-dark:  #e56535;
    --primary-light: #fff5f0;
    --primary-mid:   #ffd4c2;
    --bg:            #f4f6f8;
    --bg-white:      #ffffff;
    --border:        #e5e7eb;
    --text-dark:     #1a1a2e;
    --text-mid:      #374151;
    --text-gray:     #6b7280;
    --text-light:    #9ca3af;
    --radius-sm:     6px;
    --radius:        12px;
    --radius-lg:     18px;
    --shadow-xs:     0 1px 3px rgba(0,0,0,.06);
    --shadow-sm:     0 2px 8px rgba(0,0,0,.07);
    --shadow-md:     0 4px 20px rgba(0,0,0,.10);
    --shadow-lg:     0 8px 40px rgba(0,0,0,.14);
    --transition:    .22s ease;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--text-dark); }
h1 { font-size: clamp(1.6rem,4vw,2.4rem); }
h2 { font-size: clamp(1.2rem,2.5vw,1.6rem); }
h3 { font-size: clamp(.95rem,2vw,1.1rem); }
p  { color: var(--text-gray); font-size: .92rem; }

.container    { max-width: 1220px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 900px;  margin: 0 auto; padding: 0 20px; }

/* ─────────────────────────────────────────────
   BUTONLAR
───────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 11px 22px; border-radius: 50px;
    font-size: .875rem; font-weight: 600; cursor: pointer;
    border: 2px solid transparent; transition: all var(--transition);
    white-space: nowrap; font-family: inherit;
}
.btn-primary  { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover {
    background: var(--primary-dark); border-color: var(--primary-dark); color: #fff;
    transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255,120,70,.35);
}
.btn-outline  { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: #fff; color: var(--primary); border-color: #fff; transform: translateY(-1px); }
.btn-white    { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover  { background: var(--primary-light); transform: translateY(-1px); }
.btn-ghost    { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-ghost:hover  { background: rgba(255,255,255,.28); color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #128c7e; border-color: #128c7e; color: #fff; transform: translateY(-1px); }
.btn-sm  { padding: 7px 16px; font-size: .78rem; }
.btn-lg  { padding: 13px 30px; font-size: .93rem; }
.btn-xl  { padding: 16px 40px; font-size: 1rem; }

/* ─────────────────────────────────────────────
   TOP BAR
───────────────────────────────────────────── */
.top-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
    background: #f8f8f8; border-bottom: 1px solid var(--border); height: 40px;
}
.top-bar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
}
.top-bar-left { display: flex; align-items: center; gap: 16px; }

.top-bar-link {
    color: var(--text-gray); font-size: .76rem; font-weight: 600;
    display: flex; align-items: center; gap: 5px;
    transition: color var(--transition);
}
.top-bar-link:hover { color: var(--primary); }
.top-bar-link i { color: var(--primary); font-size: .8rem; }
.top-bar-wa { color: #16a34a !important; font-weight: 700; }
.top-bar-wa i { color: #16a34a !important; }
.top-bar-wa:hover { color: #15803d !important; }

.top-bar-sep {
    width: 1px; height: 14px; background: var(--border);
}
.top-bar-info {
    color: var(--text-light); font-size: .72rem;
    display: flex; align-items: center; gap: 5px;
}
.top-bar-info i { color: var(--text-light); }

/* Sosyal ikonlar — tek renk, dikey hizalı */
.top-bar-right {
    display: flex; align-items: stretch;
    border-left: 1px solid var(--border); margin-left: 4px;
}
.top-bar-social {
    width: 36px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; color: var(--text-dark);
    background: none; border-right: 1px solid var(--border);
    transition: background var(--transition), color var(--transition);
}
.top-bar-social:hover { background: var(--primary); color: #fff; }
.top-bar-social.tb-instagram,
.top-bar-social.tb-facebook,
.top-bar-social.tb-youtube,
.top-bar-social.tb-twitter { color: var(--text-dark); }

/* ─────────────────────────────────────────────
   HEADER — daima beyaz (top bar altında)
───────────────────────────────────────────── */
#header {
    position: fixed; top: 40px; left: 0; right: 0; z-index: 1000;
    background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,.09);
    transition: box-shadow .3s ease;
}

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 80px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 60px; width: auto; }
.logo-text {
    font-size: 1.15rem; font-weight: 800; color: var(--text-dark);
    letter-spacing: -.3px;
}
.logo-text span { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    padding: 8px 14px; border-radius: var(--radius-sm);
    font-size: .93rem; font-weight: 700;
    color: var(--text-dark); transition: all var(--transition);
    letter-spacing: -.1px; white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); background: var(--primary-light); }
.nav-links a.active {
    color: var(--primary); background: var(--primary-light);
}

.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-cta .btn { padding: 9px 18px; font-size: .8rem; }
.hdr-phone { display: flex; }

.menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 4px;
}
.menu-toggle span {
    width: 24px; height: 2.5px; background: var(--text-dark);
    border-radius: 2px; transition: all var(--transition);
}

.mobile-nav {
    display: none; position: fixed; top: 120px; left: 0; right: 0;
    background: #fff; box-shadow: var(--shadow-lg);
    padding: 8px 16px 20px; z-index: 999;
    border-top: 3px solid var(--primary);
    max-height: calc(100vh - 120px); overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block; padding: 12px 14px; border-radius: var(--radius-sm);
    color: var(--text-dark); font-size: .95rem; font-weight: 600;
    border-bottom: 1px solid var(--border); transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--primary); background: var(--primary-light); }
.mobile-nav-actions {
    display: flex; gap: 10px; margin-top: 12px; padding-top: 12px;
}
.mobile-nav-actions .btn { flex: 1; justify-content: center; }
.mobile-nav-social {
    display: flex; gap: 10px; margin-top: 12px; padding-top: 12px;
    border-top: 1px solid var(--border);
}
.mobile-nav-social a {
    width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-gray); font-size: .95rem; border-bottom: 1.5px solid var(--border);
    padding: 0;
}
.mobile-nav-social a:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* ─────────────────────────────────────────────
   HERO SLIDER  — peek (gezilanya stili)
───────────────────────────────────────────── */
.hero-wrap {
    background: var(--bg);
    padding: 20px 0 0;
    margin-top: 120px;  /* top-bar(40) + header(80) */
    overflow: hidden;   /* yanlardaki peek dışa taşmasın */
}

/* Slider kapsayıcı — oklar ve dots için position:relative */
#heroSlider {
    position: relative;
    height: 440px;
}

/* Flex track — transform ile kayar */
.hs-track {
    display: flex;
    gap: 16px;
    height: 100%;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

/* Her slayt — container genişliğinde, kenar yuvarlatmalı */
.hs-slide {
    flex: 0 0 min(1180px, calc(100vw - 48px));
    height: 100%;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    opacity: .45;
    transform: scale(.97);
    transition: opacity .55s ease, transform .55s ease;
    cursor: pointer;
}
.hs-slide.active {
    opacity: 1;
    transform: scale(1);
    cursor: default;
}
.hs-slide:not(.active) { pointer-events: none; }

/* Metin alanı overlay — sadece sol+alt köşede, görseli boğmaz */
.hs-text-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10,14,35,.78) 0%,
        rgba(10,14,35,.55) 38%,
        rgba(10,14,35,.15) 62%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Slayt içeriği */
.hs-content {
    position: absolute; bottom: 36px; left: 36px;
    z-index: 2;
    max-width: 500px;
}
.hs-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary); color: #fff;
    padding: 4px 14px; border-radius: 50px;
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .07em; margin-bottom: 14px;
}
.hs-title {
    color: #fff; font-size: clamp(1.5rem,3vw,2.4rem);
    font-weight: 800; line-height: 1.2; margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,.4); letter-spacing: -.3px;
}
.hs-title em { color: var(--primary); font-style: normal; }
.hs-sub {
    color: rgba(255,255,255,.85); font-size: .92rem;
    margin-bottom: 20px; line-height: 1.6; max-width: 400px;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.hs-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Prev / Next okları */
.hs-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; width: 42px; height: 42px; border-radius: 50%;
    background: #fff; border: none; color: var(--text-dark);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: .85rem;
    box-shadow: 0 2px 16px rgba(0,0,0,.18);
    transition: all var(--transition);
}
.hs-arrow:hover { background: var(--primary); color: #fff; transform: translateY(-50%) scale(1.08); }
#hsPrev { left: 10px; }
#hsNext { right: 10px; }

/* Dot navigasyon */
.hs-dots {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; gap: 8px;
}
.hs-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.5); border: none; cursor: pointer;
    transition: all var(--transition); padding: 0;
}
.hs-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }


/* ─────────────────────────────────────────────
   ARAMA KUTUSU — hero altında ayrı bölüm
───────────────────────────────────────────── */
.search-section {
    background: var(--bg);
    padding: 20px 0;
}
.search-box {
    background: var(--bg-white); border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 6px; display: flex; align-items: stretch; gap: 0;
}
.search-field {
    flex: 1; display: flex; flex-direction: column;
    padding: 10px 18px; border-right: 1px solid var(--border); min-width: 0;
}
.search-field:last-of-type { border-right: none; }
.search-field label {
    font-size: .64rem; font-weight: 700; color: var(--text-light);
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px;
}
.search-field input, .search-field select {
    border: none; outline: none; font-family: inherit;
    font-size: .88rem; font-weight: 500; color: var(--text-dark);
    background: none; width: 100%; cursor: pointer; padding: 0;
}
.search-field select option { color: var(--text-dark); }
.search-btn-wrap { display: flex; align-items: center; padding: 4px; flex-shrink: 0; }
.search-btn-wrap .btn { padding: 12px 24px; border-radius: var(--radius-sm); font-size: .88rem; }

/* ─────────────────────────────────────────────
   KATEGORİ STRIP  (gezilanya pill stili)
───────────────────────────────────────────── */
.cat-strip {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 120px; z-index: 99;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.cat-strip-scroll {
    display: flex; gap: 10px; overflow-x: auto; padding: 14px 0;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.cat-strip-scroll::-webkit-scrollbar { display: none; }
.cat-chip {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px 8px 8px; border-radius: 50px;
    border: 1.5px solid var(--border); background: var(--bg-white);
    font-size: .88rem; font-weight: 700; color: var(--text-dark);
    white-space: nowrap; flex-shrink: 0; transition: all var(--transition);
    cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.cat-chip:hover {
    border-color: var(--primary); color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,120,70,.15);
}
.cat-chip-icon {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.08);
}

/* ─────────────────────────────────────────────
   ANA SAYFA SEKSİYONLARI
───────────────────────────────────────────── */
.home-section { padding: 48px 0; background: var(--bg-white); }
.home-section-alt { background: var(--bg); }

.section-row-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px; gap: 16px;
}
.section-row-title {
    font-size: clamp(1.1rem,2.5vw,1.4rem); font-weight: 800;
    color: var(--text-dark); margin: 4px 0 0;
}
.see-all-btn { border-radius: 50px; font-size: .78rem; }

/* ─────────────────────────────────────────────
   TUR KARTLARI — yatay scroll
───────────────────────────────────────────── */
.tours-row {
    display: flex; gap: 16px; overflow-x: auto;
    padding-bottom: 10px; -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.tours-row::-webkit-scrollbar { height: 4px; }
.tours-row::-webkit-scrollbar-track { background: transparent; }
.tours-row::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ── Featured carousel ── */
.feat-carousel-wrap { overflow: hidden; }
.feat-carousel-track {
    display: flex; gap: 20px;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.feat-carousel-track .tour-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
}
.car-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid var(--border); background: var(--bg-white);
    color: var(--text-dark); cursor: pointer; display: flex;
    align-items: center; justify-content: center; font-size: .8rem;
    transition: all var(--transition); flex-shrink: 0;
}
.car-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.car-btn:disabled { opacity: .35; cursor: default; pointer-events: none; }

.tour-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: all var(--transition);
    display: flex; flex-direction: column;
    flex: 0 0 280px; min-width: 280px;
}
.tour-card:hover {
    border-color: #d1d5db;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Görsel */
.tour-img-link { display: block; }
.tour-img {
    position: relative; height: 280px; overflow: hidden; flex-shrink: 0;
}
/* Featured carousel'deki kartlarda daha büyük görsel */
.feat-carousel-track .tour-card .tour-img { height: 280px; }
.tour-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
}
.tour-card:hover .tour-img img { transform: scale(1.06); }

/* Üst overlay — departure badge + featured */
.tour-img-overlay {
    position: absolute; top: 0; left: 0; right: 0;
    padding: 10px; display: flex; gap: 5px; align-items: flex-start;
    flex-wrap: wrap;
}
/* Süre badge sağ alt */
.tour-dur-badge {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
    color: #fff; font-size: .7rem; font-weight: 600;
    padding: 3px 9px; border-radius: 50px;
    display: flex; align-items: center; gap: 4px;
}

/* Badge stilleri */
.badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 9px; border-radius: 50px;
    font-size: .68rem; font-weight: 700; line-height: 1.4;
}
.badge-dep  { background: rgba(0,0,0,.55); color: #fff; backdrop-filter: blur(4px); }
.badge-hot  { background: var(--primary); color: #fff; }
.badge-new  { background: #10b981; color: #fff; }
.badge-cat  { background: rgba(0,0,0,.55); color: #fff; backdrop-filter: blur(4px); }

/* Kart gövdesi */
.tour-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; }
.tour-cat {
    font-size: .68rem; font-weight: 700; color: var(--primary);
    text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px;
    display: flex; align-items: center; gap: 4px;
}
.tour-title {
    font-size: .95rem; font-weight: 700; color: var(--text-dark);
    margin-bottom: 8px; line-height: 1.35; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.tour-title a { color: inherit; }
.tour-title a:hover { color: var(--primary); }
.tour-desc {
    font-size: .8rem; color: var(--text-gray); line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.tour-meta-row {
    display: flex; flex-direction: column; gap: 4px; margin-bottom: 2px;
}
.tour-meta-row span {
    display: flex; align-items: center; gap: 5px;
    font-size: .76rem; color: var(--text-gray);
}
.tour-meta-row i { color: var(--primary); width: 12px; text-align: center; font-size: .75rem; }

/* Kart alt kısım */
.tour-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; border-top: 1px solid var(--border);
    gap: 8px; flex-shrink: 0; margin-top: auto;
}
.tour-price .from { display: block; font-size: .64rem; color: var(--text-light); line-height: 1.2; }
.tour-price .amount { font-size: 1.2rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.tour-price .call { font-size: .83rem; color: var(--text-gray); font-weight: 600; }

/* Tur Meta (detay sayfası & listing için) */
.tour-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.tour-meta-item {
    display: flex; align-items: center; gap: 5px;
    font-size: .77rem; color: var(--text-gray);
}
.tour-meta-item i { color: var(--primary); font-size: .8rem; width: 14px; text-align: center; }

/* ─────────────────────────────────────────────
   TUR TAKVİMİ (calendar grid)
───────────────────────────────────────────── */
.calendar-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}
.cal-card {
    display: flex; align-items: center; gap: 14px;
    background: var(--bg-white); border-radius: var(--radius);
    border: 1.5px solid var(--border); padding: 14px 16px;
    transition: all var(--transition); text-decoration: none;
}
.cal-card:hover { border-color: var(--primary); background: var(--primary-light); transform: translateY(-2px); }
.cal-date {
    background: var(--primary); color: #fff; border-radius: 10px;
    padding: 8px 12px; text-align: center; flex-shrink: 0; min-width: 52px;
}
.cal-day { display: block; font-size: 1.3rem; font-weight: 800; line-height: 1; }
.cal-mon { display: block; font-size: .65rem; text-transform: uppercase; opacity: .9; margin-top: 1px; }
.cal-info { flex: 1; min-width: 0; }
.cal-title { font-size: .88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.cal-meta span { font-size: .73rem; color: var(--text-gray); display: flex; align-items: center; gap: 4px; }
.cal-meta i { color: var(--primary); font-size: .7rem; }
.cal-price { font-size: .9rem; font-weight: 800; color: var(--primary); flex-shrink: 0; white-space: nowrap; }

/* ─────────────────────────────────────────────
   KATEGORİ KARTLARI (turlar.php & iç kullanım)
───────────────────────────────────────────── */
.categories-section { padding: 60px 0; }
.categories-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px;
}
.cat-card {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 22px 16px; text-align: center; cursor: pointer;
    border: 1.5px solid var(--border);
    transition: all var(--transition); text-decoration: none;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.cat-card:hover, .cat-card.active {
    border-color: var(--primary); background: var(--primary-light);
    transform: translateY(-3px); box-shadow: var(--shadow-md);
}
.cat-icon {
    width: 50px; height: 50px; border-radius: 14px;
    background: var(--bg); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; transition: all var(--transition); flex-shrink: 0;
}
.cat-card:hover .cat-icon, .cat-card.active .cat-icon { background: var(--primary); color: #fff; }
.cat-card h4 { font-size: .8rem; font-weight: 600; color: var(--text-mid); line-height: 1.3; }
.cat-card span { font-size: .72rem; color: var(--text-light); }

/* ─────────────────────────────────────────────
   FEATURE CARDS (Neden Biz)
───────────────────────────────────────────── */
.features-section { padding: 60px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
/* Carousel modunda feature-card */
.feat-carousel-track .feature-card {
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 0;
}
.feature-card {
    background: var(--bg-white); border: 1.5px solid var(--border);
    border-radius: var(--radius); padding: 24px 20px; text-align: center;
    transition: all var(--transition);
}
.feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
    width: 54px; height: 54px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin: 0 auto 14px; transition: all var(--transition);
}
.feature-card h4 { font-size: .88rem; margin-bottom: 7px; }
.feature-card p { font-size: .8rem; line-height: 1.55; }

/* ─────────────────────────────────────────────
   TUR TAKVİMİ SAYFASI
───────────────────────────────────────────── */
.takvim-month-tabs {
    display: flex; gap: 8px; flex-wrap: nowrap; overflow-x: auto;
    padding-bottom: 6px; margin-bottom: 20px;
    scrollbar-width: none;
}
.takvim-month-tabs::-webkit-scrollbar { display: none; }
.takvim-month-tab {
    flex: 0 0 auto; text-align: center; padding: 10px 18px;
    border-radius: 10px; border: 1.5px solid var(--border);
    background: var(--bg-white); text-decoration: none;
    transition: all var(--transition); min-width: 72px;
}
.takvim-month-tab:hover { border-color: var(--primary); color: var(--primary); }
.takvim-month-tab.active { background: var(--primary); border-color: var(--primary); }
.tmtab-mon { display: block; font-size: .85rem; font-weight: 700; color: inherit; }
.tmtab-year { display: block; font-size: .65rem; color: var(--text-light); margin-top: 1px; }
.takvim-month-tab.active .tmtab-mon,
.takvim-month-tab.active .tmtab-year { color: #fff; }

.takvim-cat-filter {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.takvim-cat-btn {
    padding: 6px 16px; border-radius: 50px; border: 1.5px solid var(--border);
    background: var(--bg-white); font-size: .82rem; font-weight: 600;
    color: var(--text-mid); text-decoration: none; display: flex;
    align-items: center; gap: 6px; transition: all var(--transition);
}
.takvim-cat-btn:hover,
.takvim-cat-btn.active { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }

.takvim-summary {
    font-size: .88rem; color: var(--text-gray); margin-bottom: 24px;
}
.takvim-summary strong { color: var(--text-dark); }

.takvim-date-group { margin-bottom: 36px; }
.takvim-date-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 14px; padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}
.takvim-date-badge {
    background: var(--primary); color: #fff; border-radius: 10px;
    width: 52px; height: 52px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; flex-shrink: 0;
}
.tdb-day { font-size: 1.25rem; font-weight: 800; line-height: 1; }
.tdb-mon { font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.tdb-weekday { font-size: .88rem; font-weight: 600; color: var(--text-mid); }

.takvim-cards { display: flex; flex-direction: column; gap: 12px; }
.takvim-card {
    background: var(--bg-white); border: 1.5px solid var(--border);
    border-radius: 12px; display: flex; gap: 0; overflow: hidden;
    transition: all var(--transition);
}
.takvim-card:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(255,120,70,.1); }
.takvim-card-img {
    flex: 0 0 160px; display: block; overflow: hidden;
}
.takvim-card-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .4s ease;
}
.takvim-card:hover .takvim-card-img img { transform: scale(1.05); }
.takvim-card-body { flex: 1; padding: 16px 18px; min-width: 0; }
.takvim-card-top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.takvim-cat-tag {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px; border-radius: 50px; font-size: .7rem; font-weight: 700;
}
.takvim-code {
    font-size: .7rem; color: var(--text-light); background: var(--bg);
    padding: 2px 8px; border-radius: 4px; font-family: monospace;
}
.takvim-card-title {
    display: block; font-size: 1rem; font-weight: 700; color: var(--text-dark);
    text-decoration: none; margin-bottom: 8px; line-height: 1.35;
}
.takvim-card-title:hover { color: var(--primary); }
.takvim-card-meta {
    display: flex; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: var(--text-gray);
}
.takvim-card-meta span { display: flex; align-items: center; gap: 5px; }
.takvim-card-meta i { color: var(--primary); }
.takvim-low-seats { color: #dc2626 !important; font-weight: 600; }

.takvim-card-foot {
    flex: 0 0 180px; display: flex; flex-direction: column;
    align-items: flex-end; justify-content: center; padding: 16px 20px;
    border-left: 1px solid var(--border); gap: 10px;
}
.takvim-price { text-align: right; }
.tp-lbl { display: block; font-size: .65rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; }
.tp-val { display: block; font-size: 1.25rem; font-weight: 800; color: var(--primary); }

.takvim-empty {
    text-align: center; padding: 80px 20px;
    color: var(--text-gray);
}
.takvim-empty i { font-size: 3rem; color: var(--border); display: block; margin-bottom: 16px; }
.takvim-empty p { margin-bottom: 20px; font-size: 1rem; }

/* ─────────────────────────────────────────────
   CTA BÖLÜMÜ
───────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 70px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: #fff; margin-bottom: 10px; position: relative; font-size: clamp(1.3rem,3vw,2rem); }
.cta-section p { color: rgba(255,255,255,.82); max-width: 480px; margin: 0 auto 28px; position: relative; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─────────────────────────────────────────────
   ŞUBELER
───────────────────────────────────────────── */
.branches-section { padding: 60px 0; background: var(--bg-white); }
.branches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.branch-card {
    background: var(--bg-white); border-radius: var(--radius);
    border: 1.5px solid var(--border); padding: 20px;
    border-left: 4px solid var(--primary); transition: all var(--transition);
}
.branch-card:hover { box-shadow: var(--shadow-md); }
.branch-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.branch-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; flex-shrink: 0;
}
.branch-card h4 { font-size: .9rem; }
.branch-contact {
    display: flex; align-items: center; gap: 8px;
    font-size: .82rem; color: var(--text-gray); margin-top: 6px;
}
.branch-contact i { color: var(--primary); font-size: .78rem; flex-shrink: 0; }
.branch-contact a { color: var(--text-gray); transition: color var(--transition); }
.branch-contact a:hover { color: var(--primary); }

/* ─────────────────────────────────────────────
   STATS BAND
───────────────────────────────────────────── */
/* ─── Kurumsal stats section ─── */
.about-stats-section { padding: 60px 0; }
.about-stats-wrap {
    display: grid; grid-template-columns: 1fr auto;
    gap: 48px; align-items: center;
}
.about-stats-text h2 {
    font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 800;
    color: var(--text-dark); margin: 12px 0 14px; line-height: 1.25;
}
.about-stats-text > p {
    color: var(--text-gray); font-size: .95rem; line-height: 1.7;
    max-width: 480px; margin-bottom: 28px;
}
.about-stat-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 16px; margin-bottom: 28px;
}
.about-stat-item { text-align: center; }
.about-stat-num {
    display: block; font-size: 1.6rem; font-weight: 800;
    color: var(--primary); line-height: 1;
}
.about-stat-lbl {
    display: block; font-size: .65rem; color: var(--text-gray);
    text-transform: uppercase; letter-spacing: .07em; margin-top: 4px;
}
.about-stats-badges {
    display: grid; grid-template-columns: repeat(2,1fr);
    gap: 14px;
}
.trust-badge {
    background: var(--bg-white); border: 1.5px solid var(--border);
    border-radius: 14px; padding: 18px 14px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    text-align: center; transition: all var(--transition);
}
.trust-badge:hover { border-color: var(--primary); transform: translateY(-3px); }
.trust-badge i { font-size: 1.5rem; color: var(--primary); }
.trust-badge span { font-size: .72rem; font-weight: 600; color: var(--text-dark); line-height: 1.4; }

.stats-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 50px 0;
}
.stats-band-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: #fff; display: block; line-height: 1.1; }
.stat-lbl { font-size: .78rem; color: rgba(255,255,255,.75); margin-top: 4px; display: block; }

/* ─────────────────────────────────────────────
   SECTION BAŞLIKLARI
───────────────────────────────────────────── */
.section-head { margin-bottom: 36px; }
.section-head.center { text-align: center; }
.section-head .tag, .tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary-light); color: var(--primary);
    padding: 4px 14px; border-radius: 50px;
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .07em; margin-bottom: 10px;
}
.section-head h2 { margin-bottom: 8px; }
.section-head p { max-width: 520px; }
.section-head.center p { margin: 0 auto; }

/* ─────────────────────────────────────────────
   FİLTRE SIDEBAR (tur listesi)
───────────────────────────────────────────── */
.listing-layout {
    display: grid; grid-template-columns: 260px 1fr; gap: 24px; padding: 36px 0 80px;
}
.filter-sidebar { position: sticky; top: 140px; height: fit-content; }
.filter-card {
    background: var(--bg-white); border-radius: var(--radius);
    border: 1.5px solid var(--border); padding: 20px; margin-bottom: 14px;
}
.filter-card h4 {
    font-size: .73rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .07em; color: var(--text-gray);
    margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.filter-item { margin-bottom: 9px; }
.filter-item label {
    display: flex; align-items: center; gap: 9px; cursor: pointer;
    font-size: .87rem; color: var(--text-mid); font-weight: 500;
}
.filter-item input[type="checkbox"],
.filter-item input[type="radio"] { accent-color: var(--primary); width: 15px; height: 15px; }
.filter-item .count { margin-left: auto; font-size: .73rem; color: var(--text-light); }
input[type="range"] { width: 100%; accent-color: var(--primary); }
.price-range-labels { display: flex; justify-content: space-between; font-size: .78rem; color: var(--text-gray); margin-bottom: 6px; }

.listing-area { min-width: 0; }
.listing-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 18px; gap: 12px; flex-wrap: wrap;
}
.listing-count { font-size: .88rem; color: var(--text-gray); }
.listing-count strong { color: var(--text-dark); font-weight: 700; }
.sort-select {
    padding: 8px 14px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-family: inherit;
    font-size: .83rem; color: var(--text-mid); background: var(--bg-white);
    cursor: pointer; outline: none;
}
.sort-select:focus { border-color: var(--primary); }

/* Listing tour grid — static grid (not scroll) */
.tours-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px;
}
.tours-grid .tour-card { flex: none; min-width: unset; width: 100%; }

/* ─────────────────────────────────────────────
   TUR DETAY SAYFASI
───────────────────────────────────────────── */
.tour-detail-layout {
    display: grid; grid-template-columns: 1fr 360px; gap: 28px;
    padding: 36px 0 80px;
}

/* Slider */
.slider-main {
    border-radius: var(--radius); overflow: hidden;
    height: 440px; position: relative;
}
.slider-main .slide { display: none; width: 100%; height: 100%; }
.slider-main .slide.active { display: block; animation: fadeIn .4s ease; }
.slider-main img { width: 100%; height: 100%; object-fit: cover; }
.slider-thumbs {
    display: flex; gap: 8px; margin-top: 8px; overflow-x: auto; padding-bottom: 4px;
}
.slider-thumbs img {
    width: 76px; height: 54px; object-fit: cover;
    border-radius: var(--radius-sm); cursor: pointer; opacity: .55;
    border: 2px solid transparent; transition: all var(--transition); flex-shrink: 0;
}
.slider-thumbs img:hover, .slider-thumbs img.active { opacity: 1; border-color: var(--primary); }
.slider-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.9); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark); font-size: .9rem;
    box-shadow: var(--shadow-sm); transition: all var(--transition); z-index: 2;
}
.slider-nav:hover { background: var(--primary); color: #fff; }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }

/* Info card */
.info-card {
    background: var(--bg-white); border-radius: var(--radius);
    border: 1.5px solid var(--border); padding: 22px; margin-bottom: 16px;
}
.info-card h3 {
    font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.info-row { display: flex; align-items: flex-start; gap: 11px; }
.info-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; flex-shrink: 0;
}
.info-row .lbl { font-size: .68rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; }
.info-row .val { font-size: .88rem; font-weight: 600; color: var(--text-dark); margin-top: 1px; }

/* Tabs */
.tabs { display: flex; gap: 4px; margin-bottom: 16px; flex-wrap: wrap; }
.tab-btn {
    padding: 8px 18px; border-radius: 50px; font-size: .82rem;
    font-weight: 600; border: 1.5px solid var(--border);
    background: var(--bg-white); color: var(--text-gray);
    cursor: pointer; transition: all var(--transition); font-family: inherit;
}
.tab-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-text { font-size: .9rem; color: var(--text-mid); line-height: 1.8; }
.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.inc-item, .exc-item {
    display: flex; align-items: center; gap: 7px;
    font-size: .85rem; color: var(--text-mid); padding: 4px 0;
}
.inc-item i { color: #10b981; font-size: .85rem; }
.exc-item i { color: #ef4444; font-size: .85rem; }

/* Rezervasyon kutusu */
.booking-card {
    background: var(--bg-white); border-radius: var(--radius);
    border: 1.5px solid var(--border); overflow: hidden;
    position: static; box-shadow: var(--shadow-md);
}
.booking-head {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 22px; text-align: center; color: #fff;
}
.booking-head .price-big { font-size: 2rem; font-weight: 800; line-height: 1; }
.booking-head .price-lbl { font-size: .78rem; opacity: .85; margin-top: 3px; }
.booking-head .badges { display: flex; gap: 10px; justify-content: center; margin-top: 14px; flex-wrap: wrap; }
.booking-head .badge-trust {
    background: rgba(255,255,255,.15); color: #fff;
    padding: 4px 12px; border-radius: 50px; font-size: .72rem; font-weight: 600;
}
.booking-body { padding: 20px; }
.form-group { margin-bottom: 14px; }
.form-label {
    display: block; font-size: .73rem; font-weight: 700;
    color: var(--text-gray); text-transform: uppercase;
    letter-spacing: .06em; margin-bottom: 5px;
}
.form-control {
    width: 100%; padding: 10px 13px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-size: .88rem; color: var(--text-dark);
    font-family: inherit; transition: border-color var(--transition);
    background: var(--bg-white); outline: none;
}
.form-control:focus { border-color: var(--primary); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { min-height: 85px; resize: vertical; }
.booking-btn { width: 100%; justify-content: center; font-size: .9rem; padding: 13px; }
.booking-trust {
    display: flex; gap: 12px; margin-top: 14px; padding-top: 14px;
    border-top: 1px solid var(--border); flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 5px; font-size: .73rem; color: var(--text-gray); }
.trust-item i { color: var(--primary); }

/* ─────────────────────────────────────────────
   SAYFA BAŞLIĞI (iç sayfalar)
───────────────────────────────────────────── */
.page-hero {
    position: relative;
    background-color: #c04c1a;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    padding: 160px 0 52px; text-align: center;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,90,30,.82) 0%, rgba(180,50,10,.88) 100%);
    z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-sm {
    position: relative;
    background-color: #c04c1a;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    padding: 144px 0 36px; text-align: center;
}
.page-hero-sm::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,90,30,.82) 0%, rgba(180,50,10,.88) 100%);
    z-index: 0;
}
.page-hero-sm .container { position: relative; z-index: 1; }
.page-hero-sm h1 { color: #fff; font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 8px; }
.page-hero-sm p  { color: rgba(255,255,255,.85); font-size: .95rem; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.breadcrumb {
    display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
    font-size: .82rem; color: rgba(255,255,255,.65);
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: #fff; }

/* ─────────────────────────────────────────────
   HAKKIMİZDA / İLETİŞİM
───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.contact-form-wrap {
    background: var(--bg-white); border-radius: var(--radius);
    border: 1.5px solid var(--border); padding: 32px; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.social-btn {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,.07); color: #9ca3af;
    display: flex; align-items: center; justify-content: center;
    font-size: .88rem; transition: all var(--transition);
}
.social-btn:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer { background: #1a1a1a; color: #9ca3af; padding: 60px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 48px;
}
.footer-brand .logo-text { color: #fff; font-size: 1.2rem; }
.footer-brand p { margin-top: 12px; font-size: .85rem; line-height: 1.75; color: #9ca3af; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-col h5 {
    font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .09em; color: #fff; margin-bottom: 16px;
    display: flex; align-items: center; gap: 7px;
}
.footer-col h5::after {
    content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.08); margin-left: 4px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .84rem; color: #9ca3af; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact-row { display: flex; gap: 9px; font-size: .83rem; color: #9ca3af; margin-bottom: 9px; }
.footer-contact-row i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .78rem; color: #6b7280; }

/* ─────────────────────────────────────────────
   WHATSAPP FLOAT BUTONU
───────────────────────────────────────────── */
.whatsapp-float {
    position: fixed; bottom: 80px; right: 22px; z-index: 999;
    width: 52px; height: 52px; border-radius: 50%;
    background: #25d366; color: #fff; font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    transition: all var(--transition);
}
.whatsapp-float:hover { background: #128c7e; transform: scale(1.1); }

/* ─────────────────────────────────────────────
   SAYFALAMA & YARDIMCILAR
───────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.page-btn {
    width: 38px; height: 38px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; font-weight: 600; cursor: pointer;
    border: 1.5px solid var(--border); background: var(--bg-white);
    color: var(--text-dark); transition: all var(--transition); text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.scroll-top {
    position: fixed; bottom: 22px; right: 22px; z-index: 999;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--primary); color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: .9rem;
    box-shadow: var(--shadow-md); opacity: 0; pointer-events: none;
    transform: translateY(8px); transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.mt-8  { margin-top: 8px; }  .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }

.alert {
    padding: 13px 16px; border-radius: var(--radius-sm); margin-bottom: 14px;
    font-size: .87rem; display: flex; align-items: center; gap: 9px;
}
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.empty-state { text-align: center; padding: 60px 20px; }
.empty-state i { font-size: 3rem; color: var(--border); margin-bottom: 16px; display: block; }
.empty-state h3 { margin-bottom: 8px; }

/* Animasyonlar */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────
   MOBİL ALT ÇUBUK
───────────────────────────────────────────── */
.mobile-bottom-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1001;
    background: var(--bg-white); border-top: 1px solid var(--border);
    box-shadow: 0 -2px 20px rgba(0,0,0,.13); height: 62px;
}
.mbb-btn {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 3px; padding: 8px 4px;
    font-size: .6rem; font-weight: 700; letter-spacing: .02em;
    color: var(--text-gray); text-decoration: none;
    border-right: 1px solid var(--border);
    transition: background var(--transition), color var(--transition);
    min-height: 62px; cursor: pointer;
}
.mbb-btn:last-child { border-right: none; }
.mbb-btn i { font-size: 1.2rem; line-height: 1; }
.mbb-btn:active { background: var(--bg); }
.mbb-call   { color: var(--primary); }
.mbb-wa     { color: #16a34a; }
.mbb-reserve { background: var(--primary); color: #fff !important; }
.mbb-reserve:active { background: var(--primary-dark); }

/* Hamburger → X animasyonu */
.menu-toggle span { transition: all var(--transition); transform-origin: center; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Filtre toggle butonu (sadece mobilde) */
.filter-toggle-btn {
    display: none; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 50px;
    background: var(--bg-white); border: 1.5px solid var(--border);
    font-size: .87rem; font-weight: 600; color: var(--text-mid);
    cursor: pointer; font-family: inherit; margin-bottom: 14px;
    transition: all var(--transition); min-height: 44px;
}
.filter-toggle-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-toggle-btn i { color: var(--primary); }
.filter-active-badge {
    background: var(--primary); color: #fff;
    padding: 1px 7px; border-radius: 50px; font-size: .68rem;
}

/* Filtre overlay (mobil) */
.filter-overlay {
    display: none; position: fixed; inset: 0; z-index: 199;
    background: rgba(0,0,0,.45); backdrop-filter: blur(2px);
}
.filter-overlay.visible { display: block; }

/* Filtre sidebar kapat butonu */
.filter-sidebar-head {
    display: none; align-items: center; justify-content: space-between;
    padding-bottom: 14px; margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.filter-sidebar-head h3 { font-size: 1rem; }
.filter-close-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid var(--border); background: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: .9rem; color: var(--text-gray);
    transition: all var(--transition);
}
.filter-close-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ─────────────────────────────────────────────
   RESPONSIVE — Tablet (≤ 1024px)
───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .tour-detail-layout { grid-template-columns: 1fr; }
    .booking-card { position: static; }
    .listing-layout { grid-template-columns: 1fr; }
    .filter-sidebar { position: static; height: auto; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-stats-wrap { grid-template-columns: 1fr; }
    .about-stat-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-band-grid { grid-template-columns: repeat(2,1fr); }
    .branches-grid { grid-template-columns: repeat(2, 1fr); }
    .feat-carousel-track .tour-card { flex: 0 0 calc((100% - 20px) / 2); }
    .feat-carousel-track .feature-card { flex: 0 0 calc((100% - 40px) / 3); }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — Mobil (≤ 768px)
───────────────────────────────────────────── */
@media (max-width: 768px) {
    /* ── Top bar gizle, header yukarı çek ── */
    .top-bar { display: none; }
    #header { top: 0; }
    .header-inner { height: 60px; }
    .logo img { height: 44px; }
    .nav-links, .header-cta, .hdr-phone { display: none; }
    .menu-toggle { display: flex; }

    /* Mobil nav */
    .mobile-nav { top: 60px; max-height: calc(100vh - 60px); }
    .mobile-nav a { padding: 14px 16px; font-size: 1rem; }

    /* ── Sayfa offset (top-bar gizlenince 60px) ── */
    .hero-wrap  { margin-top: 60px; }
    .cat-strip  { top: 60px; }
    .page-hero  { padding: 100px 0 36px; }
    .page-hero-sm { padding: 90px 0 26px; }

    /* ── Hero slider ── */
    #heroSlider { height: 320px; }
    .hs-content { bottom: 20px; left: 18px; right: 60px; max-width: 100%; }
    .hs-title   { font-size: 1.4rem; margin-bottom: 6px; }
    .hs-sub     { display: none; }
    .hs-btns .btn-outline-white { display: none; }
    .hs-btns .btn { padding: 10px 20px; font-size: .82rem; }
    #hsPrev { left: 6px; width: 36px; height: 36px; }
    #hsNext { right: 6px; width: 36px; height: 36px; }

    /* ── Arama kutusu ── */
    .search-box { flex-direction: column; }
    .search-field { border-right: none; border-bottom: 1px solid var(--border); }
    .search-btn-wrap { padding: 0 4px 4px; }
    .search-btn-wrap .btn { width: 100%; justify-content: center; }

    /* ── Section padding ── */
    .home-section, .home-section-alt { padding: 28px 0; }
    .categories-section, .features-section,
    .branches-section, .about-stats-section { padding: 28px 0; }
    .cta-section { padding: 40px 0; }
    .section-head { margin-bottom: 20px; }
    .section-row-head { align-items: flex-start; }

    /* ── Tur kartları (yatay scroll) ── */
    .tour-card { flex: 0 0 240px; min-width: 240px; }
    .tour-img  { height: 180px; }
    .feat-carousel-track .tour-card { flex: 0 0 calc((100% - 16px) / 2); }
    .feat-carousel-track .tour-card .tour-img { height: 180px; }
    .feat-carousel-track .feature-card { flex: 0 0 calc((100% - 20px) / 2); }

    /* ── Tur grid (listing) — 2 sütun ── */
    .tours-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .tours-grid .tour-card { flex: none; min-width: unset; }
    .tours-grid .tour-img { height: 150px; }
    .tour-desc { display: none; }

    /* ── Kategoriler ── */
    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .cat-card { padding: 16px 10px; }

    /* ── Features ── */
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .feature-card { padding: 18px 14px; }

    /* ── Takvim ── */
    .calendar-grid { grid-template-columns: 1fr; }
    .takvim-card { flex-direction: column; }
    .takvim-card-img { flex: 0 0 150px; width: 100%; }
    .takvim-card-foot {
        flex: none; flex-direction: row; border-left: none;
        border-top: 1px solid var(--border);
        justify-content: space-between; align-items: center;
        padding: 12px 14px;
    }

    /* ── Şubeler ── */
    .branches-grid { grid-template-columns: 1fr; }

    /* ── About ── */
    .about-stats-badges { grid-template-columns: repeat(2, 1fr); }

    /* ── Form ── */
    .form-row { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .inc-grid  { grid-template-columns: 1fr; }

    /* ── Footer ── */
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer { padding: 36px 0 0; }

    /* ── Filter sidebar — mobil slide panel ── */
    .filter-sidebar {
        position: fixed !important;
        top: 0 !important; left: 0; right: 0; bottom: 0;
        z-index: 200; background: var(--bg);
        overflow-y: auto; padding: 20px 16px;
        transform: translateX(-100%);
        transition: transform .3s cubic-bezier(.4,0,.2,1);
        box-shadow: var(--shadow-lg);
    }
    .filter-sidebar.open { transform: translateX(0); }
    .filter-sidebar-head { display: flex; }
    .filter-toggle-btn { display: flex; }
    .listing-layout { gap: 0; padding: 20px 0 80px; }

    /* ── Mobil alt çubuk ── */
    .mobile-bottom-bar { display: flex; }
    body { padding-bottom: 62px; }
    .footer { padding-bottom: 70px; }

    /* ── Buton konumları ── */
    .scroll-top   { bottom: 74px; right: 14px; }
    .whatsapp-float { display: none; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — Küçük Mobil (≤ 480px)
───────────────────────────────────────────── */
@media (max-width: 480px) {
    .container { padding: 0 12px; }

    /* Header */
    .header-inner { height: 56px; }
    .logo img { height: 40px; }
    .mobile-nav { top: 56px; max-height: calc(100vh - 56px); }
    .hero-wrap  { margin-top: 56px; }
    .cat-strip  { top: 56px; }
    .page-hero  { padding: 88px 0 28px; }
    .page-hero-sm { padding: 80px 0 22px; }
    .mobile-bottom-bar { height: 58px; }
    body { padding-bottom: 58px; }
    .footer { padding-bottom: 66px; }
    .scroll-top { bottom: 70px; }

    /* Hero */
    #heroSlider { height: 270px; }
    .hs-content { bottom: 14px; left: 14px; right: 14px; }
    .hs-title { font-size: 1.15rem; }
    .hs-tag { font-size: .63rem; padding: 3px 10px; margin-bottom: 8px; }
    .hs-btns .btn { padding: 9px 14px; font-size: .78rem; }

    /* Tur kartları — tek sütun */
    .tours-grid { grid-template-columns: 1fr; }
    .tours-grid .tour-img { height: 200px; }
    .tour-desc { display: -webkit-box; }

    /* Yatay scroll kartlar */
    .tour-card { flex: 0 0 80vw; min-width: 80vw; }

    /* Kategoriler */
    .categories-grid { grid-template-columns: repeat(2, 1fr); }

    /* Stats */
    .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-num { font-size: 1.7rem; }
    .about-stat-grid { grid-template-columns: repeat(2, 1fr); }

    /* Slider detay */
    .slider-main { height: 230px; }

    /* CTA */
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btns .btn { width: 100%; justify-content: center; max-width: 280px; }

    /* Features */
    .features-grid { grid-template-columns: 1fr; }
    .feat-carousel-track .feature-card { flex: 0 0 100%; }

    /* Diğer */
    .see-all-btn { display: none; }
    .section-head { margin-bottom: 14px; }
    .footer-grid { gap: 20px; }

    /* Takvim kart */
    .takvim-card-title { font-size: .88rem; }
    .takvim-card-meta { gap: 8px; }
}

/* ─────────────────────────────────────────────
   KOLTUK SEÇİMİ MODAL
───────────────────────────────────────────── */
.seat-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(3px);
}
.seat-modal-overlay.open { display: flex; }

.seat-modal {
    background: #fff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 420px;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}
.seat-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.seat-modal-header h3 { font-size: 1rem; margin: 0; }
.seat-modal-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--bg);
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-gray);
    transition: background var(--transition);
}
.seat-modal-close:hover { background: var(--border); }

.seat-modal-body { padding: 20px; }

/* Lejant */
.seat-legend {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    justify-content: center;
}
.seat-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--text-gray);
}
.legend-box {
    width: 22px; height: 22px;
    border-radius: 5px;
    flex-shrink: 0;
}
.legend-box.available  { background: #e8f4fd; border: 2px solid #93c5fd; }
.legend-box.selected   { background: var(--primary); border: 2px solid var(--primary-dark); }
.legend-box.occupied   { background: #f3f4f6; border: 2px solid #d1d5db; }

/* Otobüs gövdesi */
.bus-body {
    background: linear-gradient(180deg, #f0f4f8 0%, #e8ecf0 100%);
    border: 3px solid #94a3b8;
    border-radius: 24px 24px 16px 16px;
    padding: 12px 10px 14px;
    position: relative;
    max-width: 280px;
    margin: 0 auto;
}

/* Ön bölge */
.bus-front-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 0 4px;
}
.driver-box {
    background: #334155;
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.door-badge {
    background: #FF7846;
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 4px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Koltuk sıraları */
.seat-rows { display: flex; flex-direction: column; gap: 5px; }

.bus-seat-row {
    display: flex;
    align-items: center;
    gap: 0;
}
.seat-group { display: flex; gap: 4px; }
.seat-group.left  { margin-right: auto; }
.seat-group.right { margin-left: auto; }

.bus-aisle { flex: 1; min-width: 18px; }

/* Kapı bandı */
.bus-door-band {
    display: flex;
    justify-content: flex-end;
    padding: 2px 0;
    margin: 2px 0;
}
.bus-door-band .door-badge { font-size: .55rem; padding: 2px 6px; }

/* Arka sıra — sol çift | orta boş | sağ çift */
.back-seat-row-split {
    display: flex;
    align-items: center;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 2px dashed #cbd5e1;
}
.back-seat-group {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.back-seat-empty {
    flex: 1;
    min-width: 18px;
}

/* Koltuk butonu */
.bus-seat {
    width: 36px;
    height: 38px;
    border-radius: 7px 7px 5px 5px;
    border: 2px solid #93c5fd;
    background: #e8f4fd;
    cursor: pointer;
    font-size: .7rem;
    font-weight: 700;
    color: #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease;
    position: relative;
    flex-shrink: 0;
}
.bus-seat::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 6px;
    background: #93c5fd;
    border-radius: 4px 4px 0 0;
}
.bus-seat:hover:not(.occupied) {
    background: #dbeafe;
    border-color: #3b82f6;
    transform: translateY(-1px);
}
.bus-seat.selected {
    background: var(--primary);
    border-color: var(--primary-dark);
    color: #fff;
}
.bus-seat.selected::before { background: var(--primary-dark); }
.bus-seat.occupied {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
}
.bus-seat.occupied::before { background: #d1d5db; }

/* Seçim özeti */
.seat-selection-info {
    margin-top: 16px;
    padding: 12px 14px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    font-size: .82rem;
    color: var(--text-mid);
    text-align: center;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.seat-selection-info strong { color: var(--primary); font-size: .88rem; }

/* Modal footer */
.seat-modal-footer {
    padding: 14px 20px 18px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    border-top: 1px solid var(--border);
}

/* Form — koltuk seçim alanı */
.seat-select-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color var(--transition);
    width: 100%;
    font-family: inherit;
    font-size: .88rem;
    color: var(--text-gray);
}
.seat-select-trigger:hover { border-color: var(--primary); }
.seat-select-trigger .seat-trigger-icon {
    width: 32px; height: 32px;
    background: var(--primary-light);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: .85rem;
    flex-shrink: 0;
}
.seat-select-trigger .seat-trigger-text { flex: 1; text-align: left; }
.seat-select-trigger .seat-trigger-badge {
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 2px 9px;
    font-size: .72rem;
    font-weight: 700;
    display: none;
}
.seat-select-trigger.has-selection { border-color: var(--primary); color: var(--text-dark); }
.seat-select-trigger.has-selection .seat-trigger-badge { display: inline-block; }

@media (max-width: 480px) {
    .bus-seat { width: 32px; height: 34px; font-size: .65rem; }
    .bus-aisle { min-width: 14px; }
}
