:root {
    --primary-color: #0066FF;
    /* Daha canlı ve modern bir mavi */
    --primary-hover: #0052CC;
    --accent-color: #FF6B35;
    /* Turuncu vurgu rengi */
    --dark-color: #0F172A;
    /* Slate-900 benzeri koyu renk */
    --text-color: #334155;
    /* Slate-700 benzeri metin rengi */
    --light-gray: #F8FAFC;
    --border-color: rgba(226, 232, 240, 0.8);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: #ffffff;
}

/* Utility Classes */
.x-small {
    font-size: 0.75rem !important;
}

.hover-scale {
    transition: transform 0.2s ease;
}

.hover-scale:hover {
    transform: scale(1.02);
}

.transition-all {
    transition: all 0.3s ease;
}

.text-orange {
    color: var(--primary-color) !important;
}

.bg-orange {
    background-color: var(--primary-color) !important;
}

/* Navbar */
.navbar-brand .brand-text {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -1px;
    color: #222;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-color);
}

/* Hero Section */
.hero-container {
    padding: 0;
    margin-bottom: 50px;
}

.hero-wrapper {
    position: relative;
    /* border-radius: 30px; */
    /* Moved to children to allow drop-downs to flow out */
    /* overflow: hidden; */
    /* Removing overflow hidden so dropdowns can be seen */
    height: 600px;
    width: 100%;
    margin: 0 auto;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=1920&auto=format&fit=crop');
    /* Temporary Car Image */
    background-size: cover;
    background-position: center;
    z-index: 0;
    border-radius: 0;
    /* Added here */
    overflow: hidden;
    /* Added here */
}

.hero-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Move content to bottom */
    align-items: center;
    text-align: center;
    padding-bottom: 80px;
    /* Add space from bottom */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    /* Darken bottom for readability */
    border-radius: 0;
    /* Added here to match bg */
}

.hero-title {
    color: white;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 30px;
    /* Space between title and search bar */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Modern Unified Search Bar */
.modern-search-box {
    background: white;
    display: flex;
    align-items: center;
    border-radius: 4px;
    width: 100%;
    max-width: 1000px;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-input-group {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    position: relative;
    cursor: text;
}

.icon-accent {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

.input-stack {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.small-label {
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 2px;
}

.modern-input {
    border: none;
    background: transparent;
    font-weight: 700;
    color: var(--dark-color);
    padding: 0;
    width: 100%;
    outline: none !important;
}

.modern-input::placeholder {
    color: #ccc;
    font-weight: 600;
}

.search-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
}

.modern-swap-btn {
    padding: 0 10px;
    color: #999;
    cursor: pointer;
    transition: all 0.2s;
}

.modern-swap-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.modern-submit-btn {
    height: 60px;
    padding: 0 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    border: none;
    color: white;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px 0 rgba(0, 102, 255, 0.39);
    white-space: nowrap;
}

.modern-submit-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.23);
    color: white !important;
}

.modern-submit-btn:active {
    transform: translateY(0);
}

/* Glass Search Bar Context */
.search-glass-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
}

/* Orange Search Button */
.btn-orange-circle {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: transform 0.2s;
    margin-left: 5px;
}

.btn-orange-circle:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
    color: white;
}

.btn-orange {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: all 0.3s;
}

.btn-orange:hover {
    background-color: var(--primary-hover);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(254, 87, 34, 0.2);
}

