/* Enhanced booking form title */
.booking-form-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--primary-color, #6c47ff);
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    line-height: 1.15;
    word-break: break-word;
}
.booking-form-highlight {
    color: var(--accent-color, #ff8c00);
    font-weight: 900;
    margin-left: 0.4rem;
    font-size: 1.15em;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(255,140,0,0.08);
}

 .booking-form-footer-spacer {
    height: 3.5rem;
    width: 100%;
}
/* Multi-step Booking Form Enhancements */
.form-step {
    animation: fadeInStep 0.4s;
}
@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-progress {
    width: 100%;
    margin: 1.5rem 0 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.progress-bar {
    width: 80%;
    height: 8px;
    background: var(--card-bg, #23243a);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.7rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.progress-bar-inner {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    width: 33%;
    border-radius: 4px;
    transition: width 0.3s;
}
.progress-steps {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 0.2rem;
}
.progress-step {
    width: 2rem;
    height: 2rem;
    background: var(--card-bg, #23243a);
    color: var(--text-muted, #b3b6c6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--card-bg, #23243a);
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.progress-step.active {
    background: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
    box-shadow: 0 2px 8px var(--glow-accent, rgba(107,70,255,0.18));
}
.booking-summary {
    background: var(--card-bg, #23243a);
    border-radius: 1rem;
    padding: 1.2rem 1rem;
    margin: 1rem 0 1.5rem 0;
    box-shadow: 0 2px 12px rgba(0,240,255,0.10);
    color: var(--text-color, #fff);
    font-size: 1.08rem;
}
.summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.summary-list li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}
.btn-next, .btn-prev {
    width: 100%;
    min-width: unset;
    margin: 0.5rem 0 0.5rem 0;
    display: block;
}

.booking-form .btn-submit[type="submit"] {
    width: 100%;
    min-width: unset;
    margin: 0.5rem 0 0.5rem 0;
    display: block;
}
@media (max-width: 600px) {
    .form-progress { width: 100%; }
    .progress-bar { width: 100%; }
    .progress-step { width: 1.5rem; height: 1.5rem; font-size: 1rem; }
    .booking-summary { font-size: 0.98rem; padding: 0.8rem 0.5rem; }
    .hamburger {
        display: flex !important;
        z-index: 1002;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(40px) saturate(180%);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        border-top: 1px solid var(--border-color);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        padding: 1rem 0;
    }
    .dropdown-menu {
        display: none;
        position: static;
        opacity: 1;
        background: none;
        box-shadow: none;
        border-radius: 0;
        min-width: unset;
        padding: 0;
        margin: 0;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Highlighted Accommodation & Packages Section Styles */
.highlighted-services {
    margin: 3rem 0 2rem 0;
    padding: 2rem 1.5rem;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 240, 255, 0.12);
    color: var(--text-color);
    text-align: center;
    position: relative;
    z-index: 2;
}
.highlighted-services h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.highlighted-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.highlight-card {
    background: var(--card-bg);
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(123, 47, 247, 0.08);
    padding: 1.5rem 1.2rem;
    min-width: 220px;
    max-width: 300px;
    flex: 1 1 220px;
    color: var(--text-color);
    transition: transform 0.2s, box-shadow 0.2s;
}
.highlight-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px var(--glow-primary);
}
.highlight-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}
.highlight-card p {
    font-size: 1rem;
    color: var(--text-muted);
}
.btn-primary {
    display: inline-block;
    /* margin-top removed to prevent unwanted top padding in hero section */
    padding: 0.8rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent-color);
    border: none;
    border-radius: 2rem;
    box-shadow: 0 4px 16px var(--glow-accent), -8px 0 24px var(--glow-primary);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
    background: var(--secondary-color);
    box-shadow: 0 8px 32px var(--glow-secondary);
}

/* Accommodation Page Styles - Unified Spacing */
.accommodation-main {
    margin: 2.2rem auto 1.5rem auto;
    max-width: 1100px;
    padding: 1.5rem 1.2rem;
    background: var(--dark-bg);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(123, 47, 247, 0.10);
}
.accommodation-main h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    text-align: center;
}
.property-showcase {
    margin-bottom: 1.5rem;
    background: var(--card-bg);
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 240, 255, 0.08);
    padding: 1.2rem 1rem;
}
.property-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
}
.property-card {
    background: var(--gradient-accent);
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(255, 0, 110, 0.08);
    padding: 1.1rem 1rem;
    min-width: 220px;
    max-width: 300px;
    flex: 1 1 220px;
    color: var(--text-color);
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}
.property-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 0.7rem;
    margin-bottom: 0.7rem;
}
.property-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}
.property-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.property-card ul li {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}
.package-options {
    margin: 2.2rem auto 2.2rem auto;
    max-width: 1100px;
    background: #181924;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
}
.package-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
}
/* Highlighted centered header styles for package section */
.centered-header {
    margin-bottom: 2.5rem;
}
.centered-header .page-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.centered-header .page-subtitle {
    font-size: 1.15rem;
    color: #b3b6c6;
    margin-bottom: 2.2rem;
    font-weight: 500;
}
.package-card {
    background: #23243a;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-width: 220px;
    max-width: 300px;
    flex: 1 1 220px;
    color: #e3e4ed;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.package-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px var(--glow-secondary);
    z-index: 2;
}
.package-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #fff;
}
.package-card p {
    font-size: 1.05rem;
    color: #b3b6c6;
    margin-bottom: 0.5rem;
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, #3a3b5a 0%, #23243a 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    letter-spacing: 1px;
    z-index: 3;
}
.package-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b3b6c6;
}
.booking-form {
    background: var(--gradient-primary);
    border-radius: 1rem;
    box-shadow: 0 4px 16px var(--glow-primary);
    padding: 2rem 1.5rem;
    margin-top: 2rem;
    color: var(--text-color);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.booking-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    text-align: center;
}
.booking-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.booking-form label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}
.booking-form select,
.booking-form button {
    padding: 0.7rem 1rem;
    border-radius: 0.7rem;
    border: none;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.booking-form select {
    background: var(--card-bg);
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0, 240, 255, 0.08);
}
.booking-form button {
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px var(--glow-accent);
    transition: background 0.2s, box-shadow 0.2s;
}
.booking-form button:hover {
    background: var(--secondary-color);
    box-shadow: 0 8px 32px var(--glow-secondary);
}

