/* custom-style.css - Premium UI enhancements */
.d-none {
    display: none !important;
}

/* Visibility Utilities */
@media (min-width: 992px) {
    .d-web-none {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .d-mobile-none {
        display: none !important;
    }
}

/* Navigation Dropdown Premium Styling */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-trigger {
    color: #fff;
    font-size: 1rem;
    padding: 0 12px;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    border: 1.5px solid #d4af37;
    border-radius: 6px;
    height: 36px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-links .nav-item-dropdown.d-mobile-none {
    margin-left: -5px;
}

.navbar.scrolled .dropdown-trigger {
    color: #fff;
}

/* Match navbar container with reservation area (1150px) */
.navbar .container {
    max-width: 1150px;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 991px) {
    .navbar .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Hourly Info Note Styling */
.step-fields.hourly-active {
    align-items: flex-start !important;
}

.hourly-info-note {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
    animation: fadeInNode 0.4s ease-out;
}

.hourly-info-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #64748b;
    font-weight: 700;
    font-size: 0.82rem;
    transition: all 0.3s ease;
}

.hourly-info-trigger .fa-exclamation-triangle {
    font-size: 1.1rem;
    color: #D4AF37;
}

.hourly-info-trigger .toggle-icon {
    font-size: 0.75rem;
    margin-left: -2px;
    transition: transform 0.3s ease;
    color: #64748b;
}

.hourly-info-trigger:hover {
    opacity: 0.85;
    transform: translateX(2px);
}

@keyframes fadeInNode {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Mobile Fleet Page Bug Fixes & Optimizations
   ========================================================================== */
@media (max-width: 768px) {

    /* Prevent infinite horizontal scroll bug */
    body,
    html {
        overflow-x: hidden;
        width: 100%;
    }

    .fleet-premium-section {
        overflow-x: hidden;
    }

    /* Disable aggressive hardware acceleration that crashes iOS Safari/Chrome */
    .fleet-card-premium {
        -webkit-transform: none !important;
        transform: none !important;
        -webkit-backface-visibility: visible !important;
        backface-visibility: visible !important;
        /* Allow browser to handle layout normally to prevent memory freeze */
    }

    /* Vehicle Name Truncation */
    .fleet-card-name {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        font-size: 1.25rem !important;
        width: 100%;
    }

    /* Slider Visibility: Ensure only active slide is fully visible */
    .fleet-slider-premium {
        overflow: hidden !important;
    }

    .fleet-card-specs .spec-item {
        width: auto !important;
        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }

    .spec-item span {
        white-space: nowrap !important;
    }
}

/* ==========================================================================
   Global Flag Language Selector
   ========================================================================== */
/* Desktop: In-flow with nav-links */
@media (min-width: 992px) {
    .global-lang-wrapper {
        position: relative;
        z-index: 1001;
        display: block;
        margin-left: 5px;
        /* Slight gap from the last menu item */
    }

    .mobile-lang-drawer-wrapper {
        display: none !important;
    }
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    background: rgba(15, 23, 42, 0.5);
    border: 1.5px solid #d4af37;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    backdrop-filter: blur(8px);
    height: 36px;
}

.lang-trigger .fi {
    border-radius: 1px;
    font-size: 1.1rem;
}

.lang-trigger:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.lang-trigger i.chevron {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.global-lang-wrapper:hover .lang-trigger i.chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    width: 120px;
    background: #0f172a;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 5px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.global-lang-wrapper:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #cbd5e1;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lang-item:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding-left: 18px;
}

/* Mobile: Inside Sidebar Handle */
@media (max-width: 991px) {
    .global-lang-wrapper {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block !important;
    }

    .lang-trigger {
        justify-content: space-between;
        width: 100%;
        padding: 12px 15px;
        background: rgba(255, 255, 255, 0.05);
        display: none !important;
    }

    .lang-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        margin-top: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .lang-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        justify-content: center;
    }

    .mobile-lang-drawer-wrapper {
        display: none !important;
    }
}

/* Hide Google Translate Toolbar & Branding */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-te-banner-frame,
*[class*="goog-te-banner"],
*[id*="goog-te-banner"],
.goog-te-gadget-icon,
img.goog-te-gadget-icon,
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-menu-value span:nth-child(5),
.goog-te-menu-value img,
.goog-te-spinner-pos,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover,
.goog-te-balloon-frame,
.goog-te-balloon-frame *,
#google_translate_element img,
img[src*="google.com/images/cleardot.gif"],
img[src*="translate_20.png"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

body {
    top: 0px !important;
    margin-top: 0px !important;
    position: static !important;
}

html {
    top: 0px !important;
    margin-top: 0px !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#google_translate_element {
    visibility: hidden !important;
    position: absolute !important;
    top: -9999px !important;
}

/* Fix for navbar in desktop when lang selector added */
.nav-right-column {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Added gap between links and search icon */
    max-width: calc(100% - 200px);
    /* Ensure space for logo */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 32px) !important;
    /* Dynamic gap based on viewport */
    flex-shrink: 1;
    min-width: 0;
}

.nav-extra-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 5px;
}

.nav-links a:not(.btn) {
    white-space: nowrap;
    font-size: clamp(0.7rem, 0.85vw, 0.9rem);
    /* Scale font down slightly if needed */
}

.dropdown-trigger:hover,
.nav-item-dropdown.active .dropdown-trigger {
    background: #d4af37;
    border-color: #d4af37;
    color: #0f172a !important;
    transform: scale(1.08) translateY(-1px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 12px);
    right: -5px;
    min-width: 260px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    display: none;
    z-index: 1000;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    display: flex !important;
    align-items: center;
    padding: 12px 20px !important;
    color: #1a1a1a !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    text-decoration: none !important;
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a::after {
    display: none !important;
    /* Remove line animation from base style */
}

.dropdown-content a:hover {
    background: #fdfaf0;
    color: var(--gold) !important;
    padding-left: 25px !important;
}

.dropdown-content a i {
    color: var(--gold);
    font-size: 1rem;
    width: 25px;
}

/* Animation */
.animate-fade-in {
    animation: fadeInDropdown 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide datalist arrow globally */
input::-webkit-calendar-picker-indicator {
    display: none !important;
}

.btn-use-gift-card {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    /* Margin kaldırıldı */
}

.btn-use-gift-card:hover {
    background: #d4af37;
    color: #fff;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.btn-use-gift-card i {
    font-size: 0.85rem;
}

/* Premium Summary Box Styling */
.summary-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 20px 25px;
    /* Alt padding 12px -> 25px Gift Card ile eşitlendi */
    margin-top: 15px;
    /* Sekmelerle çakışmayı önlemek için boşluk eklendi */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: #1e293b;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 3px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.summary-title i {
    color: #d4af37;
    margin-right: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #475569;
}

.summary-item strong {
    color: #1e293b;
    font-weight: 600;
}

.summary-item span {
    text-align: right;
    font-weight: 500;
}

.summary-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.total-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.total-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.total-amount {
    font-family: 'inter', sans-serif;
    font-size: 1.1rem;
    /* Hafif büyütüldü */
    color: #000000 !important;
    /* Kesin siyah */
    font-weight: 800;
    /* Daha belirgin */
}

.total-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #000000 !important;
    /* Kesin siyah */
    /* Daha yumuşak renk */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-amount-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Metin ve tutar arası boşluk minimize edildi */
}

/* Animations and Hover effects for Gift Card */
.gc-redeem-premium:hover {
    border-color: #d4af37 !important;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1) !important;
}

#apply-gc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

/* Payment & Gift Card Enhanced Styles */
/* Payment & Gift Card Premium Layout */
/* Payment & Gift Card Elite Layout */
/* Payment & Gift Card Elite Layout */
.payment-methods-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    gap: 15px;
    margin: 20px auto;
    padding-bottom: 30px;
    /* Crucial for preventing bottom border clipping in scroll views */
    width: 100%;
    max-width: 680px;
    align-items: stretch !important;
    /* Yükseklikleri eşitlemek için kritik */
}

