@import url('https://fonts.googleapis.com/css2?family=Yellowtail&display=swap');
:root {
    --primary: #02628d;        /* Brand Blue */
    --primary-dark: #014361;   /* For Footers/Topbars */
    --secondary: #f27822;      /* Brand Orange */
    --secondary-hover: #d16215;
    --text-dark: #02628d;
    --text-light: #f1f5f9;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography Helpers */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--white); }
.text-orange { color: var(--secondary); }
.text-primary { color: var(--primary); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.p-2 { padding: 1.5rem; }
.pl-2 { padding-left: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-100 { width: 100%; }

.bg-light {    background-color: #ffffff; }
.bg-white { background-color: var(--white); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: none;
}
.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.rounded { border-radius: 8px; }

/* Grid Utilities */
.grid { display: grid; gap: 2.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.align-center { align-items: center; }

/* -------------------------------------
   Global Interactive Titles
   (Reused across Sections)
   ------------------------------------- */
.global-attractive-title {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 15px;
}

.global-ast-subtitle {
    font-family: 'Yellowtail', cursive;
    font-size: 2.5rem;
    color: var(--secondary, #b8952a);
    display: inline-block;
    margin-bottom: -5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.global-ast-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #1a2744;
    margin: 0;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.global-ast-title span {
    color: var(--secondary, #b8952a);
}

.gradient-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.6;
}

/* -------------------------------------
   Header
------------------------------------- */
.singh-logo{
width:100%;
max-width: 100px;
}
.top-bar {
    background-color:#115f83;
    color: #cbd5e0;
    padding: 0.6rem 0;
    font-size: 0.85rem;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-info span { margin-right: 1.5rem; }
.contact-info i { margin-right: 0.5rem; color: var(--secondary); }
.social-links a {
    color: #cbd5e0;
    margin-left: 1rem;
    font-size: 1rem;
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.social-links a:hover { background: var(--secondary); color:#fff; }

.main-nav {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}
.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}
.nav-links li {
    position: relative;
    padding: 10px 0;
}
.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: #4b5563;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--secondary);
}
.nav-links a i {
    margin-right: 5px;
    color: #9ca3af;
}
.nav-links a:hover i { color: var(--secondary); }

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Dropdown specific for Car Rentals */
.dropdown { position: relative; }
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0px 15px 35px rgba(0,0,0,0.1);
    z-index: 1001;
    border-top: 3px solid #8dc63f; /* Using the apple green from image for accent */
    border-radius: 0 0 8px 8px;
    animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown-content a {
    color: #374151 !important;
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
    font-weight: 400;
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover {
    background-color: #f8fafc;
    color: #8dc63f !important;
    padding-left: 25px;
}
.dropdown:hover .dropdown-content { display: block; }

/* -------------------------------------
   Swiper Hero Slider
------------------------------------- */
.hero-slider {
    width: 100%;
    height: 92vh!important;
    min-height: 750px;
    position: relative;
}
.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5); /* Modern dark overlay */
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}
.hero-content .title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.hero-content .desc {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #f3f4f6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-btns { display: flex; gap: 1rem; }
.swiper-pagination-bullet { background: #fff !important; opacity: 0.6 !important; }
.swiper-pagination-bullet-active { background: var(--secondary) !important; opacity: 1 !important; width: 25px !important; border-radius: 5px !important; transition: 0.3s; }

/* -------------------------------------
   About Collage (Exactly like image)
------------------------------------- */
.collage-container {
    display: flex;
    gap: 15px;
    height: 450px; /* Adjust height as needed */
    align-items: stretch;
}
/* Left and Right columns (Stacked images) */
.collage-left, .collage-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1; /* Take equivalent space */
}
/* Center column (Tall image) */
.collage-center {
    flex: 1.2; /* Slightly wider */
    display: flex;
}

/* Individual Images */
.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background-color: #eee;
}
.collage-left .collage-img, .collage-right .collage-img {
    height: calc(50% - 7.5px); /* Half height minus half of gap */
}
.center-img {
    height: 100%;
}

.stats-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

/* -------------------------------------
   Destinations Elegant Grid
------------------------------------- */
.destination-elegant-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 250px 250px;
    gap: 1.5rem;
}
.dest-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.dest-item a { display: block; height: 100%; width: 100%; }
.dest-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dest-item.main-dest {
    grid-column: span 2;
    grid-row: span 2;
}
.dest-item:hover img { transform: scale(1.08); }
.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,24,39,0.95) 0%, rgba(17,24,39,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: #fff;
}
.dest-overlay h4 { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.3rem; }
.dest-overlay p { font-size: 1rem; color: var(--secondary); font-weight: 500; margin-bottom: 0; text-transform: uppercase; letter-spacing: 1px;}

/* -------------------------------------
   Why Choose Us
------------------------------------- */
.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.glass-panel:hover { transform: translateY(-10px); }
.icon-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    color: var(--secondary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid rgba(249, 115, 22, 0.3);
}

/* -------------------------------------
   Premium Packages
------------------------------------- */
.premium-package-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: 0.3s ease;
    border: 1px solid #f3f4f6;
}
.premium-package-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    transform: translateY(-8px);
}
.p-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}
.p-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.premium-package-card:hover .p-img img { transform: scale(1.1); }
.p-badge {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2;
}
.p-body { padding: 2rem; }

/* -------------------------------------
   Gallery
------------------------------------- */
.beautiful-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}
.g-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.g-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: 0.5s;
}
.g-item:hover img { transform: scale(1.1); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* Footer */
.main-footer {
    background-color: var(--primary-dark);
    color: #cbd5e0;
    padding-top: 5rem;
}

/* ============================
   RESPONSIVE — TABLET (≤1024px)
   ============================ */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }

    /* Hide desktop nav, show hamburger */
    .nav-links { display: none !important; }
    .nav-actions { display: none; }
    .menu-toggle { display: block; }
    .dropdown-content { position: static; box-shadow: none; border-top: none; background: #f8fafc; }

    /* About collage */
    .collage-container { height: 350px; }

    /* Destinations accordion */
    .destination-accordion { height: 400px; }
}