/* Enhanced booking form visuals */
.booking-form {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius: 1.25rem;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 18px 50px rgba(3,7,18,0.6), 0 4px 14px rgba(0,0,0,0.25) inset;
    padding: 2.4rem 2rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-form .form-row { position: relative; }
.booking-form input,
.booking-form select {
    background: rgba(255,255,255,0.10);
    border: 1.5px solid var(--primary-color);
    padding: 1.15rem 1.2rem;
    color: var(--text-color);
    border-radius: 1.1rem;
    font-size: 1.15rem;
    font-weight: 500;
    transition: all 0.18s ease;
    min-width: 220px;
    width: 100%;
    box-shadow: 0 2px 12px rgba(0,240,255,0.10);
}

.booking-form input::placeholder {
    color: rgba(255,255,255,0.75);
    font-size: 1.08rem;
    font-weight: 400;
}

.booking-form select {
    background: var(--card-bg);
    color: var(--text-color);
    box-shadow: 0 4px 16px rgba(0, 240, 255, 0.18);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 1.15rem;
    font-weight: 500;
    padding-right: 2.5rem;
    cursor: pointer;
}

.booking-form .btn-submit {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    padding: 1.1rem 2.2rem;
    border-radius: 1.2rem;
    font-size: 1.18rem;
    letter-spacing: 0.7px;
    border: none;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(107,70,255,0.18), 0 6px 18px rgba(255,0,110,0.12);
    margin-top: 0.7rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.08rem;
    letter-spacing: 0.02em;
}
.booking-form .helper-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.35rem;
}

/* Add spacing between booking form rows */
.booking-form .form-row {
    margin-bottom: 1.3rem;
}

.booking-form .btn-submit {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    padding: 0.9rem 1.1rem;
    border-radius: 1rem;
    font-size: 1.02rem;
    letter-spacing: 0.6px;
    border: none;
    box-shadow: 0 18px 40px rgba(107,70,255,0.12), 0 6px 18px rgba(255,0,110,0.08);
}

.booking-form .btn-submit:hover {
    transform: translateY(-4px) scale(1.01);
}

/* Inline field error */
.field-error {
    color: #ffb4b4;
    background: rgba(255,75,75,0.06);
    padding: 0.45rem 0.65rem;
    border-radius: 0.6rem;
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

@media (max-width: 760px) {
    .booking-form { padding: 1.6rem 1.2rem; }
    .booking-form { max-width: 100%; }
}

/* Smooth transitions for theme switching */
*,
*::before,
*::after {
    transition-property: background-color, border-color, color, box-shadow;
    transition-duration: 0.4s;
    transition-timing-function: ease;
}

:root {
    --primary-color: #00F0FF;
    --secondary-color: #7B2FF7;
    --accent-color: #FF006E;
    --dark-bg: #0A0A0F;
    --dark-color: #0F1117;
    --dark-secondary: #12121A;
    --card-bg: rgba(15, 15, 25, 0.6);
    --text-color: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-color: rgba(0, 240, 255, 0.15);
    --glow-primary: rgba(0, 240, 255, 0.6);
    --glow-secondary: rgba(123, 47, 247, 0.6);
    --glow-accent: rgba(255, 0, 110, 0.6);
    
    --gradient-primary: linear-gradient(135deg, #00F0FF 0%, #7B2FF7 100%);
    --gradient-accent: linear-gradient(135deg, #FF006E 0%, #7B2FF7 100%);
    
    --shadow-glow: 0 0 60px var(--glow-primary);
    --shadow-neon: 0 0 20px var(--glow-primary), 0 0 40px var(--glow-primary);
    
    --grid-opacity: 0.03;
    --gradient-overlay-1: rgba(0, 240, 255, 0.15);
    --gradient-overlay-2: rgba(123, 47, 247, 0.15);
    --gradient-overlay-3: rgba(255, 0, 110, 0.08);
}

/* Light Theme */
body.light-theme {
    --primary-color: #2D6CFF;
    --secondary-color: #6B46FF;
    --accent-color: #FF2B7E;
    --dark-bg: #F8F9FA;
    --dark-secondary: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.8);
    --text-color: #1A1A1A;
    --text-muted: rgba(0, 0, 0, 0.6);
    --border-color: rgba(45, 108, 255, 0.15);
    --glow-primary: rgba(45, 108, 255, 0.3);
    --glow-secondary: rgba(107, 70, 255, 0.3);
    --glow-accent: rgba(255, 43, 126, 0.3);
    
    --gradient-primary: linear-gradient(135deg, #2D6CFF 0%, #6B46FF 100%);
    --gradient-accent: linear-gradient(135deg, #FF2B7E 0%, #6B46FF 100%);
    
    --shadow-glow: 0 0 40px rgba(45, 108, 255, 0.2);
    --shadow-neon: 0 0 15px rgba(45, 108, 255, 0.3), 0 0 30px rgba(45, 108, 255, 0.2);
    
    --grid-opacity: 0.06;
    --gradient-overlay-1: rgba(45, 108, 255, 0.08);
    --gradient-overlay-2: rgba(107, 70, 255, 0.08);
    --gradient-overlay-3: rgba(255, 43, 126, 0.05);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--dark-bg);
    position: relative;
    transition: background-color 0.4s ease, color 0.4s ease;
    margin: 0;
    padding: 0;
    width: 100%;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
    animation: gridPulse 4s ease-in-out infinite;
    transition: opacity 0.4s ease;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 20%, var(--gradient-overlay-1) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, var(--gradient-overlay-2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, var(--gradient-overlay-3) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: gradientShift 15s ease-in-out infinite;
    transition: opacity 0.4s ease;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    .booking-form {
        background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(255,255,255,0.02));
        border-radius: 1rem;
        border: 1px solid rgba(255,255,255,0.04);
        box-shadow: 0 8px 30px rgba(12, 18, 35, 0.45);
        padding: 2.2rem 1.75rem;
        margin-top: 2rem;
        color: var(--text-color);
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }
    .booking-form h2 {
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--primary-color);
        text-align: center;
    }
    .booking-form form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem 1rem;
        align-items: start;
        align-content: start;
        width: 100%;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    .booking-form label {
        display: block;
        font-size: 0.92rem;
        font-weight: 600;
        color: var(--text-muted);
        margin-bottom: 0.2rem; /* closer to fields */
    }
    .booking-form .form-row {
        grid-column: span 1;
    }
    .booking-form .form-row.full {
        grid-column: 1 / -1;
    }
    .booking-form select,
    .booking-form input,
    .booking-form button {
        width: 100%;
        padding: 0.72rem 0.95rem; /* slightly tighter for visual density */
        border-radius: 0.75rem;
        border: 1px solid rgba(255,255,255,0.06);
        font-size: 0.98rem;
        background: var(--card-bg);
        color: var(--text-color);
        outline: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    .booking-form select:focus,
    .booking-form input:focus {
        box-shadow: 0 6px 24px rgba(0,0,0,0.25), 0 0 0 4px rgba(45,108,255,0.06);
        border-color: var(--primary-color);
    }

    /* Custom select arrow and padding so it matches other controls visually */
    .booking-form select {
        background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.08) 50%),
                          linear-gradient(135deg, rgba(255,255,255,0.08) 50%, transparent 50%),
                          linear-gradient(var(--card-bg), var(--card-bg));
        background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px), 0 0;
        background-size: 6px 6px, 6px 6px, 100% 100%;
        background-repeat: no-repeat;
        padding-right: 2.6rem; /* make room for arrow */
    }

    /* Center the form container and heading */
    .booking-form { text-align: left; }
    .booking-form .center-head { text-align: center; }
    .booking-form h2 { text-align: center; }

    /* Make submit button centered and slightly narrower to match other CTAs */
    .booking-form .form-row.full { display: flex; justify-content: center; }
    .booking-form .form-row.full .btn-submit {
        width: 300px;
        max-width: 90%;
    }

    /* Reduce vertical spacing between label and input globally inside form */
    .booking-form .form-row + .form-row { margin-top: 0.25rem; }
    .booking-form .btn-submit {
        background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
        color: #fff;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 8px 30px rgba(0,0,0,0.25);
        transition: transform 0.12s ease, box-shadow 0.12s ease;
    }
    .booking-form .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 40px rgba(0,0,0,0.35);
    }
    .booking-form .btn-submit:disabled {
        opacity: 0.65;
        cursor: not-allowed;
    }

    /* Make booking form single column on small screens */
    @media (max-width: 720px) {
        .booking-form form {
            grid-template-columns: 1fr;
        }
    }

    /* Notification */
    .notification {
        position: fixed;
        top: 100px;
        right: 20px;
        background: var(--primary-color);
        color: var(--dark-secondary);
        padding: 1rem 1.6rem;
        border-radius: 10px;
        box-shadow: 0 12px 40px rgba(12,18,35,0.45);
        z-index: 10000;
        font-weight: 700;
    }
    .notification-success {
        background: linear-gradient(90deg, #43e97b, #38f9d7);
        color: #072017;
    }

    .notification-info {
        background: linear-gradient(90deg, #4facfe, #00f2fe);
        color: #052034;
    }

    .notification-error {
        background: linear-gradient(90deg, #ff6b6b, #ff8e53);
        color: #3a0f0f;
    }

    /* Footer light-theme tweaks */
    body.light-theme .footer {
        background: linear-gradient(180deg, var(--dark-secondary), var(--dark-color));
    }
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.4));
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.2) drop-shadow(0 2px 8px rgba(0, 240, 255, 0.3));
}