.payment-option-card {
    background: #ffffff;
    border: 1px solid rgba(79, 81, 83, 0.289);
    border-radius: 12px;
    padding: 12px 20px 40px;
    display: flex;
    /* !important kaldırıldı */
    flex-direction: row;
    align-items: center;
    text-align: left;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 4px 15px rgb(104 95 95 / 64%);
    flex: 1 1 0;
    /* Eşit dağılım için varsayılan */
    width: 50%;
    /* Maksimum yarım genişlik */
    max-width: 50%;
    box-sizing: border-box;
    align-self: stretch !important;
    /* Yüksekliği konteynere uydur */
}

/* Tekil durumda (Gift Card kapalıyken) Stripe kutusunu %50 genişlikte tut ve ortala */
.payment-methods-grid:not(.has-gift-card) #pay-stripe-btn {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin: 0 auto !important;
}

/* Tekil durumda (Gift Card kapalıyken) Stripe kutusunu ortala */
.payment-methods-grid:not(.has-gift-card) #pay-stripe-btn {
    margin: 0 auto;
}

/* Base class already handled height: 100% */

button.payment-option-card {
    background: #ffffff;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    /* !important kaldırıldı */
    flex-direction: column;
    /* !important kaldırıldı */
    justify-content: center;
    margin: 0;
    padding: 12px 20px 40px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-sizing: border-box;
    height: auto !important;
    /* Align-self stretch tarafından yönetilecek */
    min-height: 100%;
}

@media (max-width: 768px) {

    button.payment-option-card,
    .payment-option-card,
    .payment-methods-grid:not(.has-gift-card) #pay-stripe-btn {
        width: 100% !important;
        height: auto !important;
        min-height: unset;
        flex-basis: 100% !important;
        margin: 0 auto 15px auto !important;
    }
}

.payment-option-card:hover {
    border-color: #d4af37;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf2 100%);
}

