* {
    box-sizing: border-box;
    margin: 0;
    padding: 0px;
    text-decoration: none;
}

:root {
    --primary-color: #052554;
    --primary-color-light: #074884;
    --secondary-color: #F8A509;
    --burgundy: #850f24;

    --navy: #14285A;
    --navy-900: #0E1E3D;
    --gold: #F5A623;
    --gold-600: #DE8C10;
    --ink: #0E1E3D;
    --muted: #5D6B85;
    --page: #F5F7FB;
    --hair: rgba(14, 30, 61, .09);
    --card-sh: 0 18px 44px -26px rgba(14, 30, 61, .32);
    --r-lg: 14px;
    --r-md: 10px;
    --r-pill: 999px;
}

body {
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif !important;
}


.navbar-brand {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.btn-primary {
    background-color: #3b82f6;
    border-color: #3b82f6;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

.footer {
    background-color: #0f172a;
    color: #94a3b8;
}


/* Sunset Highway Hero Section */
.hero-banner {
    background: linear-gradient(to right, #052554 0%, #052554 35%, rgba(5, 37, 84, 0.9) 55%, rgba(5, 37, 84, 0.2) 80%, rgba(5, 37, 84, 0) 100%), url('../images/highway_sunset.png');
    background-size: cover;
    background-position: center center;
    position: relative;
    overflow: visible;
    color: #ffffff;
}

.hero-content-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 47px;
}

.hero-left-col {
    max-width: 600px;
    text-align: left;
}

.hero-tagline {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.hero-left-col h1 {
    color: #ffffff !important;
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    text-shadow: none !important;
}

.hero-left-col h1 span {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 21px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-subtitle .dot {
    color: var(--secondary-color);
    font-weight: 800;
}

/* Hero Feature Row */
.hero-features-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.hero-feature-text {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
}

.hero-right-col {
    position: relative;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-car-overlay {
    max-width: 125%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(5px 15px 15px rgba(0, 0, 0, 0.35));
    transform: scale(1.1);
    transform-origin: center right;
}

/* Tabs wrapper directly above booking card */
.booking-tabs-wrapper {
    display: flex;
    gap: 8px;
    margin-bottom: 11px;
}

.booking-tab {
    background: rgba(5, 37, 84, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-tab:hover {
    background: rgba(5, 37, 84, 0.95);
}

.booking-tab.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

/* Horizontal Booking Card Container */
.highway-booking-container {
    /* max-width: 1200px;
    margin: 0 auto; */
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
    background: #ffffff;
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
}

.booking-form-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.booking-input-col {
    flex: 1;
    padding: 0 16px;
    border-right: 1px solid #e2e8f0;
}

.booking-input-col#package_container select {
    appearance: none;
    -webkit-appearance: none;
}

.booking-input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.booking-input-group label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.booking-input-field {
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-input-field i {
    color: var(--primary-color);
    font-size: 1.15rem;
}

.booking-input-field input,
.booking-input-field select {
    border: none;
    background: transparent;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    width: 100%;
    outline: none;
    padding: 0;
}

.booking-input-field input::placeholder {
    color: #94a3b8;
}

.booking-input-field input[type="date"]::-webkit-calendar-picker-indicator,
.booking-input-field input[type="time"]::-webkit-calendar-picker-indicator {
    filter: none;
    cursor: pointer;
    opacity: 0.7;
}

.booking-search-col {
    padding-left: 16px;
}

.btn-search-cab {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-search-cab:hover {
    background-color: #e29505;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(248, 165, 9, 0.3);
}

@media (max-width: 991.98px) {
    .hero-banner {
        padding: 60px 0 80px 0;
        overflow: hidden;
    }

    .hero-content-wrap {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
        gap: 20px;
    }

    .hero-left-col {
        max-width: 100%;
        text-align: center;
    }

    .hero-left-col h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .hero-features-row {
        justify-content: center;
    }

    .hero-right-col {
        width: 100%;
        margin-top: 20px;
    }

    .hero-car-overlay {
        max-width: 80%;
        transform: none;
    }

    .booking-tabs-wrapper {
        width: 100%;
        justify-content: center;
    }

    .highway-booking-container {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: 20px;
        padding: 20px;
    }

    .booking-form-row {
        flex-direction: column;
        gap: 16px;
    }

    .booking-input-col {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 0 0 12px 0;
    }

    .booking-search-col {
        width: 100%;
        padding-left: 0;
    }

    .btn-search-cab {
        width: 100%;
        justify-content: center;
    }
}

/* Feature Checkmark Icons */
.checkmark-list li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
}

.checkmark-list li::before {
    content: "\F272";
    /* Bootstrap Icon check-circle-fill */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--burgundy);
    font-size: 1.2rem;
}

/* Premium Cards Hover */
.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08) !important;
}

/* Testimonial Avatar Circle */
.avatar-circle {
    width: 46px;
    height: 46px;
    background-color: var(--burgundy);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Autocomplete Dropdown Styling */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 280px;
    overflow-y: auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    margin-top: 5px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.autocomplete-dropdown .dropdown-header {
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    padding: 10px 16px 6px 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8fafc;
}

.autocomplete-dropdown .dropdown-item-custom {
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f8fafc;
    display: flex;
    flex-direction: column;
}

.autocomplete-dropdown .dropdown-item-custom:hover {
    background-color: #f1f5f9;
}

.autocomplete-dropdown .dropdown-item-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
}

.autocomplete-dropdown .dropdown-item-sub {
    font-size: 0.72rem;
    color: #64748b;
    margin-top: 2px;
}

/* Custom CSS to invert date/time picker icons to bright white */
.outline-field-group input[type="date"]::-webkit-calendar-picker-indicator,
.outline-field-group input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(100%);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.outline-field-group input[type="date"]::-webkit-calendar-picker-indicator:hover,
.outline-field-group input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}


/* Packages View - All Packages List */
.pkg-banner {
    background: linear-gradient(135deg, #0b5ed7 0%, #1e3a8a 100%);
    padding: 5rem 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pkg-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
    pointer-events: none;
}

.filter-card {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

.pkg-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pkg-img-wrapper {
    position: relative;
    padding-top: 60%;
    /* 5:3 Aspect Ratio */
    overflow: hidden;
    background-color: #f1f5f9;
}

.pkg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pkg-card:hover .pkg-img {
    transform: scale(1.08);
}

.pkg-badge-featured {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #3b82f6;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.pkg-badge-popular {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #eab308;
    color: #1e293b;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.star-rating {
    color: #fbbf24;
    font-size: 0.85rem;
}

.btn-explore {
    background-color: #0b5ed7;
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.btn-explore:hover {
    background-color: #084ab2;
    color: #ffffff;
}

/* Packages Show - Specific Package Details */
.gallery-carousel .carousel-item {
    height: 480px;
    background-color: #f1f5f9;
    border-radius: 1rem;
    overflow: hidden;
}

.gallery-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-widget {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.service-list.included li i {
    color: #22c55e;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.service-list.excluded li i {
    color: #ef4444;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.related-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    height: 100%;
}

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

/* Reusable Semantic Utilities replacing Inline Styles */
.bg-slate-50 {
    background-color: #f8fafc;
}

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

.max-w-800 {
    max-width: 800px;
}

.max-w-900 {
    max-width: 900px;
}

.sticky-sidebar-90 {
    top: 90px !important;
    z-index: 10 !important;
}

.sticky-sidebar-book {
    top: 90px !important;
}

.font-w-800 {
    font-weight: 800;
}

.letter-spacing-neg2 {
    letter-spacing: -0.02em;
}

.font-sz-075 {
    font-size: 0.75rem;
}

.font-sz-08 {
    font-size: 0.8rem;
}

.font-sz-09 {
    font-size: 0.9rem;
}

.font-sz-095 {
    font-size: 0.95rem;
}

.lh-17-pre {
    line-height: 1.7;
    white-space: pre-line;
}

.lh-14 {
    line-height: 1.4;
}

.btn-whatsapp-success {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
}

.btn-whatsapp-success:hover {
    background-color: #1ebe57 !important;
    border-color: #1ebe57 !important;
}

.img-h-180-cover {
    height: 180px;
    object-fit: cover;
}

.img-h-400-center {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-square-80 {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.circle-48 {
    width: 48px;
    height: 48px;
}

.circle-80 {
    width: 80px;
    height: 80px;
}

.btn-yellow-custom {
    background-color: var(--yellow) !important;
    border: none !important;
}

.pkg-banner-title {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pkg-banner-desc {
    max-width: 600px;
}

/* =========================================== */
/* SECTION: Header and Nav Elements */
/* =========================================== */

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-600));
    color: var(--navy-900);
    font-weight: 800;
    border: none;
    border-radius: var(--r-pill);
    box-shadow: 0 10px 24px -10px rgba(222, 140, 16, 0.7);
    transition: transform .2s ease, box-shadow .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 8px 24px;
    white-space: nowrap;
}

.btn-gold:hover {
    color: var(--navy-900);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px -10px rgba(222, 140, 16, 0.85);
}

.btn-navy {
    background: linear-gradient(135deg, var(--navy), var(--navy-900));
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: var(--r-pill);
    box-shadow: 0 14px 28px -14px rgba(14, 30, 61, 0.6);
    transition: transform .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 8px 24px;
    white-space: nowrap;
}

.btn-navy:hover {
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-soft {
    border: 1px solid var(--hair);
    border-radius: var(--r-pill);
    font-weight: 700;
    color: var(--navy);
    background: #fff;
    transition: all .2s ease;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 8px 16px;
    gap: 8px;
}

.btn-outline-soft:hover {
    border-color: var(--gold);
    color: var(--gold-600);
}

@media (min-width: 768px) {
    .btn-outline-soft {
        display: inline-flex;
    }
}

/* Top bar Layout Section */
.topbar {
    background: linear-gradient(90deg, var(--navy-900), var(--navy));
    color: rgba(255, 255, 255, 0.9);
    font-size: 13.5px;
    font-weight: 700;
}

.topbar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.topbar a:hover {
    color: var(--gold);
}

.topbar .topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #1e9e5a;
    border-radius: 50%;
}

.topbar-tagline span {
    letter-spacing: 0.02em;
}

.topbar-tagline span.sep {
    opacity: 0.6;
    margin: 0 2px;
}

.topbar-tagline span.desc {
    opacity: 0.9;
    font-weight: 500;
}

.topbar-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.soc {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .2s ease;
}

.soc:hover {
    background: var(--gold);
    color: var(--navy-900);
}

/* Navigation Header Section */
.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hair);
}

.main-logo {
    height: 55px;
    width: auto;
}

.main-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--navy-900));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px -8px rgba(14, 30, 61, .55);
}

.brand-name {
    font-family: 'Sora';
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.025em;
    text-decoration: none;
}

.brand-name span.text-gold6 {
    color: var(--gold-600);
}

.navlink {
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
    margin: 0 14px;
    position: relative;
    padding-bottom: 6px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navlink:hover,
.navlink.active {
    color: var(--gold-600) !important;
}

.navlink::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 28px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 50px;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.navlink:hover::after,
.navlink.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    gap: 16px;
}

.navbar-actions-group {
    display: flex;
    align-items: center;
    gap: 12px;
}



/* Fleet section title */
.fleet-section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    font-weight: 800;
    color: var(--primary-color);
    font-size: 2.2rem;
}

.fleet-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 50px;
}