/* ============================
   MOBILE (≤768px)
   ============================ */
@media (max-width: 768px) {
    /* Global grid */
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }

    /* Section titles */
    .section-title { font-size: 2rem !important; }

    /* --- TOP BAR on mobile (compact) --- */
    .top-bar { display: block; padding: 0.4rem 0; font-size: 0.75rem; }
    .top-bar-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
    .contact-info span { margin-right: 0.8rem; font-size: 0.72rem; }
    .social-links { margin-top: 2px; }
    .social-links a { width: 22px; height: 22px; font-size: 0.75rem; }

    /* --- NAV --- */
        .nav-inner {
        padding: 10px 20px;
    }
    .logo span { font-size: 1.4rem !important; }

    /* --- HERO BANNER --- */
    .hero-wrapper {
        height: auto !important;
        min-height: auto !important;
    }
    /* Stack inner flex column on mobile */
    .hero-wrapper > div[style*="display:flex"] > div[style*="max-width:1280px"],
    .hero-wrapper > div > div[style*="max-width:1280px"] {
        flex-direction: column !important;
        padding-top: 6rem !important;
        padding-bottom: 2rem !important;
        gap: 1.5rem !important;
    }
    /* Left text block */
    .hero-text-panel h1 { font-size: 2.4rem !important; }
    .hero-text-panel p { font-size: 1rem !important; }
    /* Right form: full width */
    .hero-wrapper div[style*="width:390px"] {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* --- ABOUT COLLAGE --- */
    .collage-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        height: auto;
    }
    .collage-left, .collage-right, .collage-center {
        display: contents;
    }
    .collage-img {
        height: 160px !important; /* Standardize sub-image heights */
        width: 100% !important;
    }
    .center-img {
        grid-column: span 2; /* Main focus image spans 2 cols */
        height: 220px !important;
    }
    .about-content { padding-left: 0 !important; }
    .stats-premium-grid { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }

    /* --- DESTINATIONS ACCORDION --- */
    .destination-accordion {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }
    .acc-item {
        height: 120px;
        border-radius: 12px;
    }
    .acc-item:hover { flex: 1; }
    .acc-content h3 { font-size: 1.4rem; transform: translateY(0); }
    .acc-btn { opacity: 1; transform: translateY(0); }

    /* --- WHY CHOOSE US --- */
    .feature-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .section-title.text-white { font-size: 2rem !important; }

    /* --- PACKAGES --- */
    .premium-package-card { max-width: 420px; margin: 0 auto; }
    .p-img { height: 200px; }

    /* --- GALLERY STRIP --- */
    .gallery-strip-inner { flex-wrap: wrap; }
    .gallery-strip-inner > div {
        flex: 1 1 50% !important;
        min-width: 50% !important;
        height: 200px !important;
    }

    /* --- FOOTER --- */
    .footer-inner { grid-template-columns: 1fr !important; gap: 2rem; padding: 3rem 1.5rem 1.5rem; }
    .main-footer { padding-top: 3rem; }
    .footer-bottom { text-align: center; padding: 1rem; }

    /* Buttons full-width on mobile */
    .hero-text-panel .btn { display: block; text-align: center; }
}

