/* ================================================================
   AVESTA TRAVEL — Home Page CSS
================================================================ */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* ================================================================
   1. HERO — PREMIUM SPLIT LAYOUT
================================================================ */

.page-home .hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    width: 100%;
    overflow: hidden;
    background: #060d1a;
    display: block;
}

@media (min-width: 993px) {
    .page-home .hero {
        height: clamp(560px, 82vh, 820px);
        min-height: 560px;
    }
}

/* ── Slider kapsayıcı ── */
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.9s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* ── Tam arka plan görseli (fotoğraf slider'ı için) ── */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 9s ease;
}

.hero-slide.active .hero-bg {
    transform: scale(1);
}

/* Sol yarıya güçlü karartma, sağ tarafa hafif */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(6, 13, 26, 0.97) 0%,
            rgba(6, 13, 26, 0.88) 38%,
            rgba(6, 13, 26, 0.45) 62%,
            rgba(6, 13, 26, 0.15) 100%
        );
}

/* Altta da soluk geçiş — search bar'ı örtmemek için */
.hero-bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(6,13,26,0.82) 0%, transparent 100%);
    z-index: 1;
}

/* ── Turuncu ince şerit — sol kenarda dikey aksan ── */
.hero-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 3px;
    background: linear-gradient(to bottom,
        transparent,
        var(--primary) 30%,
        var(--primary) 70%,
        transparent
    );
    z-index: 5;
    opacity: 0;
    transform: scaleY(0.4);
    transition: opacity 0.6s ease 0.4s, transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.4s;
}

.hero-slide.active::before {
    opacity: 1;
    transform: scaleY(1);
}

/* ── Parçacıklar ── */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(232, 93, 4, 0.12);
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.5; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ── İçerik: split layout — sol %55, sağ araç alanı ── */
.hero-slide .container {
    height: 100%;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: center !important;
    gap: 0 !important;
}

.hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-right: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(-28px);
    transition:
        opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateX(0);
}

/* ── Sağ taraf: araç / görsel alanı ── */
.hero-visual {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    opacity: 0;
    transform: translateX(28px);
    transition:
        opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.45s,
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
}

.hero-slide.active .hero-visual {
    opacity: 1;
    transform: translateX(0);
}

.hero-visual-img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
    display: block;
}

/* Görsel yoksa fotoğraf arka planı yeterli — .hero-visual gizle */
.hero-visual:empty {
    display: none;
}

/* ── Eyebrow (üst küçük etiket) ── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: hero-dot-pulse 2s ease infinite;
    flex-shrink: 0;
}

@keyframes hero-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,93,4,0.6); }
    50%       { box-shadow: 0 0 0 5px rgba(232,93,4,0); }
}

/* ── Başlık ── */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.8vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
    max-width: 1000px;
    text-wrap: balance;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title em {
    font-style: normal;
    color: var(--primary);
}

.hero-title .outline {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.55);
    font-style: italic;
}

/* ── Alt başlık ── */
.hero-subtitle {
    font-size: clamp(0.92rem, 1.4vw, 1.05rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* ── Butonlar ── */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Birincil CTA — turuncu dolu */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #fff;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: none;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.4);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::after { display: none; }

.btn-hero-primary svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.btn-hero-primary:hover {
    background: #d95500;
    border-color: #d95500;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 93, 4, 0.48);
}

.btn-hero-primary:hover svg {
    transform: translateX(3px);
}

.btn-hero-primary:active {
    transform: translateY(0);
}

/* İkincil CTA — şeffaf/ghost */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    white-space: nowrap;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-2px);
}

.btn-hero-secondary:active {
    transform: translateY(0);
}

/* ── Alt istatistik şeridi ── */
.hero-stats-bar {
    margin-top: 40px;
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat-number span {
    color: #f97316;
}

.hero-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Hero nav — ok butonları ── */
.hero-nav {
    box-sizing: border-box;
    position: absolute;
    bottom: 120px;
    right: 4vw;
    display: flex;
    gap: 10px;
    z-index: 30;
    pointer-events: none;
}

.hero-nav-btn {
    pointer-events: auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.hero-nav-btn:hover {
    background: #f97316;
    border-color: #f97316;
    color: #fff;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.4);
    transform: translateY(-2px);
}

/* Hero stats (Sabit Kalacak) */
.hero-stats-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    background: transparent;
    padding-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding: 28px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat .number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hero-stat .number span {
    color: var(--primary);
}

.hero-stat .label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ════════════════════════════════════
   2. SEARCH BAR (PREMIUM UNIFIED DESIGN)
════════════════════════════════════ */

.search-section {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    padding: 0 0 28px;
    /* Hero içeriğinin (z-index:30) önünü kapatmamak için hero nav okları 30'a yükseltildi */
}

.search-card {
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 32px;
    /* Çok daha yumuşak köşeler */
    box-shadow:
        0 25px 50px rgba(11, 20, 38, 0.08),
        0 10px 15px rgba(11, 20, 38, 0.03),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    padding: 24px 32px 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.search-card *, .search-card *::before, .search-card *::after {
    box-sizing: border-box;
}

/* --- Sekmeler (Tabs) --- */
.search-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: none;
    /* Eski çizgiyi kaldırdık */
}

.search-tab {
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-500);
    cursor: pointer;
    border: 2px solid transparent;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
}

.search-tab.active {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 8px 20px rgba(11, 20, 38, 0.2);
}

.search-tab:hover:not(.active) {
    color: var(--navy);
    background: var(--gray-50);
    border-color: var(--gray-200);
}

/* --- Birleşik Arama Alanı (Unified Bar) --- */
.search-fields-container {
    display: flex;
    align-items: center;
    background: #f8fafc;
    /* Çok hafif gri, premium his verir */
    border-radius: 100px;
    /* Hap (pill) şekli */
    border: 1px solid #e2e8f0;
    padding: 8px 12px 8px 32px;
    /* Sağdan buton için boşluk */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.search-fields-container:hover {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), inset 0 0 0 1px var(--primary-light);
}

/* Ayrı Ayrı Alanlar */
.search-field {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    padding: 12px 24px;
    border-radius: 50px;
    transition: background 0.3s ease;
    cursor: pointer;
    position: relative;
}

.search-field:hover {
    background: #f1f5f9;
}

.field-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.field-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.search-field-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2px;
    cursor: pointer;
}

.search-field-input {
    width: 100%;
    padding: 0;
    border: none !important;
    /* Çerçeveyi kesin olarak yok et */
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
    background: transparent !important;
    /* Kendi beyaz/gri arkaplanını sil */
    outline: none !important;
    /* Tıklama dış hattını sil */
    box-shadow: none !important;
    /* Gölgeyi sil */
    font-family: var(--font-body);
    cursor: pointer;
    -webkit-appearance: none;
    /* Safari/Chrome'un varsayılan stillerini ezer */
}

.search-field-input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.search-field-input:focus,
.search-field-input:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    background: transparent;
    cursor: pointer;
    opacity: 0.6;
}

/* ════════════════════════════════════
   ÖZEL DATEPICKER - ARAMA ALANI UYUMU
   (Sadece arama kartı içindeki çerçeveleri gizler)
════════════════════════════════════ */