/* Custom Fleet Card */
.fleet-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.fleet-card-body {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.fleet-card-image {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-card-info {
    width: 55%;
}

.fleet-car-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.fleet-car-type {
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    display: block;
    margin-bottom: 8px;
}

.fleet-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.fleet-features li {
    font-size: 0.72rem;
    font-weight: 700;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.fleet-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Fleet Card Bottom */
.fleet-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
    margin-top: auto;
}

.fleet-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
}

.fleet-book-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 7px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.fleet-book-btn:hover {
    background-color: #e29505;
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .fleet-card-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .fleet-card-image {
        width: 100%;
        margin-bottom: 12px;
    }

    .fleet-card-info {
        width: 100%;
    }
}

/* Features Ribbon styling */
.fleet-features-ribbon {
    background-color: var(--primary-color);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ribbon-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 15px;
}

.ribbon-item-icon-box {
    width: 50px;
    height: 50px;
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.6rem;
    flex-shrink: 0;
}

.ribbon-item-text {
    display: flex;
    flex-direction: column;
}

.ribbon-item-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.ribbon-item-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .ribbon-col:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }
}

@media (max-width: 767.98px) {
    .ribbon-item {
        padding: 10px 0;
    }
}

/* ======================================================= */
/* Hero Section and Booking Bar Styles from ref-1.html */
/* ======================================================= */