body.light-theme .logo-img {
    filter: brightness(0.8) contrast(1.2) drop-shadow(0 2px 8px rgba(45, 108, 255, 0.2));
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 20px var(--glow-primary));
    text-transform: uppercase;
}

.logo-subtitle {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 4px;
    margin-top: -5px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--glow-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 10px var(--glow-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--glow-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(13, 2, 33, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    list-style: none;
    padding: 1.2rem 0;
    border-radius: 20px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(157, 78, 221, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    padding: 0.3rem 1rem;
    position: relative;
}

.dropdown-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 108, 255, 0.1), rgba(107, 138, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-menu a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.dropdown-menu a:hover::before {
    opacity: 1;
}

.theme-toggle {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-left: 1.5rem;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-primary);
    transform: scale(1.1) rotate(15deg);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.theme-toggle .sun-icon {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

body.light-theme .theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

body.light-theme .theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1002;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
/* Futuristic Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-bg);
    max-width: 100vw;
    width: 100%;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.transport-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    left: -100%;
    animation: moveLine 8s linear infinite;
}

.line-1 {
    top: 35%;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    animation-delay: 2.5s;
}

.line-3 {
    top: 65%;
    animation-delay: 5s;
}

@keyframes moveLine {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.moving-vehicles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.vehicle-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--glow-primary));
}

.vehicle-icon svg {
    width: 100%;
    height: 100%;
}

.bus-icon {
    top: 32%;
    animation: moveVehicle 12s linear infinite;
}

.car-icon {
    top: 47%;
    animation: moveVehicle 8s linear infinite;
    animation-delay: 2s;
    color: var(--accent-color);
}

.truck-icon {
    top: 62%;
    animation: moveVehicle 15s linear infinite;
    animation-delay: 5s;
    color: var(--secondary-color);
}

@keyframes moveVehicle {
    0% {
        left: -10%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 110%;
        opacity: 0;
    }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    opacity: 0.3;
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
}

.grid-line.vertical {
    height: 100%;
    width: 1px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.glitch-wrapper {
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title .line-1,
.hero-title .line-2 {
    color: #FFFFFF;
    position: relative;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 30px var(--glow-primary);
}

.hero-title .line-2 {
    letter-spacing: 20px;
    animation-delay: 0.4s;
}

@keyframes glitchText {
    0%, 90%, 100% {
        transform: translate(0);
    }
    91% {
        transform: translate(-2px, 2px);
    }
    92% {
        transform: translate(2px, -2px);
    }
    93% {
        transform: translate(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.typing-effect {
    display: inline-block;
    border-right: 2px solid var(--primary-color);
    padding-right: 5px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scanner-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    margin: 0 auto 1rem;
    animation: scanDown 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--glow-primary);
}

@keyframes scanDown {
    0%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(20px);
    }
}

.scroll-indicator p {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;}

/* Futuristic Buttons */
.btn {
    position: relative;
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 
        0 0 20px rgba(0, 240, 255, 0.3),
        inset 0 0 20px rgba(0, 240, 255, 0.05);
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: #000;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 30px rgba(0, 240, 255, 0.4),
        inset 0 0 20px rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 100%;
    background: var(--gradient-accent);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.4);
    transform: translateY(-3px);
}

.btn-light {
    background: #FFFFFF;
    color: var(--dark-bg);
    border: 2px solid #FFFFFF;
    font-weight: 700;
}

.btn-light:hover {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}


/* Sections */
section {
    padding: 6rem 0;
    /* Reduce section spacing only on accommodation page */
    .accommodation-main section,
    .accommodation-main .property-showcase,
    .accommodation-main .package-options,
    .accommodation-main .booking-form {
        padding-top: 2.2rem;
        padding-bottom: 1.2rem;
    }
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    letter-spacing: 0;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Services Preview */
.services-preview {
    background: linear-gradient(180deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(157, 78, 221, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    box-shadow: 0 0 20px var(--glow-primary);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 20px 60px rgba(0, 240, 255, 0.3),
        0 0 100px rgba(0, 240, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(0, 240, 255, 0.4),
        0 0 60px rgba(0, 240, 255, 0.2);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 22px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: translateY(-10px) scale(1.1) rotateY(10deg);
    box-shadow: 
        0 20px 50px rgba(0, 240, 255, 0.6),
        0 0 100px rgba(0, 240, 255, 0.4);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon svg {
    width: 45px;
    height: 45px;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.service-link {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.service-link:hover {
    gap: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6));
}

/* Service Dropdown in Cards */
.service-dropdown {
    margin: 1.5rem 0;
    position: relative;
}

.dropdown-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
}

.dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    background: rgba(13, 2, 33, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-dropdown.active .dropdown-content {
    max-height: 300px;
    opacity: 1;
    margin-top: 1rem;
}

.dropdown-content a {
    display: block;
    padding: 0.9rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-content a:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-content a:last-child {
    border-radius: 0 0 12px 12px;
}

/* Why Choose Us */
.why-choose {
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(0, 217, 255, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(0, 217, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 217, 255, 0.3);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-number {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.3));
    position: relative;
    z-index: 1;
}

.feature-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 10rem 0;
    text-align: center;
    overflow: hidden;
    color: #fff;
    max-width: 100vw;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 30%, var(--accent-color) 70%, var(--accent-color) 100%);
    z-index: 1;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-color) 100%);
    color: #fff;
    padding: 5rem 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 217, 255, 0.5) 50%, transparent 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-col a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

.footer-col a:hover::before {
    width: 100%;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

[data-aos="fade-up"],
[data-aos="zoom-in"] {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

[data-aos-delay="100"] { animation-delay: 0.1s; }
[data-aos-delay="200"] { animation-delay: 0.2s; }
[data-aos-delay="300"] { animation-delay: 0.3s; }

/* Page Header */
.page-header {
    position: relative;
    padding: 12rem 2rem 8rem 2rem;
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease forwards;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

/* Service Headers */
.service-header-bus .page-header-bg { background: var(--gradient-3); }
.service-header-courier .page-header-bg { background: var(--gradient-2); }
.service-header-car .page-header-bg { background: var(--gradient-4); }
.service-header-accommodation .page-header-bg { background: var(--gradient-1); }

/* About Page */
.about-content {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.about-image {
    position: relative;
}

.image-placeholder {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.image-placeholder svg {
    width: 100%;
    height: auto;
}

/* Mission & Vision */
.mission-vision {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    text-align: center;
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.mv-icon svg {
    width: 100%;
    height: 100%;
}

.mv-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.mv-card p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
    transform: translateY(-5px);
}

.value-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #FFFFFF;
    line-height: 1.3;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: var(--dark-color);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Page */
.contact-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    cursor: pointer;
    border: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
       background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
    transform: translateY(-5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1rem;
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #FFFFFF;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Map Section */
.map-section {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    color: #fff;
}

.map-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Services Page */
.services-overview {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 4rem;
    background: rgba(15, 15, 25, 0.5);
    border-radius: 32px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(30px);
    transition: all 0.4s ease;
}

.service-detailed:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.15);
    transform: translateY(-5px);
}

.service-detailed.reverse {
    direction: rtl;
}

.service-detailed.reverse > * {
    direction: ltr;
}

.service-detailed-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.service-detailed-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(123, 47, 247, 0.1));
    z-index: 1;
}

.service-detailed-image svg {
    width: 100%;
    height: auto;
    display: block;
}

.service-detailed-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #FFFFFF;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detailed-content p {
    margin-bottom: 2.5rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    font-weight: 400;
}

.service-features {
    list-style: none;
    margin-bottom: 3rem;
    display: grid;
    gap: 1.2rem;
}

.service-features li {
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 240, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateX(5px);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
}

.why-services {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.advantage-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
     color: var(--text-light);
}

.advantage-item p {
    color: var(--text-light);
}

/* Service Detail Pages */
.service-detail {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.service-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 6rem;
}

.service-intro h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #FFFFFF;
    background: linear-gradient(135deg, #FFFFFF, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.service-intro p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.service-offerings {
        background: var(--card-bg);
        border-radius: 1rem;
        box-shadow: 0 4px 16px rgba(123, 47, 247, 0.08);
        padding: 2rem 1.5rem;
        background: var(--card-bg);
        border-radius: 1rem;
        box-shadow: 0 4px 16px rgba(255, 0, 110, 0.08);
        padding: 2rem 1.5rem;
}

.service-offerings h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(135deg, #FFFFFF, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.property-showcase h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(135deg, #FFFFFF, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offering-card {
    background: rgba(15, 15, 25, 0.5);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    backdrop-filter: blur(30px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(123, 47, 247, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offering-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.2);
    transform: translateY(-8px);
}

.offering-card:hover::before {
    opacity: 1;
}

.offering-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), rgba(123, 47, 247, 0.3));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.offering-card:hover .offering-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.5);
}

.offering-icon svg {
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1;
}

.offering-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.offering-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.05;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.service-features-section {
    margin-bottom: 6rem;
}

.service-features-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(135deg, #FFFFFF, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-list {
    max-width: 900px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: rgba(15, 15, 25, 0.5);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-row:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.15);
    transform: translateX(8px);
}

.feature-row:hover::before {
    opacity: 1;
}

.feature-check {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), rgba(123, 47, 247, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-row:hover .feature-check {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.4);
}

.feature-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #FFFFFF;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Vehicle Categories */
.vehicle-categories {
    margin-bottom: 6rem;
}

.vehicle-categories h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(135deg, #FFFFFF, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.vehicle-card {
    background: rgba(15, 15, 25, 0.5);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.15);
    transition: all 0.4s ease;
}

.vehicle-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.2);
    transform: translateY(-10px);
}

