/* ==========================================================================
   SILIGURI CABS TAXI - PREMIUM DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* CSS Variable Definitions */
:root {
    /* Color Palette */
    --primary-bg: #0B1221;
    --secondary-bg: #1F2937;
    --accent-blue: #0EA5E9;
    --accent-blue-rgb: 14, 165, 233;
    --gold: #D4AF37;
    --gold-rgb: 212, 175, 55;
    --white: #FFFFFF;
    --text-light: #F8FAFC;
    --text-gray: #94A3B8;
    
    /* Layout & Spacing */
    --container-max-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-lg: 16px;
    --border-radius-sm: 8px;
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --shadow-glow: 0 0 25px rgba(14, 165, 233, 0.25);
    --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.25);

    /* Aurora Weather Shifts default (mist) */
    --aurora-1: rgba(14, 165, 233, 0.15); /* Sky Blue */
    --aurora-2: rgba(30, 41, 59, 0.5);
    --aurora-3: rgba(186, 230, 253, 0.1);
}

/* Weather Themes overrides */
body.theme-sunny {
    --aurora-1: rgba(212, 175, 55, 0.15); /* Warm Gold */
    --aurora-2: rgba(15, 23, 42, 0.6);
    --aurora-3: rgba(254, 240, 138, 0.1);
    --accent-blue: #F59E0B; /* Amber Accent */
    --accent-blue-rgb: 245, 158, 11;
}

body.theme-aurora {
    --aurora-1: rgba(168, 85, 247, 0.2); /* Velvet Purple */
    --aurora-2: rgba(11, 18, 33, 0.7);
    --aurora-3: rgba(34, 197, 94, 0.15); /* Forest Green */
}

/* General Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--primary-bg);
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--primary-bg);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-bg);
    border-radius: 4px;
    border: 2px solid var(--primary-bg);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.15;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

p {
    color: var(--text-gray);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Helper Components */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Buttons & Inputs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-accent {
    background-color: var(--accent-blue);
    color: var(--white);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--primary-bg);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-phone {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.btn-phone:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(31, 41, 55, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(14, 165, 233, 0.1);
}

/* Dynamic Aurora Background Blobs */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    background: radial-gradient(circle at 50% 100%, var(--primary-bg), #060a12);
}

.aurora-bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    mix-blend-mode: screen;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.bubble-1 {
    top: -10%;
    left: 20%;
    width: 50vw;
    height: 50vw;
    background-color: var(--aurora-1);
    animation: floatBubble 25s infinite alternate ease-in-out;
}

.bubble-2 {
    bottom: -10%;
    right: 10%;
    width: 45vw;
    height: 45vw;
    background-color: var(--aurora-2);
    animation: floatBubble 20s infinite alternate-reverse ease-in-out;
}

.bubble-3 {
    top: 30%;
    left: -10%;
    width: 35vw;
    height: 35vw;
    background-color: var(--aurora-3);
    animation: floatBubble 30s infinite alternate ease-in-out;
}

@keyframes floatBubble {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 10%) scale(1.1); }
    100% { transform: translate(-5%, -5%) scale(0.95); }
}