.payment-option-card.active {
    border-color: #d4af37;
    border-width: 1.5px;
    background: linear-gradient(to bottom, #ffffff, #fdfaf0);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12);
}

.option-icon {
    width: 36px;
    /* 42px -> 36px */
    height: 36px;
    /* 42px -> 36px */
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    /* 1.1rem -> 1rem */
    color: #bc9313;
    margin-right: 12px;
    /* 15px -> 12px */
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-option-card:hover .option-icon,
.payment-option-card.active .option-icon {
    background: #d4af37;
    color: #ffffff;
}

.option-title {
    font-family: 'Forum', serif;
    font-size: 0.9rem;
    /* 1rem -> 0.9rem */
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0px;
    /* 2px -> 0px */
    display: block;
    letter-spacing: 0.3px;
}

.option-subtitle {
    font-size: 0.65rem;
    /* 0.72rem -> 0.65rem */
    color: #64748b;
    font-weight: 500;
    line-height: 1.1;
    /* 1.2 -> 1.1 */
    display: block;
}

.card-brands {
    display: flex;
    gap: 8px;
    margin: 6px 0;
    font-size: 1.2rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.payment-option-card:hover .card-brands,
.payment-option-card.active .card-brands {
    color: #bc9313;
}

.security-badge {
    position: absolute;
    bottom: 10px;
    /* Masaüstü için aşağı kaydırıldı */
    left: 50%;
    /* Yatayda ortalama */
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    color: #10b981;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.security-badge i {
    font-size: 0.8rem;
}

/* Gift Card Expansion */
.gift-card-expandable {
    cursor: default;
    display: none;
    /* Varsayılan gizli */
    flex-direction: column;
    align-items: flex-start;
}

.gift-card-expandable.active {
    display: flex;
    /* Aktifken görünür */
}

@media (max-width: 768px) {
    .payment-methods-grid {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
        margin: 20px auto !important;
    }

    .payment-option-card,
    button.payment-option-card,
    #pay-stripe-btn {
        width: 100% !important;
        max-width: 340px !important;
        /* Force Center the container */
        margin-left: auto !important;
        margin-right: auto !important;
        padding-bottom: 52px !important;
        justify-content: center !important;
        flex: 1 1 auto !important;
    }

    .payment-methods-grid:not(.has-gift-card) #pay-stripe-btn {
        flex: 0 0 100% !important;
        max-width: 340px !important;
    }

    .gc-input-group {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .security-badge {
        bottom: 15px !important;
        /* Balanced vertical centering */
    }



    .summary-box {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .surcharge-wrap {
        display: none !important;
    }

    /* Üst bar öğelerini uçlara yasla */
    .total-display,
    .total-bar {
        justify-content: space-between !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .btn-use-gift-card {
        padding: 5px 12px !important;
        font-size: 0.68rem !important;
        white-space: nowrap !important;
        flex: 0 0 auto !important;
        margin-left: 0 !important;
        /* Aligns with the left edge of the price-breakdown gray box */
    }

    .total-amount-wrapper {
        gap: 4px !important;
        flex: 0 1 auto !important;
        justify-content: flex-end !important;
        min-width: 0 !important;
    }

    .total-label {
        font-size: 1rem !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
        color: #000 !important;
    }

    .total-amount {
        font-size: 1rem !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
        color: #000 !important;
    }

    .gift-card-expandable {
        height: auto !important;
    }

    /* Mobil gezinme (NEXT/BACK) alanı düzenlemesi */
    .form-navigation {
        background: #ffffff !important;
        z-index: 1000 !important;
        position: sticky !important;
        bottom: 0 !important;
        padding: 15px 20px !important;
        margin-top: 20px !important;
        border-top: 1px solid #eee !important;
        box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05) !important;
        display: flex !important;
        gap: 10px !important;
    }

    .form-navigation .btn {
        flex: 1 !important;
        margin: 0 !important;
    }
}

.option-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.gift-card-form {
    width: 100%;
    margin-top: 8px;
    /* 12px -> 8px */
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gc-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    /* 20px -> 12px */
}

.input-with-icon {
    position: relative;
    flex: 1;
}

.input-with-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
}

.form-control-premium {
    width: 100%;
    height: 38px;
    /* 44px -> 38px */
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding-left: 36px;
    /* 40px -> 36px */
    font-size: 0.85rem;
    /* 0.9rem -> 0.85rem */
    font-weight: 500;
    color: #1e293b;
    transition: all 0.3s ease;
}

.form-control-premium:focus {
    border-color: #d4af37;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
    outline: none;
}

.btn-premium-apply {
    width: 100%;
    height: 40px;
    /* 46px -> 40px */
    background: linear-gradient(135deg, #d4af37 0%, #bc9313 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    /* 0.9rem -> 0.85rem */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* 12px -> 10px */
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-premium-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.selection-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.active .selection-indicator {
    background: #d4af37;
    border-color: #d4af37;
    transform: scale(1.1);
}

.active .selection-indicator::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ffffff;
    font-size: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gc-status-msg {
    margin-top: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    min-height: auto;
    text-align: center;
}

.gift-card-expandable {
    padding-bottom: 12px !important;
}

@media (max-width: 991px) {
    .payment-methods-grid {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .payment-methods-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .payment-option-card {
        padding: 15px 12px;
    }

    .option-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        margin-right: 10px;
    }

    .option-title {
        font-size: 0.9rem;
    }
}

/* Hero & Slider Specifics */
.hero-main {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 100vh;
    display: block;
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-wrapper {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content-inner {
    height: 100%;
    justify-content: center;
    padding-top: 35vh;
    pointer-events: none;
}

.hero-text-centered {
    pointer-events: auto;
    text-align: center;
    margin-bottom: 0;
}

.reservation-container-relative {
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.reservation-wrapper-dynamic {
    pointer-events: auto;
    margin-top: 0;
}

@media (max-width: 768px) {
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .payment-methods-grid {
        flex-direction: column !important;
        align-items: center !important;
    }

    .payment-method-card {
        max-width: 100% !important;
        height: auto !important;
        min-height: 136px;
    }

    .gift-card-container {
        height: auto !important;
        padding-bottom: 20px !important;
    }
}

/* Premium Stripe Checkout UI */
#stripe-payment-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 600px;
    margin: -25px auto 20px auto
        /* PRESERVING SPACING FIX */
    ;
}

#stripe-payment-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d4af37, #fef08a, #d4af37);
    border-radius: 20px 20px 0 0;
}

.stripe-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stripe-header h4 {
    font-family: 'Forum', serif;
    font-size: 2.2rem;
    color: #1e293b;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .stripe-header {
        padding-top: 50px;
        /* Space for the absolute-positioned Back button */
    }

    .stripe-header h4 {
        font-size: 1.6rem;
        /* Smaller title on mobile to prevent overlap */
    }
}

.stripe-header p {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.stripe-header p i {
    color: #10b981;
}

#stripe-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #a67c00 100%);
    color: #fff;
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(166, 124, 0, 0.2);
}

#stripe-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(166, 124, 0, 0.3);
}

#stripe-back-btn {
    font-family: inherit;
    transition: all 0.3s ease !important;
}

#stripe-back-btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* Premium Stripe Amount Card */
.stripe-amount-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fdfaf0 0%, #fffef9 100%);
    padding: 0.5rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.05);
    animation: slideUpIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stripe-amount-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #d4af37;
}

