/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --clr-dark: #07080a;          /* Main Deep Black */
    --clr-surface: rgba(20, 22, 31, 0.65); /* Glassmorphic Card Background */
    --clr-saffron: #ff7300;       /* Dynamic Accent 1 */
    --clr-gold: #d4af37;          /* Dynamic Accent 2 (Royal Gold) */
    --clr-gold-light: #f3e5ab;    /* Light Cream Gold */
    --clr-text-light: #ffffff;    /* Core text */
    --clr-text-muted: #a0a5b5;    /* Subheadings / Paragraphs */
    --clr-whatsapp: #25d366;      /* Brand WhatsApp */
    
    /* Gradients */
    --grad-gold: linear-gradient(135deg, #ffe066 0%, #f5a623 50%, #d4af37 100%);
    --grad-saffron: linear-gradient(135deg, #ff9933 0%, #ff5500 100%);
    --grad-dark: linear-gradient(180deg, rgba(10, 11, 13, 0.95) 0%, rgba(20, 22, 31, 0.98) 100%);
    --grad-btn: linear-gradient(90deg, #ff7300 0%, #d4af37 100%);
    --grad-btn-hover: linear-gradient(90deg, #d4af37 0%, #ff7300 100%);

    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Poppins', sans-serif;

    /* Transitions */
    --trans-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --trans-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows & Blur */
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.2);
    --shadow-saffron: 0 8px 24px rgba(255, 115, 0, 0.25);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --glass-blur: blur(20px);
    --glass-border: 1px solid rgba(212, 175, 55, 0.1);
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: radial-gradient(circle at 80% 20%, #1f160b 0%, #07080a 50%, #040507 100%) no-repeat fixed;
    color: var(--clr-text-light);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background: transparent;
}

/* Glassmorphism Global Card Surfaces */
.vehicle-card, 
.value-card, 
.faq-item, 
.info-details-card, 
.booking-form-wrapper, 
.success-modal-content, 
.call-modal-content, 
.package-card, 
.testimonial-slider-container, 
.destination-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans-fast);
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.gold-text {
    color: var(--clr-gold);
}

/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.top-bar {
    background-color: rgba(10, 11, 13, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
    transition: var(--trans-smooth);
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    margin-right: 20px;
    color: var(--clr-text-muted);
}

.contact-info a i {
    color: var(--clr-saffron);
    margin-right: 6px;
}

.contact-info a:hover {
    color: var(--clr-gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-badge {
    color: var(--clr-gold-light);
}

.info-badge i {
    color: var(--clr-gold);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: var(--clr-text-muted);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.social-links a:hover {
    color: var(--clr-dark);
    background: var(--grad-gold);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAVIGATION BAR
   ========================================================================== */
.main-header {
    position: fixed;
    top: 45px; /* Offset by top bar height */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--trans-smooth);
    padding: 15px 0;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1002;
}

.logo-icon-wrapper {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    transition: var(--trans-smooth);
}

.brand-logo:hover .logo-icon-wrapper {
    border-color: var(--clr-saffron);
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 0 15px rgba(255, 115, 0, 0.2);
}

.logo-svg {
    width: 38px;
    height: 38px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--clr-saffron);
    margin-top: -2px;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

/* Underline Indicator */
.nav-indicator {
    position: absolute;
    bottom: -8px;
    height: 3px;
    background: var(--grad-gold);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
    pointer-events: none;
    transition: left 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
}

.nav-indicator.active {
    opacity: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link i.nav-arrow {
    font-size: 0.7rem;
    transition: var(--trans-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--clr-text-light);
}

.nav-item:hover .nav-link i.nav-arrow {
    transform: rotate(180deg);
    color: var(--clr-gold);
}

/* Mega dropdown general container */
.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 600px;
    background: var(--grad-dark);
    border: var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow-dark);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.3s;
    backdrop-filter: var(--glass-blur);
    z-index: 999;
}

/* Arrow pointer for mega menu */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #0f1013;
    border-left: var(--glass-border);
    border-top: var(--glass-border);
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: flex;
    gap: 20px;
}

/* Featured Column in Dropdown */
.mega-column.featured-fleet-col {
    flex: 1.2;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 115, 0, 0.02) 100%);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.mega-column h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-gold);
    margin-bottom: 10px;
}

.mega-column p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.view-all-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-saffron);
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all-btn:hover {
    color: var(--clr-gold);
    transform: translateX(4px);
}

/* Fleet items grid inside dropdown */
.mega-column-grid {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vehicle-card-preview {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--trans-fast);
}

.vehicle-card-preview:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.vehicle-img-wrapper {
    width: 60px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-img-wrapper img {
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.vehicle-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-light);
}

.vehicle-info span {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    display: block;
    margin-top: 2px;
}

/* Tour packages grid mega menu */
.packages-mega {
    width: 650px;
}

.tour-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 15px;
}

.tour-card-preview {
    position: relative;
    border-radius: 12px;
    height: 110px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.tour-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: var(--trans-smooth);
}

.tour-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-card-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 11, 13, 0.95) 20%, rgba(10, 11, 13, 0.3) 100%);
    z-index: 2;
}

.tour-overlay {
    position: relative;
    z-index: 3;
}

.tour-overlay h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-gold-light);
}

.tour-overlay p {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    margin-top: 2px;
}

.tour-card-preview:hover .tour-bg-wrapper {
    transform: scale(1.1) rotate(1deg);
}

.tour-card-preview:hover {
    border-color: var(--clr-saffron);
    box-shadow: 0 4px 15px rgba(255, 115, 0, 0.2);
}