/* Particle effect container */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Custom Interactive Cursor Glow */
@media (pointer: fine) {
    body {
        cursor: none;
    }
    
    .custom-cursor {
        width: 8px;
        height: 8px;
        background-color: var(--accent-blue);
        border-radius: 50%;
        position: fixed;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 10000;
        transition: width 0.2s, height 0.2s;
    }
    
    .cursor-glow {
        width: 40px;
        height: 40px;
        border: 1px solid var(--accent-blue);
        border-radius: 50%;
        position: fixed;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.08s cubic-bezier(0.25, 1, 0.5, 1);
        background-color: rgba(14, 165, 233, 0.03);
    }
    
    body:active .custom-cursor {
        width: 12px;
        height: 12px;
        background-color: var(--gold);
    }
    
    body:active .cursor-glow {
        border-color: var(--gold);
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* Top Info Bar */
.top-info-bar {
    background-color: rgba(11, 18, 33, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    font-size: 0.85rem;
    z-index: 1002;
    position: relative;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-contact-info {
    display: flex;
    gap: 20px;
}

.top-contact-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
}

.weather-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.weather-label {
    color: var(--text-gray);
    font-weight: 500;
}

.weather-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.weather-btn:hover, .weather-btn.active {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}

/* Header & Sticky Nav */
.main-header {
    background-color: rgba(11, 18, 33, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border-glass);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 12px 0;
    background-color: rgba(11, 18, 33, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: 0.05em;
}

.brand-sub {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--gold);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-blue);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 18, 33, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.mobile-link {
    color: var(--text-gray);
}

.mobile-link:hover, .mobile-link.active {
    color: var(--white);
}

.mobile-cta {
    margin-top: 15px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 160px 0;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transform: translateY(0);
    transition: transform 0.1s linear;
}

.bg-mountains {
    background-image: radial-gradient(circle at center, transparent 30%, var(--primary-bg) 80%), url('../media/sikkim_valley.jpg');
}

.hero-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 20%, rgba(255,255,255,0.03), transparent);
    animation: driftClouds 80s linear infinite;
    pointer-events: none;
}

@keyframes driftClouds {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.luxury-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.hero-title {
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 45px;
}

.hero-stats-row {
    display: flex;
    gap: 40px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
}

.stat-plus {
    color: var(--gold);
    font-weight: 700;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 4px;
}

/* Glass Booking Hero Card */
.booking-hero-card {
    padding: 30px;
}

.card-header {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.card-header h3 {
    font-size: 1.4rem;
    color: var(--white);
}

.card-header p {
    font-size: 0.85rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-input-wrapper label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gray);
}

.form-input-wrapper input, .form-input-wrapper select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    outline: none;
    width: 100%;
}

.form-input-wrapper input:focus, .form-input-wrapper select:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

.form-options {
    margin-top: 12px;
    text-align: center;
    font-size: 0.75rem;
}

/* Taxi Animation Track */
.hero-taxi-track {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 40px;
    overflow: hidden;
    pointer-events: none;
}

.taxi-moving {
    position: absolute;
    bottom: 8px;
    left: -100px;
    animation: driveCab 20s linear infinite;
}

.svg-cab circle {
    animation: spinWheels 2s linear infinite;
}

@keyframes spinWheels {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes driveCab {
    0% { left: -100px; }
    50% { left: 45%; }
    52% { left: 48%; }
    100% { left: 105%; }
}

.road-dashed {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 20px, transparent 20px, transparent 40px);
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.sub-heading {
    color: var(--accent-blue);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.service-icon {
    font-size: 2.5rem;
    background: rgba(14, 165, 233, 0.1);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.service-card h3 {
    font-size: 1.3rem;
}

.service-card p {
    font-size: 0.95rem;
}

.service-link {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

.service-link:hover {
    color: var(--white);
    transform: translateX(4px);
}

/* Interactive SVG Route Map styling */
.map-interactive-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: rgba(11, 18, 33, 0.5);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    overflow: hidden;
}

.interactive-svg-map {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.route-path {
    transition: var(--transition-smooth);
    opacity: 0.3;
}

.route-path-active {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1.5s ease-in-out;
}

.route-path-active.animate {
    stroke-dashoffset: 0;
}

.map-node {
    cursor: pointer;
}

.map-node .node-pulse {
    animation: pulseCircle 2s infinite;
}

.map-node .node-bg {
    transition: var(--transition-smooth);
}

.map-node .node-dot {
    transition: var(--transition-smooth);
}

.map-node:hover .node-bg {
    fill: var(--accent-blue);
}

.map-node:hover .node-dot {
    fill: var(--gold);
}

.map-node.active-hub circle {
    fill: var(--gold);
}

.node-label {
    font-size: 12px;
    font-weight: 600;
    fill: var(--text-gray);
    font-family: 'Outfit', sans-serif;
    pointer-events: none;
}

.map-node:hover .node-label {
    fill: var(--white);
}

@keyframes pulseCircle {
    0% { r: 8px; opacity: 0.5; }
    100% { r: 18px; opacity: 0; }
}

.map-details-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 320px;
    padding: 20px;
    z-index: 10;
}

.map-details-card h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.map-details-card p {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.map-meta-row {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
}

.map-meta-row strong {
    color: var(--gold);
}

/* Destinations Showcase */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.dest-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dest-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.dest-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(11, 18, 33, 0.85);
    border: var(--border-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
}

.dest-fallback-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fallback-icon {
    font-size: 3rem;
}

.gradient-darjeeling { background: linear-gradient(135deg, #1e3a8a, #0d9488); }
.gradient-meghalaya { background: linear-gradient(135deg, #0f766e, #4338ca); }
.gradient-kalimpong { background: linear-gradient(135deg, #7c2d12, #65a30d); }

.dest-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dest-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.dest-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.dest-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.more-destinations-list h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dest-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-gray);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.dest-badge:hover {
    background-color: var(--accent-blue);
    color: var(--white);
    border-color: var(--accent-blue);
}

/* Tour Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.package-card.hot-package {
    border-color: rgba(212, 175, 55, 0.3);
}

.popular-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--gold);
    color: var(--primary-bg);
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 30px;
    text-transform: uppercase;
    z-index: 2;
}

.package-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-header h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.package-duration {
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 600;
}

.package-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.price-box {
    margin-bottom: 20px;
}

.from-lbl {
    display: block;
    font-size: 0.75rem;
    color: var(--text-gray);
}

.price-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
}

.per-person {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.package-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.package-details li {
    font-size: 0.88rem;
}

.bg-overlay-img {
    background-size: cover;
    background-position: center;
    position: relative;
}

.bg-overlay-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 18, 33, 0.85);
    z-index: 0;
}

.bg-overlay-img > * {
    position: relative;
    z-index: 1;
}

/* Why Choose Us & Stats */
.choose-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
}

.choose-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    font-size: 1.8rem;
    background-color: rgba(255, 255, 255, 0.04);
    border: var(--border-glass);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.feature-item p {
    font-size: 0.88rem;
}

.stat-big-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.floating-circle-decor {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    opacity: 0.15;
}

.stat-circle-accent {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.stat-circle-accent h3 {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--gold);
}

.stat-circle-accent p {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-grid-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mini-stat-item {
    text-align: center;
}

.mini-num {
    font-size: 1.6rem;
    color: var(--white);
}

.mini-stat-item p {
    font-size: 0.78rem;
}

/* Taxi Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vehicle-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.vehicle-icon-top {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.vehicle-title-row {
    margin-bottom: 12px;
}

.vehicle-title-row h3 {
    font-size: 1.25rem;
    margin-bottom: 2px;
}

.vehicle-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 700;
}

.vehicle-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.price-row {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    margin-bottom: 15px;
}

.vehicle-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.vehicle-price span {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 400;
}

.vehicle-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Testimonials Slider styling */
.testimonial-container {
    max-width: 700px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 240px;
}

.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    padding: 30px;
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeSlideIn 0.5s ease-in-out;
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    font-size: 2rem;
}

.verified-badge {
    display: block;
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
}

.review-text {
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.6;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--accent-blue);
    width: 25px;
    border-radius: 50px;
}

/* Masonry Photo Gallery */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: var(--border-glass);
    color: var(--text-gray);
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent-blue);
    color: var(--white);
    border-color: var(--accent-blue);
}

.gallery-grid {
    columns: 3 280px;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--border-radius-lg);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 18, 33, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.gallery-hover-overlay h4 {
    font-size: 1.1rem;
    color: var(--white);
}

.gallery-hover-overlay p {
    font-size: 0.8rem;
    color: var(--gold);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 5000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(6, 10, 18, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    animation: zoomLightbox 0.3s ease-out;
}

@keyframes zoomLightbox {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--accent-blue);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--text-gray);
    padding: 15px 0;
    font-size: 0.95rem;
}

/* Reservation & Booking Form Section */
.booking-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.quick-contact-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.q-feature {
    display: flex;
    gap: 15px;
}

.q-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.04);
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.q-feature h5 {
    font-size: 0.95rem;
    color: var(--white);
}

.q-feature p {
    font-size: 0.85rem;
}

.booking-main-card {
    padding: 40px;
}

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

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-control-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.form-control-wrapper label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-gray);
}

.form-control-wrapper input, .form-control-wrapper select, .form-control-wrapper textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-control-wrapper input:focus, .form-control-wrapper select:focus, .form-control-wrapper textarea:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

.form-submit-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svg-wa {
    width: 16px;
    height: 16px;
}

/* FAQ Accordions */
.faq-accordion-container {
    max-width: 800px;
}

.faq-item {
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-icon-arrow {
    font-size: 1.4rem;
    color: var(--gold);
    transition: var(--transition-smooth);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.faq-content p {
    padding-bottom: 24px;
    font-size: 0.92rem;
    color: var(--text-gray);
}

/* Open Accordion State */
.faq-item.active {
    border-color: rgba(212, 175, 55, 0.25);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(45deg);
    color: var(--accent-blue);
}

/* Contact Section & Maps */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.contact-detail-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.c-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.04);
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.98rem;
    color: var(--white);
}

.contact-item p {
    font-size: 0.85rem;
}

.map-iframe-card {
    padding: 10px;
    overflow: hidden;
}

/* Footer styling */
.footer-section {
    background-color: rgba(6, 10, 18, 0.95);
    border-top: var(--border-glass);
    padding: 80px 0 20px 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-top: 15px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.04);
    border: var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.social-icon:hover {
    background-color: var(--accent-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links-col h4 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col li {
    font-size: 0.85rem;
}

.footer-links-col a {
    color: var(--text-gray);
}

.footer-links-col a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    font-size: 0.78rem;
    color: var(--text-gray);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Floating WhatsApp Widget */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    z-index: 998;
    transition: var(--transition-smooth);
}

.floating-whatsapp-widget:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background-color: rgba(11, 18, 33, 0.9);
    border: var(--border-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.floating-whatsapp-widget:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Animation triggers (Intersection Observer) */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .top-bar-flex {
        justify-content: center;
        text-align: center;
    }
    
    .form-grid-2, .form-grid-3 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .top-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2.2rem; }
    .hero-stats-row {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ADDITIONAL PREMIUM LUXURY UPGRADE STYLES
   ========================================================================== */

/* Floating Call Widget */
.floating-call-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
    z-index: 998;
    transition: var(--transition-smooth);
}

.floating-call-widget:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

.pulse-effect-gold {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--gold);
    border-radius: 50%;
    z-index: -1;
    animation: goldPulse 2s infinite;
}

@keyframes goldPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.call-tooltip {
    position: absolute;
    left: 75px;
    background-color: rgba(11, 18, 33, 0.9);
    border: var(--border-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.floating-call-widget:hover .call-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Premium Fleet Image Floating */
.vehicle-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(31, 41, 55, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: var(--transition-smooth);
    padding: 30px;
    border-radius: var(--border-radius-lg);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.vehicle-img-wrapper {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.vehicle-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.5));
}

.vehicle-card:hover .vehicle-img-wrapper img {
    transform: scale(1.06) translateY(-5px);
    filter: drop-shadow(0 20px 20px rgba(212, 175, 55, 0.25));
}

/* About Company Upgrade */
.about-section {
    position: relative;
    background: rgba(11, 18, 33, 0.95);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-left {
    position: relative;
}

.about-img-box {
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gold);
    box-shadow: var(--shadow-gold);
    overflow: hidden;
    position: relative;
}

.about-img-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-img-box:hover img {
    transform: scale(1.03);
}

.about-right h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature-card {
    background: rgba(255,255,255,0.02);
    border: var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    transition: var(--transition-smooth);
}

.about-feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    background: rgba(212,175,55,0.02);
}

.about-feature-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.about-feature-card h4 {
    margin-bottom: 8px;
    color: var(--white);
}

.about-feature-card p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Destinations Cards Premium styles */
.dest-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    border: var(--border-glass);
    background: rgba(31, 41, 55, 0.45);
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dest-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.12);
}