.stripe-amount-label {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.stripe-amount-label .label-text {
    font-weight: 700;
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.stripe-amount-label .sub-text {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
}

.stripe-amount-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stripe-amount-value .currency {
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 600;
}

.stripe-amount-value .amount {
    font-weight: 800;
    color: #1e293b;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

@keyframes slideUpIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step 4: Contact Details Redesign */
.customer-info-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.customer-info-fields .form-group {
    flex: 1;
    min-width: 250px;
}

#extra-passengers-section {
    margin-top: 5px;
    margin-bottom: 15px;
    padding: 0;
    background: none;
    border: none;
}

#extra-passengers-container .form-group {
    margin-bottom: 15px;
    animation: fadeInSlideUp 0.3s ease-out;
}

.btn-add-passenger {
    background: #d4af37;
    color: #ffffff;
    padding: 7px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    border: 1px solid #d4af37;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
}

.btn-add-passenger:hover {
    background: #b8962d;
    border-color: #b8962d;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
}

.btn-add-passenger i {
    font-size: 0.9rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.btn-add-passenger:disabled {
    opacity: 0.4;
    background: #555;
    border-color: #555;
    cursor: not-allowed;
}

.btn-add-passenger:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    color: #666;
}

.btn-add-passenger:disabled::after {
    display: none;
}

.extra-passenger-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.extra-passenger-row input {
    flex: 1;
}

.remove-passenger-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: transform 0.2s;
}

.remove-passenger-btn:hover {
    transform: scale(1.1);
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .customer-info-fields {
        flex-direction: column;
        gap: 15px;
    }

    .customer-info-fields .form-group {
        min-width: 100%;
    }
}

/* Phone Code Dropdown Premium Styling (Matched with Form Inputs) */
.phone-code-trigger {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: rgba(255, 255, 255, 0.6) !important;
    color: #000 !important;
    border-radius: 4px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    height: 45px;
    /* Matched with form input height (10+14+10+border) */
    cursor: pointer;
    transition: all 0.4s ease;
}

.phone-code-trigger:hover {
    border-color: #d4af37 !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.phone-code-trigger i {
    color: #d4af37 !important;
    font-size: 0.7rem;
}

#cust-phone-input {
    height: 45px !important;
    padding: 10px 14px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 4px !important;
    background-color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px !important;
    color: #000 !important;
}

#cust-phone-input:focus {
    background-color: #fff !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.phone-code-dropdown {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden;
}

.phone-search-box {
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
}

.phone-search-box input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 0.85rem;
    background: #f8fafc;
    color: #1a1a1a;
}

.phone-search-box input:focus {
    outline: none;
    border-color: #d4af37;
}

.phone-code-list {
    max-height: 250px;
    overflow-y: auto;
}

.phone-code-item {
    padding: 10px 15px;
    cursor: pointer;
    color: #334155 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    transition: 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.phone-code-item:last-child {
    border-bottom: none;
}

.phone-code-item:hover {
    background: rgba(212, 175, 55, 0.08) !important;
    color: #d4af37 !important;
}

.phone-code-list::-webkit-scrollbar {
    width: 5px;
}

.phone-code-list::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.phone-code-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* 
   GLOBAL FORM ELEMENT UNIFICATION 
   Matching all fields to the solid white look of the Flight Number field
*/
.form-group input,
.form-group select,
.form-group textarea,
.passenger-field,
.phone-code-trigger,
#cust-phone-input {
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 4px !important;
    color: #1a1a1a !important;
    box-shadow: none !important;
    height: 45px !important;
    /* Unified height */
    opacity: 1 !important;
}