.search-fields-container .avp-wrapper {
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

.search-fields-container .avp-trigger {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: var(--gray-600) !important;
    height: auto !important;
    /* Kesinlikle 2. satira gecmeyecek */
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block !important;
}

/* Üzerine gelince veya tıklanınca çıkan o turuncu parlamayı yok eder */
.search-fields-container .avp-trigger:hover,
.search-fields-container .avp-trigger:focus,
.search-fields-container .avp-trigger.open {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Datepicker'ın kendi takvim ikonunu gizleriz (Çünkü arama alanında zaten solda özel ikonumuz var) */
.search-fields-container .avp-icon {
    display: none !important;
}

/* ════════════════════════════════════
   TİMEPICKER — Transfer Saat Alanı Uyumu
   (.hm-tr-dt-row içindeki avtp-trigger
   çerçevesini ve arkaplanını kaldırır)
════════════════════════════════════ */

.hm-tr-dt-row .avtp-wrapper {
    width: 100%;
    min-width: 0;
    display: block;
}

.hm-tr-dt-row .avtp-trigger {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    padding: 0 !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: var(--gray-600) !important;
    font-family: var(--font-body, inherit) !important;
    line-height: 1.35 !important;
    outline: none !important;
    text-align: left;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    display: block !important;
    transition: none !important;
}

.hm-tr-dt-row .avtp-trigger:hover,
.hm-tr-dt-row .avtp-trigger:focus,
.hm-tr-dt-row .avtp-trigger.open,
.hm-tr-dt-row .avtp-trigger.has-value {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    outline: none !important;
}

.hm-tr-dt-row .avtp-trigger.placeholder-text {
    color: var(--gray-400) !important;
    font-weight: 400 !important;
}

/* Timepicker'ın sağdaki saat ikonunu gizle (sol ikonumuz zaten var) */
.hm-tr-dt-row .avtp-icon {
    display: none !important;
}

/* ════════════════════════════════════
   TRANSFER SEARCH RESULTS
   (Arama sonuçları dropdown stili)
════════════════════════════════════ */

.hm-tr-results {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 20px 46px rgba(11, 20, 38, .15);
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 12100;
    display: none;
    padding: 6px;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.hm-tr-results::-webkit-scrollbar { width: 5px; }
.hm-tr-results::-webkit-scrollbar-track { background: transparent; border-radius: 99px; margin: 6px 0; }
.hm-tr-results::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 99px; }
.hm-tr-results::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

.hm-tr-results.hm-tr-open {
    display: block;
    animation: hmTrLocDrop .2s cubic-bezier(0.2, 1, 0.3, 1);
}

@keyframes hmTrLocDrop {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.hm-tr-result {
    width: 100%;
    display: block;
    text-align: left;
    border: none;
    border-radius: 10px;
    background: transparent;
    padding: 10px 12px;
    cursor: pointer;
    transition: background .14s ease;
    margin-bottom: 2px;
}

.hm-tr-result:last-child { margin-bottom: 0; }

.hm-tr-result:hover {
    background: #f1f5f9;
}

.hm-tr-result strong {
    display: block;
    color: #0f172a;
    font-size: .88rem;
    line-height: 1.3;
    font-weight: 700;
}

.hm-tr-result span {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: .78rem;
    line-height: 1.4;
    font-weight: 500;
}

.hm-tr-empty {
    padding: 12px;
    color: #64748b;
    font-size: .84rem;
    font-weight: 600;
    text-align: center;
}

.hm-tr-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 50%;
    background: #e2e8f0;
    color: #475569;
    font-size: 1rem;
    font-weight: 400;
    line-height: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    z-index: 5;
    padding: 0;
}

.hm-tr-clear:hover {
    background: #cbd5e1;
    color: #0f172a;
    transform: translateY(-50%) scale(1.1);
}

.search-field.is-open {
    background: #f1f5f9;
}



/* Alanları ayıran ince, zarif çizgi */
.field-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
    margin: 0 10px;
}

/* --- Arama Butonu --- */
.search-action {
    margin-left: 10px;
}

.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 100px;
    /* Buton da hap şeklinde */
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(232, 93, 4, 0.3);
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-search:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(232, 93, 4, 0.45);
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 992px) {
    .search-fields-container {
        flex-direction: column;
        border-radius: 24px;
        padding: 16px;
    }

    .field-divider {
        width: 100%;
        height: 1px;
        margin: 12px 0;
    }

    .search-field {
        width: 100%;
        border-radius: 16px;
    }

    .search-action {
        width: 100%;
        margin-left: 0;
        margin-top: 16px;
    }

    .btn-search {
        width: 100%;
    }
}

/* ════════════════════════════════════
   3. SECTION HEADER (shared)
════════════════════════════════════ */

.section-header {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.section-header-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 560px;
}

.section-header-left .section-eyebrow {
    justify-content: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--primary);
}

.section-subtitle {
    margin-top: 14px;
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-600);
    background: #fff;
    transition: all var(--duration-fast);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.section-footer-center {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.btn-view-all:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-view-all svg {
    transition: transform var(--duration-fast) var(--ease-spring);
}

.btn-view-all:hover svg {
    transform: translateX(3px);
}

/* ════════════════════════════════════
   4. FEATURED TOURS
════════════════════════════════════ */

.tours-section {
    padding: var(--section-gap) 0;
    background: var(--off-white);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tour-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform var(--duration-base) var(--ease),
        box-shadow var(--duration-base) var(--ease);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.tour-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--gray-100);
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease);
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.06);
}

/* Badge */
.tour-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
}

.badge-featured {
    background: rgba(232, 93, 4, 0.92);
    color: #fff;
}

.badge-new {
    background: rgba(16, 185, 129, 0.92);
    color: #fff;
}

.badge-popular {
    background: rgba(245, 158, 11, 0.92);
    color: #fff;
}

/* Wishlist */
.tour-card-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all var(--duration-fast) var(--ease-spring);
    color: var(--gray-400);
}

.tour-card-wishlist:hover {
    transform: scale(1.15);
    background: #fff;
    color: var(--primary);
}

.tour-card-wishlist.liked {
    color: var(--primary);
}

.tour-card-body {
    padding: 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.tour-card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.35;
    margin-bottom: 10px;
    flex: 1;
}

.tour-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.tour-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.rating-count {
    font-size: 0.78rem;
    color: var(--gray-400);
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
    margin-top: 14px;
}

.tour-card-price .from {
    font-size: 0.72rem;
    color: var(--gray-400);
    display: block;
}

.tour-card-price .amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.btn-card {
    padding: 9px 18px;
    background: var(--primary-light);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-spring);
    font-family: var(--font-body);
    text-decoration: none;
}

.btn-card:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.04);
}

/* ════════════════════════════════════
   5. DESTINATIONS
════════════════════════════════════ */

.destinations-section {
    padding: 0 0 var(--section-gap);
    background: #fafaf8;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 210px 210px;
    gap: clamp(14px, 2vw, 22px);
    width: 100%;
}

.destination-card {
    position: relative;
    display: block;
    min-height: 210px;
    border-radius: clamp(16px, 2.2vw, 26px);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.06),
        0 20px 50px rgba(15, 23, 42, 0.12);
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.destination-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 442px;
}

.destination-card:focus-visible {
    outline: 3px solid #ea580c;
    outline-offset: 4px;
}

.destination-card:hover {
    transform: scale(1.015);
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.08),
        0 28px 56px rgba(15, 23, 42, 0.18);
}

.destination-media {
    position: absolute;
    inset: 0;
    background: #94a3b8;
}

.destination-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.destination-card:hover .destination-media img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.destination-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(ellipse 90% 70% at 35% 25%, rgba(234, 88, 12, 0.35), transparent 55%),
        linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
}

.destination-fallback span {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}

.destination-shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.35) 38%,
        rgba(0, 0, 0, 0) 58%
    );
}

.destination-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: clamp(12px, 2.2vw, 20px);
}

.destination-name {
    margin: 0;
    font-size: clamp(0.95rem, 1.35vw + 0.65rem, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.destination-count {
    margin: 6px 0 0;
    padding: 0;
    font-size: clamp(0.65rem, 0.35vw + 0.55rem, 0.75rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .destination-card {
        min-height: 220px;
    }

    .destination-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }

    .destination-name {
        font-size: clamp(1.05rem, 2vw + 0.5rem, 1.45rem);
    }
}

@media (max-width: 680px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }

    .destination-card {
        min-height: 220px;
    }

    .destination-card:first-child {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 240px;
    }
}



/* ════════════════════════════════════
   6. FEATURES / WHY US
════════════════════════════════════ */

.features-section {
    padding: var(--section-gap) 0;
    background: rgb(15, 15, 15);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
}

.features-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.feature-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background var(--duration-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-base) var(--ease);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Icon container — SVG based */
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(232, 93, 4, 0.12);
    border: 1px solid rgba(232, 93, 4, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ════════════════════════════════════
   7. TESTIMONIALS
════════════════════════════════════ */

.testimonials-section {
    padding: var(--section-gap) 0;
    background: #fff;
}

.testimonials-slider-wrap {
    position: relative;
    display: block;
    margin-top: 26px;
    padding: 0;
}

.testimonials-slider-viewport {
    overflow: hidden;
    padding: 8px 0 18px;
}

.testimonials-slider-track {
    display: flex;
    gap: 24px;
    align-items: stretch;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.testimonials-slider-track > .testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    min-height: 286px;
}

.testimonials-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.testimonials-slider-arrow.is-prev {
    left: -58px;
}

.testimonials-slider-arrow.is-next {
    right: -58px;
}

.testimonials-slider-arrow:hover:not(:disabled) {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.2);
}

.testimonials-slider-arrow:disabled {
    opacity: 0.24;
    cursor: not-allowed;
    box-shadow: none;
}

.testimonials-slider-dots {
    margin-top: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding-left: 0;
}

.testimonials-slider-dots button {
    width: 22px;
    height: 4px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: rgba(148, 163, 184, 0.36);
    transition: width 0.22s ease, background 0.22s ease;
}

.testimonials-slider-dots button.active {
    width: 38px;
    background: #0f172a;
}

.testimonial-card {
    background: white;
    border-radius: 22px;
    padding: 32px;
    box-shadow: none;
    border: 1px solid white;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: #f3f3f3;
    box-shadow: none;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--primary-light);
    line-height: 1;
    font-style: italic;
}

