/* ==========================================================================
   TWOMINS TAXI - INDIAN ASTROLOGY THEME LANDING PAGE STYLES
   Ultra Mobile-Responsive & Pixel-Perfect Alignment Sheet
   Color Strategy (60-30-10 Rule):
   - 60% Primary: Midnight Celestial Navy (#0A0F1D, #0F172A)
   - 30% Secondary: Royal Slate & Indigo (#1E293B, #162032)
   - 10% Accent: Honey Gold & Electric Neon Yellow (#F59E0B, #FACC15)
   - Contrast Rule: Dark Charcoal (#1A1A1A) text on Yellow/Gold Buttons
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROOT & GLOBAL RESET
   -------------------------------------------------------------------------- */
:root {
    --bg-primary: #0A0F1D;
    --bg-secondary: #0F172A;
    --card-bg: #1E293B;
    --card-bg-glass: rgba(30, 41, 59, 0.82);
    
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-dark: #1A1A1A;
    
    --accent-gold: #F59E0B;
    --accent-gold-glow: #FACC15;
    --accent-gold-dark: #D97706;
    
    --accent-green: #10B981;
    --accent-green-glow: #34D399;
    
    --border-color: rgba(245, 158, 11, 0.25);
    --border-glow: rgba(250, 204, 21, 0.6);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

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

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Canvas Background for Constellation Starfield */
#cosmicCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

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

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

/* Touch Target Sizes */
input, select, button, .btn-neon, .nav-link, .tab-btn {
    min-height: 46px;
}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY & ALIGNMENT UTILITIES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.25;
}

.glow-text-gold {
    color: var(--accent-gold-glow);
    text-shadow: 0 0 16px rgba(250, 204, 21, 0.5);
}

.highlight-gold {
    color: var(--accent-gold);
}

.sub-heading-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-gold-glow);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 4.2vw, 2.85rem);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: clamp(0.92rem, 2vw, 1.05rem);
    max-width: 680px;
    margin: 0 auto 36px auto;
}

.title-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold-glow), transparent);
    margin: 8px auto 16px auto;
    border-radius: 2px;
}

.section-padding {
    padding: 70px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 46px 0;
    }
}

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

/* --------------------------------------------------------------------------
   3. NEON BUTTONS & ANIMATIONS
   -------------------------------------------------------------------------- */
.btn-neon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.02rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all var(--transition-fast);
    z-index: 1;
    overflow: hidden;
}

/* Legal Contrast Rule: Dark Charcoal Text on Yellow Button */
.btn-neon-gold {
    background: linear-gradient(135deg, #FACC15 0%, #F59E0B 100%);
    color: var(--text-dark) !important;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5), 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-neon-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 32px rgba(250, 204, 21, 0.85), 0 8px 25px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #FEF08A 0%, #FACC15 100%);
}

.btn-neon-green {
    background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    color: var(--text-dark) !important;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5), 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-neon-green:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 32px rgba(52, 211, 153, 0.85), 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.9rem;
    min-height: 40px;
}

.btn-xs {
    padding: 7px 14px;
    font-size: 0.82rem;
    min-height: 36px;
}

/* Icon Animations */
.icon-animated-shake {
    animation: iconShake 2.5s infinite ease-in-out;
}

.icon-animated-pulse {
    animation: iconPulse 1.8s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

.icon-animated-float {
    animation: iconFloat 2s infinite ease-in-out;
}

.icon-spin-slow {
    animation: iconSpin 12s linear infinite;
}

@keyframes iconShake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-14deg) scale(1.1); }
    20%, 40% { transform: rotate(14deg) scale(1.1); }
    50% { transform: rotate(0deg); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); filter: drop-shadow(0 0 6px rgba(255,255,255,0.8)); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   4. TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.top-announcement {
    background: linear-gradient(90deg, #171F38 0%, #0F172A 50%, #171F38 100%);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding: 8px 0;
    font-size: 0.85rem;
}

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

.announcement-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.badge-astro {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold-glow);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.78rem;
}

