/* --------------------------------------
   Variables & Theming
--------------------------------------- */
:root {
    --color-primary: #0A1F44;
    /* Dark Blue */
    --color-secondary: #FFB400;
    /* Taxi Yellow */
    --color-secondary-hover: #e6a200;
    --color-white: #ffffff;
    --color-light: #f5f7fa;
    --color-text: #e0e5ec;
    --color-text-dark: #333;

    --font-main: 'Outfit', sans-serif;

    --glass-bg: rgba(10, 31, 68, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-primary);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-white);
    font-weight: 700;
}

span {
    color: var(--color-secondary);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.text-yellow {
    color: var(--color-secondary) !important;
}

.text-white {
    color: var(--color-white) !important;
}

/* --------------------------------------
   Glassmorphism UI Elements
--------------------------------------- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.dark-glass {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-frame {
    border-radius: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --------------------------------------
   Buttons & Micro-interactions
--------------------------------------- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-secondary-hover);
    box-shadow: 0 6px 20px rgba(255, 180, 0, 0.5);
    transform: translateY(-2px);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn-outline:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.full-width {
    width: 100%;
}

.mt-4 {
    margin-top: 24px;
}

/* Ripple effect */
.ripple::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s, opacity 1s;
}

.ripple:active::after {
    transform: scale(4);
    opacity: 1;
    transition: 0s;
}

/* --------------------------------------
   Navbar
--------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition-smooth);
}

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-primary);
    min-width: 200px;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    color: var(--color-secondary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --------------------------------------
   Hero Section
--------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
}

/* Parallax fallback overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.9) 0%, rgba(10, 31, 68, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.trust-badge {
    display: inline-block;
    background: rgba(255, 180, 0, 0.15);
    border: 1px solid rgba(255, 180, 0, 0.4);
    color: var(--color-secondary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.trust-badge i {
    color: var(--color-secondary);
    margin-right: 5px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 480px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features i {
    color: #25d366;
    /* Green checkmark */
}

/* Booking Form */
.hero-booking h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.input-group:focus-within {
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.1);
}

.input-group i {
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}

.input-group:focus-within i {
    color: var(--color-secondary);
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 14px 15px 14px 0;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 1rem;
    outline: none;
}

.input-group select option {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Chrome autofill fix for dark theme */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px var(--color-primary) inset !important;
    -webkit-text-fill-color: var(--color-white) !important;
}

.row {
    display: flex;
    gap: 15px;
}

.half {
    flex: 1;
}

.fare-estimate-box {
    background: rgba(255, 180, 0, 0.1);
    border: 1px dashed var(--color-secondary);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 1.2rem;
}

/* --------------------------------------
   Services Section
--------------------------------------- */
.section-title {
    margin-bottom: 50px;
    text-align: center;
}

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

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

.service-card {
    text-align: center;
    transition: transform var(--transition-smooth), border-color var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 180, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--color-secondary);
    transition: var(--transition-fast);
}

.service-card:hover .icon-box {
    background: var(--color-secondary);
    color: var(--color-primary);
    transform: scale(1.1);
}

/* --------------------------------------
   Popular Routes Section & Stats
--------------------------------------- */
.urgency-banner {
    display: inline-block;
    background: rgba(255, 180, 0, 0.15);
    border: 1px solid rgba(255, 180, 0, 0.4);
    color: var(--color-secondary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.route-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.category-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.category-btn:hover,
.category-btn.active {
    background: var(--color-secondary);
    color: var(--color-primary);
    border-color: var(--color-secondary);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    text-align: left;
}

.destination-card {
    padding: 0;
    overflow: hidden;
    transition: transform var(--transition-smooth), border-color var(--transition-fast), box-shadow var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(255, 180, 0, 0.15);
}

.dest-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

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

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

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

.dest-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-light);
    display: flex;
    align-items: center;
}

.dest-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dest-info p i {
    color: var(--color-secondary);
    width: 20px;
    text-align: center;
}

/* Glowing Button hover effect */
.glow-hover {
    transition: box-shadow var(--transition-fast);
}

.glow-hover:hover {
    box-shadow: 0 0 15px rgba(255, 180, 0, 0.5);
    background: rgba(255, 180, 0, 0.1);
}