/* Actions block: Booking Button & WhatsApp badge */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-badge {
    font-size: 1.35rem;
    color: var(--clr-whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    transition: var(--trans-bounce);
}

.whatsapp-badge:hover {
    background: var(--clr-whatsapp);
    color: var(--clr-dark);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* Glowing Booking Button */
.booking-cta {
    position: relative;
    background: linear-gradient(120deg, #ff7300, #d4af37, #ff7300);
    background-size: 200% auto;
    color: var(--clr-dark);
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: shine 3s linear infinite;
    z-index: 1;
    transition: var(--trans-smooth);
    overflow: visible; /* Allow pulse rings to expand outside */
}

.booking-cta i {
    font-size: 0.95rem;
    transition: var(--trans-fast);
}

.booking-cta span {
    position: relative;
    z-index: 3;
}

/* Concentric Expanding Pulsing Rings Behind the Button */
.cta-pulse {
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 30px;
    background: transparent;
    z-index: -1;
    pointer-events: none;
    animation: pulseRings 2s infinite cubic-bezier(0.25, 0, 0, 1);
}

@keyframes pulseRings {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 115, 0, 0.75), 0 0 0 0 rgba(212, 175, 55, 0.5);
    }
    100% {
        box-shadow: 0 0 0 12px rgba(255, 115, 0, 0), 0 0 0 24px rgba(212, 175, 55, 0);
    }
}

/* Continuous background gold/saffron gradient shine animation */
@keyframes shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Taxi Drive-Off and Reappear Animation on Hover */
@keyframes driveOff {
    0% { transform: translateX(0); opacity: 1; }
    38% { transform: translateX(22px); opacity: 0; }
    43% { transform: translateX(-22px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.booking-cta:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 28px rgba(255, 115, 0, 0.45), 0 0 8px rgba(212, 175, 55, 0.3) !important;
}

.booking-cta:hover i {
    animation: driveOff 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Hamburger button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    z-index: 1002;
}

.hamburger-btn .line {
    width: 100%;
    height: 2px;
    background-color: var(--clr-text-light);
    border-radius: 2px;
    transition: var(--trans-bounce);
}

/* ==========================================================================
   SCROLL EFFECTS / STICKY HEADER
   ========================================================================== */
.main-header.is-sticky {
    top: 0;
    padding: 10px 0;
    background-color: rgba(10, 11, 13, 0.85);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-dark);
}

/* Shrink header class when top bar disappears */
.top-bar.is-hidden {
    transform: translateY(-100%);
    position: absolute;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

/* ==========================================================================
   MOBILE OVERLAY DRAWER
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--clr-dark);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-dark);
    z-index: 1005;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-drawer.is-active {
    right: 0;
}

.drawer-header {
    margin-bottom: 30px;
}

.drawer-logo {
    display: flex;
    flex-direction: column;
}

.drawer-logo .logo-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.drawer-logo .logo-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--clr-saffron);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    flex: 1;
    margin-bottom: 20px;
    padding-right: 5px;
}

.mobile-nav-item {
    opacity: 0;
    transform: translateX(30px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    transition-delay: calc(var(--i) * 0.06s);
}

.mobile-drawer.is-active .mobile-nav-item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 8px 0;
}

.mobile-nav-link.active, .mobile-nav-link:hover {
    color: var(--clr-gold);
}

.mobile-nav-link .submenu-icon {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    transition: var(--trans-fast);
}

/* Mobile submenus */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    padding-left: 15px;
    border-left: 1px dashed rgba(255, 255, 255, 0.1);
    transition: max-height 0.4s ease-out;
}

.mobile-submenu li a {
    display: block;
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.mobile-submenu li a:hover {
    color: var(--clr-text-light);
}

/* When active submenus toggle open */
.mobile-nav-item.is-open .mobile-submenu {
    max-height: 250px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.mobile-nav-item.is-open .submenu-icon {
    transform: rotate(135deg);
    color: var(--clr-saffron);
}

/* Drawer Footer */
.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.drawer-phone-btn {
    background: var(--grad-btn);
    color: var(--clr-dark);
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-saffron);
}

.drawer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.drawer-socials a {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-socials a:hover {
    background: var(--grad-gold);
    color: var(--clr-dark);
    border-color: transparent;
}

/* Drawer Backdrop styling */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1004;
    opacity: 0;
    visibility: hidden;
    transition: var(--trans-smooth);
}

.drawer-backdrop.is-active {
    opacity: 1;
    visibility: visible;
}

/* Hamburger animations when menu is open */
.hamburger-btn.is-active .line-1 {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--clr-saffron);
}

.hamburger-btn.is-active .line-2 {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-btn.is-active .line-3 {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--clr-saffron);
}

/* ==========================================================================
   LANDING SECTIONS DESIGN (For Showcase)
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 160px 20px 80px 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 5;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto 35px auto;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.primary-btn {
    background: var(--grad-btn);
    color: var(--clr-dark);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-saffron);
}

.primary-btn:hover {
    background: var(--grad-btn-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: var(--clr-text-light);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--clr-gold);
    transform: translateY(-2px);
}

.hero-features-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(20, 22, 31, 0.85);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 24px;
    gap: 20px;
    z-index: 6;
    box-shadow: var(--shadow-dark);
}

.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-bar-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 115, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--clr-saffron);
}

.feature-bar-item h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text-light);
}

.feature-bar-item p {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

/* Info Section */
.info-section {
    padding: 120px 20px 80px 20px;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.subheading {
    color: var(--clr-saffron);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.info-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.info-text p {
    color: var(--clr-text-muted);
    margin-bottom: 15px;
}

.rounded-img {
    border-radius: 20px;
    border: var(--glass-border);
}

.shadow-lg {
    box-shadow: var(--shadow-dark);
}

/* Fleet section */
.fleet-section {
    padding: 80px 20px 100px 20px;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 0.5px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vehicle-card {
    background: var(--clr-surface);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: var(--trans-smooth);
}

.vehicle-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 115, 0, 0.02) 100%);
}

.vehicle-card-img img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--trans-smooth);
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.4));
}

.vehicle-card:hover .vehicle-card-img img {
    transform: scale(1.05) translateY(-5px);
}

.vehicle-card-details {
    padding: 25px;
}

.vehicle-card-details h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.vehicle-card-details .desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vehicle-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.vehicle-specs span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    background: rgba(255,255,255,0.03);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.02);
}

.vehicle-specs span i {
    color: var(--clr-gold);
    margin-right: 4px;
}

.vehicle-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 12px;
    border-radius: 12px;
    font-weight: 500;
    color: var(--clr-text-light);
}

.vehicle-card:hover {
    border-color: var(--clr-saffron);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.vehicle-card:hover .vehicle-card-btn {
    background: var(--grad-btn);
    color: var(--clr-dark);
    border-color: transparent;
    box-shadow: var(--shadow-saffron);
}

/* Vehicle Pricing Styles */
.price-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 10px;
}