.testimonial-stars {
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 0.93rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-display);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.testimonial-trip {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 500;
}

/* ════════════════════════════════════
   8. YENİ CTA BANNER (PREMIUM)
════════════════════════════════════ */
.cta-section {
    padding: var(--section-gap) 0;
}

.cta-premium-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: var(--navy);
    box-shadow: 0 30px 60px rgba(11, 20, 38, 0.2);
}

/* Arka Plan Görseli */
.cta-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 10s ease;
}

.cta-premium-wrapper:hover .cta-bg-image {
    transform: scale(1.05);
    /* Fare üzerine gelince çok yavaş yakınlaşır */
}

/* Koyu-Geçişli Filtre (Yazıların okunması için) */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(11, 20, 38, 0.98) 0%, rgba(11, 20, 38, 0.85) 50%, rgba(11, 20, 38, 0.3) 100%);
    z-index: 2;
}

.cta-content-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    padding: 40px 64px;
    align-items: center;
}

/* --- Sol Metin Alanı --- */
.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

/* Yanıp sönen yeşil "Aktif" noktası */
.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.cta-title em {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.trust-badges {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

/* --- Sağ Cam Kart Alanı (Glassmorphism) --- */
.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.glass-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.glass-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

/* Özel İletişim Butonları */
.premium-contact-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    border: 1px solid transparent;
}

.premium-contact-btn:last-child {
    margin-bottom: 0;
}

.premium-contact-btn.phone {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 8px 25px rgba(232, 93, 4, 0.3);
}

.premium-contact-btn.phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 93, 4, 0.45);
}

.premium-contact-btn.whatsapp {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.premium-contact-btn.whatsapp:hover {
    background: #25D366;
    /* WhatsApp Rengi */
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

.btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.btn-texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.b-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 4px;
}

.premium-contact-btn.phone .b-label {
    color: rgba(255, 255, 255, 0.9);
}

.b-value {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
}

/* --- Mobil Uyumluluk --- */
@media (max-width: 992px) {
    .cta-content-grid {
        grid-template-columns: 1fr;
        padding: 48px 32px;
        gap: 40px;
    }

    .cta-overlay {
        background: linear-gradient(180deg, rgba(11, 20, 38, 0.95) 0%, rgba(11, 20, 38, 0.85) 100%);
    }
}

@media (max-width: 640px) {
    .cta-content-grid {
        padding: 40px 24px;
    }

    .glass-card {
        padding: 24px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
}

/* ════════════════════════════════════
   9. RESPONSIVE
════════════════════════════════════ */

@media (max-width: 1100px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .testimonials-slider-track > .testimonial-card {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (max-width: 900px) {


    .cta-banner {
        grid-template-columns: 1fr;
        padding: 48px 32px;
    }

    .search-fields {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 640px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }





    .search-fields {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }

    .section-footer-center {
        margin-top: 20px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .cta-banner {
        padding: 36px 24px;
    }
}

@media (max-width: 700px) {
    .testimonials-slider-track > .testimonial-card {
        flex-basis: 100%;
    }

    .testimonials-slider-wrap {
        gap: 8px;
    }

    .testimonials-slider-arrow {
        width: 36px;
        height: 36px;
    }
}

/* Arama formları arası geçiş sınıfı */
.d-none {
    display: none !important;
}

/* ════════════════════════════════════
   YENİ KAÇ KİŞİ AÇILIR MENÜSÜ (DROPDOWN)
════════════════════════════════════ */

.search-field {
    position: relative;
    /* Dropdown'ı doğru hizalamak için kritik */
}

.guest-trigger-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-body);
}

.guest-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 340px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(11, 20, 38, 0.15), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 24px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: default;
}

/* Modül açıldığında çalışacak animasyon */
.guest-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Üstündeki küçük ok (Triangle) tasarımı */
.guest-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 40px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .guest-dropdown {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        bottom: auto !important;
        right: auto !important;
        transform: translate(-50%, -50%) scale(0.95) !important;
        z-index: 100000 !important;
        width: calc(100% - 32px) !important;
        max-width: 360px !important;
        box-shadow: 0 25px 60px rgba(0,0,0,0.3) !important;
        margin: 0 !important;
    }
    .guest-dropdown::before {
        display: none !important;
    }
    .guest-dropdown.show {
        transform: translate(-50%, -50%) scale(1) !important;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease !important;
    }
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.guest-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.guest-row:first-child {
    padding-top: 0;
}

.guest-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guest-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
}

.guest-desc {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* Butonlar ve Sayaç */
.guest-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.guest-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    color: var(--gray-500);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 1, 0.3, 1);
    padding: 0;
    line-height: 0;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation !important;
}

.guest-btn:hover:not([style*="not-allowed"]) {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    transform: scale(1.05);
}

.guest-count {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    min-width: 20px;
    text-align: center;
    font-family: var(--font-display);
}

/* ════════════════════════════════════
   GİDİŞ-DÖNÜŞ (TRIP TYPE) BUTONLARI
════════════════════════════════════ */
.trip-type-tabs {
    display: inline-flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 100px;
    margin-bottom: 16px;
    gap: 4px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.trip-tab {
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-500);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.trip-tab.active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(11, 20, 38, 0.08);
}

.search-field {
    transition: all 0.4s ease;
}

/* ════════════════════════════════════
   OUR SERVICES (PREMIUM IMAGE CARDS)
════════════════════════════════════ */

.services-section {
    padding: var(--section-gap) 0;
    background: transparent;
    /* Arka plan rengine gerek yok, kartlar resimli */
}

.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /* Daha dar aralıklar daha premium durur */
}

.service-premium-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* İçeriği altta topla */
    height: 380px;
    /* Sabit yükseklik */
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Çok ince beyaz çerçeve */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Karta gelince dış hat ışıması */
.service-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(232, 93, 4, 0.15), 0 0 0 2px rgba(232, 93, 4, 0.1);
}

/* --- Arka Plan Resmi (Asıl Canlandırma Burası) --- */
.service-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.01);
    /* Başlangıçta çok hafif büyük */
    transition: transform 7s ease;
    /* Fare üzerine gelince 7 saniye sürecek yavaş yakınlaşma */
}

.service-premium-card:hover .service-bg {
    transform: scale(1.06);
    /* Fare üzerine gelince yavaşça büyür */
}

/* --- Karartma Filtresi (Gradyan Overlay) --- */
/* Metinlerin okunması için alttan üste doğru kararan filtre */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 20, 38, 0) 0%, rgba(11, 20, 38, 0.5) 40%, rgba(11, 20, 38, 0.95) 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.service-premium-card:hover .service-overlay {
    opacity: 1;
    /* Üzerine gelince biraz daha belirginleşebilir */
}

/* --- İçerik Alanı (Resmin Üzerinde) --- */
.service-content {
    position: relative;
    z-index: 3;
    /* Overlay'in de üstünde */
    padding: 32px 24px;
    width: 100%;
    transform: translateY(15px);
    /* Başlangıçta hafif aşağıda */
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-premium-card:hover .service-content {
    transform: translateY(0);
    /* Üzerine gelince yukarı kalkar */
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    /* Transparan beyaz */
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 90%
}

/* Link (Keşfet) alanı */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    /* Turuncu */
    transition: all 0.3s ease;
}

.service-premium-card:hover .service-link {
    color: #ffffff;
    /* Üzerine gelince beyaz olur */
}

.service-premium-card:hover .service-link svg {
    transform: translateX(4px);
    /* Ok sağa kayar */
}

/* --- Mobilde Grid Yapısı Uyumu --- */
@media (max-width: 1100px) {

}

@media (max-width: 640px) {


    .service-premium-card {
        height: 320px;
        /* Mobilde biraz daha kısa */
    }
}
/* ================================================================
   TOUR SIGNATURE SECTION
================================================================ */

.tour-signature-section {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 96px 0 88px;
    background: rgb(15, 15, 15);
}

.tour-signature-section::before {
    content: '';
    position: absolute;
    inset: -2%;
    background-image: var(--tour-signature-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: saturate(1.05) contrast(1.05);
}

.tour-signature-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(760px 280px at 82% 18%, rgba(232, 93, 4, 0.2) 0%, rgba(232, 93, 4, 0) 72%);
}