.vehicle-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.vehicle-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(15, 15, 25, 0.4));
    z-index: 1;
}

.vehicle-image svg {
    width: 100%;
    height: 100%;
    display: block;
}

.vehicle-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 2rem 2rem 1rem;
    color: #FFFFFF;
}

.vehicle-card > p {
    padding: 0 2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.vehicle-features {
    list-style: none;
    padding: 0 2rem 2rem;
    border-top: 1px solid rgba(0, 240, 255, 0.15);
    padding-top: 1.5rem;
}

.vehicle-features li {
    padding: 0.7rem 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.02rem;
}

.vehicle-features li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
}

.vehicle-features li:last-child {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* Delivery Areas */
.delivery-areas {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.delivery-areas h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    background: linear-gradient(135deg, #FFFFFF, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.delivery-areas > p {
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.8;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.area-tag {
    background: rgba(0, 240, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: rgba(0, 240, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 240, 255, 0.3);
    transform: translateY(-2px);
}

/* Service CTA */
.service-cta {
    padding: 5rem 0;
    background: var(--dark-bg);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonials-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem;
    background: var(--card-bg);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-quote {
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    flex-shrink: 0;
}

.author-avatar svg {
    width: 32px;
    height: 32px;
}

.author-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
}

.author-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
}

.testimonial-rating span {
    color: #FFD700;
    font-size: 1.3rem;
}

.testimonial-nav {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: var(--primary-color);
}

.testimonial-nav:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-primary);
    transform: scale(1.1);
}

.testimonial-nav svg {
    width: 24px;
    height: 24px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 15px var(--glow-primary);
}

/* Service CTA */
.service-cta {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-box > * {
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Light Theme Specific Overrides */
body.light-theme .hero {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

body.light-theme .section-title,
body.light-theme .hero-title .line-1,
body.light-theme .hero-title .line-2 {
    color: #1A1A1A;
    text-shadow: none;
}

body.light-theme .hero-subtitle,
body.light-theme .section-subtitle {
    color: rgba(0, 0, 0, 0.7);
}

body.light-theme .service-card,
body.light-theme .offering-card,
body.light-theme .vehicle-card,
body.light-theme .feature-row,
body.light-theme .service-detailed {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(45, 108, 255, 0.2);
}

body.light-theme .service-card:hover,
body.light-theme .offering-card:hover,
body.light-theme .vehicle-card:hover,
body.light-theme .feature-row:hover,
body.light-theme .service-detailed:hover {
    box-shadow: 0 12px 48px rgba(45, 108, 255, 0.15);
}

body.light-theme .btn-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

body.light-theme .btn-primary:hover {
    color: #FFFFFF;
    background: var(--primary-color);
}

body.light-theme .btn-light {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

body.light-theme .btn-light:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

body.light-theme .footer {
    background: #FFFFFF;
    border-top: 1px solid rgba(45, 108, 255, 0.15);
}

body.light-theme .footer-col h4 {
    color: #1A1A1A;
}

body.light-theme .footer-col p,
body.light-theme .footer-col a {
    color: rgba(0, 0, 0, 0.7);
}

body.light-theme .footer-col a:hover {
    color: var(--primary-color);
}

body.light-theme .footer-bottom {
    color: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .footer-logo {
    color: #1A1A1A;
}

body.light-theme .nav-link {
    color: #1A1A1A;
}

body.light-theme .nav-link:hover,
body.light-theme .nav-link.active {
    color: var(--primary-color);
}

body.light-theme .logo-text {
    color: var(--primary-color);
}

body.light-theme .nav-menu {
    background: rgba(248, 249, 250, 0.98);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
}

body.light-theme .dropdown-menu {
    background: rgba(255, 255, 255, 0.9);
}

body.light-theme .service-icon,
body.light-theme .offering-icon,
body.light-theme .feature-check {
    background: linear-gradient(135deg, rgba(45, 108, 255, 0.2), rgba(107, 70, 255, 0.2));
    color: var(--primary-color);
}

body.light-theme .hero-stats {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(45, 108, 255, 0.2);
}

body.light-theme .stat-value {
    color: var(--primary-color);
}

body.light-theme .stat-label {
    color: rgba(0, 0, 0, 0.7);
}

body.light-theme .service-card h3,
body.light-theme .service-detailed-content h3,
body.light-theme .offering-card h4,
body.light-theme .vehicle-card h4,
body.light-theme .feature-text h4,
body.light-theme .service-intro h2,
body.light-theme .service-offerings h3,
body.light-theme .service-features-section h3,
body.light-theme .vehicle-categories h3,
body.light-theme .delivery-areas h3 {
    color: #1A1A1A;
    background: none;
    -webkit-text-fill-color: #1A1A1A;
}
body.light-theme .property-showcase h3 {
    color: #1A1A1A;
    background: none;
    -webkit-text-fill-color: #1A1A1A;
}

body.light-theme .service-card p,
body.light-theme .service-detailed-content p,
body.light-theme .offering-card p,
body.light-theme .vehicle-card > p,
body.light-theme .feature-text p,
body.light-theme .service-intro p,
body.light-theme .delivery-areas > p {
    color: rgba(0, 0, 0, 0.7);
}

body.light-theme .service-features li,
body.light-theme .vehicle-features li,
body.light-theme .feature-item p {
    color: rgba(0, 0, 0, 0.75);
}

body.light-theme .service-icon {
    color: var(--primary-color);
}

body.light-theme .hero-content h1,
body.light-theme .hero-content p,
body.light-theme .cta-content h2,
body.light-theme .cta-content p {
    color: #1A1A1A;
}

body.light-theme .about-content h2,
body.light-theme .about-content p,
body.light-theme .about-content li {
    color: #1A1A1A;
}

body.light-theme .contact-info h3,
body.light-theme .contact-info p,
body.light-theme .contact-info a {
    color: #1A1A1A;
}

body.light-theme .form-group label {
    color: #1A1A1A;
}

body.light-theme .form-control {
    background: #FFFFFF;
    border-color: rgba(45, 108, 255, 0.2);
    color: #1A1A1A;
}

body.light-theme .form-control::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

body.light-theme .area-tag {
    color: var(--primary-color);
    background: rgba(45, 108, 255, 0.1);
    border-color: rgba(45, 108, 255, 0.3);
}

body.light-theme .page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

body.light-theme .page-title,
body.light-theme .page-subtitle {
    color: #FFFFFF;
}

body.light-theme .about-text h2,
body.light-theme .mv-card h3,
body.light-theme .value-card h3,
body.light-theme .contact-form-wrapper h2,
body.light-theme .info-card h3 {
    color: #1A1A1A;
    -webkit-text-fill-color: #1A1A1A;
    background: none;
}

body.light-theme .value-number {
    color: var(--primary-color);
}

body.light-theme .stats-section {
    background: #FFFFFF;
    border-top: 1px solid rgba(45, 108, 255, 0.15);
    border-bottom: 1px solid rgba(45, 108, 255, 0.15);
}

body.light-theme .stat-number {
    color: var(--primary-color);
}

body.light-theme .stat-label {
    color: rgba(0, 0, 0, 0.7);
}

body.light-theme .footer-col ul li {
    color: rgba(0, 0, 0, 0.7);
}

body.light-theme .footer-col p {
    color: rgba(0, 0, 0, 0.7);
}

body.light-theme .about-text p,
body.light-theme .mv-card p,
body.light-theme .value-card p,
body.light-theme .info-card p {
    color: rgba(0, 0, 0, 0.7);
}

body.light-theme .about-content,
body.light-theme .mission-vision,
body.light-theme .values-section,
body.light-theme .contact-section,
body.light-theme .service-detail {
    background: #F8F9FA;
}

body.light-theme .mv-card,
body.light-theme .value-card,
body.light-theme .info-card,
body.light-theme .contact-form {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(45, 108, 255, 0.15);
}

body.light-theme .mv-card:hover,
body.light-theme .value-card:hover,
body.light-theme .info-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(45, 108, 255, 0.2);
}

body.light-theme .value-icon,
body.light-theme .info-icon,
body.light-theme .mv-icon {
    color: var(--primary-color);
}

body.light-theme select {
    background: #FFFFFF;
    color: #1A1A1A;
    border-color: rgba(45, 108, 255, 0.2);
}

body.light-theme select option {
    background: #FFFFFF;
    color: #1A1A1A;
}

body.light-theme textarea {
    background: #FFFFFF;
    color: #1A1A1A;
    border-color: rgba(45, 108, 255, 0.2);
}

body.light-theme .section-header h2,
body.light-theme .section-title {
    color: #1A1A1A;
    -webkit-text-fill-color: #1A1A1A;
}

body.light-theme .section-subtitle {
    color: rgba(0, 0, 0, 0.7);
}

body.light-theme .services-overview {
    background: #F8F9FA;
}

body.light-theme .service-detailed {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(45, 108, 255, 0.15);
}

body.light-theme .service-detailed:hover {
    border-color: rgba(45, 108, 255, 0.4);
    box-shadow: 0 20px 60px rgba(45, 108, 255, 0.15);
}

body.light-theme .service-detailed-content h3 {
    color: #1A1A1A;
    -webkit-text-fill-color: #1A1A1A;
    background: none;
}

body.light-theme .service-detailed-content p {
    color: rgba(0, 0, 0, 0.75);
}

body.light-theme .service-features li {
    color: rgba(0, 0, 0, 0.8);
    background: rgba(45, 108, 255, 0.05);
    border-left-color: var(--primary-color);
}

body.light-theme .service-features li::before {
    color: var(--primary-color);
}

body.light-theme .logo-subtitle {
    color: rgba(0, 0, 0, 0.7);
}

body.light-theme .cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

body.light-theme .cta-content h2,
body.light-theme .cta-content p {
    color: #FFFFFF;
}

body.light-theme .service-cta {
    background: #F8F9FA;
}

body.light-theme .cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

body.light-theme .cta-box h2,
body.light-theme .cta-box p {
    color: #FFFFFF;
}

body.light-theme .testimonials-section {
    background: #F8F9FA;
}

body.light-theme .testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(45, 108, 255, 0.2);
}

body.light-theme .testimonial-text {
    color: rgba(0, 0, 0, 0.8);
}

body.light-theme .author-info h4 {
    color: #1A1A1A;
}

body.light-theme .author-info p {
    color: rgba(0, 0, 0, 0.6);
}

body.light-theme .testimonial-nav {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(45, 108, 255, 0.2);
}

body.light-theme .testimonial-nav:hover {
    background: var(--primary-color);
    color: #FFFFFF;
}

body.light-theme .testimonial-dot {
    background: rgba(0, 0, 0, 0.2);
}

body.light-theme .testimonial-dot.active {
    background: var(--primary-color);
}

body.light-theme .faq-question,
body.light-theme .faq-answer p,
body.light-theme .counter-label,
body.light-theme .map-placeholder h3,
body.light-theme .coverage-item h4 {
    color: #1A1A1A;
}

body.light-theme .coverage-item p {
    color: rgba(0, 0, 0, 0.7);
}

body.light-theme .faq-item,
body.light-theme .counter-item,
body.light-theme .coverage-item,
body.light-theme .map-placeholder {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(45, 108, 255, 0.2);
}

body.light-theme .faq-item:hover,
body.light-theme .counter-item:hover,
body.light-theme .coverage-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(45, 108, 255, 0.2);
}

/* Responsive Design */
/* Stats Counter Grid Section */
/* FAQ Section */
.stats-counter-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stats-counter {
    padding: 3rem 0;
}

.counter-value {
    font-size: 2.5rem;
}

.counter-icon {
    width: 60px;
    height: 60px;
}

.counter-icon svg {
    width: 30px;
    height: 30px;
}
.faq-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    max-width: 100vw;
    overflow: hidden;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-color);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.8;
    opacity: 0.9;
    margin: 0;
}

/* Service Area Map */
.service-area-map {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    max-width: 100vw;
    overflow: hidden;
}

.map-container {
    margin-top: 3rem;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 100%;
    overflow: hidden;
}

.map-placeholder {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(123, 47, 247, 0.05));
    opacity: 0.5;
}