.dest-img-container {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.dest-badge-top {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(11, 18, 33, 0.85);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.dest-price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--primary-bg);
    padding: 6px 14px;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.dest-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dest-info h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 10px;
}

.dest-info p {
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.dest-actions {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
}

/* Taxi Rental Grid */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.rental-card {
    background: rgba(31, 41, 55, 0.35);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    transition: var(--transition-smooth);
    text-align: left;
}

.rental-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.rental-card-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.rental-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.rental-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.rental-card-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.rental-card-link:hover {
    gap: 10px;
}

/* Google Review Photo Verification */
.user-avatar-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

/* Interactive Tour & Package Explorer Modal Overlay */
.package-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    background-color: rgba(6, 10, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow-y: auto;
    padding: 30px 10px;
}

.modal-container {
    max-width: 1050px;
    margin: 30px auto;
    padding: 35px;
    background: rgba(17, 24, 39, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 50px rgba(212, 175, 55, 0.06);
}

.modal-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.04);
    border: var(--border-glass);
    color: var(--text-gray);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 25px;
    padding-right: 50px;
}

.modal-header h2 {
    font-size: 2.2rem;
    color: var(--white);
}

.modal-header p {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    margin-top: 5px;
}

.package-tabs {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
}

.package-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: var(--text-gray);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--white);
}