.price-tag .amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-gold);
    font-family: var(--font-heading);
}

.price-tag .unit {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.price-rules {
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 12px;
    margin-bottom: 20px;
    font-size: 0.78rem;
    color: var(--clr-saffron);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.price-rules i {
    font-size: 0.85rem;
    margin-top: 2px;
    color: var(--clr-gold);
}

/* Footer Section */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--clr-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 20px 40px 20px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* Saffron-Gold Animated Top Border */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--clr-saffron), var(--clr-gold), var(--clr-saffron), transparent);
    background-size: 200% 100%;
    animation: borderMove 6s linear infinite;
}

@keyframes borderMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Ambient Radial Glow inside footer background */
footer::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 45px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-logo-col h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.footer-logo-col h3 i {
    color: var(--clr-saffron);
    animation: pulseSaffron 2s infinite ease-in-out;
}

@keyframes pulseSaffron {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px var(--clr-saffron)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 8px var(--clr-saffron)); }
}

.footer-logo-col p {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Custom Interactive Brand Social Icons */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-socials a.fb:hover {
    background: #1877F2;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
    transform: translateY(-5px) scale(1.1);
}

.footer-socials a.ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.5);
    transform: translateY(-5px) scale(1.1);
}

.footer-socials a.wa:hover {
    background: #25D366;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
    transform: translateY(-5px) scale(1.1);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--clr-gold);
    font-weight: 600;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--clr-saffron);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 55px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Underline slide & Arrow slide animation for Links */
.footer-links li a {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-links li a::before {
    content: "→";
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--clr-saffron);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: var(--clr-text-light);
    padding-left: 15px;
}

.footer-links li a:hover::before {
    opacity: 1;
    left: 0;
}

/* Beautiful Animated Contact Us Items */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateX(6px);
    box-shadow: var(--shadow-dark);
}

.footer-contact-item i {
    color: var(--clr-saffron);
    font-size: 1.05rem;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover i {
    transform: scale(1.2) rotate(15deg);
    color: var(--clr-gold);
}

.footer-contact-item div {
    display: flex;
    flex-direction: column;
}

.footer-contact-item h5 {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 3px 0;
}

.footer-contact-item a, .footer-contact-item span {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    text-decoration: none;
    line-height: 1.4;
    transition: var(--trans-fast);
}

.footer-contact-item a:hover {
    color: var(--clr-gold);
}

/* Bottom Copyright Bar with Highlights */
.footer-bottom {
    margin-top: 35px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(10, 11, 13, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin: 0;
}

.highlight-kashi {
    color: var(--clr-text-light);
    font-weight: 600;
}

.creator-credit {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.credit-brand {
    color: var(--clr-saffron) !important;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px dashed rgba(250, 107, 10, 0.3);
}

.credit-brand:hover {
    color: var(--clr-gold) !important;
    border-bottom-color: var(--clr-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.credit-owner {
    color: var(--clr-text-light);
    font-weight: 600;
}

.credit-divider {
    color: rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Contact Pill Badge */
.contact-badge {
    background: linear-gradient(135deg, var(--clr-gold) 0%, #c59b27 100%);
    color: var(--clr-dark) !important;
    padding: 4px 14px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.25);
}

.contact-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.45);
    color: var(--clr-dark) !important;
}

.contact-badge i {
    font-size: 0.72rem;
    animation: phoneWiggle 1.5s infinite;
}

@keyframes phoneWiggle {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0); }
}

@media (max-width: 992px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
        gap: 15px;
    }
    
    .creator-credit {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    footer {
        padding: 60px 20px 30px 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .creator-credit {
        text-align: center;
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards ease-out;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-content .animate-fade-in {
    animation-delay: 0.2s;
}

.hero-content .hero-title {
    animation-delay: 0.4s;
}

.hero-content .hero-desc {
    animation-delay: 0.6s;
}

.hero-content .hero-btns {
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 2px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .mega-menu {
        width: 520px;
    }
}

@media (max-width: 992px) {
    .top-bar {
        display: none; /* Hide top bar completely on tablet/mobile */
    }
    
    .main-header {
        top: 0; /* Align top on mobile */
        padding: 12px 0;
        background-color: rgba(10, 11, 13, 0.9);
        backdrop-filter: var(--glass-blur);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu {
        display: none; /* Hide standard nav menu */
    }
    
    .hamburger-btn {
        display: flex; /* Show hamburger button */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features-bar {
        position: relative;
        transform: none;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: 40px;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .brand-logo .logo-title {
        font-size: 1.15rem;
    }
    
    .brand-logo .logo-subtitle {
        font-size: 0.55rem;
        letter-spacing: 2.5px;
    }
    
    .logo-icon-wrapper {
        width: 38px;
        height: 38px;
    }
    
    .logo-svg {
        width: 30px;
        height: 30px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .whatsapp-badge {
        width: 34px;
        height: 34px;
        font-size: 1.15rem;
    }
    
    .booking-cta {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    
    .booking-cta span {
        display: none; /* Hide text on small screens, keep icon */
    }
    
    .booking-cta i {
        margin: 0;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   SUBPAGE GENERAL HERO & CONTENT STYLING
   ========================================================================== */
.subpage-hero {
    min-height: 50vh;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 60px 20px;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.subpage-hero-content {
    max-width: 750px;
    z-index: 5;
}

.subpage-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.subpage-desc {
    font-size: 1rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   ABOUT US PAGE SPECIFIC STYLES
   ========================================================================== */
.about-story-section {
    padding: 100px 20px;
}

.story-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--clr-text-light);
}

.story-text p {
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}

.quote-box {
    border-left: 3px solid var(--clr-saffron);
    padding-left: 20px;
    margin: 30px 0 10px 0;
}

.quote-content {
    font-style: italic;
    color: var(--clr-gold-light) !important;
    font-size: 1.05rem;
    line-height: 1.5;
}

.img-wrapper-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.img-wrapper-premium img {
    transition: var(--trans-smooth);
}

.img-wrapper-premium:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--grad-btn);
    color: var(--clr-dark);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-saffron);
    z-index: 5;
}

.exp-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Stats Counter Section */
.stats-section {
    background: transparent;
    padding: 80px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--clr-gold);
    font-family: var(--font-heading);
}

.stat-plus {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--clr-saffron);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Values Grid */
.values-section {
    padding: 100px 20px;
    background: transparent;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--clr-surface);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: var(--trans-smooth);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-saffron);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 115, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--clr-saffron);
    margin-bottom: 25px;
    transition: var(--trans-fast);
}

.value-card:hover .value-icon {
    background: var(--grad-saffron);
    color: var(--clr-dark);
    transform: rotate(5deg);
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px;
    background: var(--clr-surface);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 24px;
    box-shadow: var(--shadow-dark);
}

.testimonial-slider {
    position: relative;
    min-height: 200px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    text-align: center;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.testimonial-stars {
    color: var(--clr-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 1.15rem;
    color: var(--clr-text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-gold);
}

.testimonial-origin {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    display: block;
    margin-top: 2px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--trans-fast);
}

.slider-dots .dot.active {
    background: var(--clr-saffron);
    transform: scale(1.2);
}

/* ==========================================================================
   TOUR PACKAGES PAGE SPECIFIC STYLES
   ========================================================================== */
.packages-section {
    padding: 80px 20px;
    background: transparent;
}

.filter-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-tabs {
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 40px;
    display: flex;
    gap: 5px;
}

.tab-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    border-radius: 30px;
    transition: var(--trans-fast);
}

.tab-btn:hover {
    color: var(--clr-text-light);
    background: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
    background: var(--grad-saffron);
    color: var(--clr-dark);
    font-weight: 600;
    box-shadow: var(--shadow-saffron);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--clr-surface);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: var(--trans-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.package-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--trans-smooth);
}

.package-card:hover .package-img img {
    transform: scale(1.05);
}

.duration-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--clr-gold-light);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.duration-tag i {
    color: var(--clr-saffron);
}

.package-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--clr-text-light);
}

.package-details .package-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.package-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.package-highlights span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-highlights span i {
    color: var(--clr-saffron);
    font-size: 0.85rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    margin-bottom: 20px;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
}

.price-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-gold);
    font-family: var(--font-heading);
}