.map-placeholder svg {
    width: 120px;
    height: 120px;
    color: var(--primary-color);
    margin-bottom: 2rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.map-placeholder h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.coverage-areas {
    display: grid;
    gap: 1.5rem;
}

.coverage-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    cursor: pointer;
}

.coverage-item > div {
    flex: 1;
}

.coverage-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.15);
    transform: translateX(10px);
}

.coverage-item svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.coverage-item h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
}

.coverage-item p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.7;
    margin: 0;
    line-height: 1.6;
}
.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e6eaff 100%);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(45, 108, 255, 0.08);
    padding: 3rem 2rem;
    margin: 3rem 0;
    align-items: stretch;
}

.counter-item {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px rgba(45, 108, 255, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 1.5rem 1rem;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1.5px solid #e0e7ff;
    position: relative;
}
.counter-item:hover {
    box-shadow: 0 8px 32px rgba(45, 108, 255, 0.13);
    transform: translateY(-6px) scale(1.03);
    border-color: var(--primary-color, #6c47ff);
}
.counter-icon {
    font-size: 2.5rem;
    color: var(--primary-color, #6c47ff);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(45, 108, 255, 0.08);
}
.counter-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: #23243a;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(45, 108, 255, 0.07);
}
.counter-label {
    font-size: 1.1rem;
    color: #6c47ff;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

@media (max-width: 1024px) {
    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2.5rem 1.2rem;
    }
}
@media (max-width: 600px) {
    .stats-counter-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1.5rem 0.5rem;
    }
    .counter-item {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    .counter-icon {
        font-size: 2rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    .counter-value {
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }

    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .navbar {
        padding: 1rem 0;
    }

    .theme-toggle {
        margin-left: 1rem;
        width: 40px;
        height: 40px;
    }

    .theme-toggle svg {
        width: 20px;
        height: 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(40px) saturate(180%);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        border-top: 1px solid var(--border-color);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        box-shadow: none;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        border-radius: 12px;
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 110px 0 40px;
    }

    .hero-content {
        padding: 1rem;
        margin-top: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
    }
    
    .hero-title .line-2 {
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 0.8rem;
        padding: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        padding: 0 1rem;
        margin-bottom: 1rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .stat-item {
        min-width: auto;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .about-grid,
    .contact-grid,
    .service-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detailed {
        padding: 2rem 1.5rem;
    }

    .service-detailed.reverse {
        direction: ltr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .service-icon {
        width: 80px;
        height: 80px;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .offerings-grid,
    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .offering-card,
    .vehicle-card {
        padding: 2rem 1.5rem;
    }

    .feature-row {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .map-wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .coverage-areas {
        gap: 1rem;
    }

    .section-header {
        text-align: center;
    }

    .service-intro h2 {
        font-size: 2rem;
    }

    .service-offerings h3,
    .service-features-section h3,
    .vehicle-categories h3 {
        font-size: 1.8rem;
    }

    .testimonials-container {
        gap: 1rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }

    .testimonial-nav {
        width: 45px;
        height: 45px;
    }

    .testimonial-nav svg {
        width: 20px;
        height: 20px;
    }

    .booking-form input,
.booking-form select {
    background: rgba(255,255,255,0.10);
    border: 1.5px solid var(--primary-color);
    padding: 1.15rem 1.2rem;
    color: var(--text-color);
    border-radius: 1.1rem;
    font-size: 1.15rem;
    font-weight: 500;
    transition: all 0.18s ease;
    min-width: 220px;
    width: 100%;
    box-shadow: 0 2px 12px rgba(0,240,255,0.10);
}

.booking-form input::placeholder {
    color: rgba(255,255,255,0.75);
    font-size: 1.08rem;
    font-weight: 400;
}

.booking-form select {
    background: var(--card-bg);
    color: var(--text-color);
    box-shadow: 0 4px 16px rgba(0, 240, 255, 0.18);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 1.15rem;
    font-weight: 500;
    padding-right: 2.5rem;
    cursor: pointer;
}

.booking-form .btn-submit {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    padding: 1.1rem 2.2rem;
    border-radius: 1.2rem;
    font-size: 1.18rem;
    letter-spacing: 0.7px;
    border: none;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(107,70,255,0.18), 0 6px 18px rgba(255,0,110,0.12);
    margin-top: 0.7rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.08rem;
    letter-spacing: 0.02em;
}
.booking-form .helper-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.35rem;
}

.booking-form .btn-submit {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    padding: 0.9rem 1.1rem;
    border-radius: 1rem;
    font-size: 1.02rem;
    letter-spacing: 0.6px;
    border: none;
    box-shadow: 0 18px 40px rgba(107,70,255,0.12), 0 6px 18px rgba(255,0,110,0.08);
}

.booking-form .btn-submit:hover {
    transform: translateY(-4px) scale(1.01);
}

/* Inline field error */
.field-error {
    color: #ffb4b4;
    background: rgba(255,75,75,0.06);
    padding: 0.45rem 0.65rem;
    border-radius: 0.6rem;
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

@media (max-width: 760px) {
    .booking-form { padding: 1.6rem 1.2rem; }
    .booking-form { max-width: 100%; }
}

/* Smooth transitions for theme switching */
*,
*::before,
*::after {
    transition-property: background-color, border-color, color, box-shadow;
    transition-duration: 0.4s;
    transition-timing-function: ease;
}

:root {
    --primary-color: #00F0FF;
    --secondary-color: #7B2FF7;
    --accent-color: #FF006E;
    --dark-bg: #0A0A0F;
    --dark-color: #0F1117;
    --dark-secondary: #12121A;
    --card-bg: rgba(15, 15, 25, 0.6);
    --text-color: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-color: rgba(0, 240, 255, 0.15);
    --glow-primary: rgba(0, 240, 255, 0.6);
    --glow-secondary: rgba(123, 47, 247, 0.6);
    --glow-accent: rgba(255, 0, 110, 0.6);
    
    --gradient-primary: linear-gradient(135deg, #00F0FF 0%, #7B2FF7 100%);
    --gradient-accent: linear-gradient(135deg, #FF006E 0%, #7B2FF7 100%);
    
    --shadow-glow: 0 0 60px var(--glow-primary);
    --shadow-neon: 0 0 20px var(--glow-primary), 0 0 40px var(--glow-primary);
    
    --grid-opacity: 0.03;
    --gradient-overlay-1: rgba(0, 240, 255, 0.15);
    --gradient-overlay-2: rgba(123, 47, 247, 0.15);
    --gradient-overlay-3: rgba(255, 0, 110, 0.08);
}

/* Light Theme */
body.light-theme {
    --primary-color: #2D6CFF;
    --secondary-color: #6B46FF;
    --accent-color: #FF2B7E;
    --dark-bg: #F8F9FA;
    --dark-secondary: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.8);
    --text-color: #1A1A1A;
    --text-muted: rgba(0, 0, 0, 0.6);
    --border-color: rgba(45, 108, 255, 0.15);
    --glow-primary: rgba(45, 108, 255, 0.3);
    --glow-secondary: rgba(107, 70, 255, 0.3);
    --glow-accent: rgba(255, 43, 126, 0.3);
    
    --gradient-primary: linear-gradient(135deg, #2D6CFF 0%, #6B46FF 100%);
    --gradient-accent: linear-gradient(135deg, #FF2B7E 0%, #6B46FF 100%);
    
    --shadow-glow: 0 0 40px rgba(45, 108, 255, 0.2);
    --shadow-neon: 0 0 15px rgba(45, 108, 255, 0.3), 0 0 30px rgba(45, 108, 255, 0.2);
    
    --grid-opacity: 0.06;
    --gradient-overlay-1: rgba(45, 108, 255, 0.08);
    --gradient-overlay-2: rgba(107, 70, 255, 0.08);
    --gradient-overlay-3: rgba(255, 43, 126, 0.05);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--dark-bg);
    position: relative;
    transition: background-color 0.4s ease, color 0.4s ease;
    margin: 0;
    padding: 0;
    width: 100%;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
    animation: gridPulse 4s ease-in-out infinite;
    transition: opacity 0.4s ease;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 20%, var(--gradient-overlay-1) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, var(--gradient-overlay-2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, var(--gradient-overlay-3) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: gradientShift 15s ease-in-out infinite;
    transition: opacity 0.4s ease;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    .booking-form {
        background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(255,255,255,0.02));
        border-radius: 1rem;
        border: 1px solid rgba(255,255,255,0.04);
        box-shadow: 0 8px 30px rgba(12, 18, 35, 0.45);
        padding: 2.2rem 1.75rem;
        margin-top: 2rem;
        color: var(--text-color);
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }
    .booking-form h2 {
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--primary-color);
        text-align: center;
    }
    .booking-form form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem 1rem;
        align-items: start;
        align-content: start;
        width: 100%;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    .booking-form label {
        display: block;
        font-size: 0.92rem;
        font-weight: 600;
        color: var(--text-muted);
        margin-bottom: 0.2rem; /* closer to fields */
    }
    .booking-form .form-row {
        grid-column: span 1;
    }
    .booking-form .form-row.full {
        grid-column: 1 / -1;
    }
    .booking-form select,
    .booking-form input,
    .booking-form button {
        width: 100%;
        padding: 0.72rem 0.95rem; /* slightly tighter for visual density */
        border-radius: 0.75rem;
        border: 1px solid rgba(255,255,255,0.06);
        font-size: 0.98rem;
        background: var(--card-bg);
        color: var(--text-color);
        outline: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    .booking-form select:focus,
    .booking-form input:focus {
        box-shadow: 0 6px 24px rgba(0,0,0,0.25), 0 0 0 4px rgba(45,108,255,0.06);
        border-color: var(--primary-color);
    }

    /* Custom select arrow and padding so it matches other controls visually */
    .booking-form select {
        background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.08) 50%),
                          linear-gradient(135deg, rgba(255,255,255,0.08) 50%, transparent 50%),
                          linear-gradient(var(--card-bg), var(--card-bg));
        background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px), 0 0;
        background-size: 6px 6px, 6px 6px, 100% 100%;
        background-repeat: no-repeat;
        padding-right: 2.6rem; /* make room for arrow */
    }

    /* Center the form container and heading */
    .booking-form { text-align: left; }
    .booking-form .center-head { text-align: center; }
    .booking-form h2 { text-align: center; }

    /* Make submit button centered and slightly narrower to match other CTAs */
    .booking-form .form-row.full { display: flex; justify-content: center; }
    .booking-form .form-row.full .btn-submit {
        width: 300px;
        max-width: 90%;
    }

    /* Reduce vertical spacing between label and input globally inside form */
    .booking-form .form-row + .form-row { margin-top: 0.25rem; }
    .booking-form .btn-submit {
        background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
        color: #fff;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 8px 30px rgba(0,0,0,0.25);
        transition: transform 0.12s ease, box-shadow 0.12s ease;
    }
    .booking-form .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 40px rgba(0,0,0,0.35);
    }
    .booking-form .btn-submit:disabled {
        opacity: 0.65;
        cursor: not-allowed;
    }

    /* Make booking form single column on small screens */
    @media (max-width: 720px) {
        .booking-form form {
            grid-template-columns: 1fr;
        }
    }

    /* Notification */
    .notification {
        position: fixed;
        top: 100px;
        right: 20px;
        background: var(--primary-color);
        color: var(--dark-secondary);
        padding: 1rem 1.6rem;
        border-radius: 10px;
        box-shadow: 0 12px 40px rgba(12,18,35,0.45);
        z-index: 10000;
        font-weight: 700;
    }
    .notification-success {
        background: linear-gradient(90deg, #43e97b, #38f9d7);
        color: #072017;
    }

    .notification-info {
        background: linear-gradient(90deg, #4facfe, #00f2fe);
        color: #052034;
    }

    .notification-error {
        background: linear-gradient(90deg, #ff6b6b, #ff8e53);
        color: #3a0f0f;
    }

    /* Footer light-theme tweaks */
    body.light-theme .footer {
        background: linear-gradient(180deg, var(--dark-secondary), var(--dark-color));
    }
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.4));
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.2) drop-shadow(0 2px 8px rgba(0, 240, 255, 0.3));
}

body.light-theme .logo-img {
    filter: brightness(0.8) contrast(1.2) drop-shadow(0 2px 8px rgba(45, 108, 255, 0.2));
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 20px var(--glow-primary));
    text-transform: uppercase;
}

.logo-subtitle {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 4px;
    margin-top: -5px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--glow-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 10px var(--glow-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--glow-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(13, 2, 33, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    list-style: none;
    padding: 1.2rem 0;
    border-radius: 20px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(157, 78, 221, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    padding: 0.3rem 1rem;
    position: relative;
}

.dropdown-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 108, 255, 0.1), rgba(107, 138, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-menu a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.dropdown-menu a:hover::before {
    opacity: 1;
}

.theme-toggle {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-left: 1.5rem;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-primary);
    transform: scale(1.1) rotate(15deg);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.theme-toggle .sun-icon {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

body.light-theme .theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

body.light-theme .theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1002;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
/* Futuristic Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-bg);
    max-width: 100vw;
    width: 100%;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.transport-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    left: -100%;
    animation: moveLine 8s linear infinite;
}

.line-1 {
    top: 35%;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    animation-delay: 2.5s;
}

.line-3 {
    top: 65%;
    animation-delay: 5s;
}

@keyframes moveLine {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.moving-vehicles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.vehicle-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--glow-primary));
}

.vehicle-icon svg {
    width: 100%;
    height: 100%;
}

.bus-icon {
    top: 32%;
    animation: moveVehicle 12s linear infinite;
}

.car-icon {
    top: 47%;
    animation: moveVehicle 8s linear infinite;
    animation-delay: 2s;
    color: var(--accent-color);
}

.truck-icon {
    top: 62%;
    animation: moveVehicle 15s linear infinite;
    animation-delay: 5s;
    color: var(--secondary-color);
}

@keyframes moveVehicle {
    0% {
        left: -10%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 110%;
        opacity: 0;
    }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; }
}