.tab-btn.active {
    color: var(--gold);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.package-content-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 35px;
}

.itinerary-timeline {
    position: relative;
    padding-left: 25px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.timeline-step {
    position: relative;
    margin-bottom: 22px;
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -24px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-bg);
    border: 2px solid var(--gold);
    box-shadow: 0 0 6px var(--gold);
    transition: var(--transition-smooth);
}

.timeline-step:hover::before {
    transform: scale(1.3);
    background-color: var(--gold);
}

.step-day {
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--white);
    margin: 1px 0 4px 0;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.45;
}

.package-summary-card {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    align-self: start;
}

.price-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
}

.price-value {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--gold);
}

.badge-class {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.package-specs {
    list-style: none;
    margin-bottom: 25px;
}

.package-specs li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
}

.package-specs li strong {
    color: var(--white);
}

.inclusions-exclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 25px;
}

.inclusions-box h4, .exclusions-box h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.inclusions-box h4 { color: #22C55E; }
.exclusions-box h4 { color: #EF4444; }

.inclusions-box ul, .exclusions-box ul {
    list-style: none;
}

.inclusions-box li, .exclusions-box li {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 7px;
    padding-left: 16px;
    position: relative;
    color: var(--text-gray);
}

.inclusions-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22C55E;
}

.exclusions-box li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #EF4444;
}