.hero {
    position: relative;
    background: var(--navy-900);
    padding-bottom: 64px;
}

.hero-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 64%;
    height: 100%;
    object-fit: cover;
}

.hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy-900) 0%, var(--navy-900) 34%, rgba(14, 30, 61, .72) 52%, rgba(14, 30, 61, .12) 78%, transparent 100%);
}

.hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    top: -100px;
    left: -60px;
    border-radius: 50%;
    filter: blur(70px);
    background: radial-gradient(circle, rgba(245, 166, 35, 0.34), transparent 70%);
    pointer-events: none;
    animation: floatglow 11s ease-in-out infinite;
}



.main-hero-div {
    position: relative;
    max-width: 660px;
    padding-top: 78px;
}

.main-hero-subtitle {
    color: var(--gold);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.main-hero-title {
    font-size: clamp(32px, 4.6vw, 54px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.025em;
    color: #fff;
    text-shadow: 0 2px 30px rgba(0, 0, 0, .35);
    font-family: 'Sora', sans-serif !important;

}

.main-hero-des {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .82);
    max-width: 540px;
    margin-top: 10px;
}

.tagline {
    font-family: 'Sora';
    font-weight: 700;
    font-size: 21px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.tagline .dot {
    color: var(--gold);
    font-size: 20px;
    line-height: 1;
}

.feat-chip-main-div {
    font-family: 'Sora';
    font-weight: 700;
    font-size: 21px;
    color: #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.feat-chip {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #fff;
}

.feat-ic {
    flex: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-600));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px -8px rgba(222, 140, 16, .7);
}