.top-phone {
    color: var(--accent-gold-glow);
    font-weight: 700;
}

.top-phone:hover {
    text-shadow: 0 0 10px var(--accent-gold);
}

@media (max-width: 768px) {
    .announcement-content {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .announcement-left {
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 15, 29, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-fast);
}

.main-header.scrolled {
    background: rgba(10, 15, 29, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(245, 158, 11, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}

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

.brand-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    background: #0A0F1D;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 14px rgba(245, 158, 11, 0.45);
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.1;
    display: block;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--text-secondary);
    display: block;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold-glow);
    transition: width var(--transition-fast);
    box-shadow: 0 0 8px var(--accent-gold);
}

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

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold-glow);
}

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

@media (max-width: 768px) {
    .header-container {
        justify-content: center;
    }

    .brand-logo-link {
        margin: 0 auto;
        justify-content: center;
    }

    .header-ctas {
        display: none;
    }
}

.mobile-toggle {
    display: none;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Header layout for mobile screens */
@media (max-width: 576px) {
    .header-container {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .brand-logo-img {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        font-size: 1.15rem;
    }
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 60px 0 80px 0;
    background: radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.14) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(30, 41, 59, 0.8) 0%, transparent 70%),
                var(--bg-primary);
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 36px 0 54px 0;
    }
}

.astrology-mandala-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    border: 1px dashed rgba(245, 158, 11, 0.15);
    border-radius: 50%;
    pointer-events: none;
    animation: iconSpin 60s linear infinite;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.12fr 0.88fr;
    }
}

.hero-content {
    text-align: left;
}

@media (max-width: 991px) {
    .hero-content {
        text-align: center;
    }
}

.hero-astro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    color: var(--accent-gold-glow);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(0.98rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

@media (max-width: 991px) {
    .hero-cta-group {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary, .btn-hero-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

.btn-hero-primary, .btn-hero-whatsapp {
    padding: 15px 28px;
    border-radius: var(--radius-full);
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.btn-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.btn-main {
    font-size: 1.05rem;
    font-weight: 800;
}

/* Hero Social Proof Bar - Perfectly Aligned & Bulletproof */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.98));
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(245, 158, 11, 0.15);
    backdrop-filter: blur(12px);
    width: 100%;
}

.sp-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    border: 1.5px solid var(--accent-gold);
    color: var(--accent-gold-glow);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.25);
}

.sp-details {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.25;
}

.sp-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-score {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: #FFFFFF;
}

.sp-stars {
    color: var(--accent-gold-glow);
    display: flex;
    gap: 2px;
    font-size: 0.72rem;
}

.sp-main {
    font-size: 0.92rem;
    color: #FFFFFF;
}

.sp-sub {
    font-size: 0.76rem;
    color: var(--text-secondary);
}

.sp-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.14);
    flex-shrink: 0;
}

/* Mobile & Tablet Social Proof Alignment */
@media (max-width: 991px) {
    .hero-social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 20px;
    }

    .sp-item {
        width: 100%;
        justify-content: flex-start;
    }

    .sp-divider {
        display: none;
    }
}

/* Hero Quick Booking Form Card */
.hero-form-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.15);
    backdrop-filter: blur(16px);
    position: relative;
    width: 100%;
}

.form-header {
    margin-bottom: 20px;
    text-align: center;
}

.form-header-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--text-dark);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 6px;
}

.form-header h3 {
    font-size: 1.4rem;
    color: #FFFFFF;
}

.form-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--accent-gold-glow);
}