/* ============================
   RESPONSIVE — SMALL (≤480px)
   ============================ */
@media (max-width: 480px) {
    .hero-text-panel h1 { font-size: 1.9rem !important; }
    .hero-text-panel span { font-size: 0.75rem !important; }
    .stats-premium-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .feature-grid { grid-template-columns: 1fr 1fr !important; gap: 1rem; }
    .section { padding: 3rem 0; }

    /* Gallery 1 column on tiny screens */
    .gallery-strip-inner > div {
        flex: 1 1 100% !important;
        min-width: 100% !important;
    }
}

/* Accordion Destinations */
.destination-accordion {
    display: flex;
    width: 100%;
    height: 500px;
    gap: 15px;
}
.acc-item {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.acc-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,24,39,0.9), transparent 60%);
}
.acc-item:hover { flex: 3; }
.acc-content {
    position: absolute;
    bottom: 0; left: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.acc-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
    transition: transform 0.3s ease;
    transform: translateY(20px);
}
.acc-item:hover .acc-content h3 { transform: translateY(0); }
.acc-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
}
.acc-item:hover .acc-btn { opacity: 1; transform: translateY(0); }

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

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

    .hero-content .title { font-size: 3rem; }
    .hero-slider { height: 80vh; min-height: 500px; }
    .destination-elegant-grid { grid-template-columns: 1fr; grid-template-rows: auto; grid-auto-rows: 250px; }
    .dest-item.main-dest { grid-column: span 1; grid-row: span 1; }
}

/* Accordion Destinations */
.destination-accordion {
    display: flex;
    width: 100%;
    height: 500px;
    gap: 15px;
}
.acc-item {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.acc-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,24,39,0.9), transparent 60%);
}
.acc-item:hover {
    flex: 3;
}
.acc-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.acc-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
    transition: transform 0.3s ease;
    transform: translateY(20px);
}
.acc-item:hover .acc-content h3 {
    transform: translateY(0);
}
.acc-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
}
.acc-item:hover .acc-btn {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .destination-accordion {
        flex-direction: column;
        height: 700px;
    }
    .acc-item { flex: 1; }
    .acc-item:hover { flex: 3; }
    .hero-content { flex-direction: column; text-align: center; justify-content: center; }
    .hero-text { padding-right: 0 !important; margin-bottom: 2rem; padding-top: 2rem !important; }
    .hero-form-box { width: 100% !important; margin-top: 0 !important; padding: 1.5rem !important; }
    .hero-text .title { font-size: 3rem !important; }
    .hero-slider { height: auto !important; min-height: 800px; }
}

/* ==============================
   MOBILE LEFT SLIDE DRAWER
   ============================== */

/* Dark overlay behind drawer */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1100;
    backdrop-filter: blur(2px);
}
.drawer-overlay.show { display: block; }

/* Drawer panel */
.mobile-drawer {
    position: fixed;
    top: 0; left: 0;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 6px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

/* Drawer top: logo + close */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border-bottom: 2px solid var(--secondary);
    background: var(--primary);
}
.drawer-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}
.drawer-close:hover { background: rgba(255,255,255,0.15); }

/* Drawer nav links */
.drawer-links {
    list-style: none;
    padding: 0.8rem 0;
    flex: 1;
    margin: 0;
}
.drawer-links li {
    border-bottom: 1px solid #f1f3f7;
}
.drawer-links li a {
    display: block;
    padding: 0.95rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.drawer-links li a:hover {
    background: #f5f6fa;
    color: var(--secondary);
    padding-left: 2rem;
}
.drawer-links .dropdown-content {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    background: #f8f9fc;
    border-radius: 0;
    animation: none;
}
.drawer-links .dropdown-content a {
    font-size: 0.88rem;
    font-weight: 400;
    padding: 0.65rem 2.2rem;
    color: #4b5563;
    border-bottom: 1px solid #eef0f5;
}
.drawer-links .dropdown-content a:hover {
    color: var(--secondary);
    background: #eff1f8;
    padding-left: 2.6rem;
}

/* Book Now at bottom */
.drawer-footer {
    padding: 1.2rem;
    border-top: 1px solid #eee;
}

/* Car Rentals accordion toggle row */
.drawer-acc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    border-bottom: 1px solid #f1f3f7;
    transition: background 0.2s, color 0.2s;
    user-select: none;
}
.drawer-acc-toggle span i {
    width: 20px;
    margin-right: 10px;
    color: var(--secondary);
}
.drawer-acc-toggle:hover {
    background: #f5f6fa;
    color: var(--secondary);
}
.drawer-arrow {
    font-size: 0.8rem;
    color: #9ca3af;
    transition: transform 0.3s ease;
}
.drawer-acc-toggle.active .drawer-arrow {
    transform: rotate(180deg);
    color: var(--secondary);
}