.feat-chip span.lbl {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.25;
}

.trip-tab {
    padding: 11px 26px;
    border: none;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    transition: all .2s ease;
}

.trip-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-600));
    color: var(--navy-900);
    box-shadow: 0 8px 20px -8px rgba(222, 140, 16, .6);
}

.hero-form-div {
    position: relative;
    z-index: 1;
    margin-top: 38px;
    margin-bottom: -120px;
}

.hero-form-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

/* Booking bar */
.booking {
    background: #fff;
    border: 1px solid var(--hair);
    border-radius: var(--r-lg);
    box-shadow: 0 40px 80px -34px rgba(0, 0, 0, .5);
    width: 100%;
    padding: 24px;
}

.bk-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    color: var(--navy-900);
}

.bk-field {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #DBE1EC;
    border-radius: var(--r-md);
    padding: 12px 14px;
    transition: border-color .2s ease;
    background: #fff;
}

.bk-field:focus-within,
.bk-field:hover {
    border-color: var(--gold);
}

.bk-field input,
.bk-field select {
    border: none;
    outline: none;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    background: transparent;
    width: 100%;
}

.bk-field input::selection,
.bk-field select::selection {
    background-color: transparent;
    color: inherit;
}

.bk-field input::-moz-selection,
.bk-field select::-moz-selection {
    background-color: transparent;
    color: inherit;
}

.bk-field input:-webkit-autofill,
.bk-field input:-webkit-autofill:hover,
.bk-field input:-webkit-autofill:focus,
.bk-field input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: var(--ink) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Hide default browser date/time icons by stretching transparently over the input */
.bk-field input[type="date"],
.bk-field input[type="time"],
.booking-input-field input[type="date"],
.booking-input-field input[type="time"] {
    position: relative;
}