/* Route Filter Logic */
.route-item {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.route-item.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Counter */
.stats-counter {
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.95) 0%, rgba(10, 31, 68, 0.8) 100%), url('../assets/images/hero-bg.jpg') center/cover fixed;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 180, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--color-light);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* --------------------------------------
   Fleet Promo Section
--------------------------------------- */
.row.items-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.fleet-list {
    margin: 20px 0;
}

.fleet-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fleet-list i {
    color: var(--color-secondary);
}

.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.pulse-hover {
    transition: transform 0.5s ease;
}

.pulse-hover:hover {
    transform: scale(1.02);
}

/* --------------------------------------
   Why Us Stats
--------------------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* --------------------------------------
   Footer
--------------------------------------- */
.footer {
    background: #051024;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
    margin: 15px 0;
    opacity: 0.7;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    opacity: 0.7;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact i {
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* --------------------------------------
   Advanced SEO Footer Links
--------------------------------------- */
.seo-footer-links {
    background-color: var(--color-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.seo-link-category {
    margin-bottom: 40px;
}

.seo-link-category h3 {
    color: var(--color-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.seo-links-grid a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.seo-links-grid a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
    border-bottom-color: var(--color-secondary);
}

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

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

/* --------------------------------------
   Floating Buttons
--------------------------------------- */
.floating-btns {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #FFF;
    z-index: 100;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.float-wa {
    right: 30px;
    background-color: #25d366;
    animation: pulse-green 2s infinite;
}

.float-wa:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
}

.float-call {
    left: 30px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    animation: bounce 2s infinite;
}

.float-call:hover {
    background-color: var(--color-secondary-hover);
    transform: scale(1.1);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* --------------------------------------
   Inner Pages Styles
--------------------------------------- */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d2859 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

/* Fleet Grid */
.fleet-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.car-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.car-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary);
}

.car-img {
    height: 200px;
    background: #000;
    overflow: hidden;
    position: relative;
}

.car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.5s;
}

.car-card:hover .car-img img {
    opacity: 1;
    transform: scale(1.05);
}

.car-details {
    padding: 25px;
}

.car-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.car-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.car-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.car-price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.contact-info-card {
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form {
    padding: 40px;
}

.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    min-height: 120px;
    margin-bottom: 20px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.contact-form textarea:focus,
.contact-form input:focus {
    border-color: var(--color-secondary);
}

/* --------------------------------------
   Responsive Design
--------------------------------------- */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .hero-btns {
        justify-content: center;
        margin-bottom: 40px;
    }

    .row.items-center {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--color-primary);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .dropdown-menu {
        position: relative;
        box-shadow: none;
        border: none;
        background: transparent;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
    }

    .float-wa {
        right: 20px;
    }

    .float-call {
        left: 20px;
    }
}

/* Hide Mobile Sticky Bar on Desktop */
@media (min-width: 992px) {
    .mobile-sticky-bar {
        display: none !important;
    }
}

/* ==========================================
   COMPREHENSIVE MOBILE RESPONSIVE CSS
   (Mobile-First: All screens < 576px)
   ========================================== */

/* --- Small screens (max 576px) --- */
@media (max-width: 576px) {

    /* Layout Guards */
    html,
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Section Padding */
    .section-padding {
        padding: 50px 0;
    }

    .container {
        width: 100%;
        max-width: 100vw;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 1.9rem !important;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    /* Page Header (inner pages) */
    .page-header {
        padding: 120px 0 50px !important;
    }

    .page-header h1 {
        font-size: 1.8rem !important;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    /* Booking Form */
    .row.items-center {
        grid-template-columns: 1fr !important;
    }

    .row {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .input-group.half {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }

    /* Fix Tilt Glare Overflow */
    .js-tilt-glare,
    .js-tilt-glare-inner {
        display: none !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px;
    }

    /* Fleet Grid */
    .fleet-grid {
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    /* Route Cards / Tourist Destinations */
    .destinations-grid,
    .routes-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    /* Keep cards rigidly in viewport */
    .glass-card,
    .destination-card,
    .service-card,
    .adv-glass-form {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }

    /* Input group bounds inside forms */
    .input-group,
    input,
    select {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Why Choose 4-col grid */
    .why-us .features-grid {
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    /* Fare Table - horizontal scroll */
    table {
        font-size: 0.8rem;
    }

    table th,
    table td {
        padding: 10px 12px !important;
    }

    /* Blog Cards */
    .blog-card {
        min-width: unset !important;
        width: 100% !important;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .footer-grid ul {
        margin: 0 auto;
    }

    /* FAQ Items */
    .faq-item h4 {
        font-size: 1rem !important;
    }

    .faq-container {
        padding: 0 5px;
    }

    /* Floating Buttons spacing */
    .float-wa {
        right: 15px !important;
        bottom: 15px !important;
    }

    .float-call {
        left: 15px !important;
        bottom: 15px !important;
    }

    /* Mobile Sticky Bar */
    .mobile-sticky-bar {
        display: flex !important;
    }

    /* SEO Footer Links - 1 column on small */
    .seo-links-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Why Choose Cards Grid */
    div[style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }

    div[style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
    }

    /* Outstation Route Buttons */
    div[style*="display:flex; flex-wrap:wrap"] a.btn,
    div[style*="display: flex; flex-wrap: wrap"] a.btn {
        width: 100%;
        text-align: center;
    }

    /* Blog Content */
    .blog-content {
        font-size: 1rem !important;
    }

    .blog-content h2 {
        font-size: 1.4rem !important;
    }

    /* Contact Page */
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .contact-form {
        padding: 20px !important;
    }
}

/* --- Medium screens 577-768px (tablets) --- */
@media (min-width: 577px) and (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.3rem !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .contact-wrapper {
        grid-template-columns: 1fr !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }
}

/* Mobile Logo Size Fix & Navbar */
@media (max-width: 768px) {
    .logo img {
        height: 75px !important;
        width: auto;
    }

    .navbar {
        padding: 5px 0;
    }

    .mobile-toggle {
        display: block !important;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-primary);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        /* Hidden via clip-path for smooth animation */
        transition: clip-path 0.4s ease-in-out;
        gap: 15px;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        /* Slight contrast on dark mobile bg */
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 90%;
        margin: 0 auto;
    }

    /* Optional: Show dropdown inline on hover/focus if preferred */
    .dropdown:hover .dropdown-menu,
    .dropdown:active .dropdown-menu {
        display: block;
    }
}

/* ----------------------------------------
   Destination Detail Modal
----------------------------------------- */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.93) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

#destModalContent::-webkit-scrollbar {
    width: 5px;
}

#destModalContent::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

#destModalContent::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 10px;
}

/* --------------------------------------
   Advanced Hero Section Enhancements
--------------------------------------- */
/* Animated Gradient Orbs Background effect */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
    animation: orbFloat 15s infinite ease-in-out alternate;
    opacity: 0.5;
}

.hero::before {
    background: radial-gradient(circle, rgba(255, 180, 0, 0.3) 0%, rgba(255, 180, 0, 0) 70%);
    top: -100px;
    left: -100px;
}

.hero::after {
    background: radial-gradient(circle, rgba(37, 211, 102, 0.2) 0%, rgba(37, 211, 102, 0) 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -7s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 100px) scale(1.2);
    }
}

/* Glassmorphism Tilt Card Upgrade */
.adv-glass-form {
    background: rgba(10, 31, 68, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform-style: preserve-3d;
    transition: box-shadow 0.3s ease;
}

.adv-glass-form:hover {
    box-shadow: 0 30px 60px rgba(255, 180, 0, 0.15);
}

/* Form inner elements lift in 3D */
.adv-glass-form h3,
.adv-glass-form form {
    transform: translateZ(30px);
}

/* Dynamic Typography Styling */
.adv-headline {
    font-size: 4.5rem !important;
    line-height: 1.15 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

/* Typed.js cursor styling */
.typed-cursor {
    color: var(--color-secondary);
    font-weight: 300;
    font-size: 4.5rem;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.adv-subtext {
    font-size: 1.25rem !important;
    opacity: 0.95 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Advanced Button Glows */
.adv-btn-glow {
    position: relative;
    z-index: 1;
}

.adv-btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: 0.4s;
    z-index: -1;
}

.adv-btn-glow:hover::before {
    left: 150%;
}

.adv-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.adv-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.adv-feature i {
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}