.tour-signature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, rgba(5, 11, 24, 0.94) 0%, rgba(8, 19, 43, 0.87) 46%, rgba(9, 22, 48, 0.62) 100%);
}

.tour-signature-container {
    position: relative;
    z-index: 3;
}

.tour-signature-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 52px;
    align-items: end;
}

.tour-signature-main,
.tour-signature-side {
    position: relative;
    z-index: 2;
}

.tour-signature-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tour-signature-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.tour-signature-subtitle {
    font-size: 1.04rem;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.78);
    max-width: 760px;
}

.tour-signature-badges {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tour-signature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}

.tour-signature-badge svg {
    color: #ffb68c;
    flex-shrink: 0;
}

.tour-signature-side {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.tour-signature-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
}

.tour-signature-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tour-signature-point-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 8px;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.16);
    flex-shrink: 0;
}

.tour-signature-point p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    font-size: 0.93rem;
    font-weight: 500;
}

.tour-signature-cta {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8a42 100%);
    box-shadow: 0 14px 30px rgba(232, 93, 4, 0.34);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.tour-signature-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(232, 93, 4, 0.44);
    filter: brightness(1.03);
}

.tour-signature-cta svg {
    transition: transform 0.2s ease;
}

.tour-signature-cta:hover svg {
    transform: translateX(3px);
}

.tour-signature-section.signature-experience {
    position: relative;
    overflow: hidden;
    padding: 0px 0 0;
    background: rgb(15, 15, 15);
    color: #fff;
}



.tour-signature-section.signature-experience::before,
.tour-signature-section.signature-experience::after {
    display: none;
}

.signature-section-head {
    position: relative;
    z-index: 3;
    max-width: 980px;
    padding: 54px 20px 28px;
    text-align: center;
}

.signature-section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #f97316;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.signature-section-head h2 {
    margin: 0 auto 12px;
    max-width: 760px;
    color: #fff;
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    line-height: 1.04;
    font-weight: 900;
}

.signature-section-head p {
    margin: 0 auto;
    max-width: 740px;
    color: rgba(255,255,255,.74);
    font-size: 1rem;
    line-height: 1.65;
}

.signature-bg {
    display: none;
}

.signature-bg-slide {
    position: absolute;
    inset: -3%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .7s ease, transform 3s ease;
    filter: saturate(1.03) contrast(1.04);
}

.signature-bg-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.signature-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(780px 360px at 76% 18%, rgba(232, 93, 4, .18), rgba(232, 93, 4, 0) 70%),
        linear-gradient(112deg, rgba(3, 8, 19, .98) 0%, rgba(5, 14, 30, .9) 46%, rgba(7, 18, 37, .74) 100%);
}

.signature-experience-inner {
    position: relative;
    z-index: 2;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
}

.signature-slider {
    position: relative;
    min-width: 0;
}

.signature-track {
    display: flex;
    transition: transform .68s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.signature-slide {
    flex: 0 0 100%;
    min-width: 0;
    position: relative;
    display: grid;
    grid-template-columns: minmax(420px, 44%) minmax(0, 56%);
    height: 540px;
    min-height: 540px;
    overflow: hidden;
    background: rgb(15, 15, 15);
}

.signature-media {
    position: relative;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
    z-index: 2;
    background: #111827;
    will-change: clip-path, transform;
}

.signature-slide.is-active .signature-media {
    animation: signatureMediaReveal .95s cubic-bezier(.22, 1, .36, 1) both;
}

.signature-media-curtain {
    display: none;
}

.signature-slide.is-active .signature-media-curtain {
    animation: none;
}

.signature-media::before {
    display: none;
}

.signature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateX(-34px) scale(1.12);
    transition: transform 1.25s cubic-bezier(.2, .72, .2, 1), filter .8s ease;
    filter: saturate(.94) contrast(.98);
    will-change: transform;
}

.signature-slide.is-active .signature-media img {
    transform: translateX(0) scale(1.025);
    filter: saturate(1.08) contrast(1.04);
}

.signature-slide.is-active .signature-media::before {
    animation: none;
}

.signature-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .1) 60%, rgba(0, 0, 0, .32) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .06) 48%, rgba(0, 0, 0, .26) 100%);
}

.signature-media-glow {
    display: none;
}

.signature-stat {
    position: absolute;
    left: 28px;
    bottom: 26px;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 13px 15px;
    border-radius: 18px;
    background: rgba(5, 11, 24, .7);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: none;
    opacity: 0;
    transform: translateX(-24px);
}

.signature-stat strong {
    color: #fff;
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 850;
}

.signature-stat span {
    max-width: 120px;
    color: rgba(255, 255, 255, .7);
    font-size: .72rem;
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
}

.signature-panel {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    min-height: 0;
    overflow: hidden;
    padding: 58px 76px 56px 100px;
    border: 0;
    border-radius: 0;
    background: rgb(15, 15, 15);
    box-shadow: none;
}

.signature-panel::before {
    display: none;
}

.signature-panel > * {
    opacity: 0;
    transform: translateX(34px);
    position: relative;
    z-index: 1;
}

.signature-kicker {
    width: fit-content;
    margin-bottom: 13px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 138, 0, .1);
    color: #e85d04;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.signature-panel h3 {
    margin: 0 0 12px;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 2.75vw, 3.45rem);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: 0;
}

.signature-panel p {
    margin: 0;
    max-width: 620px;
    color: rgba(255, 255, 255, .72);
    font-size: 1rem;
    line-height: 1.62;
}

.signature-feature-list,
.signature-route-list,
.signature-tag-list,
.signature-boat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 26px;
}

.signature-route-list,
.signature-tag-list,
.signature-boat-list {
    align-items: center;
}

.signature-feature-list span,
.signature-route-list span,
.signature-tag-list span,
.signature-boat-list span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 220px;
    padding: 9px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .86);
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: .82rem;
    line-height: 1.28;
    font-weight: 700;
    box-shadow: none;
}

.signature-feature-list i,
.signature-route-list i,
.signature-tag-list i,
.signature-boat-list i {
    width: 6px;
    height: 6px;
    margin-top: 5px;
    border-radius: 999px;
    background: #ff8a00;
    box-shadow: none;
    flex-shrink: 0;
}

.signature-route-list span,
.signature-tag-list span,
.signature-boat-list span {
    max-width: none;
    white-space: nowrap;
    align-items: center;
    line-height: 1;
}

.signature-route-list i,
.signature-tag-list i,
.signature-boat-list i {
    margin-top: 0;
}

.signature-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    min-width: 178px;
    padding: 13px 18px;
    border-radius: 0;
    background: linear-gradient(135deg, #ff8a00 0%, #f97316 100%);
    color: #fff;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 800;
    box-shadow: none;
    transition: transform .2s ease, filter .2s ease;
}

.signature-cta:hover {
    transform: translateY(-2px);
    box-shadow: none;
    filter: brightness(1.03);
}

.signature-cta svg {
    transition: transform .18s ease;
}

.signature-cta:hover svg {
    transform: translateX(3px);
}

.signature-controls {
    position: absolute;
    inset: 0;
    z-index: 6;
    margin-top: 0;
    padding: 0;
    display: block;
    pointer-events: none;
}

.signature-arrow {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .42);
    background: rgba(23, 29, 39, .5);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-50%);
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

#signaturePrev {
    left: 18px;
}

#signatureNext {
    right: 18px;
}

.signature-arrow:hover {
    background: #ff8a00;
    border-color: #ff8a00;
    transform: translateY(-50%) scale(1.05);
    box-shadow: none;
}

.signature-dots {
    position: absolute;
    left: 22%;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
    transform: translateX(-50%);
}

.signature-dots button {
    position: relative;
    width: 34px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, .2);
    overflow: hidden;
    cursor: pointer;
}

.signature-dots button::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 0;
    border-radius: inherit;
    background: #ff8a00;
}

.signature-dots button.is-active::before {
    animation: signatureDotFill 3s linear forwards;
}

.signature-slide.is-active .signature-stat {
    animation: signatureStatIn .62s cubic-bezier(.22, 1, .36, 1) .22s forwards;
}

.signature-slide.is-active .signature-kicker {
    animation: signatureTextIn .58s cubic-bezier(.22, 1, .36, 1) .2s forwards;
}

.signature-slide.is-active .signature-panel h3 {
    animation: signatureTextIn .58s cubic-bezier(.22, 1, .36, 1) .3s forwards;
}