/* Modern Mobile Search */
.modern-mobile-search {
    background: white;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.small-label-mobile {
    text-transform: uppercase;
    font-size: 0.6rem;
    font-weight: 800;
    color: #bbb;
    display: block;
    margin-bottom: 2px;
}

.mobile-input-group {
    background: #fcfcfc;
    transition: all 0.2s;
}

.mobile-input-group:focus-within {
    background: white;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
}

/* Orange Search Button */
.vehicle-tabs-bw .nav-link {
    background: white;
    color: var(--dark-color);
    border: 1px solid #eee;
    font-weight: 600;
    padding: 10px 25px;
    transition: all 0.3s;
}

.vehicle-tabs-bw .nav-link.active {
    background: black;
    color: white;
    border-color: black;
}

/* Fleet Page Styles (Refined) */
.fleet-card-custom {
    background-color: #0d0d0d;
    /* Slightly lighter than pure black bg */
    border: 1px solid #1a1a1a;
    border-radius: 6px !important;
    transition: transform 0.3s, border-color 0.3s;
}

.fleet-card-custom:hover {
    transform: translateY(-5px);
    border-color: #333;
}

.fleet-image-box {
    background-color: #050505;
    /* Very dark inner box for image */
    border-radius: 4px;
    height: 220px;
    /* Fixed height for consistency */
    position: relative;
    border: 1px solid #151515;
}

.fleet-car-img {
    max-height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.6));
}

/* Feature Badges */
.feature-badge {
    background-color: #1a1a1a;
    color: #999;
    border: 1px solid #2a2a2a;
    border-radius: 4px !important;
    /* Pill shape */
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.75rem;
    transition: all 0.2s;
}

.feature-badge:hover {
    background-color: #222;
    color: #fff;
    border-color: #444;
}

/* Shimmer Animation (Page Refresh Style) */
.shimmer-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 20%,
            rgba(255, 255, 255, 0.03) 40%,
            /* Very subtle white sweep */
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.03) 60%,
            transparent 80%);
    background-size: 200% 100%;
    animation: shimmer-sweep 3s infinite linear;
    z-index: 1;
    pointer-events: none;
}

@keyframes shimmer-sweep {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}



/* Vehicle Cards V3 */
.vehicle-card-v3 {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.vehicle-card-v3:hover {
    border-color: #eee;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.icons-row {
    color: #ccc;
}

/* Sticky Features Section */
.sticky-features-section {
    position: relative;
    background-color: #fff;
    padding-top: 150px;
    padding-bottom: 100px;
}

/* Feature Text Items */
.feature-text-item {
    min-height: 60vh;
    /* Reduced from default/100vh to reduce spacing */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 30px;
    opacity: 0.2;
    /* transform: scale(0.95); */
    /* Removed as per new snippet */
    transition: opacity 0.5s ease;
    /* Modified transition */
    padding-bottom: 2rem;
    /* reduced padding */
}

.feature-text-item.active {
    opacity: 1;
    transform: scale(1);
}

/* Info Bar Styles */
.info-bar-section {
    border-bottom: 1px solid #dee2e6;
    /* Line separating Info Bar from Footer */
}

.info-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 100%;
}

/* Vertical Separator for Info Bar Items */
@media (min-width: 768px) {
    .info-bar-col {
        position: relative;
    }

    .info-bar-col:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background-color: #000;
        /* Visible black line */
        opacity: 0.2;
    }
}

/* Sticky Image Container */
.sticky-image-container {
    position: -webkit-sticky;
    position: sticky;
    top: 25vh;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-radius: 6px;
    overflow: hidden;
    background: white;
    z-index: 1;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.25);
}

#img-1 {
    z-index: 1;
}

#img-2 {
    z-index: 2;
}

#img-3 {
    z-index: 3;
}

.feature-img.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Map Markers */
.map-marker-btn {
    position: absolute;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border: 2px solid white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 10;
}

.map-marker-btn:hover {
    transform: scale(1.2);
    z-index: 11;
}