.action-buttons-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

/* Print Itinerary Container (For standard Browser PDF generation) */
#print-itinerary-container {
    display: none;
}

/* @media Print Configuration */
@media print {
    body {
        background: #ffffff !important;
        color: #000000 !important;
    }
    
    /* Hide everything on the webpage except our print helper container */
    body > *:not(#print-itinerary-container) {
        display: none !important;
    }
    
    #print-itinerary-container {
        display: block !important;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        color: #000000 !important;
        background: #ffffff !important;
        padding: 30px;
        font-family: 'Inter', Arial, sans-serif;
    }
    
    .print-header {
        border-bottom: 3px solid #D4AF37;
        padding-bottom: 15px;
        margin-bottom: 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .print-logo-text {
        font-size: 22px;
        font-weight: bold;
        color: #0B1221;
        letter-spacing: -0.02em;
    }
    
    .print-contact {
        text-align: right;
        font-size: 11px;
        color: #444444;
        line-height: 1.4;
    }
    
    .print-title {
        font-size: 26px;
        font-weight: 700;
        color: #0B1221;
        margin-bottom: 8px;
    }
    
    .print-tagline {
        font-style: italic;
        color: #D4AF37;
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .print-meta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        border: 1px solid #cccccc;
        padding: 15px;
        border-radius: 6px;
        margin-bottom: 25px;
        font-size: 12px;
    }
    
    .print-meta-item {
        margin-bottom: 6px;
    }
    
    .print-meta-item strong {
        color: #000000;
    }
    
    .print-itinerary-days {
        margin-bottom: 25px;
    }
    
    .print-day-block {
        margin-bottom: 18px;
        page-break-inside: avoid;
    }
    
    .print-day-num {
        font-weight: bold;
        color: #D4AF37;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border-bottom: 1px solid #dddddd;
        padding-bottom: 3px;
        margin-bottom: 5px;
    }
    
    .print-day-title {
        font-weight: bold;
        font-size: 15px;
        color: #0B1221;
        margin-bottom: 4px;
    }
    
    .print-day-desc {
        font-size: 11px;
        line-height: 1.45;
        color: #333333;
    }
    
    .print-inc-exc {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin-top: 25px;
        page-break-inside: avoid;
    }
    
    .print-box-title {
        font-weight: bold;
        font-size: 13px;
        margin-bottom: 8px;
        border-bottom: 1.5px solid #cccccc;
        padding-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }
    
    .print-inc-title { color: #16A34A; }
    .print-exc-title { color: #DC2626; }
    
    .print-list {
        list-style: none;
        padding-left: 0;
    }
    
    .print-list li {
        font-size: 10px;
        margin-bottom: 5px;
        padding-left: 12px;
        position: relative;
        color: #333333;
    }
    
    .print-list li::before {
        content: '•';
        position: absolute;
        left: 0;
        font-size: 13px;
        top: -1px;
    }
    
    .print-inc-list li::before { color: #16A34A; }
    .print-exc-list li::before { color: #DC2626; }
    
    .print-footer {
        margin-top: 40px;
        border-top: 1px solid #cccccc;
        padding-top: 12px;
        text-align: center;
        font-size: 9px;
        color: #666666;
    }
}

/* Additional Responsive Media Queries */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-box img {
        height: 320px;
    }
    
    .package-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .modal-container {
        padding: 20px;
        margin: 15px auto;
    }
    
    .inclusions-exclusions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-buttons-row {
        grid-template-columns: 1fr;
    }
    
    .dest-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .floating-whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-call-widget {
        bottom: 20px;
        left: 20px;
    }
}