.itinerary-toggle-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-gold);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 6px 14px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--trans-fast);
}

.itinerary-toggle-btn:hover {
    border-color: var(--clr-gold);
    background: rgba(212, 175, 55, 0.05);
}

.itinerary-toggle-btn i {
    font-size: 0.7rem;
    transition: var(--trans-fast);
}

.package-card.is-open .itinerary-toggle-btn i {
    transform: rotate(180deg);
}

/* Expandable itinerary tray */
.itinerary-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    border-left: 2px dashed rgba(212, 175, 55, 0.2);
    padding-left: 15px;
}

.package-card.is-open .itinerary-content {
    max-height: 400px;
    margin-bottom: 25px;
    overflow-y: auto;
}

.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.itinerary-list li {
    position: relative;
    line-height: 1.4;
}

/* Double Button row */
.booking-buttons {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: var(--clr-whatsapp);
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.whatsapp-btn:hover {
    background: var(--clr-whatsapp);
    color: var(--clr-dark);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.book-now-btn {
    background: var(--grad-btn);
    color: var(--clr-dark);
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-now-btn:hover {
    background: var(--grad-btn-hover);
    box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   GALLERY PAGE SPECIFIC STYLES
   ========================================================================== */
.gallery-section {
    padding: 80px 20px;
    background: transparent;
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    border: var(--glass-border);
    transition: var(--trans-smooth);
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-img-wrapper img {
    width: 100%;
    display: block;
    transition: var(--trans-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-info {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
}

.overlay-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--clr-gold-light);
    margin-bottom: 6px;
}

.overlay-info p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.4;
    margin-bottom: 15px;
}

.zoom-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 115, 0, 0.1);
    border: 1px solid rgba(255, 115, 0, 0.25);
    color: var(--clr-saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--trans-bounce);
}

.gallery-img-wrapper:hover img {
    transform: scale(1.05);
}

.gallery-img-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-img-wrapper:hover .overlay-info {
    transform: translateY(0);
}

.gallery-img-wrapper:hover .zoom-icon {
    transform: scale(1.1) rotate(90deg);
    background-color: var(--clr-saffron);
    color: var(--clr-dark);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 11, 13, 0.96);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.lightbox-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--trans-fast);
    z-index: 2002;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--clr-saffron);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--trans-fast);
    z-index: 2002;
}

.lightbox-nav:hover {
    background: var(--clr-saffron);
    color: var(--clr-dark);
    border-color: transparent;
    box-shadow: var(--shadow-saffron);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-content {
    max-width: 80%;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-modal.is-active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-dark);
    border: var(--glass-border);
}

.lightbox-caption {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    color: var(--clr-text-light);
}

.lightbox-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--clr-gold);
    margin-bottom: 4px;
}

.lightbox-caption p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   CONTACT US PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-details-section {
    padding: 100px 20px;
    background: transparent;
}

.contact-intro-desc {
    color: var(--clr-text-muted);
    margin-bottom: 40px;
}

.info-details-card {
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    transition: var(--trans-smooth);
}

.info-details-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateX(5px);
}

.info-details-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--clr-gold);
    flex-shrink: 0;
}

.info-details-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--clr-text-light);
}

.info-details-card p {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.info-details-card a:hover {
    color: var(--clr-gold);
}

.card-action-text {
    display: block;
    margin-top: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-saffron);
}

.card-action-text a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Booking Form Wrapper */
.booking-form-wrapper {
    background: var(--clr-surface);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-dark);
}

.form-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--clr-gold);
}

.form-header p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.form-group label .required {
    color: var(--clr-saffron);
}

.form-group input, .form-group select, .form-group textarea {
    background-color: rgba(10, 11, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--clr-text-light);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--trans-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--clr-gold);
    box-shadow: 0 0 10px rgba(212,175,55,0.15);
}

/* Chrome autofill fix */
.form-group input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #14161f inset !important;
    -webkit-text-fill-color: var(--clr-text-light) !important;
}