.form-group textarea {
    height: auto !important;
    min-height: 100px !important;
}

.passenger-field:hover,
.phone-code-trigger:hover,
#cust-phone-input:hover,
.form-group input:hover {
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

/* Width Equality Fix */
.customer-info-fields .form-group {
    flex: 1 1 0 !important;
    /* Strictly equal shares */
    min-width: 250px;
}

.phone-input-group {
    width: 100% !important;
}

.passenger-dropdown {
    padding: 0px 15px !important;
    border-radius: 6px !important;
    top: calc(100% + 5px) !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.passenger-row {
    padding: 6px 0 !important;
}

/* Extra Passengers Alignment */
.extra-passenger-group {
    max-width: calc(66.66% + 14px) !important;
    /* Fills 2 of 3 columns' width */
    margin-bottom: 20px !important;
}

.extra-passenger-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.extra-passenger-row .extra-passenger-name {
    flex: 1 !important;
}

.remove-passenger-btn {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    color: #ef4444 !important;
    /* Red color as in the screenshot */
    font-size: 1.4rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
}

.remove-passenger-btn:hover {
    color: #dc2626 !important;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .extra-passenger-group {
        max-width: 100% !important;
        /* Full width on smaller screens */
    }
}

/* Ensure placeholder visibility fix remains consistent */
@media (max-width: 480px) {
    .phone-input-group {
        flex-direction: column !important;
        gap: 5px !important;
    }

    .phone-code-wrapper {
        width: 100% !important;
    }

    .phone-code-trigger {
        width: 100% !important;
    }
}

/* ==========================================================================
   Mobile UI Refinements (Arrows, Menu Alignment, Icons)
   ========================================================================== */
@media (max-width: 991px) {

    /* Hamburger Menu: Left align and icon spacing */
    .nav-links {
        padding-top: 80px !important;
        gap: 20px !important;
    }

    .nav-links a {
        display: flex !important;
        align-items: center !important;
        text-align: left !important;
        justify-content: flex-start !important;
        width: 100%;
        font-size: 1.05rem !important;
        letter-spacing: 0.5px;
    }

    .nav-links a i {
        width: 24px;
        margin-right: 12px;
        color: var(--gold);
        font-size: 1.1rem;
        text-align: center;
    }

    /* Fix spacing between line and inquiry text */
    .mobile-only-link {
        padding-top: 10px !important;
        margin-top: 15px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    }
}

@media (max-width: 768px) {

    /* Fleet Slider Arrows: Bring them inward so they aren't cut off */
    .slick-prev-custom {
        left: 5px !important;
    }

    .slick-next-custom {
        right: 5px !important;
    }

    /* Ensure the arrows stay visible and clickable */
    .slick-prev-custom,
    .slick-next-custom {
        width: 40px !important;
        height: 40px !important;
        background: rgba(212, 175, 55, 0.9) !important;
        backdrop-filter: blur(4px);
        color: var(--white) !important;
    }

    .slick-prev-custom:hover,
    .slick-next-custom:hover,
    .slick-prev-custom:active,
    .slick-next-custom:active {
        color: var(--white) !important;
    }
}

/* --- Floating Total Price Indicator --- */
.floating-total-price {
    position: absolute;
    top: 20px;
    right: 15px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    /* Click through to form */
    opacity: 0;
    transform: translateY(-5px) scale(0.95);
    visibility: hidden;
}

.floating-total-price.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-total-price .label {
    color: #cbd5e1;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.floating-total-price .amount {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    font-family: var(--font-body);
    text-shadow: none;
}

/* Mobile Adjustments for floating price */
@media (max-width: 768px) {
    .floating-total-price {
        position: relative;
        top: 0 !important;
        left: 0;
        right: auto;
        transform: none !important;
        padding: 5px 0;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        display: none; /* iPhone Safari uyumluluğu için display: none */
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 5px;
        margin-bottom: 2px;
        opacity: 1; 
        visibility: visible;
        pointer-events: auto;
        transition: none !important;
        z-index: 999;
    }

    .floating-total-price.active {
        display: flex !important;
    }

    .floating-total-price .amount {
        font-size: 0.85rem !important;
        color: var(--gold);
        font-weight: 800;
    }

    .floating-total-price .label {
        font-size: 0.85rem !important;
        font-weight: 700;
        color: #cbd5e1;
        margin-right: 4px;
    }
}

/* Step 2 Mobile Refinements */
@media (max-width: 991px) {
    .step-header p {
        display: block !important;
        font-size: 0.70rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin-top: 2px !important;
        margin-bottom: 8px !important;
        color: rgba(0, 0, 0, 0.6) !important;
    }
    
    .step-header {
        margin-bottom: 0 !important;
        padding-bottom: 6px !important;
        text-align: center !important;
    }

    .step-header h3 {
        text-align: center !important;
        margin-top: 0 !important;
    }

    .selection-grid {
        margin-top: 0 !important;
    }

    /* Prevent iOS Auto-Zoom on Focus */
    .form-control, 
    .form-select, 
    select, 
    input, 
    textarea {
        font-size: 16px !important;
    }
}




/* ==========================================================================
   Elite v3 - Compact Luxe - Tour Booking & Stripe
   ========================================================================== */

/* Root Modal - Matte Black Compact */
body .tour-swal-popup {
    background: #0f0f0f !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 12px !important;
    padding: 1rem 2rem 2rem !important;
    /* Üst boşluk azaltıldı (2rem'den 1rem'e) */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8) !important;
    width: 650px !important;
    max-width: 95vw !important;
    overflow-y: visible !important;
}