.form-group input, .form-group select {
    background: rgba(10, 15, 29, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all var(--transition-fast);
    width: 100%;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--accent-gold-glow);
    box-shadow: 0 0 12px rgba(250, 204, 21, 0.3);
    background: rgba(10, 15, 29, 0.95);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-submit-btn {
    margin-top: 6px;
    padding: 14px;
    font-size: 1rem;
}

.form-footer-note {
    font-size: 0.72rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   7. ASTROLOGY SHUBH YATRA FEATURES
   -------------------------------------------------------------------------- */
.shubh-yatra-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--card-bg-glass);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold-glow), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold-glow);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px auto;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-astro {
    font-size: 1.85rem;
    color: var(--accent-gold-glow);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   8. FLEET & SERVICES SHOWCASE
   -------------------------------------------------------------------------- */
.services-section {
    background: var(--bg-primary);
}

.service-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

@media (max-width: 640px) {
    .service-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
}

.tab-btn {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 9px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--accent-gold);
    color: var(--text-dark);
    border-color: var(--accent-gold-glow);
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.5);
}

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

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

.fleet-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 158, 11, 0.25);
}

.fleet-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    background: #000;
    overflow: hidden;
}

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

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

.fleet-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-gold);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.tag-luxury {
    background: #E2E8F0;
    color: #0F172A;
}