.submit-form-btn {
    background: var(--grad-btn);
    color: var(--clr-dark);
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-saffron);
    transition: var(--trans-fast);
    margin-top: 10px;
}

.submit-form-btn:hover {
    background: var(--grad-btn-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Success Modal styling */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10,11,13,0.92);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.success-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.success-modal-content {
    background: var(--clr-surface);
    border: 1px solid var(--clr-gold);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-dark);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-modal.is-active .success-modal-content {
    transform: translateY(0);
}

.success-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--clr-text-muted);
    cursor: pointer;
}

.success-modal-close:hover {
    color: var(--clr-text-light);
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(37,211,102,0.1);
    color: var(--clr-whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px auto;
}

.success-modal h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--clr-text-light);
    margin-bottom: 12px;
}

.success-modal p {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-summary-box {
    background: rgba(10, 11, 13, 0.5);
    border-radius: 12px;
    padding: 15px 20px;
    text-align: left;
    margin-bottom: 30px;
    border: 1px dashed rgba(255,255,255,0.06);
    font-size: 0.85rem;
}

.modal-summary-box p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.modal-summary-box p:last-child {
    margin-bottom: 0;
}

.modal-summary-box p strong {
    color: var(--clr-gold-light);
}

.modal-wa-btn {
    background: var(--clr-whatsapp);
    color: var(--clr-dark);
    padding: 14px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: var(--trans-bounce);
    width: 100%;
    justify-content: center;
}

.modal-wa-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* FAQ Accordion Section */
.faq-section {
    padding: 80px 20px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-accordion-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(212, 175, 55, 0.15); /* Sleek gold accent line */
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-q-icon {
    font-size: 1.1rem;
    color: var(--clr-gold);
    background: rgba(212, 175, 55, 0.08);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-text-light);
    line-height: 1.45;
    transition: var(--trans-fast);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

/* Hover effects */
.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.25);
    border-left-color: var(--clr-gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.faq-item:hover .faq-question h4 {
    color: var(--clr-gold);
}

.faq-item:hover .faq-q-icon {
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.08);
}

/* Open/Active State styles */
.faq-item.is-open {
    border-color: rgba(250, 107, 10, 0.2);
    border-left-color: var(--clr-saffron); /* Saffron highlighting on active */
    background: rgba(255, 255, 255, 0.01);
}

.faq-item.is-open .faq-question {
    background: rgba(255, 255, 255, 0.01);
}

.faq-item.is-open .faq-question h4 {
    color: var(--clr-gold);
}

.faq-item.is-open .faq-icon {
    transform: rotate(135deg);
    background: var(--grad-saffron);
    border-color: transparent;
    color: var(--clr-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    border-top: 1px solid transparent;
}

.faq-item.is-open .faq-answer {
    max-height: 250px;
    border-color: rgba(255, 255, 255, 0.03);
}

.faq-answer p {
    padding: 24px 28px 24px 77px; /* Indent answer to align with question text */
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    background-color: rgba(10, 11, 13, 0.2);
}

/* FAQ Click Instruction Banner */
.faq-instruction {
    background: rgba(212, 175, 55, 0.04);
    border: 1px dashed rgba(212, 175, 55, 0.15);
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    margin: -10px auto 30px auto;
    font-size: 0.82rem;
    color: var(--clr-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.faq-instruction i {
    animation: bounceUpDown 1.5s infinite;
}

@keyframes bounceUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* ==========================================================================
   SUBPAGE MEDIA RESPONSIVENESS
   ========================================================================== */
@media (max-width: 992px) {
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 15px;
    }
    
    .stat-item:nth-child(3), .stat-item:nth-child(4) {
        border-bottom: none;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        min-height: 40vh;
        padding: 120px 20px 40px 20px;
    }
    
    .subpage-title {
        font-size: 2.1rem;
    }
    
    .about-story-section, .values-section, .testimonials-section, .packages-section, .gallery-section, .contact-details-section, .faq-section {
        padding: 60px 20px;
    }
    
    .booking-form-wrapper {
        padding: 25px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .testimonial-slider-container {
        padding: 20px;
    }
    
    .testimonial-quote {
        font-size: 0.98rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        column-count: 1;
    }
    
    .booking-buttons {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        padding: 10px 18px;
        bottom: 15px;
        right: 15px;
    }
    
    .exp-number {
        font-size: 1.4rem;
    }
    
    .exp-text {
        font-size: 0.65rem;
    }
    
    .success-modal-content {
        padding: 25px 20px;
    }
}

/* ==========================================================================
   VARANASI POPULAR DESTINATIONS SECTION
   ========================================================================== */
.destinations-section {
    padding: 100px 20px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.destination-card {
    background: var(--clr-surface);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: var(--trans-smooth);
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-saffron);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.dest-img-wrapper {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.dest-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--trans-smooth);
}

.destination-card:hover .dest-img-wrapper img {
    transform: scale(1.06) rotate(1deg);
}

.dest-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--grad-gold);
    color: var(--clr-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.dest-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dest-meta {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    color: var(--clr-gold-light);
    margin-bottom: 10px;
}

.dest-meta i {
    color: var(--clr-saffron);
    margin-right: 4px;
}

.dest-details h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--clr-text-light);
}

.dest-details p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.dest-hover-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: var(--trans-smooth);
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.destination-card:hover .dest-hover-content {
    max-height: 150px;
    opacity: 1;
    margin-top: 15px;
    padding-top: 15px;
}

.dest-hover-content h4 {
    font-size: 0.8rem;
    color: var(--clr-gold);
    margin-bottom: 6px;
    font-weight: 600;
}

.dest-hover-content ul {
    list-style: none;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.dest-hover-content ul li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 4px;
}

.dest-hover-content ul li::before {
    content: '•';
    color: var(--clr-saffron);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    line-height: 0.8;
}

.dest-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    margin-top: auto;
}

.dest-btn-wa {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-whatsapp);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dest-btn-wa:hover {
    color: var(--clr-text-light);
}

.dest-btn-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-gold);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dest-btn-link i {
    transition: var(--trans-fast);
}