/* Header - Ultra Minimalist */
.tour-modal-header {
    text-align: center;
    margin-bottom: 15px;
    /* Azaltıldı (25px'den) */
}

.tour-modal-header i {
    font-size: 1.8rem;
    margin-bottom: 4px;
    /* Azaltıldı (8px'den) */
    color: #d4af37;
    display: block;
}

.tour-modal-header span {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #fff;
    display: block;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.tour-modal-subtitle {
    font-family: 'Forum', serif;
    font-size: 0.9rem;
    color: rgba(212, 175, 55, 0.7);
    margin-top: 2px;
    letter-spacing: 1px;
}

/* Form Layout - Tight Grid */
.tour-booking-form {
    text-align: left;
}

.tour-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
}

@media (max-width: 768px) {
    .tour-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    body .tour-swal-popup {
        padding: 1.5rem !important;
    }
}

.tour-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tour-field label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-field label i {
    color: #d4af37;
    font-size: 0.8rem;
}

/* Input Fields - Balanced matte */
.tour-input {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px !important;
    padding: 10px 12px !important;
    color: #fff !important;
    font-size: 0.95rem !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.2s ease !important;
}

.tour-input:focus {
    border-color: #d4af37 !important;
    background: rgba(212, 175, 55, 0.05) !important;
    outline: none !important;
}

/* Validation Error Styles */
.tour-input.is-invalid,
.reservation-input.is-invalid,
.extra-passenger-name.is-invalid,
#cust-name-input.is-invalid,
#cust-email-input.is-invalid,
#cust-phone-input.is-invalid,
#cust-nameboard-input.is-invalid,
#cust-flight-input.is-invalid,
input.is-invalid,
select.is-invalid,
textarea.is-invalid {
    border-color: #ff4b2b !important;
    background-color: rgba(255, 75, 43, 0.05) !important;
    background-image: none !important;
    box-shadow: 0 0 10px rgba(255, 75, 43, 0.1) !important;
}

/* FIX: Dropdown Visibility */
select.tour-input {
    appearance: none;
    -webkit-appearance: none;
}

select.tour-input option {
    background: #1a1a1a !important;
    color: #fff !important;
    padding: 10px !important;
}

.tour-field.full-width {
    grid-column: span 2;
}