.bk-field input[type="date"]::-webkit-calendar-picker-indicator,
.bk-field input[type="time"]::-webkit-calendar-picker-indicator,
.booking-input-field input[type="date"]::-webkit-calendar-picker-indicator,
.booking-input-field input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}


@keyframes floatglow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 20px) scale(1.15);
    }
}

@media (max-width: 991.98px) {
    .hero-img {
        display: none !important;
    }

    .hero-veil {
        background: var(--navy-900) !important;
    }
}

/* ===================== about-section ================================= */

.about-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    background-color: #f9f9f9;
    --c: #3333330a;
    --t: 2px;
    --g: 40px;
    --s: 12px;
    background-image: conic-gradient(at var(--t) 50%, #0000 75%, var(--c) 0);
    background-position: var(--g) 0px;
    background-size: calc(var(--g) + var(--t)) var(--s);
    animation: moveLines 1s linear infinite;
}

@keyframes moveLines {
    from {
        background-position-y: 0px;
    }

    to {
        background-position-y: 16px;
    }
}

.about-sec-title {
    font-size: 42px;
    font-weight: 800;
    width: 92%;
    font-family: 'Sora', sans-serif;
    letter-spacing: -1.05px;
    line-height: 1.12;
    color: var(--navy-900);
    margin-bottom: 16px;
}

.about-sec-des {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 510px;
}

.abouts-points {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.abouts-points-ic {
    flex: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(245, 166, 35, .16);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================== Choose Your Vehicle ================================= */

.choose-vehicle-section {
    padding: 70px 0px;
    background-color: #ffffff;
}

.choose-vehicle-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}



.choose-vehicle-eyebrow {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
}

.choose-vehicle-title {
    font-size: 42px;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    letter-spacing: -1.05px;
    color: var(--navy-900);
}

.choose-vehicle-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 15px auto 20px auto;
    border-radius: 50px;
}

.choose-vehicle-lead {
    font-size: 1.02rem;
    color: var(--muted);
    line-height: 1.6;
}

.choose-vehicle-card {
    background: #ffffff;
    border: 1px solid var(--hair);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(14, 30, 61, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.choose-vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 30, 61, 0.08);
}

.choose-vehicle-media {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: #f8fafc;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

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

.choose-vehicle-card:hover .choose-vehicle-media img {
    transform: scale(1.05);
}

.choose-vehicle-badge-avail {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 13px;
    border-radius: var(--r-pill);
    background: #1E9E5A;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 6px 16px -6px rgba(30, 158, 90, .7);
}

.choose-vehicle-badge-pop {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--secondary-color);
    color: var(--navy-900);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(245, 166, 35, 0.2);
}

.choose-vehicle-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
}

.choose-vehicle-spec {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 600;
}

.choose-vehicle-spec svg {
    flex-shrink: 0;
}

.choose-vehicle-card .btn-navy {
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--navy-900);
}

.choose-vehicle-card .btn-navy:hover {
    background: var(--secondary-color);
    color: var(--navy-900);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.25);
}

/* ============= */

.Ex-tour-packge {
    background: linear-gradient(135deg, rgba(251, 222, 21, 0.1) 0, rgba(0, 123, 255, 0.07) 50%, rgba(251, 222, 21, 0.1) 100%);
    padding: 60px 0px;
}

.Ex-tour-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

/* Exclusive Tour Package Card Styles */
.exclusive-tour-card {
    border: 1px solid #e2e8f0 !important;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.exclusive-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(14, 30, 61, 0.1) !important;
    border-color: rgba(14, 30, 61, 0.1) !important;
}

.exclusive-tour-card-media {
    position: relative;
    height: 180px;
    overflow: hidden;
    background-color: #f1f5f9;
}

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

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

.exclusive-tour-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: var(--secondary-color);
    color: var(--navy-900);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.exclusive-tour-card-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.exclusive-tour-card-rating-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(14, 30, 61, 0.85);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.exclusive-tour-card-rating-badge i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.exclusive-tour-card-title {
    font-size: 16px;
    color: var(--navy-900);
    line-height: 1.3;
    min-height: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.exclusive-tour-card-specs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}

.exclusive-tour-card-specs i {
    color: var(--primary-color-light);
}