.dest-btn-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .destinations-section {
        padding: 60px 20px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CALL CHOICE MODAL STYLES
   ========================================================================== */
/* ==========================================================================
   CONTACT CHOICE MODALS (CALL & WHATSAPP)
   ========================================================================== */
.call-modal, .whatsapp-choice-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 11, 13, 0.93);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.call-modal.is-active, .whatsapp-choice-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.call-modal-content, .whatsapp-modal-content {
    background: var(--clr-surface);
    border: 1px solid var(--clr-gold);
    border-radius: 24px;
    padding: 40px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-dark);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.call-modal.is-active .call-modal-content, 
.whatsapp-choice-modal.is-active .whatsapp-modal-content {
    transform: translateY(0);
}

.call-modal-close, .whatsapp-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    line-height: 1;
}

.call-modal-close:hover, .whatsapp-modal-close:hover {
    color: var(--clr-text-light);
}

.call-modal-icon, .whatsapp-modal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--clr-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px auto;
    animation: contactPulse 2s infinite ease-in-out;
}

.whatsapp-modal-icon {
    background: rgba(37, 211, 102, 0.1);
    color: var(--clr-whatsapp);
}

@keyframes contactPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.call-modal h2, .whatsapp-choice-modal h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--clr-text-light);
    margin-bottom: 8px;
}

.call-modal p, .whatsapp-choice-modal p {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-bottom: 30px;
}

.call-options-grid, .whatsapp-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.call-option-card, .whatsapp-option-card {
    background: rgba(10, 11, 13, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--trans-smooth);
}

.call-option-card:hover {
    border-color: var(--clr-saffron);
    transform: translateY(-5px);
    background: rgba(255, 115, 0, 0.02);
    box-shadow: 0 8px 20px rgba(255, 115, 0, 0.15);
}

.whatsapp-option-card:hover {
    border-color: var(--clr-whatsapp);
    transform: translateY(-5px);
    background: rgba(37, 211, 102, 0.02);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.15);
}

.call-card-icon, .whatsapp-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 115, 0, 0.08);
    color: var(--clr-saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: var(--trans-fast);
}

.whatsapp-card-icon {
    background: rgba(37, 211, 102, 0.08);
    color: var(--clr-whatsapp);
}

.call-option-card:hover .call-card-icon {
    background: var(--grad-saffron);
    color: var(--clr-dark);
}

.whatsapp-option-card:hover .whatsapp-card-icon {
    background: var(--clr-whatsapp);
    color: var(--clr-dark);
}

.call-card-text h4, .whatsapp-card-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-text-light);
    margin-bottom: 2px;
}

.call-card-text span, .whatsapp-card-text span {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.call-card-text .phone-num {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-gold);
    margin: 0;
}

.whatsapp-card-text .phone-num {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-whatsapp);
    margin: 0;
}

@media (max-width: 576px) {
    .call-options-grid, .whatsapp-options-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ==========================================================================
   OUTSTATION POPULAR TOURS SECTION
   ========================================================================== */
.outstation-section {
    padding: 100px 20px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.outstation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.outstation-card {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--trans-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.outstation-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.out-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
    transition: var(--trans-smooth);
}

.outstation-card:hover .out-dark-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.out-distance-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--clr-gold-light);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.out-distance-tag i {
    color: var(--clr-saffron);
}

.out-glass-drawer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 22, 31, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    transition: var(--trans-smooth);
    display: flex;
    flex-direction: column;
    max-height: 72px;
    z-index: 3;
    overflow: hidden;
}

.outstation-card:hover .out-glass-drawer {
    max-height: 82%;
    height: 82%;
    background: rgba(10, 11, 13, 0.88);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    min-height: 32px;
}

.drawer-header h3 {
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.drawer-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gold);
    font-size: 0.8rem;
    transition: var(--trans-smooth);
}

.outstation-card:hover .drawer-arrow {
    transform: rotate(180deg);
    background: var(--grad-saffron);
    color: var(--clr-dark);
}

.drawer-body {
    display: flex;
    flex-direction: column;
    gap: 11px;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.outstation-card:hover .drawer-body {
    opacity: 1;
    transition-delay: 0.1s;
}

.out-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--clr-gold-light);
}

.out-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.out-meta i {
    color: var(--clr-saffron);
}

.drawer-body p {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin: 0;
}

.out-key-points {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 12px;
}

.out-key-points span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.out-key-points span::before {
    content: "✓";
    color: var(--clr-saffron);
    font-weight: 800;
}

.out-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    margin-top: auto;
}

@media (max-width: 992px) {
    .outstation-section {
        padding: 60px 20px;
    }
    
    .outstation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .outstation-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SHRI KASHI TAXI RATE CHART SECTION
   ========================================================================== */
.rate-chart-section {
    padding: 100px 20px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.table-responsive-wrapper {
    overflow-x: auto;
    background: var(--clr-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-dark);
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}

.rate-table th {
    padding: 18px 24px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--clr-gold);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.rate-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
    color: var(--clr-text-light);
    vertical-align: middle;
}

.rate-table tbody tr {
    transition: var(--trans-fast);
}

.rate-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.car-name-col {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-text-light);
}

.car-name-col i {
    color: var(--clr-saffron);
    font-size: 1.1rem;
}