.signature-slide.is-active .signature-panel p {
    animation: signatureTextIn .58s cubic-bezier(.22, 1, .36, 1) .4s forwards;
}

.signature-slide.is-active .signature-feature-list,
.signature-slide.is-active .signature-route-list,
.signature-slide.is-active .signature-tag-list,
.signature-slide.is-active .signature-boat-list {
    animation: signatureTextIn .58s cubic-bezier(.22, 1, .36, 1) .5s forwards;
}

.signature-slide.is-active .signature-cta {
    animation: signatureTextIn .58s cubic-bezier(.22, 1, .36, 1) .6s forwards;
}

@keyframes signatureDotFill {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes signatureMediaReveal {
    from {
        clip-path: polygon(0 0, 8% 0, 18% 100%, 0 100%);
        transform: translateX(-26px);
    }
    to {
        clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
        transform: translateX(0);
    }
}

@keyframes signatureTextIn {
    from {
        opacity: 0;
        transform: translateX(34px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes signatureStatIn {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .signature-track,
    .signature-bg-slide,
    .signature-media,
    .signature-media-curtain,
    .signature-media img,
    .signature-panel > *,
    .signature-stat {
        transition: none;
        animation: none !important;
    }

    .signature-media,
    .signature-panel > *,
    .signature-stat {
        opacity: 1;
        transform: none;
        clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
    }
}

@media (max-width: 1040px) {
    .signature-experience-inner {
        display: block;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .signature-slide {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .signature-media {
        position: relative;
        min-height: 320px;
        clip-path: none;
        animation: none !important;
    }

    .signature-panel {
        position: relative;
        width: auto;
        padding: 34px 30px;
        overflow: visible;
    }

    .signature-panel > *,
    .signature-stat {
        opacity: 1;
        transform: none;
        animation: none !important;
    }

    .signature-controls {
        position: static;
        margin-top: 18px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 0;
        gap: 14px;
        pointer-events: auto;
    }

    .signature-arrow {
        position: static;
        width: 44px;
        height: 44px;
        transform: none;
    }

    .signature-arrow:hover {
        transform: translateY(-1px);
    }

    .signature-dots {
        position: static;
        transform: none;
    }

    .signature-dots button {
        width: 38px;
        height: 8px;
    }
}

@media (max-width: 640px) {
    .page-home .tour-signature-section.signature-experience {
        padding: 54px 0 0;
    }

    .signature-viewport {
        border-radius: 0;
    }

    .signature-media {
        min-height: 300px;
    }

    .signature-panel {
        padding: 30px 20px;
        border-radius: 0;
    }

    .signature-panel h3 {
        font-size: 1.42rem;
    }

    .signature-stat {
        left: 14px;
        bottom: 14px;
        padding: 10px 12px;
    }

    .signature-stat strong {
        font-size: 1.25rem;
    }

    .signature-feature-list,
    .signature-route-list,
    .signature-tag-list,
    .signature-boat-list {
        margin: 20px 0 22px;
    }

    .signature-cta {
        width: 100%;
    }

    .signature-dots button {
        width: 28px;
    }
}



/* ================================================================
   HOME FERRY SHOWCASE
================================================================ */

.home-ferry-showcase {
    position: relative;
    overflow: hidden;
    padding: 0;
    background:
        linear-gradient(180deg, #edf7ff 0%, #f6fbff 48%, #ffffff 100%);
}

.home-ferry-showcase::before {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    right: -240px;
    top: -260px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.23) 0%, rgba(14, 165, 233, 0) 72%);
    animation: homeFerryAuraDrift 12s ease-in-out infinite;
    z-index: 0;
}

.home-ferry-showcase::after {
    content: '';
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    left: -180px;
    bottom: -190px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.2) 0%, rgba(8, 145, 178, 0) 74%);
    z-index: 0;
}

.home-ferry-showcase .container {
    position: relative;
    z-index: 2;
}

.home-ferry-showcase-head {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.home-ferry-showcase-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 780px;
}

.home-ferry-showcase-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #0e7490;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-ferry-showcase-eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #0e7490, #0ea5e9);
}

.home-ferry-showcase-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 2.85rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0b1325;
}

.home-ferry-showcase-subtitle {
    margin: 13px 0 0;
    max-width: 740px;
    font-size: 1rem;
    line-height: 1.75;
    color: #3f546b;
}

.home-ferry-showcase-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 21px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(2, 132, 199, 0.3);
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.26);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.home-ferry-showcase-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(14, 165, 233, 0.34);
    filter: brightness(1.02);
}

.home-ferry-showcase-cta svg {
    transition: transform 0.2s ease;
}

.home-ferry-showcase-cta:hover svg {
    transform: translateX(3px);
}

.home-ferry-showcase-footer {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.home-ferry-slider-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-ferry-slider-viewport {
    flex: 1;
    overflow: hidden;
    padding: 10px 5px 10px;
}

.home-ferry-slider-track {
    display: flex;
    gap: 18px;
    transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.home-ferry-slider-track > .home-ferry-route-card {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
}

.home-ferry-slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(2, 132, 199, 0.24);
    background: rgba(255, 255, 255, 0.96);
    color: #0b1325;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
    transition: all 0.22s ease;
}

.home-ferry-slider-arrow:hover:not(:disabled) {
    background: #0284c7;
    color: #fff;
    border-color: #0284c7;
    box-shadow: 0 14px 30px rgba(2, 132, 199, 0.3);
    transform: translateY(-1px);
}

.home-ferry-slider-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.home-ferry-slider-dots {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.home-ferry-slider-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: rgba(148, 163, 184, 0.7);
    transition: all 0.22s ease;
}

.home-ferry-slider-dots button.active {
    width: 24px;
    background: #0284c7;
}

.home-ferry-route-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
    border: 1px solid rgba(14, 127, 168, 0.2);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-ferry-route-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.home-ferry-route-card:hover {
    transform: translateY(-6px);
    border-color: rgba(2, 132, 199, 0.35);
    box-shadow: 0 22px 44px rgba(2, 132, 199, 0.18);
}

.home-ferry-route-media {
    position: relative;
    height: 208px;
    background: #e2e8f0;
    overflow: hidden;
}

.home-ferry-route-media img,
.home-ferry-route-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-ferry-route-placeholder {
    background:
        radial-gradient(300px 130px at 18% 26%, rgba(14, 165, 233, 0.32) 0%, rgba(14, 165, 233, 0) 72%),
        linear-gradient(135deg, #0f172a 0%, #1d3657 58%, #10426d 100%);
}

.home-ferry-route-card:hover .home-ferry-route-media img {
    transform: scale(1.06);
}

.home-ferry-route-media img {
    transition: transform 0.8s ease;
}

.home-ferry-route-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.1) 24%, rgba(2, 6, 23, 0.88) 100%);
}

.home-ferry-route-body {
    padding: 19px 18px 20px;
}

.home-ferry-route-body h3 {
    margin: 0 0 10px;
    font-size: 1.04rem;
    line-height: 1.3;
    font-weight: 700;
    color: #0f172a;
}

.home-ferry-route-body p {
    margin: 0;
    color: #5a6f86;
    font-size: 0.9rem;
    line-height: 1.66;
    min-height: 72px;
}

.home-ferry-route-link {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0369a1;
    font-size: 0.84rem;
    font-weight: 700;
}

.home-ferry-route-link svg {
    transition: transform 0.2s ease;
}

.home-ferry-route-card:hover .home-ferry-route-link svg {
    transform: translateX(3px);
}