/* Total Pricing - Compact Strip */
.tour-payment-summary {
    margin-top: 25px;
    padding: 15px 20px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.summary-line.total {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.summary-line.total span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.summary-line.total strong {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    color: #d4af37;
    font-weight: 800;
}

/* Buttons - Sleek V3 */
.tour-swal-confirm {
    background: #d4af37 !important;
    color: #000 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 12px 23px !important;
    /* Yatay genişlik 7px düşürüldü (30px'den 26.5px'e) */
    border-radius: 4px !important;
    font-size: 0.9rem !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.tour-swal-confirm:hover {
    background: #f1d56e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3) !important;
}

.tour-swal-cancel {
    background: transparent !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 12px 30px !important;
    border-radius: 4px !important;
    font-size: 0.9rem !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.tour-swal-cancel:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: #fff !important;
}

.tour-swal-deny {
    background: #1e293b !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 12px 30px !important;
    border-radius: 4px !important;
    font-size: 0.9rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}

.tour-swal-deny:hover {
    background: #334155 !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    transform: translateY(-2px) !important;
}

/* Flatpickr Elite v3 */
.flatpickr-calendar {
    background: #1a1a1a !important;
    border: 1px solid #d4af37 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    width: 255px !important;
    /* Final shrink to match input tightly */
    padding-bottom: 0 !important;
    overflow: hidden !important;
}

.flatpickr-days,
.dayContainer {
    width: 255px !important;
    min-width: 255px !important;
    max-width: 255px !important;
}

.flatpickr-day {
    max-width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    flex-basis: 14.28% !important;
    color: #fff !important;
    font-size: 0.75rem !important;
}

.flatpickr-day.selected {
    background: #d4af37 !important;
    color: #000 !important;
}

.flatpickr-month,
.flatpickr-weekday {
    color: #d4af37 !important;
}

.flatpickr-current-month {
    font-size: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
}

.flatpickr-monthDropdown-months {
    font-size: 0.9rem !important;
    padding: 0 5px !important;
}

.cur-year-select {
    font-size: 0.9rem !important;
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    cursor: pointer !important;
}

/* SWAL Validation Message Elite Style */
.swal2-validation-message {
    background: transparent !important;
    color: #ff4b2b !important;
    font-size: 0.85rem !important;
    font-family: 'Inter', sans-serif !important;
    margin-top: 15px !important;
    padding: 0 !important;
    border: none !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
}

.swal2-validation-message::before {
    display: none !important;
}

/* Custom Time Dropdowns v3 */
.custom-time-selects {
    background: #1a1a1a !important;
    /* Matched to calendar bg - removes gray strip */
    border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
    padding: 12px !important;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0 !important;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.custom-time-selects select {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #d4af37 !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 0.9rem !important;
}

/* Elite v3.9 - Stripe & Mobile Layout Refinements */
.stripe-modal-header {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-bottom: 5px !important;
}

.stripe-modal-header i {
    margin-bottom: 0 !important;
    color: #fff !important;
    font-size: 2.2rem !important;
}

.stripe-modal-header span {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: -0.5px !important;
    text-transform: none !important;
    line-height: 1 !important;
}

.stripe-inline-container .payment-info {
    margin-bottom: 35px !important;
    margin-top: 10px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.95rem !important;
}



/* Google Autocomplete fix for SweetAlert2 Modals */
.pac-container {
    z-index: 10000 !important;
}

/* Tour Modal Gift Card Styling */
.tour-gc-section {
    display: none;
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
    /* Special Requests alanından ayırmak için boşluk eklendi */
    margin-bottom: 15px;
}

/* Number Input (Passengers) Spin Buttons Styling */
input[type=number]#tour-people {
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
    padding-right: 35px !important;
    /* Oklar için boşluk */
}

input[type=number]#tour-people::-webkit-inner-spin-button,
input[type=number]#tour-people::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    opacity: 1;
    width: 25px;
    height: 100%;
    cursor: pointer;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='26' viewBox='0 0 24 40' fill='none' stroke='%23d4af37' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 28 12 34 6 28'%3E%3C/polyline%3E%3Cpolyline points='18 12 12 6 6 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center !important;
    display: block !important;
    position: absolute;
    right: 8px;
    top: 0;
    pointer-events: auto;
}

/* Force Apply button to match amount input width perfectly */
.btn-tour-gc-apply {
    white-space: nowrap !important;
    width: 85px !important;
    /* Sabit genişlik */
    padding: 0 !important;
    flex: 0 0 85px !important;
    flex-shrink: 0 !important;
    height: 40px !important;
    font-size: 0.85rem !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-gc-input-group {
    display: flex !important;
    gap: 10px !important;
    align-items: center;
    width: 100%;
}

.tour-gc-input-code {
    flex: 1 !important;
    height: 40px !important;
}

.tour-gc-input-amount {
    width: 85px !important;
    /* Butonla aynı sabit genişlik */
    flex: 0 0 85px !important;
    height: 40px !important;
    text-align: center;
    padding: 0 5px !important;
}

.btn-tour-gc-apply.applied {
    background-color: #ef4444 !important;
    /* Red for remove */
}

.tour-gc-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tour-gc-input-group {
    display: flex;
    gap: 10px;
}

.tour-gc-input {
    flex: 1;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.tour-gc-input:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-tour-gc-apply {
    background: #1e293b;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-tour-gc-apply:hover {
    background: #334155;
}

#tour-gc-status {
    font-size: 0.75rem;
    margin-top: 5px;
    display: block;
}


/* Tours Page Button Enhancements */
.tr-btn-outline.premium-btn-book {
    cursor: pointer !important;
    transition: all 0.3s ease;
}

.tr-btn-outline.premium-btn-book:hover {
    background-color: var(--gold) !important;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Ensure View Details also looks premium */
.tr-btn-primary:hover {
    cursor: pointer !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Menu Enhancements (Language & Inquiry) */
@media (max-width: 991px) {
    .nav-links {
        padding: 85px 25px 25px !important; /* Increased from 50px to avoid overlap with X button */
        gap: 10px !important; /* Tighter gap between main links */
        overflow-y: auto !important; /* Ensure scroll if still too long */
        max-height: 100vh;
    }
}


.mobile-menu-extra {
    width: 100%;
    margin-top: 5px; /* Reduced from 10px */
}


.mobile-menu-extra .divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0; /* Reduced from 15px */
    width: 100%;
}

.mobile-menu-extra a {
    display: flex !important;
    align-items: center;
    padding: 8px 0 !important; /* Reduced from 12px */
    color: var(--gold) !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
}


.btn-live-chat-mobile {
    color: #22c55e !important; /* Emerald green for chat */
}


.mobile-lang-selector .row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin: 0 !important;
}

.mobile-lang-selector .col-6 {
    width: 100% !important;
    padding: 0 !important;
    flex: 0 0 100% !important;
}

.mobile-lang-selector .lang-item-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 8px 10px !important;
    color: #fff !important;
    font-size: 0.82rem !important;
    transition: all 0.3s ease;
    width: 100% !important;
    text-decoration: none !important;
}

/* Ensured spacing between flag and text on mobile, even when translated */
.mobile-lang-selector .lang-item-mobile .fi {
    margin-right: 12px !important;
}


.uppercase {
    text-transform: uppercase;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* ==========================================================================
   Language Translation Robustness (Layout Stability)
   Merged from custom-style-v7.css
   ========================================================================== */

/* Detection: Target body when translated-ltr class is added by Google Translate */
html.translated-ltr body,
body.translated-ltr {
    letter-spacing: -0.015em !important;
}

/* Global Container Stabilization */
html.translated-ltr *,
body.translated-ltr * {
    hyphens: auto !important;
    word-break: break-word !important;
}

/* Desktop Navigation Stability */
@media (min-width: 992px) {
    .nav-links {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 25px !important;
        flex-wrap: nowrap !important;
    }

    html.translated-ltr .nav-links a {
        font-size: 0.82rem !important;
        padding: 5px 6px !important;
        max-width: 155px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        transition: all 0.3s ease;
    }

    html.translated-ltr .nav-links a:hover {
        max-width: 400px !important;
        background: rgba(15, 23, 42, 0.95) !important;
        z-index: 1000 !important;
        border-radius: 4px !important;
    }
}

/* Button & Label Footprint Protection */
html.translated-ltr .btn,
html.translated-ltr .form-group label,
html.translated-ltr .section-title h2 {
    max-width: 100% !important;
}

html.translated-ltr .btn {
    font-size: 0.85rem !important;
    white-space: normal !important;
    line-height: 1.1 !important;
    padding: 0.8rem 1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* Mobile Menu Fix for Translations */
@media (max-width: 991px) {
    .nav-links {
        overflow-y: auto !important;
        max-height: 100vh !important;
        padding-bottom: 60px !important;
        -webkit-overflow-scrolling: touch;
    }

    html.translated-ltr .nav-links a {
        padding: 15px 20px !important;
        width: 100% !important;
        display: block !important;
        white-space: normal !important;
        line-height: 1.3 !important;
    }
}

img[src*="translate_20.png"],
.goog-te-gadget-simple,
.goog-te-menu-value,
.goog-te-menu-frame,
.goog-te-balloon-frame,
.goog-te-balloon-frame *,
.goog-te-gadget-icon,
.goog-te-gadget-icon-simple,
#goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-banner,
iframe[id*="goog-te-banner"],
*[class*="goog-te-banner"],
*[id*="goog-te-banner"],
.goog-tooltip,
.goog-tooltip:hover,
#goog-gt-tt,
.goog-text-highlight,
.goog-te-spinner-pos,
.skiptranslate,
#google_translate_element,
#google_translate_element * {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: -9999px !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#google_translate_element {
    visibility: hidden !important;
    position: absolute !important;
    top: -9999px !important;
}

/* ==========================================================================
   Tour Modal Mobile Layout Overrides (Specificity Fix)
   ========================================================================== */

@media (max-width: 768px) {
    .tour-field.full-width {
        grid-column: span 1;
    }

    /* Normalize Swal containers to ensure content and buttons align perfectly */
    .tour-swal-html {
        margin: 1.5rem 0 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    /* Mobile Button Layout - Match content width */
    .tour-swal-actions {
        flex-wrap: wrap !important;
        width: 100% !important;
        gap: 10px !important;
        padding: 0 !important; /* Horizontally align with content area */
        margin: 1.5rem 0 1rem !important;
        justify-content: space-between !important;
    }

    .tour-swal-confirm {
        width: 100% !important;
        margin: 0 0 12px 0 !important; /* Add separation from secondary buttons */
        order: 1;
        padding: 14px 20px !important;
    }

    .tour-swal-deny {
        width: calc(50% - 5px) !important;
        margin: 0 !important;
        order: 2;
        padding: 12px 10px !important;
        font-size: 0.8rem !important;
    }

    .tour-swal-cancel {
        width: calc(50% - 5px) !important;
        margin: 0 !important;
        order: 3;
        padding: 12px 10px !important;
        font-size: 0.8rem !important;
    }

    /* Gift Card Section - Vertical stacking for mobile */
    .tour-gc-input-group {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: stretch !important; /* Ensure children take full width */
    }

    .tour-gc-input-code,
    .tour-gc-input-amount,
    .btn-tour-gc-apply {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        height: 45px !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        text-align: center !important; /* Placeholder ve metinleri ortala */
    }

    .btn-tour-gc-apply {
        background: #1e293b !important;
        color: #fff !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin-top: 5px !important;
    }
}

@media (max-width: 480px) {
    .summary-line.total strong {
        font-size: 1.3rem !important;
        white-space: nowrap !important;
    }

    .summary-line.total span {
        font-size: 0.65rem !important;
        white-space: nowrap !important;
    }

    .tour-payment-summary {
        padding: 12px 15px !important;
    }
}

/* ==========================================================================
   Tawk.to Mobile Visibility Overrides
   ========================================================================== */

@media (max-width: 991px) {
    /* Hide the bubble/minimized widget on mobile permanently */
    #tawk-chat-widget-container, 
    .tawk-min-container, 
    .tawk-badge, 
    .tawk-launcher,
    .tawk-custom-opener,
    iframe[title="chat widget"],
    iframe[src*="tawk"] {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    /* Allow the chat window to be visible when maximized */
    .tawk-max-container,
    iframe[title*="chat window"] {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Step 2: Selected Vehicle Class Highlight */

.selection-card.vehicle-card-horizontal.selected {
    background-color: rgba(34, 197, 94, 0.08) !important;
    border-color: #22c55e !important;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.15) !important;
}

.selection-card.vehicle-card-horizontal.selected .btn-select-v {
    background-color: #22c55e !important;
    border-color: #22c55e !important;
    color: #ffffff !important;
}