.badge-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sedan { background: rgba(52, 152, 219, 0.12); color: #3498db; }
.badge-suv { background: rgba(230, 126, 34, 0.12); color: #e67e22; }
.badge-luxury { background: rgba(155, 89, 182, 0.12); color: #9b59b6; }
.badge-traveller { background: rgba(46, 204, 113, 0.12); color: #2ecc71; }
.badge-urbania { background: rgba(212, 175, 55, 0.12); color: var(--clr-gold); }

.price-col {
    font-weight: 700;
    color: var(--clr-gold-light);
}

.action-buttons-cell {
    display: flex;
    gap: 10px;
}

.btn-table-call {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--clr-gold);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--trans-fast);
}

.btn-table-call:hover {
    background: var(--grad-gold);
    color: var(--clr-dark);
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.btn-table-wa {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: var(--clr-whatsapp);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--trans-fast);
}

.btn-table-wa:hover {
    background: var(--clr-whatsapp);
    color: var(--clr-dark);
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
}

.rate-notes {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.05);
}

.rate-notes i {
    color: var(--clr-gold);
    margin-right: 6px;
}

@media (max-width: 768px) {
    .rate-chart-section {
        padding: 60px 20px;
    }
    
    .rate-table th, .rate-table td {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   WHY RIDE WITH US SECTION
   ========================================================================== */
.why-ride-section {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.005);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.why-ride-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.why-ride-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-header-compact {
    margin-bottom: 5px;
}

.section-header-compact .subheading {
    font-size: 0.82rem;
    color: var(--clr-saffron);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 6px;
}

.section-header-compact h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--clr-text-light);
    margin: 0;
}

.why-ride-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-ride-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 16px;
    transition: var(--trans-smooth);
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.why-ride-card:hover {
    transform: translateY(-4px);
    border-color: var(--clr-saffron);
    box-shadow: 0 8px 24px rgba(255, 115, 0, 0.08);
}

.why-ride-icon {
    font-size: 1.6rem;
    color: var(--clr-saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 115, 0, 0.06);
    flex-shrink: 0;
    transition: var(--trans-bounce);
}

.why-ride-card:hover .why-ride-icon {
    background: var(--grad-saffron);
    color: var(--clr-dark);
    transform: scale(1.1) rotate(8deg);
}

.why-ride-info h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 6px;
}

.why-ride-info p {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    line-height: 1.45;
    margin: 0;
}

.why-ride-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.why-ride-animation-box {
    background: var(--clr-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 8px;
    width: 100%;
    max-width: 250px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-dark);
    position: relative;
    overflow: hidden;
}

/* Hailing Boy & Taxi CSS Animations */
@keyframes waveArmAction {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-28deg); }
}

.waving-arm-group {
    transform-origin: 80px 127px;
    animation: waveArmAction 1.2s infinite ease-in-out;
}

@keyframes taxiDrive {
    0% { transform: translateX(80px) translateY(0); }
    40% { transform: translateX(10px) translateY(0); }
    45% { transform: translateX(0px) translateY(-1px); }
    50% { transform: translateX(0px) translateY(0); }
    55% { transform: translateX(0px) translateY(-1px); }
    60% { transform: translateX(-5px) translateY(0); }
    100% { transform: translateX(-160px) translateY(0); }
}

.hailing-taxi {
    animation: taxiDrive 6s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes waveLines {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

.wave-line-1 {
    animation: waveLines 1.2s infinite ease-in-out;
}

.wave-line-2 {
    animation: waveLines 1.2s infinite ease-in-out 0.2s;
}

@keyframes bodyNod {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(2px); }
}

.hailing-boy {
    animation: bodyNod 2.4s infinite ease-in-out;
}

@media (max-width: 992px) {
    .why-ride-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-ride-right {
        margin-top: 15px;
    }
    
    .why-ride-animation-box {
        max-width: 250px;
        height: 160px;
    }
}

@media (max-width: 576px) {
    .why-ride-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .why-ride-card {
        padding: 15px;
    }
}

/* ==========================================================================
   CUSTOMER TESTIMONIALS & REVIEWS SECTION (COMPACT CAROUSEL)
   ========================================================================== */
.testimonials-section {
    padding: 50px 20px; /* Reduced padding for compact layout */
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.testimonials-compact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
}

.carousel-container {
    width: 100%;
}

.testimonial-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 15px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    justify-content: flex-start;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--trans-smooth);
}

.carousel-dot.active {
    background: var(--clr-gold);
    width: 20px;
    border-radius: 4px;
}

.review-card {
    background: var(--clr-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px;
    border-radius: 20px;
    transition: var(--trans-smooth);
    box-shadow: var(--shadow-dark);
}

.review-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-text-light);
    margin: 0 0 2px 0;
}

.reviewer-info span {
    font-size: 0.75rem;
    color: var(--clr-saffron);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.review-stars {
    color: var(--clr-gold);
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}

.review-body {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Compact Write a Review CTA card styling */
.write-review-cta {
    background: var(--clr-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-dark);
    height: 100%;
}

.write-review-cta h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--clr-text-light);
    margin: 0 0 8px 0;
}

.write-review-cta p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.45;
    margin: 0 0 16px 0;
}

.btn-write-review {
    max-width: 200px;
}

/* Review Form Modal Styles */
.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 11, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 3100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.review-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.review-modal-content {
    background: var(--clr-surface);
    border: 1px solid var(--clr-gold);
    border-radius: 24px;
    padding: 35px;
    max-width: 520px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-dark);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-modal.is-active .review-modal-content {
    transform: translateY(0);
}

.review-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    line-height: 1;
}

.review-modal-close:hover {
    color: var(--clr-text-light);
}

.review-form .form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.review-form .form-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.review-form label {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--clr-text-light);
}

.review-form input, .review-form textarea {
    background: rgba(10, 11, 13, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--clr-text-light);
    font-family: inherit;
    transition: var(--trans-fast);
}

.review-form input:focus, .review-form textarea:focus {
    border-color: var(--clr-gold);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.star-rating-selector {
    display: flex;
    gap: 8px;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    margin-top: 2px;
}

.star-rating-selector .star-btn {
    transition: transform 0.2s ease, color 0.2s ease;
}

.star-rating-selector .star-btn:hover {
    transform: scale(1.15);
}

.star-rating-selector .star-btn.active {
    color: var(--clr-gold);
}

.submit-review-btn {
    width: 100%;
    padding: 13px;
    background: var(--grad-gold);
    color: var(--clr-dark);
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--trans-smooth);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.25);
}