.tag-gold {
    background: linear-gradient(90deg, #FACC15, #F59E0B);
}

.fleet-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.fleet-name {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.fleet-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.fleet-specs {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
}

.fleet-specs li {
    font-size: 0.8rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.fleet-specs li i {
    color: var(--accent-gold-glow);
}

.fleet-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-gold-glow);
}

.fleet-actions {
    display: flex;
    gap: 6px;
}

/* --------------------------------------------------------------------------
   9. POPULAR ROUTES & PILGRIMAGE
   -------------------------------------------------------------------------- */
.routes-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.route-card {
    background: var(--card-bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: all var(--transition-fast);
    text-align: left;
}

.route-card:hover {
    border-color: var(--accent-gold-glow);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.route-header {
    margin-bottom: 10px;
}

.route-icon {
    font-size: 1.85rem;
    color: var(--accent-gold-glow);
    margin-bottom: 6px;
}

.route-header h3 {
    font-size: 1.2rem;
}

.route-days {
    display: inline-block;
    font-size: 0.72rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.route-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.route-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 12px;
}

.route-price {
    font-size: 0.78rem;
    color: #34D399;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   10. SOCIAL PROOF & TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-section {
    background: var(--bg-primary);
}

.google-review-banner {
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .google-review-banner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .gr-left {
        flex-direction: column;
        align-items: center;
    }
}

.gr-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.google-g-logo {
    width: 36px;
    height: 36px;
}

.gr-score {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFFFFF;
}

.gr-stars {
    color: var(--accent-gold-glow);
    display: flex;
    gap: 3px;
    font-size: 0.9rem;
}

.gr-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--card-bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition-fast);
    text-align: left;
}

.testimonial-card:hover {
    border-color: var(--accent-gold-glow);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-glow);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.user-meta h4 {
    font-size: 1rem;
}

.user-loc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.testi-badge {
    margin-left: auto;
    font-size: 0.7rem;
    color: #34D399;
    font-weight: 700;
}

.testi-stars {
    color: var(--accent-gold-glow);
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.testi-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. CONTACT & LOCATION SECTION
   -------------------------------------------------------------------------- */
.contact-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-card, .contact-action-card {
    background: var(--card-bg-glass);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    text-align: left;
}

.contact-info-card h3, .contact-action-card h3 {
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.c-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-glow);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.c-details {
    display: flex;
    flex-direction: column;
}

.c-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.c-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    word-break: break-word;
}

.c-value-address {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.map-card-header {
    margin-bottom: 16px;
}

.map-card-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.map-container {
    margin-bottom: 18px;
    overflow: hidden;
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 14px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.8s ease;
}

.map-container iframe {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: 12px;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.02);
}

/* Map Zoom-In Animation Classes & Keyframes */
.map-container.map-animate-zoom {
    animation: mapZoomPulse 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.map-container.map-animate-zoom iframe {
    animation: iframeInnerZoom 1.4s ease-out forwards;
}

@keyframes mapZoomPulse {
    0% {
        transform: scale(0.86);
        opacity: 0.3;
        border-color: rgba(250, 204, 21, 0.1);
        box-shadow: 0 0 0 rgba(245, 158, 11, 0);
    }
    60% {
        transform: scale(1.04);
        opacity: 1;
        border-color: var(--accent-gold-glow);
        box-shadow: 0 0 32px rgba(250, 204, 21, 0.6);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        border-color: rgba(245, 158, 11, 0.5);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.25);
    }
}

@keyframes iframeInnerZoom {
    0% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.main-footer {
    background: #060913;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    padding-bottom: 40px;
    text-align: left;
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-gold-glow);
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #FFFFFF;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--accent-gold);
    margin-top: 5px;
}

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

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-col ul li a:hover {
    color: var(--accent-gold-glow);
    padding-left: 4px;
}

.footer-col.contact-col p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col.contact-col p i {
    color: var(--accent-gold-glow);
}

.footer-bottom {
    background: #03050B;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

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

@media (max-width: 640px) {
    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

.astro-tag {
    color: var(--accent-gold-glow);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   13. STICKY FLOATING CTA BAR (MOBILE OPTIMIZED)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    body {
        padding-bottom: 64px;
    }
}

.floating-cta-bar {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    display: flex;
    gap: 8px;
    width: 94%;
    max-width: 440px;
    background: rgba(15, 23, 42, 0.96);
    border: 1.5px solid var(--accent-gold);
    padding: 6px 10px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(245, 158, 11, 0.4);
    backdrop-filter: blur(14px);
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    border: none;
    cursor: pointer;
    flex: 1;
    white-space: nowrap;
}

.float-call {
    background: linear-gradient(135deg, #FACC15, #F59E0B);
    color: var(--text-dark);
}

.float-book {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-wa {
    background: linear-gradient(135deg, #34D399, #10B981);
    color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   14. POPUP MODAL (100% Responsive & Centered)
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 9, 19, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

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

.modal-card {
    background: linear-gradient(145deg, #1E293B 0%, #0F172A 100%);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    padding: 36px 24px 28px 24px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(245, 158, 11, 0.35);
    transform: scale(0.85);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--accent-gold-glow);
}

.modal-header-astro {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-gold-glow);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.modal-tagline {
    font-size: clamp(1.6rem, 5vw, 2.1rem);
    color: #FFFFFF;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.modal-subtext {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.modal-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.modal-btn {
    padding: 15px;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
}

.modal-footer-badge {
    font-size: 0.75rem;
    color: #34D399;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* --------------------------------------------------------------------------
   SEO KEYWORDS & CALL BUTTONS SECTION
   -------------------------------------------------------------------------- */
.seo-keywords-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #060913 100%);
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.seo-keywords-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1100px) {
    .seo-keywords-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .seo-keywords-grid {
        grid-template-columns: 1fr;
    }
}

.seo-kw-col {
    background: var(--card-bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.seo-col-title {
    font-size: 1.05rem;
    color: var(--accent-gold-glow);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
}

.seo-btn-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.seo-kw-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 15, 29, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.84rem;
    transition: all var(--transition-fast);
    text-align: left;
    min-height: 40px;
}

.seo-kw-btn:hover {
    background: linear-gradient(135deg, #FACC15, #F59E0B);
    color: var(--text-dark) !important;
    border-color: var(--accent-gold-glow);
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.kw-text {
    font-weight: 500;
    line-height: 1.3;
}

.kw-icon {
    font-size: 0.8rem;
    color: var(--accent-gold-glow);
    background: rgba(245, 158, 11, 0.15);
    padding: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 8px;
    transition: all var(--transition-fast);
}

.seo-kw-btn:hover .kw-icon {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.15);
}