/* Testimonial Section */
.testimonial-card {
    background: white;
    border-radius: 6px;
    transition: transform 0.3s;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* FAQ Styles */
.faq-tabs .nav-link {
    background-color: white;
    border: 1px solid #f0f0f0;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.faq-tabs .nav-link.active {
    background-color: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

/* Accordion */
.custom-accordion .accordion-button {
    box-shadow: none !important;
    /* Remove blue outline focus */
    color: var(--dark-color);
    font-size: 0.95rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: white;
    /* No weird blue bg */
    color: #6d5dfc;
    /* Violet-ish active text color from image */
}

/* Plus/Minus Icons */
.custom-accordion .accordion-button::after {
    background-image: none;
    /* Remove default bootstrap svg */
    content: "+";
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #999;
    transition: transform 0.2s;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "x";
    /* Or - sign, image has X inside a small box typically, but x works */
    transform: rotate(0deg);
    color: #6d5dfc;
}

/* Active Border State */
.active-accordion-item {
    border: 1px solid #6d5dfc !important;
    box-shadow: 0 5px 15px rgba(109, 93, 252, 0.1) !important;
}

/* Buttons */
/* Reservations Page Structure (Reference Match) */
.bg-black {
    background-color: #000000 !important;
}

.text-gray-400 {
    color: #9ca3af !important;
    /* Lighter gray for better contrast on black */
}

.text-gray-500 {
    color: #6b7280 !important;
}

.search-card-dark {
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.form-control-dark {
    background-color: #161616 !important;
    border: 1px solid #222 !important;
    color: #ffffff !important;
    /* Pure white text for inputs */
    transition: all 0.2s;
}

.form-control-dark:focus {
    background-color: #1a1a1a !important;
    border-color: #333 !important;
    box-shadow: none !important;
}

.form-control-dark::placeholder {
    color: #666;
    /* Slightly lighter placeholder */
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-glow {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s;
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.6);
}

/* Filter Buttons */
.btn-filter {
    background-color: #0a0a0a;
    color: #888;
    /* Lighter default text */
    border: 1px solid #1a1a1a;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
    padding: 6px 20px;
}

.btn-filter:hover {
    background-color: #161616;
    color: #fff;
    border-color: #333;
}

.btn-filter.active {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

/* Empty State Icon Box */
.empty-state-icon {
    width: 60px;
    height: 60px;
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}


/* Footer */
footer {
    color: #6c757d;
}

footer h6 {
    color: var(--dark-color);
}

/* Footer Styles */
.footer-link {
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary-color) !important;
}

.split-arrow {
    font-size: 0.7rem;
    vertical-align: middle;
}

.footer-mini-link {
    white-space: nowrap;
    transition: color 0.2s;
}

.footer-mini-link:hover {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
}

.grayscale-logos {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.grayscale-logos:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.social-circle-btn {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid #1E90FF;
    color: #1E90FF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.social-circle-btn:hover {
    background-color: #1E90FF;
    color: white;
}

/* Fleet Standards Cards (Invisible/Transparent) */
.standard-card {
    background-color: transparent !important;
    /* "arka plan ile aynı renke" - Forced */
    /* "arka plan ile aynı renke" */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Extremely faint border */
    border-radius: 6px;
    transition: all 0.3s ease;
}

.standard-card:hover {
    border-color: var(--primary-color) !important;
    /* Reveal border clearly in orange */
    background-color: #050505;
    /* Slightly lighter bg on hover for depth */
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    /* Subtle orange glow */
}

.standard-card i {
    transition: transform 0.3s;
}

.standard-card:hover i {
    transform: scale(1.1);
}

/* Dark Accordion (Fleet Page - Refined) */
.custom-accordion-dark .accordion-item {
    background-color: #050505;
    border: 1px solid #151515;
    border-radius: 6px !important;
    overflow: hidden;
    margin-bottom: 15px;
}

.custom-accordion-dark .accordion-button {
    background-color: transparent !important;
    color: #ccc !important;
    font-weight: 500;
    box-shadow: none !important;
    padding: 20px 25px;
}

.custom-accordion-dark .accordion-button:not(.collapsed) {
    color: white !important;
}

.custom-accordion-dark .accordion-button::after {
    filter: brightness(0) invert(1);
    /* White arrow */
    background-size: 1.25rem;
}

.custom-accordion-dark .accordion-button:not(.collapsed)::after {
    filter: sepia(100%) saturate(1000%) hue-rotate(320deg) brightness(1.2);
    /* Orange arrow */
    transform: rotate(180deg);
}

/* Special Request CTA Card */
.special-request-card {
    background-color: #080808;
    background-image: radial-gradient(circle at 50% 100%, rgba(255, 107, 53, 0.15), transparent 70%), linear-gradient(#080808, #080808);
    border: 1px solid #1a1a1a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.special-request-card h2,
.special-request-card p {
    color: white !important;
    text-shadow: none;
}

/* Button uses default .btn-orange style (orange bg, white text) */
.btn-orange {
    background-color: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    transition: all 0.3s;
}

.btn-orange:hover {
    background-color: var(--primary-hover) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Agency Page Styles */
.agency-card {
    background-color: #0a0a0a !important;
    /* Force dark bg */
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    transition: transform 0.3s, border-color 0.3s, background-color 0.3s;
}

.agency-card:hover {
    transform: translateY(-5px);
    border-color: #333;
    background-color: #0f0f0f !important;
}

.agency-card .icon-box {
    width: 60px;
    height: 60px;
    background-color: #151515;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.agency-card:hover .icon-box {
    background-color: #222;
    transform: scale(1.1);
}

.agency-card:hover .icon-box i {
    color: var(--primary-color) !important;
    /* Turn icon orange on hover */
}

/* Advantage Cards (Agencies Page) */
.advantage-card {
    background-color: #0a0a0a !important;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    transition: transform 0.3s, background-color 0.3s, border-color 0.3s;
}

.advantage-card:hover {
    background-color: #0f0f0f !important;
    border-color: #333;
    transform: translateY(-5px);
}

.advantage-icon {
    width: 45px;
    height: 45px;
    background-color: #151515;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 2px solid var(--primary-color);
    /* Orange accent line */
    transition: all 0.3s;
    flex-shrink: 0;
}

.advantage-card:hover .advantage-icon {
    background-color: #222;
    transform: scale(1.05);
}

.advantage-card:hover h5 {
    color: var(--primary-color) !important;
}

/* Swap Button */
.swap-circle-btn {
    width: 35px;
    height: 35px;
    background: #212529;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.swap-circle-btn:hover {
    transform: rotate(180deg) scale(1.1);
}

/* Custom Autocomplete Dropdown */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 10px;
    max-height: 320px;
    overflow-y: auto;
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-dropdown-header {
    font-size: 0.75rem;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 15px;
    margin-bottom: 5px;
}

.search-dropdown-item {
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.95rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.search-dropdown-item i {
    color: #aaa;
    width: 20px;
    text-align: center;
}

/* Sticky Features Typography & Buttons */
.feature-text-item .display-6 {
    font-weight: 800 !important;
    letter-spacing: -1.5px;
    color: #111;
}

.feature-text-item p.lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: #666 !important;
    line-height: 1.6;
}

/* Step Indicator (Timeline Effect) */
.feature-text-item {
    position: relative;
    padding-left: 30px;
    border-left: 3px solid #eee;
    margin-left: 10px;
}

.feature-text-item.active {
    border-left-color: var(--primary-color);
}

/* Vibrant Gradient Buttons */
.btn-lime {
    background: linear-gradient(135deg, #84cc16 0%, #10b981 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
    transition: all 0.3s;
}

.btn-lime:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
    color: white;
}

.btn-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
    transition: all 0.3s;
}

.btn-cyan:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
    color: white;
}

.btn-rose {
    background: linear-gradient(135deg, #f43f5e 0%, #8b5cf6 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
    transition: all 0.3s;
}

.btn-rose:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
    color: white;
}

.search-white-box {
    position: relative;
}

.search-dropdown {
    position: absolute;
    top: 100%;
    /* Align directly below */
    left: 0;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 999;
    /* Higher than everything */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 10px;
    /* Space from input */
}

/* Airport Cards */
.airport-card {
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.airport-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.airport-card:hover .airport-img {
    transform: scale(1.1);
}

.airport-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    pointer-events: none;
}

.airport-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.airport-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
}

.mw-600 {
    max-width: 600px;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Help Center */
.help-hero {
    background-color: #050505;
}

.form-control-dark {
    background-color: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: white !important;
}

.form-control-dark:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2) !important;
    border-color: var(--primary-color) !important;
}

.form-control-dark::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.help-cat-card {
    background-color: #111;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.help-cat-card:hover,
.help-cat-card.active {
    border-color: var(--primary-color);
    background-color: #1a1a1a;
    transform: translateY(-5px);
}

.help-cat-card .icon-box {
    width: 50px;
    height: 50px;
    background-color: #222;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.help-cat-card:hover .icon-box,
.help-cat-card.active .icon-box {
    background-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* FAQ Accordion */
/* FAQ Accordion */
.custom-accordion .accordion-item {
    background-color: transparent;
    border: none !important;
    margin-bottom: 1rem;
    box-shadow: none !important;
    outline: none !important;
}

.custom-accordion .accordion-item:focus,
.custom-accordion .accordion-item:focus-within {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Consolidated Accordion Button Styles */
.custom-accordion .accordion-button,
.custom-accordion .accordion-button:focus,
.custom-accordion .accordion-button:active,
.custom-accordion .accordion-button:focus-visible {
    background-color: #111;
    color: white;
    border: 1px solid #222;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 0.375rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #151515;
    color: var(--primary-color);
    box-shadow: none !important;
    border-color: var(--primary-color);
}

/* Explicit Icon Override */
.custom-accordion .accordion-button::after {
    filter: none !important;
    opacity: 1 !important;
    content: "" !important;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e") no-repeat center center / 1.25rem !important;
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: none !important;
    /* Use X icon directly */
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6b35'%3e%3cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") no-repeat center center / 1.25rem !important;
    transform: rotate(90deg);
}

/* === Light Accordion for Homepage === */
.custom-accordion-light .accordion-item {
    background-color: #fff;
    border: 1px solid #eee;
    margin-bottom: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 4px !important;
    overflow: hidden;
}

.custom-accordion-light .accordion-button {
    background-color: #fff;
    color: #333;
    box-shadow: none !important;
    outline: none !important;
}

.custom-accordion-light .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    /* Very light grey */
    color: #5655d6;
    /* Purple/Blueish from Ref */
    border-bottom: 1px solid #e0e0e0;
}

/* Active Border Wrapper - simulating the purple border */
.custom-accordion-light .accordion-item:has(.accordion-button:not(.collapsed)) {
    border: 1px solid #8c8bf1;
    /* Light Purple border */
    box-shadow: 0 0 0 4px rgba(140, 139, 241, 0.1);
}

.custom-accordion-light .accordion-body {
    background-color: #fcfcfc;
    color: #666;
    padding: 1.5rem;
    border-top: none;
}

/* Light Accordion Icons */
.custom-accordion-light .accordion-button::after {
    content: "" !important;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333333'%3e%3cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e") no-repeat center center / 1.25rem !important;
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

.custom-accordion-light .accordion-button:not(.collapsed)::after {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333333'%3e%3cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") no-repeat center center / 1rem !important;
    transform: rotate(90deg);
    padding: 2px;
    border-radius: 4px;
    background-color: #eee;
    /* Grey background for X icon like in ref? */
}

.custom-accordion .accordion-body {
    border-left: 1px solid #333;
    margin-left: 15px;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* Support Box */
.support-box {
    background-color: #1a0f0a;
    /* Dark brownish/orange hint */
    border: 1px solid #3d1a10;
}

.support-box .icon-square {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Login Page Styles === */
.login-section {
    min-height: 80vh;
    /* Fill reasonable height */
    background-color: #050505;
    background-image: radial-gradient(circle at 10% 10%, rgba(255, 107, 53, 0.05) 0%, transparent 40%);
}

.login-card {
    background-color: #111;
    border: 1px solid #222;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.login-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

/* Google Button Container Fix */
.g_id_signin iframe {
    margin: 0 auto !important;
    display: block !important;
}

.login-tabs .nav-link {
    background-color: #1a1a1a;
    color: white;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.login-tabs .nav-link:hover {
    border-color: var(--primary-color);
}

.login-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.shadow-orange {
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shadow-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6);
}

.hover-underline:hover {
    text-decoration: underline !important;
}

/* Ensure input groups look good dark */
.input-group .form-control-dark {
    border-right: none;
}

.input-group .btn-outline-secondary {
    border: 1px solid #333;
    background-color: #1a1a1a;
    border-left: none;
}

.input-group .btn-outline-secondary:hover {
    background-color: #222;
    color: white;
}


/* === Search/Booking Page Styles === */
.timeline {
    position: relative;
    padding-left: 20px;
}

.vehicle-result-card.selected-vehicle {
    border: 2px solid #000 !important;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.vehicle-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
}

.btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
}

/* Popular Destinations */
.dest-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.dest-card:hover {
    transform: translateY(-5px);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: center;
}


/* Social Media Section */
.social-card img {
    transition: transform 0.5s ease;
}

.social-card:hover img {
    transform: scale(1.1);
}

.social-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
}


/* Social Icon Strip */
.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Hide Scrollbar for Gallery */
.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-opacity-20:hover {
    opacity: 0.2 !important;
}

.instagram-gradient {
    background: -webkit-linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Utilities for Redesign */
.group:hover .group-hover-scale {
    transform: scale(1.1);
}

.group:hover .group-hover-opacity-100 {
    opacity: 1 !important;
}

.group:hover .group-hover-translate-x {
    transform: translateX(5px);
}

.bg-gradient-to-t {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.bg-orange-light {
    background-color: rgba(255, 122, 0, 0.05);
}

.border-orange-10 {
    border-color: rgba(255, 122, 0, 0.1) !important;
}

.hover-shadow:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-2px);
}

.transition-all {
    transition: all 0.3s ease;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-shadow-sm {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.from-black-80 {
    --bs-gradient-from: rgba(0, 0, 0, 0.8);
    --bs-gradient-to: rgba(0, 0, 0, 0);
}

/* Footer Enhancements */
.footer-heading {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: #212529;
}

.footer-link {
    text-decoration: none;
    color: #212529;
    /* Dark color by default as requested */
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.footer-link:before {
    content: "\f054";
    /* chevron-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5rem;
    font-size: 0.7rem;
    color: #ff6600;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: #ff6600;
    padding-left: 5px;
}

.footer-link:hover:before {
    opacity: 1;
    transform: translateX(0);
}

.footer-link:active {
    transform: scale(0.98);
    /* Small click effect */
    color: #e65c00;
    /* Slightly darker orange on click */
}

.hover-text-orange:hover {
    color: #ff6600 !important;
}

.social-circle-btn {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: #f8f9fa;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.social-circle-btn:hover {
    background-color: #ff6600;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

.footer-mini-link {
    font-size: 0.85rem;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
    transition: all 0.2s ease;
}

.footer-mini-link:hover {
    background-color: #fff;
    border-color: #dee2e6;
    color: #ff6600 !important;
}

/* Infinite Marquee Slider */
.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-wrapper {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-wrapper:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 320px;
    /* Fixed card width */
    max-width: 320px;
}

.marquee-item .airport-card {
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
}

.marquee-item .airport-img {
    width: 100%;
    height: 220px;
    /* Force fixed height */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.marquee-item:hover .airport-img {
    transform: scale(1.05);
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Orange Button Variants */
.btn-orange {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-orange:hover,
.btn-orange:active,
.btn-orange:focus {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
}

.btn-outline-orange {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-orange:hover,
.btn-outline-orange:active,
.btn-outline-orange:focus {
    background-color: var(--primary-color);
    color: white;
}

/* Horizontal Scroll Wrapper - Alternative to Swiper */
.horizontal-scroll-wrapper {
    /* Safe centering technique for flexbox overflow */
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

/* 
 * TRICK: To center items when they fit, but align-left when they overflow.
 * We use margin: auto on the FIRST and LAST items.
 * If there is free space, margins expand and push items to center.
 * If there is NO free space (overflow), margins collapse to 0 and items start at edge.
 */
.horizontal-scroll-wrapper::before,
.horizontal-scroll-wrapper::after {
    content: '';
    margin: auto;
}

/* Custom Scrollbar for this section */
.horizontal-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #ffcab0;
    /* Light orange */
    border-radius: 10px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #ff7a00;
    /* Primary Orange */
}

/* Helper Classes for Sliders */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.02);
}

.group-hover-arrows button {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.group-hover-arrows:hover button {
    opacity: 1;
}

/* Ensure arrows are visible on mobile where hover doesn't exist/work same way */
@media (max-width: 768px) {
    .group-hover-arrows button {
        opacity: 1;
    }
}

/* FAQ Section Orange Theme Updates */
.faq-tabs .nav-link {
    background-color: #fff;
    color: #333;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    font-weight: 600;
}

.faq-tabs .nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.faq-tabs .nav-link.active {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* Override Custom Accordion to be Orange */
.custom-accordion-light .accordion-button:not(.collapsed) {
    background-color: rgba(255, 102, 0, 0.05) !important;
    color: var(--primary-color) !important;
    border-bottom: 1px solid rgba(255, 102, 0, 0.1);
}

.custom-accordion-light .accordion-item:has(.accordion-button:not(.collapsed)) {
    border: 1px solid var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1) !important;
}

/* Active Icon Orange */
.custom-accordion-light .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6600'%3e%3cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    background-color: rgba(255, 102, 0, 0.1) !important;
}

/* Footer Separator */
@media (min-width: 768px) {
    .info-bar-col:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background-color: rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767.98px) {

    /* Mobile Grid Separators */
    .info-bar-col:nth-child(odd)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background-color: rgba(0, 0, 0, 0.1);
    }
}

/* ============ MOBILE FIXES ============ */

/* Hero Banner Mobile Fix (Homepage Title) */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem !important;
        margin-top: 10px !important;
    }

    .hero-overlay {
        padding-top: 60px !important;
        padding-bottom: 30px !important;
    }
}

/* ============================
   PAX Popup Styles
   ============================ */
.pax-popup {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 20px;
    width: 260px;
    z-index: 9999;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    animation: paxPopupIn 0.2s ease;
}

.pax-popup.active {
    display: block;
}

@keyframes paxPopupIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* PAX Popup Arrow */
.pax-popup::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #1a1a1a;
}

.pax-select {
    background-color: #2a2a2a !important;
    border: 1px solid #444 !important;
    color: #fff !important;
    border-radius: 4px !important;
    padding: 8px 12px !important;
    font-weight: 600;
}

.pax-select:focus {
    border-color: #c9a84c !important;
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.2) !important;
}

.pax-select option {
    background-color: #2a2a2a;
    color: #fff;
}

.btn-pax-close {
    background-color: #c9a84c;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    padding: 10px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-pax-close:hover {
    background-color: #d4b85c;
    color: #1a1a1a;
}

.cursor-pointer {
    cursor: pointer;
}

/* ============================
   Extras Section Styles
   ============================ */
.extras-section .extras-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.extras-section .extras-item:last-child {
    border-bottom: none;
}

.extras-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.extras-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 4px;
}

.extras-item-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.extras-item-price {
    color: #0d6efd;
    font-size: 0.85rem;
    font-weight: 500;
}

.extras-counters {
    display: flex;
    align-items: center;
    gap: 20px;
}

.extras-counter-group {
    text-align: center;
}

.extras-counter-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 5px;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #0d6efd;
    border-radius: 6px;
    overflow: hidden;
}

.counter-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    color: #0d6efd;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
    padding: 0;
}

.counter-btn:hover {
    background-color: #0d6efd;
    color: #fff;
}

.counter-value {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
    border-left: 2px solid #0d6efd;
    border-right: 2px solid #0d6efd;
}

/* Mobile responsiveness for extras */
@media (max-width: 767.98px) {
    .extras-section .extras-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .extras-counters {
        width: 100%;
        justify-content: flex-end;
    }

    .pax-popup {
        width: 240px;
    }
}

/* Trust Cards V3 (Homepage) */
.trust-card-v3 {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.trust-card-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.trust-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: white;
}

/* Modern Alert Toast */
.modern-alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    background: #fff;
    color: #333;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 11000;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    min-width: 300px;
}

.modern-alert.active {
    transform: translateX(-50%) translateY(0);
}

.modern-alert-icon {
    color: #ffc107;
    font-size: 1.2rem;
}

.modern-alert-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
}