.home-ferry-route-empty {
    border-radius: 18px;
    border: 1px dashed rgba(14, 127, 168, 0.34);
    background: rgba(255, 255, 255, 0.78);
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.home-ferry-route-empty p {
    margin: 0;
    color: #44586e;
    line-height: 1.65;
    font-size: 0.95rem;
}

@keyframes homeFerryAuraDrift {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(16px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .home-ferry-slider-track > .home-ferry-route-card {
        flex-basis: calc((100% - 18px) / 2);
    }
}

@media (max-width: 780px) {
    .home-ferry-showcase-head {
        flex-direction: column;
        align-items: center;
    }

    .home-ferry-showcase-footer {
        margin-top: 18px;
    }

    .home-ferry-slider-track > .home-ferry-route-card {
        flex-basis: 100%;
    }

    .home-ferry-slider-wrap {
        gap: 8px;
    }

    .home-ferry-slider-arrow {
        width: 36px;
        height: 36px;
    }

    .home-ferry-route-empty {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* ================================================================
   TRANSFER SIGNATURE SECTION
================================================================ */

.transfer-signature-section {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 96px 0 88px;
    background: #0a1223;
}

.transfer-signature-section::before {
    content: '';
    position: absolute;
    inset: -2%;
    background-image: var(--transfer-signature-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: saturate(1.02) contrast(1.04);
}

.transfer-signature-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(640px 260px at 14% 22%, rgba(56, 189, 248, 0.18) 0%, rgba(56, 189, 248, 0) 75%),
        radial-gradient(700px 280px at 84% 82%, rgba(232, 93, 4, 0.2) 0%, rgba(232, 93, 4, 0) 72%);
}

.transfer-signature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, rgba(3, 10, 21, 0.92) 0%, rgba(7, 18, 42, 0.82) 45%, rgba(10, 20, 41, 0.62) 100%);
}

.transfer-signature-container {
    position: relative;
    z-index: 3;
}

.transfer-signature-layout {
    display: grid;
    grid-template-columns: 1.22fr 0.78fr;
    gap: 52px;
    align-items: end;
}

.transfer-signature-main,
.transfer-signature-side {
    position: relative;
    z-index: 2;
}

.transfer-signature-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.transfer-signature-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.1vw, 2.76rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.transfer-signature-subtitle {
    font-size: 1.04rem;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.78);
    max-width: 760px;
}

.transfer-signature-badges {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.transfer-signature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}

.transfer-signature-badge svg {
    color: #8ed9ff;
    flex-shrink: 0;
}

.transfer-signature-side {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.transfer-signature-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
}

.transfer-signature-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.transfer-signature-point-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 8px;
    background: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.22);
    flex-shrink: 0;
}

.transfer-signature-point p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    font-size: 0.93rem;
    font-weight: 500;
}

.transfer-signature-cta {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, #0284c7 0%, #22d3ee 100%);
    box-shadow: 0 14px 30px rgba(34, 211, 238, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.transfer-signature-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(34, 211, 238, 0.38);
    filter: brightness(1.03);
}

.transfer-signature-cta svg {
    transition: transform 0.2s ease;
}

.transfer-signature-cta:hover svg {
    transform: translateX(3px);
}



/* ================================================================
   HOME SECTION RHYTHM
================================================================ */

.page-home {
    --home-space-compact: clamp(44px, 5vw, 62px);
    --home-space-regular: clamp(58px, 6vw, 82px);
    --home-space-relaxed: clamp(70px, 7vw, 96px);
    --home-search-to-content-gap: clamp(36px, 4.5vw, 54px);
    --home-divider-light: rgba(14, 127, 168, 0.14);
    --home-divider-dark: rgba(255, 255, 255, 0.14);
}

.page-home .search-section {
    padding-bottom: var(--home-search-to-content-gap);
}

@media (min-width: 993px) {
    .page-home :is(
        .tours-grid,
        .destinations-grid,
        .home-boats-grid,
        .services-premium-grid,
        .features-grid,
        .home-blogs-viewport,
        .home-ferry-slider-viewport,
        .testimonials-slider-viewport
    ) {
        padding-top: 14px;
        margin-top: -14px;
    }
}

.page-home :is(
    .tour-signature-section,
    .transfer-signature-section,
    .features-section
) {
    border-top: 1px solid var(--home-divider-dark);
}

.page-home .tours-section {
    padding-top: var(--home-space-regular);
    padding-bottom: var(--home-space-regular);
}

.page-home .destinations-section {
    border-top: 0;
    padding-bottom: var(--home-space-compact);
}

.page-home .tags-section,
.page-home .home-ferry-showcase {
    padding-top: var(--home-space-regular);
    padding-bottom: var(--home-space-compact);
}

.page-home .home-boats-section {
    padding-top: var(--home-space-regular);
    padding-bottom: var(--home-space-regular);
}

.page-home .home-blogs-section {
    padding-top: var(--home-space-regular);
    padding-bottom: var(--home-space-regular);
    background: var(--off-white);
}


.page-home .services-section,
.page-home .testimonials-section {
    padding-top: var(--home-space-regular);
    padding-bottom: var(--home-space-compact);
}

.page-home .features-section {
    padding-top: var(--home-space-regular);
    padding-bottom: var(--home-space-regular);
}

.page-home .cta-section {
    padding-top: var(--home-space-compact);
    padding-bottom: var(--home-space-regular);
}

@media (max-width: 980px) {
    .page-home {
        --home-space-compact: clamp(38px, 5.8vw, 52px);
        --home-space-regular: clamp(50px, 7vw, 70px);
        --home-space-relaxed: clamp(58px, 8vw, 78px);
    }

    .page-home .search-section {
        padding-bottom: clamp(32px, 5.6vw, 46px);
    }
}

@media (max-width: 640px) {
    .page-home {
        --home-space-compact: clamp(30px, 7vw, 40px);
        --home-space-regular: clamp(40px, 8.5vw, 56px);
        --home-space-relaxed: clamp(46px, 9.5vw, 62px);
    }

    .page-home .search-section {
        padding-bottom: clamp(26px, 7vw, 36px);
    }
}

/* ================================================================
   X. LATEST/POPULAR BLOGS
================================================================ */

/* Kart izgarası (slider viewport vs.) - Şimdilik direkt grid kullanalım mobilde scroll olur */
.home-blogs-viewport {
    width: 100%;
    overflow: hidden;
}

.home-blogs-slider-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .home-blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-blogs-grid {
        grid-template-columns: 1fr;
    }
    .home-blogs-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.home-blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.home-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(234, 88, 12, 0.08); /* Primary color turuncu aura */
}

.hb-image-wrap {
    display: block;
    position: relative;
    height: 240px;
    overflow: hidden;
}

.hb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.home-blog-card:hover .hb-image {
    transform: scale(1.08);
}