.exclusive-tour-card-specs span {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.exclusive-tour-card-footer {
    margin-top: auto;
    padding-top: 8px;
}

.exclusive-tour-card-btn {
    background: linear-gradient(135deg, var(--navy), var(--navy-900));
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: var(--r-pill);
    box-shadow: 0 14px 28px -14px rgba(14, 30, 61, .6);
    transition: transform .2s ease;
    font-size: 13px;
    padding: 8px 12px;
    width: 100%;
}

.exclusive-tour-card-btn:hover {
    background-color: var(--navy-900);
    border-color: var(--navy-900);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 40, 90, 0.25);
}

/* Premium Customer Testimonials Section */
.premium-testimonial-card {
    background-color: #ffffff;
    border: 1px solid #f1f5f9 !important;
    border-radius: 16px;
    padding: 28px 28px 24px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(14, 30, 61, 0.02);
}

.premium-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(14, 30, 61, 0.07);
}

.premium-testimonial-quote-icon {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 76px;
    line-height: 1;
    color: rgba(245, 166, 35, 0.12);
    font-family: 'Sora';
    font-weight: 700;
    pointer-events: none;
    user-select: none;
}

.premium-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.premium-testimonial-feedback {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--navy);
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: normal;
    position: relative;
    z-index: 2;
}

.premium-testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    border-top: 1px solid var(--hair);
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.premium-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    flex-shrink: 0;
    font-family: 'Sora';
}

.premium-testimonial-avatar-navy {
    background-color: var(--primary-color);
    color: #ffffff;
}

.premium-testimonial-avatar-gold {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.premium-testimonial-info {
    display: flex;
    flex-direction: column;
}

.premium-testimonial-name {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--navy-900);
    font-size: 16px;
    margin-bottom: 2px;
    line-height: 1.2;
}

.premium-testimonial-designation {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

/* ==========================================
   SITE FOOTER CUSTOM STYLES (PREMIUM DESIGN)
   ========================================== */
.site-footer {
    background-color: #0E1E3D;
    /* Deep navy matching brand */
    color: rgba(255, 255, 255, 0.62);
    font-family: 'Manrope', sans-serif;
}

.site-footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-600));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.site-footer-logo-icon:hover {
    transform: rotate(10deg) scale(1.05);
}

.site-footer-brand-name {
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.01em;
}

.site-footer-description {
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 42ch;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 15px;
}

.site-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.72) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.site-footer-social-link:hover {
    background-color: var(--gold);
    color: var(--navy-900) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(245, 166, 35, 0.2);
}

.site-footer-head {
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-footer-links-list {
    font-size: 14.5px;
}

.site-footer-link {
    color: rgba(255, 255, 255, 0.72) !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.site-footer-link:hover {
    color: var(--gold) !important;
    padding-left: 4px;
}

.site-footer-contact-list {
    font-size: 14.5px;
}

.site-footer-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.site-footer-contact-item {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-bottom-container {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   PREMIUM SITE FAQ CUSTOM STYLES
   ========================================== */
.site-faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.site-faq-item {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.site-faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    border-color: rgba(14, 30, 61, 0.06);
}

.site-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-900);
    text-align: left;
    outline: none;
    transition: color 0.2s ease;
    font-family: 'Sora', sans-serif;
}

.site-faq-btn:hover {
    color: var(--gold-600);
}

.site-faq-btn:not(.collapsed) {
    color: var(--navy-900);
    background: linear-gradient(135deg, rgba(251, 222, 21, 0.1) 0, rgba(0, 123, 255, 0.07) 50%, rgba(251, 222, 21, 0.1) 100%);
    padding-bottom: 12px;
}

.site-faq-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--muted);
    flex-shrink: 0;
}

.site-faq-btn:not(.collapsed) .site-faq-icon {
    transform: rotate(180deg);
    color: var(--navy-900);
}

.site-faq-answer {
    transition: height 0.3s ease;
}

.site-faq-content {
    padding: 12px 28px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 0;
}

.site-faq-content p {
    margin-bottom: 0;
}


.site-footer-main-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.site-footer-row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 1.5rem;
    padding-top: 1rem;
}