/* Sub-list — hidden by default, slides open */
.drawer-sub {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f4f5f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.drawer-sub.open {
    max-height: 500px; /* enough for all items */
}
.drawer-sub li a {
    display: block;
    padding: 0.65rem 1.5rem 0.65rem 2.8rem;
    font-size: 0.88rem;
    font-weight: 400;
    color: #4b5563;
    border-bottom: 1px solid #eef0f5;
    transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.drawer-sub li a:hover {
    color: var(--secondary);
    background: #eceef6;
    padding-left: 3.2rem;
}

/* Drawer icons for normal links */
.drawer-links li > a i:first-child {
    width: 20px;
    margin-right: 10px;
    color: var(--secondary);
}

/* Hide drawer completely on desktop */
@media (min-width: 1025px) {
    .mobile-drawer,
    .drawer-overlay { display: none !important; }
    .menu-toggle    { display: none !important; }
}

/* -------------------------------------
   SIDEBAR & BOOKING COMPONENTS (Global)
   ------------------------------------- */
.pkg-sidebar, .dest-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-card {
    background: var(--primary);
    border-radius: 20px;
    padding: 35px;
    color: #fff;
    box-shadow: 0 30px 60px rgba(26, 39, 68, 0.2);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.booking-card h3 { font-size: 1.6rem; margin-bottom: 10px; position: relative; }
.booking-card .price-tag { font-size: 1.2rem; font-weight: 900; color: var(--secondary); margin-bottom: 25px; position: relative; }

.book-form input, .book-form select, .book-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: #fff;
    outline: none;
    font-family: inherit;
}

/* Fix Placeholder Color to White */
.book-form input::placeholder, 
.book-form select::placeholder, 
.book-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* Fix Dropdown Options being invisible */
.book-form select option {
    background-color: #ffffff;
    color: #334155; /* Deep slate / black */
}

.book-submit {
    width: 100%;
    background: #f97316;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.sidebar-white-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    margin-top: 25px;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* -------------------------------------
   BEST DEALS CARD V2 (Inspired by Screen)
   ------------------------------------- */
.deal-promo-card-v2 {
    display: block;
    background: #1a1b24; /* Dark Navy theme from screenshot */
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

.deal-promo-card-v2:hover { transform: translateY(-5px); }

.deal-header-v2 {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1b24; /* Solid dark top */
}

.deal-title-v2 { font-weight: 800; font-size: 1rem; color: #fff; }

.pill-badge-v2 {
    background: #ff6e00; /* Vibrant Orange */
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
}

.deal-img-wrapper-v2 {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.deal-img-wrapper-v2 img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.deal-content-overlay-v2 {
    position: absolute;
    inset: 0;
    padding: 30px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.9));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.gods-own-text-v2 {
    font-family: 'Times New Roman', serif; /* Or any serif font */
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: -5px;
    color: #fff;
}

.neon-dest-v2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary); /* Premium Golden Style */
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
}

.bottom-deal-info-v2 {
    margin-top: auto;
    text-align: center;
}

.deal-pkg-title-v2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.deal-pkg-subtitle-v2 {
    color: #cbd5e1;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.deal-pkg-price-v2 {
     font-size: 2.5rem;
     font-weight: 900;
     color: #ff6e00; /* Orange price from snippet */
}

.pagination-dot-v2 {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.pagination-dot-v2 span {
    width: 8px; height: 8px;
    background: #3b82f6; /* Blue dot */
    border-radius: 50%;
}











/* about us page */

        .about-stats {
            background-color: var(--primary);
            color: #fff;
            padding: 3rem 0;
            margin-top: -3rem;
            position: relative;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .stat-box {
            text-align: center;
            padding: 1.5rem;
        }

        .stat-box h3 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }

        .stat-box p {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .about-image-collage {
            position: relative;
            height: 500px;
        }

        .about-img-1 {
            width: 65%;
            height: 350px;
            object-fit: cover;
            border-radius: 12px;
            position: absolute;
            top: 0;
            left: 0;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            z-index: 1;
        }

        .about-img-2 {
            width: 55%;
            height: 300px;
            object-fit: cover;
            border-radius: 12px;
            position: absolute;
            bottom: 0;
            right: 0;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            z-index: 2;
            border: 10px solid #fff;
        }

        .mission-vision {
            background: var(--bg-light);
            padding: 5rem 0;
        }

        .mv-box {
            background: #fff;
            padding: 3rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            border-bottom: 4px solid var(--secondary);
            transition: transform 0.3s ease;
        }

        .mv-box:hover {
            transform: translateY(-10px);
        }

        .mv-box i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            background: rgba(242, 120, 34, 0.1);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        @media (max-width: 768px) {
            .about-stats {
                margin-top: -2rem;
                padding: 1rem 0;
                grid-template-columns: 1fr 1fr;
            }

            .stat-box h3 {
                font-size: 2rem;
            }

            .about-image-collage {
                height: 350px;
                margin-top: 2rem;
            }

            .about-img-1 {
                height: 250px;
            }

            .about-img-2 {
                height: 200px;
            }
        }

/* end about */







/* car rental all cabs */
  .alto-title {
            font-size: 4.5rem;
            font-weight: 900;
            margin: 0;
            letter-spacing: -3px;
            text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .alto-title span {
            color: var(--secondary);
        }

        .car-main-wrapper {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 60px;
            margin-bottom: 100px;
        }

        .car-info-card {
            background: #fff;
            padding: 45px;
            border-radius: 35px;
            box-shadow: 0 20px 60px rgba(2, 98, 141, 0.08);
            border: 1px solid rgba(241, 245, 249, 1);
        }

        .car-image-showcase {
            width: 100%;
            height: 400px;
            border-radius: 25px;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

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

        .car-image-showcase:hover img {
            transform: scale(1.05);
        }

        .car-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }

        .stat-item {
            text-align: center;
            padding: 25px 15px;
            background: #f8fafc;
            border-radius: 20px;
            border-bottom: 4px solid var(--secondary);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .stat-item i {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 12px;
            display: block;
        }

        .stat-label {
            font-size: 0.8rem;
            color: #64748b;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .stat-val {
            font-size: 1.15rem;
            color: var(--primary);
            font-weight: 900;
        }

        .car-feature-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 50px;
        }

        .car-feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #f8fafc;
            padding: 20px 25px;
            border-radius: 18px;
            border: 1px solid rgba(241, 245, 249, 1);
            font-weight: 700;
            color: var(--primary);
            font-size: 1.05rem;
            transition: 0.3s;
        }

        .car-feature-list li:hover {
            background: #fff;
            border-color: var(--secondary);
            transform: translateX(5px);
        }

        .car-feature-list li i {
            color: #10b981;
            font-size: 1.3rem;
        }

        .booking-box {
            background: var(--primary);
            color: #fff;
            padding: 50px;
            border-radius: 40px;
            position: sticky;
            top: 100px;
            box-shadow: 0 40px 90px rgba(2, 98, 141, 0.35);
            overflow: hidden;
        }

        .booking-box::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: var(--secondary);
            border-radius: 50%;
            opacity: 0.1;
        }

        .price-large {
            font-size: 2rem;
            font-weight: 900;
            color: var(--secondary);
            margin: 15px 0;
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .price-large span {
            font-size: 1.1rem;
            color: #cbd5e1;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .book-btn-main {
            display: block;
            width: 100%;
            padding: 22px;
            background: var(--secondary);
            color: #fff;
            text-align: center;
            text-decoration: none;
            border: none;
            cursor: pointer;
            border-radius: 100px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 35px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 15px 35px rgba(242, 120, 34, 0.3);
        }

        .book-btn-main:hover {
            background: #fff;
            color: var(--primary);
            transform: scale(1.05);
        }

        .whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 20px;
            background: #25d366;
            color: #fff;
            text-decoration: none;
            border-radius: 100px;
            font-weight: 800;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            opacity: 0.9;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
        }

        /* Booking Modal Styles */
        .booking-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(2, 98, 141, 0.85);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
        }

        .booking-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .booking-modal-content {
            background: #fff;
            width: 100%;
            max-width: 550px;
            border-radius: 30px;
            padding: 40px;
            transform: translateY(30px);
            transition: all 0.3s ease;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
        }

        .booking-modal-overlay.active .booking-modal-content {
            transform: translateY(0);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f1f5f9;
        }

        .modal-header h3 {
            margin: 0;
            color: var(--primary);
            font-weight: 900;
            font-size: 1.8rem;
            letter-spacing: -1px;
        }

        .close-modal {
            background: #f1f5f9;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            font-size: 1rem;
            color: #94a3b8;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-modal:hover {
            background: #ef4444;
            color: #fff;
        }

        .modal-form .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .modal-form label {
            display: block;
            font-size: 0.8rem;
            font-weight: 800;
            color: #64748b;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .modal-form input,
        .modal-form textarea {
            width: 100%;
            padding: 15px 20px;
            border: 1.5px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #f8fafc;
            transition: 0.3s;
        }

        .modal-form input:focus,
        .modal-form textarea:focus {
            outline: none;
            border-color: var(--secondary);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(242, 120, 34, 0.1);
        }

        .modal-form .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .modal-submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 900;
            cursor: pointer;
            margin-top: 15px;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .modal-submit-btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(242, 120, 34, 0.3);
        }

        @media (max-width: 1100px) {
            .car-main-wrapper {
                grid-template-columns: 1fr;
                max-width: 800px;
                margin: 0 auto;
            }

            .alto-hero {
                height: 35vh;
                border-radius: 0 0 30px 30px;
            }

            .alto-title {
                font-size: 3rem;
            }

            .car-stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 600px) {
            .alto-hero {
                min-height: 250px;
            }

            .alto-title {
                font-size: 2.2rem;
            }

            .car-info-card {
                padding: 30px 20px;
            }

            .car-image-showcase {
                height: 250px;
            }

            .car-stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }

            .car-feature-list {
                grid-template-columns: 1fr;
            }

            .price-large {
                font-size: 2.8rem;
            }

            .booking-box {
                padding: 35px 25px;
            }
        }

/* Unique Logo Text (Visible on all devices) */
.mobile-logo-text {
    display: block;
}
.mobile-logo-text-drawer {
    display: none;
}
.mobile-logo-text, .mobile-logo-text-drawer {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
    .mobile-logo-text span, .mobile-logo-text-drawer span {
        font-family: 'Yellowtail', cursive;
        color: var(--secondary);
        font-size: 1.6rem;
        text-transform: capitalize;
        letter-spacing: 1px;
        display: block;
        margin-top: -5px;
    }

@media (max-width: 768px) {
    .singh-logo {
        max-width: 60px; /* smaller logo on phone to fit text */
    }
    .drawer-header img {
        height: 50px !important;
    }
    .logo a span, .logo span { /* Override any existing span rules */
        font-size: inherit !important;
    }
}
/* packages detials all  */
     

        .global-ast-title {
            font-size: 3.2rem;
            font-weight: 900;
            color: #ffffff;
            margin: 0;
            letter-spacing: -1.5px;
            line-height: 1.2;
        }

        .gradient-subtitle {
            font-size: 1.15rem;
            color: #ffffff;
            max-width: 700px;
            margin: 15px auto 0;
            line-height: 1.6;
        }

    

        .pkg-banner-content h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .pkg-banner-content h1 span {
            color: var(--secondary);
        }

        /* Overview Strip */
        .pkg-overview-strip {
            background: #ffffff;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            margin: -60px auto 40px;
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            border: 1px solid #f1f5f9;
            max-width: 1280px;
        }

        .over-item {
            padding: 0 15px;
            border-right: 1px solid #f1f5f9;
            text-align: center;
        }

        .over-item:last-child {
            border-right: none;
        }

        .over-item i {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-bottom: 10px;
            display: block;
        }

        .over-item h6 {
            font-size: 0.8rem;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .over-item p {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--primary);
            margin: 0;
        }

        .pkg-layout {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 50px;
            padding-bottom: 5rem;
            align-items: start;
        }

        /* Tabs */
        .detail-tab-nav {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
            background: #f8fafc;
            padding: 10px;
            border-radius: 12px;
        }

        .tab-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 20px;
            background: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.9rem;
            color: #64748b;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
        }

        .tab-btn.active {
            background: var(--secondary);
            color: #fff;
            box-shadow: 0 10px 20px rgba(184, 149, 42, 0.2);
        }

        /* Accordion */
        .itinerary-accordion {
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            padding-left: 20px;
        }

        .itinerary-accordion::after {
            content: '';
            position: absolute;
            left: 10px;
            top: 20px;
            bottom: 20px;
            width: 2px;
            background: #e2e8f0;
            z-index: 1;
        }

        .day-acc-item {
            background: #ffffff;
            border-radius: 15px;
            border: 1px solid #f1f5f9;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            position: relative;
            z-index: 5;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .day-acc-item.active {
            border-color: var(--secondary);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        }

        .day-num-circle {
            position: absolute;
            left: -22px;
            top: 15px;
            width: 24px;
            height: 24px;
            background: var(--secondary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 800;
            z-index: 10;
            box-shadow: 0 0 0 6px #fff;
        }

        .day-acc-header {
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .day-header-title {
            font-size: 1.15rem;
            font-weight: 800;
            color: #111;
        }

        .day-acc-icon {
            color: var(--secondary);
            transition: 0.3s;
        }

        .day-content-inner {
            padding: 0px 25px 30px 25px;
            color: #4b5563;
            line-height: 1.8;
        }

        /* Fleet Section */
        .fleet-section {
            padding: 8rem 0;
            background: #f8fafc;
            position: relative;
            overflow: hidden;
        }

        .fleet-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .fleet-card {
            background: #fff;
            border-radius: 25px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
            border: 1px solid #f1f5f9;
            text-align: center;
        }

        .fleet-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        }

        .fleet-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 20px;
            border-radius: 12px;
        }

        .fleet-card-title {
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 1.25rem;
        }

        .btn-view-more {
            display: inline-block;
            padding: 10px 24px;
            background: #fff;
            color: var(--primary);
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-view-more:hover {
            background: var(--secondary);
            border-color: var(--secondary);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        /* Inclusions */
        .inc-exc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .inc-list,
        .exc-list {
            list-style: none;
            padding: 0;
        }

        .inc-list li,
        .exc-list li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #f1f5f9;
        }

        .inc-list i {
            color: #10b981;
        }

        .exc-list i {
            color: #ef4444;
        }

        /* Sidebar */
        .pkg-sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .booking-card {
            background: var(--primary);
            border-radius: 25px;
            padding: 40px;
            color: #fff;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        /* -------------------------------------
   BULLETPROOF MOBILE RESPONSIVENESS
   ------------------------------------- */

        @media (max-width: 1200px) {
            .pkg-layout {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
                display: block !important;
            }

            .pkg-sidebar {
                position: relative !important;
                top: 0 !important;
                width: 100% !important;
                margin-top: 40px !important;
            }

            .pkg-overview-strip {
                width: calc(100% - 30px) !important;
                margin: -30px 15px 30px !important;
                max-width: none !important;
            }
        }

        @media (max-width: 768px) {
            .pkg-overview-strip {
                grid-template-columns: repeat(2, 1fr) !important;
                width: calc(100% - 30px) !important;
                margin: -30px 15px 30px !important;
                padding: 15px !important;
                gap: 15px !important;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
            }

            .over-item {
                border-right: none !important;
                padding: 10px 5px !important;
            }

            .detail-tab-nav {
                width: calc(100% + 30px) !important;
                margin-left: -15px !important;
                padding: 10px 15px !important;
                overflow-x: auto !important;
                background: #f1f5f9 !important;
            }

            .inc-exc-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            .fleet-grid {
                grid-template-columns: 1fr !important;
            }
        }
        /* end */

 /* destination */
 
        .page-layout {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
            padding: 5rem 0;
            align-items: start; /* Critical: allows children to float */
            overflow: visible !important; /* Critical: hidden/auto overflow on parents breaks sticky */
        }
        
        .sticky-column {
            position: -webkit-sticky;
            position: sticky;
            top: 100px;
            z-index: 100;
            height: fit-content;
            align-self: start;
        }

        /* -------------------------------------
   MAIN CONTENT: PACKAGE CARDS
   ------------------------------------- */

        .pkg-list-card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 320px 1fr;
            /* Image width */
            margin-bottom: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
            border: 1px solid #f1f5f9;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pkg-list-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border-color: var(--secondary);
        }

        .pkg-img-pane {
            position: relative;
            overflow: hidden;
        }

        .pkg-img-pane img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .pkg-list-card:hover .pkg-img-pane img {
            transform: scale(1.1);
        }

        .pkg-strip {
            position: absolute;
            top: 15px;
            left: 0;
            background: var(--primary);
            color: #fff;
            padding: 8px 18px;
            border-radius: 0 20px 20px 0;
            font-weight: 800;
            font-size: 0.85rem;
            z-index: 5;
            box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
            border-right: 2px solid var(--secondary);
        }

        .pkg-content-pane {
            padding: 30px;
            display: flex;
            flex-direction: column;
        }

        .pkg-top-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .pkg-tag {
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .pkg-rating {
            font-size: 0.9rem;
            font-weight: 800;
            gap: 5px;
            display: flex;
            align-items: center;
        }

        .pkg-rating i {
            color: #facc15;
        }

        .pkg-card-title {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .pkg-card-desc {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .pkg-amenities {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            background: #f8fafc;
            padding: 12px 20px;
            border-radius: 12px;
        }

        .am-item {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .am-item i {
            color: var(--secondary);
            font-size: 1.1rem;
        }

        .pkg-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 25px;
            border-top: 1px solid #f1f5f9;
        }

        .pkg-price-box h4 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--primary);
        }

        .pkg-price-box p {
            margin: 0;
            font-size: 0.85rem;
            color: #94a3b8;
        }

        /* Global Reset for Horizontal Scroll */
        html,
        body {
            overflow-x: clip; /* Fix for sticky positioning breakage caused by overflow:hidden */
            width: 100%;
            margin: 0;
            padding: 0;
        }

        @media (max-width: 1024px) {
            .page-layout {
                display: flex;
                flex-direction: column;
                gap: 30px;
                padding: 20px 15px;
            }

            .pkg-list-card {
                display: flex;
                flex-direction: column;
                /* Stacked on mobile/tablet */
                width: 100%;
                margin-bottom: 25px;
            }

            .pkg-img-pane {
                width: 100%;
                height: 220px;
            }

            .pkg-content-pane {
                width: 100%;
                padding: 20px;
            }

            .pkg-amenities {
                display: flex !important;
                flex-wrap: wrap !important;
                gap: 15px !important;
                background: #f8fafc;
                padding: 15px !important;
                justify-content: space-evenly;
            }

            .am-item {
                flex: 0 0 20%;
                font-size: 0.7rem;
            }

            .pkg-footer {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        @media (max-width: 600px) {
            .global-ast-title {
                font-size: 1.8rem !important;
                padding: 0 10px;
            }

            .pkg-img-pane {
                height: 180px;
            }

            .pkg-content-pane {
                padding: 15px;
            }

            .pkg-card-title {
                font-size: 1.2rem;
            }

            .pkg-amenities {
                gap: 5px !important;
            }

            .am-item {
                flex: 0 0 45%;
                margin-bottom: 5px;
            }

            .pkg-footer {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .pkg-footer .btn {
                width: 100%;
            }
        }

        .global-ast-title {
            font-size: 4rem;
            font-weight: 900;
            color: #000000;
            margin: 0;
            letter-spacing: -1.5px;
            line-height: 1.2;
        }

        .gradient-subtitle {
            font-size: 1.15rem;
            color: #000000;
            max-width: 700px;
            margin: 15px auto 0;
            line-height: 1.6;
        }
        /* end */


        /* pay-now */
               .pay-hero h1 {
            font-size: 4rem;
            font-weight: 900;
            letter-spacing: -2px;
            margin: 0;
        }

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

        .payment-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            margin-bottom: 100px;
        }

        .payment-method-card {
            background: #fff;
            padding: 45px;
            border-radius: 35px;
            box-shadow: 0 20px 60px rgba(2, 98, 141, 0.08);
            border: 1px solid #f1f5f9;
            text-align: center;
        }

        .qr-container {
            max-width: 280px;
            margin: 30px auto;
            padding: 20px;
            border: 2px dashed var(--secondary);
            border-radius: 25px;
            background: #f8fafc;
            position: relative;
        }

        .qr-container img {
            width: 100%;
            border-radius: 15px;
        }

        .qr-caption {
            margin-top: 15px;
            font-weight: 800;
            color: var(--primary);
            font-size: 0.9rem;
        }

        .upi-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .upi-icons img {
            height: 30px;
            filter: grayscale(1);
            opacity: 0.5;
            transition: 0.3s;
        }

        .upi-icons img:hover {
            filter: grayscale(0);
            opacity: 1;
        }

        .bank-details-card {
            background: var(--primary);
            color: #fff;
            padding: 50px;
            border-radius: 40px;
            box-shadow: 0 30px 70px rgba(2, 98, 141, 0.2);
            position: sticky;
            top: 100px;
        }

        .bank-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 35px;
        }

        .bank-header i {
            font-size: 2rem;
            color: var(--secondary);
        }

        .bank-header h3 {
            margin: 0;
            font-size: 1.8rem;
            font-weight: 900;
        }

        .detail-row {
            display: flex;
            justify-content: space-between;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .detail-row:last-child {
            border: none;
        }

        .detail-label {
            opacity: 0.7;
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .detail-value {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--secondary);
        }

        .payment-steps {
            margin-top: 60px;
            padding: 60px 0;
            background: #f0f9ff;
            border-radius: 50px;
        }

        .step-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .step-item {
            text-align: center;
            padding: 30px;
        }

        .step-num {
            width: 60px;
            height: 60px;
            background: var(--secondary);
            color: #fff;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            font-weight: 900;
            box-shadow: 0 10px 20px rgba(242, 120, 34, 0.3);
        }

        .step-item h4 {
            color: var(--primary);
            font-weight: 900;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .step-item p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
        }

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

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

            .pay-hero h1 {
                font-size: 2.8rem;
            }
        }
        /* end */