/* ================================================================
   AVESTA TRAVEL — Home Page CSS
================================================================ */

/* ================================================================
   1. HERO (SLIDER) - KESİN ÇÖZÜM
================================================================ */

.page-home .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    background: var(--navy);
    display: block;
    /* Eski flex yapısını bozup üst üste binmeyi engeller */
}

.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 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 20, 38, 0.2) 0%, rgba(11, 20, 38, 0.6) 50%, rgba(11, 20, 38, 0.98) 100%);
}

.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.15);
    animation: float-particle linear infinite;
}

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

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    padding-bottom: 0;
    transform: translateY(40px) scale(0.98);
    /* Aşağıdan ve hafif küçülerek gelir */
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Yatayda ortalar */
    text-align: center;
    /* Metni ortalar */
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s;
    /* Gecikmeli profesyonel giriş */
    width: 100%;
    max-width: 900px;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(232, 93, 4, 0.15);
    border: 1px solid rgba(232, 93, 4, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: #fda87f;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 100%;
    /* Sınırı kaldırdık, ortaya yayılsın */
}

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

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    /* Okunabilirliği artırmak için biraz genişlettik */
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Butonları ortalar */
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Parıltı efekti için gerekli */
    padding: 18px 42px;
    /* Daha elit, geniş bir yapı */
    background: var(--primary);
    /* Ana turuncu */
    color: #fff;
    border-radius: 100px;
    /* Tam yuvarlak (Pill-shape) */
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    /* Yumuşak giriş-çıkış */
    z-index: 1;

    /* Gelişmiş Derinlik Gölgeleri (Tok durması için) */
    box-shadow:
        0 10px 35px rgba(232, 93, 4, 0.35),
        /* Dış ışıma */
        inset 0 2px 2px rgba(255, 255, 255, 0.4),
        /* Üst kenar parlaması */
        inset 0 -2px 2px rgba(0, 0, 0, 0.15);
    /* Alt kenar gölgesi */
}

.btn-hero-primary .btn-text,
.btn-hero-primary .btn-icon {
    position: relative;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bounce efekti */
}

.btn-hero-primary .btn-icon {
    display: flex;
    margin-left: 12px;
    opacity: 0.9;
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    /* Daha belirgin kalkış */
    background: var(--primary-dark);
    /* Hafif koyulaşma */
    box-shadow:
        0 20px 50px rgba(232, 93, 4, 0.5),
        /* Güçlü ışıma */
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-hero-primary:hover .btn-icon {
    transform: translateX(6px);
}

.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    /* Başlangıç noktası solda */
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            /* Parlak çizgi */
            transparent);
    transform: skewX(-20deg);
    /* Eğik çizgi */
    transition: left 0.7s ease-in-out;
    /* Kayma süresi */
    z-index: 2;
}

/* Butonun üzerine gelince parıltı soldan sağa kaysın */
.btn-hero-primary:hover::after {
    left: 150%;
}

/* Slider Navigasyon Okları */
.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 4vw;
    transform: translateY(-50%);
    z-index: 30;   /* FIX: search-section (z-index:20) üzerinde kalması için artırıldı */
    pointer-events: none;
}

.hero-nav-btn {
    pointer-events: auto;
    width: 54px;
    height: 54px;
    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(8px);
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* 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 {
    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);
}

/* --- 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;
}

.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-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;
}

/* Ü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;
}

/* 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: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.section-header-left {
    max-width: 560px;
}

.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;
}

.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: #fff;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px;
    gap: 16px;
}

.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--gray-200);
}

.destination-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

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

.destination-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 10, 25, 0.95) 0%,
            rgba(5, 10, 25, 0.55) 45%,
            rgba(5, 10, 25, 0.05) 100%);
    transition: opacity var(--duration-base);
}

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

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 22px;
    z-index: 1;
}

.destination-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 5px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.destination-card:first-child .destination-name {
    font-size: 2.1rem;
    letter-spacing: -0.02em;
}

.destination-count {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}


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

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

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(232, 93, 4, 0.08), transparent);
}

.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: var(--off-white);
}

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

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.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;
}

.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);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-card:first-child {
        grid-column: span 1;
    }

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

/* 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: fixed;   /* FIX: absolute yerine fixed — parent overflow:hidden/transform'dan kaçar */
    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;     /* FIX: Yüksek z-index, dropdown her şeyin üzerinde açılır */
    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);
}

.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;
}

.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) {
    .services-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .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: #091427;
}

.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);
}

@media (max-width: 980px) {
    .tour-signature-section {
        padding: 74px 0 68px;
    }

    .tour-signature-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .tour-signature-side {
        padding-left: 0;
        padding-top: 18px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.24);
    }
}

@media (max-width: 640px) {
    .tour-signature-section {
        padding: 62px 0 58px;
    }

    .tour-signature-badges {
        gap: 10px;
    }

    .tour-signature-badge {
        width: 100%;
        justify-content: flex-start;
    }
}

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

.home-ferry-showcase {
    position: relative;
    overflow: hidden;
    padding: 22px 0 var(--section-gap);
    background: linear-gradient(180deg, #f7fafd 0%, #ffffff 100%);
}

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

.home-ferry-showcase::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    left: -160px;
    bottom: -170px;
    background: radial-gradient(circle, rgba(232, 93, 4, 0.15) 0%, rgba(232, 93, 4, 0) 74%);
}

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

.home-ferry-showcase-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.home-ferry-showcase-copy {
    max-width: 760px;
}

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

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

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

.home-ferry-showcase-subtitle {
    margin: 12px 0 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
}

.home-ferry-showcase-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.25);
    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 30px rgba(14, 165, 233, 0.33);
    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-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: 20px;
    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% - 40px) / 3);
    min-width: 0;
}

.home-ferry-slider-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(148, 163, 184, 0.36);
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    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 26px rgba(2, 132, 199, 0.26);
    transform: translateY(-1px);
}

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

.home-ferry-slider-dots {
    margin-top: 14px;
    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: 22px;
    background: #0284c7;
}

.home-ferry-route-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 14px 34px 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:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.32);
    box-shadow: 0 22px 46px rgba(2, 132, 199, 0.16);
}

.home-ferry-route-media {
    position: relative;
    height: 210px;
    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.3) 0%, rgba(14, 165, 233, 0) 72%),
        linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #0b2f52 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.08) 20%, rgba(2, 6, 23, 0.85) 100%);
}

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

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

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

.home-ferry-route-link {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0284c7;
    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: 16px;
    border: 1px dashed rgba(148, 163, 184, 0.55);
    background: rgba(255, 255, 255, 0.72);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.home-ferry-route-empty p {
    margin: 0;
    color: #475569;
    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% - 20px) / 2);
    }
}

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

    .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);
}

@media (max-width: 980px) {
    .transfer-signature-section {
        padding: 74px 0 68px;
    }

    .transfer-signature-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .transfer-signature-side {
        padding-left: 0;
        padding-top: 18px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.24);
    }
}

@media (max-width: 640px) {
    .transfer-signature-section {
        padding: 62px 0 58px;
    }

    .transfer-signature-badges {
        gap: 10px;
    }

    .transfer-signature-badge {
        width: 100%;
        justify-content: flex-start;
    }
}