.hb-category {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hb-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hb-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.hb-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hb-meta svg {
    color: var(--primary);
}

.hb-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

.hb-title a {
    color: var(--navy);
    text-decoration: none;
    background: linear-gradient(to right, var(--primary), var(--primary)) no-repeat;
    background-size: 0 2px;
    background-position: 0 100%;
    transition: background-size 0.3s cubic-bezier(0.2, 1, 0.3, 1), color 0.3s ease;
}

.home-blog-card:hover .hb-title a {
    background-size: 100% 2px;
    color: var(--primary);
}

.hb-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.hb-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hb-read-more svg {
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.hb-read-more:hover {
    color: var(--primary);
}

.hb-read-more:hover svg {
    transform: translateX(4px);
}
/* ================================================================
   SEARCH VALIDATION UI
   ================================================================ */

.search-notice {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 12px 20px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    color: #ef4444;
    font-size: 0.9rem;
    font-weight: 600;
    animation: hmNoticeSlideIn .3s ease;
}
.search-notice svg {
    flex-shrink: 0;
    color: #ef4444 !important;
}
@keyframes hmNoticeSlideIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-field-error {
    border-color: rgba(239, 68, 68, 0.4) !important;
    background-color: rgba(239, 68, 68, 0.02) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
    animation: fieldShake .24s ease-in-out !important;
}

[data-theme='dark'] .search-notice {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}
[data-theme='dark'] .search-notice svg {
    color: #f87171 !important;
}
@keyframes fieldShake{0%{transform:translateX(0)}25%{transform:translateX(-3px)}50%{transform:translateX(3px)}75%{transform:translateX(-2px)}100%{transform:translateX(0)}}


/* ================================================================
   MOBİL RESPONSIVE — TÜM HOME SECTION'LAR
   Breakpoints: 768px (tablet/mobil), 480px (küçük mobil)
================================================================ */

/* Temel overflow engeli — tüm yatay taşmaları önler */
.page-home {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ── HERO MOBİL ── */
@media (max-width: 992px) {
    .hero-slide .container {
        grid-template-columns: 1fr !important;
        align-items: flex-start !important;
        padding-top: 120px !important;
    }
    .hero-visual {
        display: none !important;
    }
    .hero-content {
        padding-right: 0;
        max-width: 100%;
    }
    .hero-subtitle {
        max-width: 100%;
    }
    .hero-nav {
        bottom: 80px;
        right: 20px;
    }
    .hero-stats-bar {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .page-home .hero {
        height: auto !important;
        min-height: 560px !important;
    }
    .hero-slide .container {
        padding-top: 100px !important;
        padding-bottom: 160px !important;
    }
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 14px;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 22px;
        font-size: 0.85rem;
    }
    .hero-nav {
        display: none !important;
    }
    .hero-stats-bar {
        margin-top: 28px;
        padding-top: 20px;
        gap: 16px;
        flex-wrap: wrap;
    }
    .hero-stat-number {
        font-size: 1.2rem;
    }
    .hero-slide::before {
        display: none;
    }
}

/* ── SEARCH ── */
@media (max-width: 768px) {
    .search-section { margin-top: -40px; }
    .search-card { padding: 18px 16px 24px; border-radius: 22px; }

    /* Tablar yatay kaydırılabilir */
    .search-tabs {
        gap: 6px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .search-tabs::-webkit-scrollbar { display: none; }
    .search-tab { padding: 9px 14px; font-size: 0.82rem; gap: 6px; flex-shrink: 0; white-space: nowrap; }
    .search-tab svg { width: 15px; height: 15px; }

    /* Search fields — TAM dikey, pill shape kaldırıldı */
    .search-fields-container {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        border-radius: 18px !important;
        padding: 12px !important;
        overflow: visible !important;
        gap: 0;
    }
    .search-field {
        width: 100% !important;
        border-radius: 12px !important;
        padding: 10px 14px !important;
    }
    .field-divider {
        width: 100% !important;
        height: 1px !important;
        margin: 6px 0 !important;
    }
    .search-action {
        width: 100% !important;
        margin: 12px 0 0 !important;
    }
    .btn-search {
        width: 100% !important;
        padding: 16px 24px !important;
        font-size: 1rem !important;
    }

    /* Ferry & transfer inline override'larını mobilde sıfırla */
    #form-ferry .search-fields-container,
    #form-transfer .search-fields-container {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        overflow: visible !important; /* Dropdownların görünmesi için visible olmalı */
    }
    #form-ferry .search-field,
    #form-transfer .search-field {
        flex: 0 0 auto !important;
        width: 100% !important;
        overflow: visible !important; /* Dropdownların görünmesi için visible olmalı */
    }
    #form-ferry .search-action,
    #form-transfer .search-action {
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    /* Guest dropdown taşmasın */
    .guest-dropdown {
        width: min(320px, calc(100vw - 32px)) !important;
        left: 0 !important;
        right: auto !important;
    }
    .trip-type-tabs { margin-bottom: 12px; }
    .trip-tab { padding: 7px 18px; font-size: 0.8rem; }

    /* Dropdownlar taşmasın */
    #ferryFromDropdown,
    #ferryToDropdown,
    #ferryGuestDropdown,
    #tourDestDropdown,
    .tour-suggest-dropdown {
        max-width: calc(100vw - 32px) !important;
        min-width: 0 !important;
    }

    /* Transfer location results taşmasın */
    .hm-tr-results {
        max-width: calc(100vw - 32px) !important;
    }

    /* Transfer tarih+saat satırı */
    #form-transfer .hm-tr-dt-row {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    #form-transfer .hm-tr-dt-row > * {
        flex: 1 1 calc(50% - 4px) !important;
        min-width: 0 !important;
    }
}
@media (max-width: 480px) {
    .search-section { margin-top: -28px; }
    .search-card { padding: 14px 14px 20px; border-radius: 18px; }
}

/* ── GENEL ── */
@media (max-width: 768px) {
    .section-title { font-size: clamp(1.65rem, 6vw, 2.2rem); }
    .section-subtitle { font-size: 0.9rem; }
    .btn-view-all { font-size: 0.85rem; padding: 10px 18px; }
}
@media (max-width: 480px) {
    .section-title { font-size: clamp(1.45rem, 7vw, 1.9rem); }
}

/* ── DESTINATIONS ── */
@media (max-width: 768px) {
    .destinations-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 10px; }
    .destination-card { min-height: 160px; }
    .destination-card:first-child { grid-column: span 2; grid-row: span 1; min-height: 200px; }
}
@media (max-width: 420px) {
    .destinations-grid { grid-template-columns: 1fr; }
    .destination-card:first-child { grid-column: span 1; }
    .destination-card { min-height: 180px; }
}

/* ── TAGS ── */
@media (max-width: 768px) {
    .tags-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .tag-home-card { border-radius: 16px; }
}
@media (max-width: 400px) { .tags-grid { gap: 8px; } }



/* ── FERRY SHOWCASE ── */
@media (max-width: 768px) {
    .home-ferry-showcase-title { font-size: clamp(1.55rem, 6vw, 2rem); }
    .home-ferry-showcase-subtitle { font-size: 0.9rem; }
    .home-ferry-slider-wrap { gap: 0; }
    .home-ferry-slider-arrow { display: none !important; }
    .home-ferry-slider-viewport { 
        overflow-x: auto !important; 
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 10px 24px 25px !important; 
        margin: 0 -24px !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-padding-left: 24px;
    }
    .home-ferry-slider-viewport::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    .home-ferry-slider-track {
        transform: none !important;
        transition: none !important;
        width: max-content !important;
        gap: 14px !important;
        padding-left: 2px !important; /* Tiny push to avoid touching */
        padding-right: 24px !important; 
    }
    .home-ferry-route-card { 
        scroll-snap-align: start;
        flex: 0 0 280px !important;
        border-radius: 16px; 
    }
    .home-ferry-route-media { height: 170px; }
    .home-ferry-slider-dots { display: none !important; }
    .home-ferry-route-empty { flex-direction: column; align-items: flex-start; }
}

/* ── TRANSFER SIGNATURE ── */
@media (max-width: 768px) {

}

/* ── BOATS ── */
@media (max-width: 768px) {
    .home-boats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .home-boat-card-body { padding: 16px 16px 18px; gap: 6px; }
    .home-boat-card-title { font-size: 0.96rem; }
    .home-boat-card-amount { font-size: 1rem; }
    .home-boat-card-btn { padding: 7px 12px; font-size: 0.72rem; }
}
@media (max-width: 480px) {
    .home-boats-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── BLOG SLIDER ── */
@media (max-width: 768px) {
    .hm-blog-section .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
    .hm-bc-title { font-size: 1rem; }
    .hm-bc-desc { font-size: 0.85rem; }
}

/* ── SERVICES ── */
@media (max-width: 768px) {

    .service-premium-card { height: 280px; border-radius: 16px; }
    .service-content { padding: 20px 16px; }
    .service-title { font-size: 1.05rem; }
    .service-desc { font-size: 0.82rem; margin-bottom: 12px; }
}
@media (max-width: 480px) {

    .service-premium-card { height: 240px; }
}

/* ── FEATURES ── */
@media (max-width: 992px) {
    .features-section { overflow: hidden !important; }
    .features-section .container { overflow: visible !important; }
    .features-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 20px 24px 40px !important;
        margin: 0 -24px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        scroll-padding-left: 24px !important;
    }
    .features-grid::-webkit-scrollbar {
        display: none !important;
    }
    .feature-card {
        scroll-snap-align: start !important;
        flex: 0 0 280px !important;
        width: 280px !important;
        min-width: 280px !important;
        padding: 32px 24px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 24px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    }
    .feature-icon { width: 44px; height: 44px; margin-bottom: 16px; }
    .feature-title { font-size: 1.15rem !important; margin-bottom: 10px !important; }
    .feature-desc { font-size: 0.88rem !important; line-height: 1.6 !important; }
}

/* ── TESTIMONIALS ── */


/* ── CTA ── */
@media (max-width: 768px) {
    .cta-premium-wrapper { border-radius: 20px; }
    .cta-content-grid { grid-template-columns: 1fr; padding: 36px 24px; gap: 28px; }
    .cta-overlay { background: linear-gradient(180deg, rgba(11,20,38,.96) 0%, rgba(11,20,38,.88) 100%); }
    .cta-title { font-size: clamp(1.55rem, 6vw, 2.2rem); }
    .cta-subtitle { font-size: 0.92rem; margin-bottom: 24px; }
    .glass-card { padding: 24px 20px; }
    .trust-badges { flex-direction: column; gap: 14px; }
    .premium-contact-btn { padding: 14px; }
    .btn-icon { width: 40px; height: 40px; }
    .b-value { font-size: 1rem; }
}
@media (max-width: 480px) {
    .cta-content-grid { padding: 28px 18px; gap: 22px; }
    .cta-eyebrow { font-size: 0.72rem; padding: 5px 12px; }
    .glass-card { padding: 20px 16px; }
    .glass-title { font-size: 1.15rem; }
    .glass-desc { font-size: 0.86rem; margin-bottom: 20px; }
}