.site-footer-brand-link {
    height: 50px;

}

.site-footer-brand-link img {
    height: 90px;
    width: auto;
}

.site-footer-logo-img {
    max-height: 24px;
    object-fit: contain;
}

.site-footer-social-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.site-footer-links-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer-contacts-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer-contact-flex {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer-bottom-flex {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}



.site-footer-bottom-flex-left {
    font-size: 13px;
}

.site-footer-bottom-flex a {
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
}

/* ======================================================= */
/* RESPONSIVENESS & BREAKPOINTS FOR THE HOME PAGE          */
/* ======================================================= */

/* Extra Small (0px - 575.98px) */
@media (max-width: 575.98px) {

    /* Hero Section */
    .hero {
        padding-bottom: 30px;
    }

    .main-hero-div {
        padding-top: 40px;
        text-align: center;
    }

    .main-hero-title {
        font-size: 28px !important;
        line-height: 1.25;
    }

    .main-hero-subtitle {
        font-size: 11px !important;
        letter-spacing: 0.15em;
        margin-bottom: 12px;
    }

    .main-hero-des {
        font-size: 14px !important;
        line-height: 1.5;
        margin-left: auto;
        margin-right: auto;
    }

    .tagline {
        font-size: 16px !important;
        justify-content: center;
        gap: 10px;
        margin-top: 12px;
    }

    .tagline .dot {
        font-size: 14px;
    }

    .feat-chip-main-div {
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .feat-chip {
        gap: 6px;
    }

    .feat-ic {
        width: 32px;
        height: 32px;
    }

    .feat-ic svg {
        width: 15px;
        height: 15px;
    }

    .feat-chip span.lbl {
        font-size: 11px !important;
        text-align: left;
    }

    /* Booking Form Tabs */
    .hero-form-tab {
        gap: 6px;
    }

    .trip-tab {
        padding: 8px 10px;
        font-size: 12.5px;
        flex: 1;
        text-align: center;
    }

    /* Booking Form Container */
    .hero-form-div {
        margin-top: 24px;
        margin-bottom: 0px;
    }

    .booking {
        padding: 16px;
    }

    .bk-field {
        padding: 10px 12px;
    }

    .bk-field input,
    .bk-field select {
        font-size: 13.5px;
    }

    #searchCab {
        height: 44px !important;
        font-size: 14px !important;
    }

    /* About Section */
    .about-section {
        padding-top: 50px;
        padding-bottom: 40px;
        text-align: center;
    }

    .about-sec-title {
        font-size: 26px !important;
        line-height: 1.2;
        width: 100%;
    }

    .about-sec-des {
        font-size: 14.5px;
        margin-left: auto;
        margin-right: auto;
    }

    .abouts-points {
        justify-content: center;
        font-size: 13px;
    }

    .about-section .btn-navy {
        width: 100%;
        justify-content: center;
    }

    /* Choose Your Vehicle Section */
    .choose-vehicle-section {
        padding: 50px 0;
    }

    .choose-vehicle-title {
        font-size: 26px !important;
    }

    .choose-vehicle-media {
        height: 200px;
    }

    /* Exclusive Tour Package Section */
    .Ex-tour-packge {
        padding: 50px 0;
    }

    .Ex-tour-main-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .Ex-tour-main-header .btn-navy {
        margin-top: 5px !important;
        width: 100%;
        justify-content: center;
    }

    /* FAQ Section */
    .site-faq-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .site-faq-content {
        padding: 0 16px 12px 16px;
        font-size: 13px;
    }

    /* Footer */
    .site-footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Small (576px - 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {

    /* Hero Section */
    .hero {
        padding-bottom: 40px;
    }

    .main-hero-div {
        padding-top: 50px;
        text-align: center;
    }

    .main-hero-title {
        font-size: 34px !important;
        line-height: 1.2;
    }

    .main-hero-des {
        font-size: 15px !important;
        margin-left: auto;
        margin-right: auto;
    }

    .tagline {
        font-size: 18px !important;
        justify-content: center;
    }

    .feat-chip-main-div {
        justify-content: center;
        gap: 12px;
    }

    /* Booking Form Container */
    .hero-form-div {
        margin-top: 30px;
        margin-bottom: 0px;
    }

    /* About Section */
    .about-section {
        padding-top: 60px;
        padding-bottom: 50px;
        text-align: center;
    }

    .about-sec-title {
        font-size: 32px !important;
        width: 100%;
    }

    .about-sec-des {
        margin-left: auto;
        margin-right: auto;
    }

    .abouts-points {
        justify-content: center;
    }

    /* Choose Your Vehicle Section */
    .choose-vehicle-section {
        padding: 60px 0;
    }

    .choose-vehicle-title {
        font-size: 32px !important;
    }

    /* Exclusive Tour Package Section */
    .Ex-tour-packge {
        padding: 60px 0;
    }

    .Ex-tour-main-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
}

/* Medium (768px - 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {

    /* Hero Section */
    .main-hero-div {
        padding-top: 60px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .main-hero-title {
        font-size: 40px !important;
    }

    .main-hero-des {
        margin-left: auto;
        margin-right: auto;
    }

    .tagline {
        justify-content: center;
    }

    .feat-chip-main-div {
        justify-content: center;
    }

    .hero-form-div {
        margin-top: 34px;
        margin-bottom: 0px;
    }

    /* About Section */
    .about-section {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .about-sec-title {
        font-size: 36px !important;
    }

    .about-sec-des {
        max-width: 100%;
    }

    /* Choose Your Vehicle Section */
    .choose-vehicle-title {
        font-size: 36px !important;
    }
}

/* Large (992px - 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {

    /* Hero Section */
    .main-hero-div {
        padding-top: 70px;
    }

    .main-hero-title {
        font-size: 46px !important;
    }

    .hero-img {
        width: 55%;
    }

    .hero-veil {
        background: linear-gradient(90deg, var(--navy-900) 0%, var(--navy-900) 45%, rgba(14, 30, 61, .75) 60%, rgba(14, 30, 61, .15) 85%, transparent 100%) !important;
    }

    /* Booking Form Container */
    .hero-form-div {
        margin-bottom: -90px;
    }

    /* About Section */
    .about-section {
        padding-top: 110px;
    }

    .about-sec-title {
        font-size: 38px !important;
    }
}

/* Extra Large (1200px - 1399.98px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {

    /* Hero Section */
    .main-hero-div {
        padding-top: 78px;
    }

    .main-hero-title {
        font-size: 50px !important;
    }

    .hero-img {
        width: 60%;
    }

    /* Booking Form Container */
    .hero-form-div {
        margin-bottom: -110px;
    }

    /* About Section */
    .about-section {
        padding-top: 120px;
    }
}

/* XXL (1400px+) */
@media (min-width: 1400px) {
    /* Kept exactly as is */
}

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

.search-results-page {
    font-family: 'Poppins', sans-serif !important;
    background-color: #f8fafc;
    color: #101828;
}

/* SaaS UI Tokens */
:root {
    --navy-primary: #101828;
    --navy-light: #1d2939;
    --yellow-accent: #FFC107;
    --yellow-hover: #e0a800;
    --white: #ffffff;
    --radius-lg: 16px;
    --radius-md: 12px;
    --shadow-soft: 0 12px 30px rgba(16, 24, 40, 0.04);
    --shadow-card: 0 8px 24px rgba(16, 24, 40, 0.03);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
}

/* Glassmorphism elements styling */
.glass-card {
    background: var(--white);
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.08);
}

/* Modern search banner inputs */
.search-input-group {
    border-right: 1px solid #e2e8f0;
}

@media (max-width: 767.98px) {
    .search-input-group {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 0.75rem;
    }
}

/* Spec tags */
.spec-tag {
    background-color: #f1f5f9;
    color: #475569;
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Custom inputs */
.form-control-custom {
    border: none;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy-primary);
    padding: 0.2rem 0;
}

.form-control-custom:focus {
    outline: none;
    box-shadow: none;
}

/* Hover scales */
.transition {
    transition: all 0.3s ease;
}

.content-page {
    padding: 30px 0px;
}