@media (max-width: 768px) {
    .testimonials-compact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .write-review-cta {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .review-form .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .review-card {
        padding: 20px;
    }
}

/* ==========================================================================
   FLOATING RIGHT SOCIAL SIDEBAR
   ========================================================================== */
.floating-social-sidebar {
    position: fixed;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    z-index: 2800;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none; /* Prevents blocking clicks on elements below */
}

.sidebar-btn {
    pointer-events: auto; /* Re-enable pointer events for buttons */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 52px;
    height: 52px;
    background: rgba(26, 28, 32, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-right: none;
    border-radius: 35px 0 0 35px;
    color: var(--clr-text-muted);
    text-decoration: none;
    font-size: 1.25rem;
    overflow: hidden;
    padding-left: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -4px 6px 20px rgba(0, 0, 0, 0.45);
}

.sidebar-btn i {
    transition: transform 0.4s ease, color 0.3s ease;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

.sidebar-btn .btn-label {
    font-size: 0.85rem;
    font-weight: 800;
    margin-left: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Eye-catching idle color tints */
.sidebar-wa {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.35);
    color: #25D366;
    animation: sidebarWAPulse 3s infinite;
}

.sidebar-call {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.35);
    color: var(--clr-gold);
    animation: sidebarCallPulse 3s infinite 1.5s;
}

.sidebar-ig {
    background: rgba(220, 39, 67, 0.08);
    border-color: rgba(220, 39, 67, 0.25);
    color: #e6683c;
}

.sidebar-fb {
    background: rgba(24, 119, 242, 0.08);
    border-color: rgba(24, 119, 242, 0.25);
    color: #1877F2;
}

/* Individual Brand Hover States */
.sidebar-btn:hover {
    width: 155px;
    color: #fff !important;
    animation: none; /* Stop pulsing on hover */
}

.sidebar-btn:hover .btn-label {
    opacity: 1;
    transform: translateX(0);
}

/* WhatsApp Hover Styles */
.sidebar-wa:hover {
    background: #25D366;
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: -6px 6px 25px rgba(37, 211, 102, 0.6);
}

.sidebar-wa:hover i {
    transform: scale(1.25) rotate(360deg);
    color: #fff;
}

/* Call Hover Styles */
.sidebar-call:hover {
    background: linear-gradient(135deg, var(--clr-gold) 0%, #c59b27 100%);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: -6px 6px 25px rgba(212, 175, 55, 0.6);
    color: var(--clr-dark) !important;
}

.sidebar-call:hover i {
    animation: phoneWiggle 1.5s infinite;
    color: var(--clr-dark);
}

/* Instagram Hover Styles */
.sidebar-ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: rgba(220, 39, 67, 0.5);
    box-shadow: -6px 6px 25px rgba(220, 39, 67, 0.6);
}

.sidebar-ig:hover i {
    transform: scale(1.25) rotate(360deg);
    color: #fff;
}

/* Facebook Hover Styles */
.sidebar-fb:hover {
    background: #1877F2;
    border-color: rgba(24, 119, 242, 0.5);
    box-shadow: -6px 6px 25px rgba(24, 119, 242, 0.6);
}

.sidebar-fb:hover i {
    transform: scale(1.25) rotate(360deg);
    color: #fff;
}

/* Pulsing Keyframes for idle state */
@keyframes sidebarWAPulse {
    0% {
        box-shadow: -3px 4px 15px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: -3px 4px 15px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: -3px 4px 15px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes sidebarCallPulse {
    0% {
        box-shadow: -3px 4px 15px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(212, 175, 55, 0.5);
    }
    70% {
        box-shadow: -3px 4px 15px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: -3px 4px 15px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Responsive adjustment: hide or reduce size on tiny mobile if needed, but sticky is good */
@media (max-width: 576px) {
    .floating-social-sidebar {
        gap: 6px;
    }
    
    .sidebar-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        padding-left: 13px;
    }
    
    .sidebar-btn:hover {
        width: 130px;
    }
}




/* ==========================================================================
   ENHANCED MOBILE RESPONSIVENESS OVERRIDES
   ========================================================================== */
@media (max-width: 768px) {
    /* Reduce global section padding to save screen space */
    .section-padding, section {
        padding: 40px 15px !important;
    }

    /* Fluid Typography for Headers */
    h1, .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem) !important;
        line-height: 1.2 !important;
    }
    h2, .section-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    }
    h3 {
        font-size: clamp(1.25rem, 3vw, 1.75rem) !important;
    }
    p {
        font-size: 0.95rem !important;
    }

    /* Force all major grids to stack vertically on tablets/mobile */
    .value-grid, 
    .contact-grid, 
    .call-options-grid,
    .review-form .form-group-row,
    .admin-grid {
        grid-template-columns: 1fr !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .footer-col {
        margin-bottom: 20px;
    }
    .footer-socials {
        justify-content: center !important;
    }
    .footer-contact-item {
        justify-content: center;
    }
    
    /* Hero Section specific fixes */
    .hero {
        padding-top: 100px !important;
        min-height: auto !important;
    }
    .hero-content {
        text-align: center;
        align-items: center;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px !important;
    }
    .hero-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Mobile Drawer Fixes */
    .mobile-drawer {
        width: 85% !important;
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    /* Force grids that were 2 columns on tablet to 1 column on mobile */
    .packages-grid, 
    .fleet-grid,
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Admin tables scrolling */
    .admin-table-container {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Reduce card padding */
    .package-card, .vehicle-card, .value-card, .info-details-card {
        padding: 15px !important;
    }
    
    .booking-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .booking-buttons a {
        width: 100% !important;
        text-align: center;
        justify-content: center;
    }
}

/* ==========================================================================
   HERO VIDEO BACKGROUND

/* ==========================================================================
   UPLOADED LOGO STYLES
   ========================================================================== */
.site-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

/* ==========================================================================
   ANIMATED LOGO EFFECTS
   ========================================================================== */
.animated-logo {
    animation: float-logo 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animated-logo:hover {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 115, 0, 0.8));
    animation-play-state: paused;
}

@keyframes float-logo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0px); }
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ==========================================================================
   UPGRADED LOGO SHAPE & COVER FIT
   ========================================================================== */
.logo-icon-wrapper.animated-logo {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%; /* Circular shape */
    overflow: hidden;
    background: #ffffff;
    border: 2px solid var(--clr-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    
    /* Animation base */
    animation: float-logo 4s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-brand .logo-icon-wrapper.animated-logo {
    width: 85px !important;
    height: 85px !important;
    border-width: 3px;
}

/* Ensure images perfectly fill the circular shape using object-fit: cover */
.site-logo, .footer-logo {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important; 
    object-position: center;
}

/* Stunning Hover Effect */
.logo-icon-wrapper.animated-logo:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 25px rgba(255, 115, 0, 0.9);
    border-color: var(--clr-saffron);
    animation-play-state: paused;
}