/* ── MOBILE HERO REFINEMENTS ── */
@media (max-width: 768px) {
    /* 1. Hero Content */
    .page-home .hero {
        height: auto !important;
        min-height: 560px !important;
        padding-top: 0 !important;
    }
    .hero-slide .container {
        grid-template-columns: 1fr !important;
        padding-top: 100px !important;
        padding-bottom: 160px !important;
        align-items: flex-start !important;
    }
    .hero-visual {
        display: none !important;
    }
    .hero-content {
        padding-right: 0 !important;
    }
    .hero-title {
        font-size: clamp(2rem, 7vw, 2.5rem) !important;
        margin-bottom: 12px !important;
    }
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 24px !important;
    }

    /* 2. Sağ Sol Değiştirme Butonları Olmasın */
    .hero-nav {
        display: none !important;
    }

    /* 3. Arama Çubuğu Tam Ekrana Sığsın (Full Width) */
    .search-section {
        margin-top: -150px !important;
        padding: 0 !important; /* Yanlardaki boşluğu kaldır */
        z-index: 20 !important;
    }
    .search-section .container {
        padding: 0 !important; /* Container'ın kendi padding'ini kaldır */
        max-width: 100% !important;
    }
    .search-card {
        border-radius: 32px 32px 0 0 !important; /* Sadece üst köşeler yuvarlak */
        padding: 24px 20px 32px !important;
        border-left: none !important;
        border-right: none !important;
        box-shadow: 0 -10px 40px rgba(11, 20, 38, 0.15) !important;
    }
}

/* ================================================================
   SCROLL-REVEAL ANİMASYONLARI — Profesyonel Section Geçişleri
================================================================ */

/* Temel reveal sınıfı — JS tarafından eklenir */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-reveal="left"] {
    transform: translateX(-32px);
}

[data-reveal="right"] {
    transform: translateX(32px);
}

[data-reveal="scale"] {
    transform: translateY(20px) scale(0.97);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Staggered children — üst eleman tetikleyici, çocuklar sırayla açılır */
[data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-reveal-stagger].is-visible > * {
    opacity: 1;
    transform: none;
}

/* Her çocuğa gecikme — max 8 çocuk */
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0.00s; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.08s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.24s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.32s; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 0.40s; }
[data-reveal-stagger].is-visible > *:nth-child(7) { transition-delay: 0.48s; }
[data-reveal-stagger].is-visible > *:nth-child(8) { transition-delay: 0.56s; }

/* Erişilebilirlik: Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal-stagger] > * {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ================================================================
   HOME MOBILE POLISH
================================================================ */

@media (max-width: 768px) {
    .page-home .hero {
        min-height: 620px !important;
    }

    .page-home .hero-slide .container {
        min-height: 620px !important;
        padding-top: 112px !important;
        padding-bottom: 168px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .page-home .hero-content {
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        max-width: 560px !important;
        margin: 0 auto !important;
        padding: 0 18px !important;
    }

    .page-home .hero-title {
        min-height: 0 !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: clamp(2rem, 7.2vw, 2.62rem) !important;
        line-height: 1.08 !important;
        text-align: center !important;
        -webkit-line-clamp: 3 !important;
    }

    .page-home .hero-subtitle {
        max-width: 92% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        line-height: 1.55 !important;
    }

    .page-home .hero-actions,
    .page-home .hero-stats-bar {
        justify-content: center !important;
    }

    .page-home .hero-bg {
        background-position: center center !important;
    }

    .page-home .hero-bg::after {
        background:
            linear-gradient(180deg, rgba(6, 13, 26, .76) 0%, rgba(6, 13, 26, .58) 48%, rgba(6, 13, 26, .9) 100%),
            radial-gradient(circle at 50% 36%, rgba(6, 13, 26, .18), rgba(6, 13, 26, .76) 72%) !important;
    }

    .page-home .search-section {
        margin-top: -138px !important;
        padding-bottom: 30px !important;
    }

    .page-home .destinations-section {
        padding-top: 30px !important;
    }

    .page-home .tour-signature-section.signature-experience {
        padding: 42px 0 34px !important;
    }

    .page-home .signature-section-head {
        padding: 0 20px 22px !important;
    }

    .page-home .signature-section-head h2 {
        font-size: clamp(1.7rem, 7vw, 2.3rem) !important;
        line-height: 1.08 !important;
    }

    .page-home .signature-section-head p {
        font-size: .9rem !important;
        line-height: 1.5 !important;
    }

    .page-home .signature-experience-inner {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-home .signature-slider {
        background: rgb(15, 15, 15) !important;
    }

    .page-home .signature-slide {
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: hidden !important;
        background: transparent !important;
    }

    .page-home .signature-media {
        height: clamp(300px, 65vw, 420px) !important;
        min-height: 0 !important;
        clip-path: none !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .page-home .signature-media img {
        height: 100% !important;
        transform: none !important;
    }

    .page-home .signature-stat {
        display: none !important;
    }

    .page-home .signature-panel {
        position: relative !important;
        z-index: 10 !important;
        margin-top: -36px !important;
        border-radius: 28px 28px 0 0 !important;
        padding: 36px 24px 28px !important;
        min-height: 0 !important;
        background: rgb(15, 15, 15) !important;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4) !important;
    }

    .page-home .signature-kicker {
        margin-bottom: 10px !important;
        font-size: .66rem !important;
    }

    .page-home .signature-panel h3 {
        margin-bottom: 10px !important;
        font-size: clamp(1.36rem, 6vw, 1.78rem) !important;
        line-height: 1.12 !important;
    }

    .page-home .signature-panel p {
        max-width: 100% !important;
        font-size: .88rem !important;
        line-height: 1.48 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .page-home :is(
        .signature-feature-list,
        .signature-route-list,
        .signature-tag-list,
        .signature-boat-list
    ) {
        flex-wrap: nowrap !important;
        gap: 8px !important;
        margin: 15px -20px 18px 0 !important;
        padding: 0 20px 2px 0 !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .page-home :is(
        .signature-feature-list,
        .signature-route-list,
        .signature-tag-list,
        .signature-boat-list
    )::-webkit-scrollbar {
        display: none !important;
    }

    .page-home :is(
        .signature-feature-list,
        .signature-route-list,
        .signature-tag-list,
        .signature-boat-list
    ) span {
        flex: 0 0 auto !important;
        max-width: none !important;
        white-space: nowrap !important;
        padding: 8px 10px !important;
        font-size: .78rem !important;
        line-height: 1 !important;
    }

    .page-home .signature-cta {
        width: auto !important;
        min-width: 0 !important;
        padding: 12px 16px !important;
        font-size: .84rem !important;
    }

    .page-home .signature-controls {
        position: static !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 24px 28px !important;
        margin-top: 0 !important;
        background: rgb(15, 15, 15) !important;
        gap: 24px !important;
    }

    .page-home .signature-arrow {
        width: 40px !important;
        height: 40px !important;
    }

    .page-home .signature-dots button {
        width: 26px !important;
        height: 7px !important;
    }

    .page-home :is(.features-section, .testimonials-section) .section-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left !important;
        gap: 12px !important;
        padding: 0 24px !important;
        margin-bottom: 24px !important;
    }

    .page-home :is(.features-section, .testimonials-section) .section-header-left {
        align-items: flex-start !important;
        text-align: left !important;
        max-width: 640px !important;
        width: 100% !important;
    }

    .page-home :is(.features-section, .testimonials-section) .section-eyebrow {
        justify-content: flex-start !important;
        margin-bottom: 9px !important;
    }

    .page-home :is(.features-section, .testimonials-section) .section-title {
        max-width: 10.8em !important;
        font-size: clamp(1.52rem, 6.3vw, 2rem) !important;
        line-height: 1.12 !important;
        text-align: left !important;
    }

    .page-home .features-section .section-header[style] {
        margin-bottom: 24px !important;
    }

    .page-home .testimonial-card {
        background: #f3f3f3 !important;
        border-color: #f3f3f3 !important;
        box-shadow: none !important;
    }
}

@media (max-width: 480px) {
    .page-home .hero,
    .page-home .hero-slide .container {
        min-height: 590px !important;
    }

    .page-home .hero-slide .container {
        padding-top: 98px !important;
        padding-bottom: 152px !important;
    }

    .page-home .hero-actions {
        width: 100% !important;
        gap: 10px !important;
    }

    .page-home .btn-hero-primary,
    .page-home .btn-hero-secondary {
        width: 100% !important;
        justify-content: center !important;
    }

    .page-home .search-section {
        margin-top: -126px !important;
        padding-bottom: 28px !important;
    }

    .page-home .destinations-section {
        padding-top: 28px !important;
    }

    .page-home .signature-panel {
        padding: 32px 20px 24px !important;
        margin-top: -32px !important;
        border-radius: 24px 24px 0 0 !important;
    }

    .page-home .signature-media {
        height: 280px !important;
    }
}
