/* Reset and Base Styles */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

:root {
    --primary-orange: #F5811E;
    --primary-navy: #0c0845;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --border-gray: #e0e0e0;
    --red-accent: #e53935;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(30, 60, 150, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: rgba(12, 8, 69, 0.98);
    min-width: 220px;
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    /* Fix: prevent ghost clicks when invisible */
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    /* Fix: enable clicks when visible */
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--white) !important;
    font-size: 0.85rem;
    font-weight: 400;
    text-align: left;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-orange) !important;
    padding-left: 30px;
}

.dropdown-toggle {
    cursor: pointer;
}

.mobile-menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Mobile Navigation Dropdown ===== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        z-index: 1002;
        transition: transform 0.3s ease;
    }

    .mobile-menu-toggle.active {
        transform: rotate(90deg);
    }

    /* Override parent flex styles completely */
    .nav-menu {
        /* Layout */
        display: none !important;
        flex-direction: column !important;
        gap: 0 !important;

        /* Positioning */
        position: fixed !important;
        top: 60px;
        right: 15px;
        width: 260px;
        height: auto !important;
        max-height: 80vh;
        overflow-y: auto;

        /* Styling */
        background: #0c0845;
        border-radius: 10px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 0;
        list-style: none !important;
        z-index: 99999;
        box-sizing: border-box;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
        display: block;
        margin: 0;
        padding: 0;
    }

    .nav-menu>li>a {
        display: block;
        padding: 10px 15px;
        font-size: 0.85rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.95) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-decoration: none;

        /* Text handling - allow wrapping */
        white-space: normal !important;
        line-height: 1.3;
        box-sizing: border-box;
    }

    .nav-menu>li:last-child>a {
        border-bottom: none;
    }

    .nav-menu>li>a:hover,
    .nav-menu>li>a:active {
        background: rgba(245, 129, 30, 0.15);
        color: var(--primary-orange) !important;
        padding-left: 25px;
        /* Subtle interaction */
        transition: padding 0.2s ease;
    }

    /* Mobile dropdown sub-menu (More +) */
    .dropdown-menu {
        position: static !important;
        min-width: 100% !important;
        background: rgba(0, 0, 0, 0.2) !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
        /* Collapsed by default */
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu a {
        padding: 10px 20px 10px 35px !important;
        font-size: 0.8rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu a:hover {
        color: var(--primary-orange) !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }
}

/* Hero Slider */
.hero-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 80%, rgba(255, 255, 255, 0.1) 95%, #f5f5f5 100%);
    z-index: 5;
    pointer-events: none;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(12, 8, 69, 0.85) 0%, rgba(12, 8, 69, 0.4) 50%, transparent 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 500px;
    animation: slideInLeft 1s ease-out;
    bottom: 60px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.corner-border {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--primary-orange);
    border-style: solid;
    border-width: 2px;
}

.corner-border.top-left {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
}

.corner-border.bottom-right {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
}

.slide-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.slide-subtitle {
    font-size: 1rem;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.price-line {
    width: 60px;
    height: 2px;
    background: var(--white);
    margin: 8px 0;
}

.slide-price {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    background: var(--red-accent);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--primary-navy);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Slider Dots */
.slider-dots {
    display: none;
}

.slider-dots .dot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--white);
    width: 40px;
}

/* Cloud Decoration */
.cloud-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

.cloud-decoration svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Category Cards Section */
.category-cards-section {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 0 0 40px;
    background: transparent;
    margin-top: 0;
}

.category-cards-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.category-card {
    flex: 0 0 auto;
    width: 220px;
    max-width: 45%;
    height: 130px;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.category-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.1);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 10px 10px 10px;
    text-align: center;
}

.category-card-overlay span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    margin: 0;
    width: 100%;
}



/* Tour Packages Section */
.tour-packages {
    padding: 60px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--red-accent);
    margin: 0 auto 20px;
}

.section-description {
    max-width: 900px;
    margin: 0 auto;
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.read-more {
    color: var(--red-accent);
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.package-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 3/4;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.package-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.tour-type {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 15px;
}

.price-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-gray);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

/* India Holidays Carousel */
.india-holidays {
    padding: 60px 0;
    background: var(--white);
}

.carousel-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.carousel-wrapper {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.holiday-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 250px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.holiday-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.holiday-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.holiday-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.holiday-card:hover .holiday-image img {
    transform: scale(1.1);
}

.duration {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--red-accent);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.holiday-info {
    padding: 20px;
    text-align: center;
}

.holiday-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 10px;
    min-height: 40px;
}

.holiday-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--red-accent);
    margin-bottom: 5px;
}

.price-label {
    font-size: 0.75rem;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.btn-book-now {
    display: inline-block;
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-bottom: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--red-accent);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    color: var(--primary-navy);
    transform: scale(1.2);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--red-accent);
}

/* Cruise Banner */
.cruise-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.cruise-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.cruise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cruise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(12, 8, 69, 0.85) 0%, rgba(12, 8, 69, 0.3) 60%, transparent 100%);
}

.cruise-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 500px;
}

.cruise-content .corner-border {
    border-color: var(--red-accent);
}

.cruise-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff59d;
}

.cruise-price {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Tourism in India Section */
.tourism-india {
    padding: 60px 0;
    background: var(--white);
}

.tourism-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tourism-wrapper {
    flex: 1;
    overflow: hidden;
}

.tourism-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.tourism-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 250px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    padding: 10px;
    transition: all 0.3s ease;
}

.tourism-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tourism-image {
    height: 180px;
    overflow: hidden;
    margin-bottom: 15px;
}

.tourism-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tourism-card:hover .tourism-image img {
    transform: scale(1.05);
}

.tourism-info {
    text-align: center;
}

.tourism-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.know-more {
    display: inline-block;
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.know-more:hover {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.tourism-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--red-accent);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tourism-btn:hover {
    color: var(--primary-navy);
    transform: scale(1.2);
}

.tourism-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.tourism-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tourism-dots .dot.active {
    background: var(--red-accent);
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: var(--white);
}

/* Footer Redesign */
.footer {
    background: linear-gradient(135deg, #0c0845 0%, #06042a 100%);
    color: var(--white);
    padding: 30px 0 15px;
    /* Reduced vertical padding */
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 0.8fr 1.2fr;
    /* Rebalanced for better spacing */
    gap: 40px;
}

.footer-column {
    padding: 0 20px;
}

/* Vertical separators for second and third columns */
.footer-column:nth-child(2),
.footer-column:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.footer-links-list a:hover {
    color: var(--white);
}

.footer-links-list i {
    font-size: 0.65rem;
    color: #ff8c00;
    min-width: 12px;
}

.contact-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    color: white;
    transform: translateY(-2px);
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 10px;
    margin-top: 5px;
}

/* Newsletter styling */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.newsletter-input-group {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    padding: 3px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 0.9rem;
}

.btn-subscribe-footer {
    background: #ff4500;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-subscribe-footer:hover {
    background: #e63e00;
}

.footer-bottom {
    margin-top: 20px;
    /* Reduced top margin */
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-column:nth-child(even) {
        border-left: none;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1.5fr 2fr 1fr !important;
        gap: 15px 10px;
    }

    /* Newsletter spans full width */
    .footer-column.footer-newsletter {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-column.footer-newsletter h3 {
        border-bottom: none;
    }

    .footer-column {
        border-left: none !important;
        padding: 0 5px;
        text-align: left;
    }

    .footer-column h3 {
        font-size: 0.8rem;
        margin-bottom: 8px;
        padding-bottom: 5px;
    }

    .footer-links-list li {
        margin-bottom: 5px;
    }

    .footer-links-list a {
        font-size: 0.7rem;
        justify-content: flex-start;
        gap: 6px;
    }

    .footer-links-list i {
        font-size: 0.55rem;
    }

    .contact-icons {
        justify-content: flex-start;
        gap: 10px;
    }

    .social-icon {
        font-size: 0.95rem;
    }
}



/* Responsive Design */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .holiday-card {
        flex: 0 0 calc(50% - 10px);
    }

    .tourism-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {

    /* Hide scrollbar on mobile */
    html,
    body {
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .navbar {
        padding: 5px 0;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        /* Below navbar */
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(12, 8, 69, 0.98);
        padding: 40px 20px;
        gap: 20px;
        z-index: 999;
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.1rem;
        display: block;
        padding: 10px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
        display: none;
        /* Toggle via JS or keep simple */
        border: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 1.8rem;
    }

    /* Hero fills top 35% of viewport */
    .hero-slider {
        height: 35dvh;
        min-height: 180px;
    }

    /* Hide category cards on mobile */
    .category-cards-section {
        display: none !important;
    }

    .slide-content {
        padding: 10px 12px;
        max-width: 70%;
        transform: none;
        top: 10px;
    }

    .slide-title {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .slide-subtitle {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .slide-price {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .price-line {
        margin: 4px 0;
        width: 40px;
    }

    .btn-primary,
    .btn-white {
        padding: 6px 16px;
        font-size: 0.75rem;
        border-radius: 20px;
    }

    .corner-border {
        width: 12px;
        height: 12px;
    }

    /* Category Cards - Better Grid */
    .category-cards-section {
        padding-bottom: 20px;
        bottom: 10px;
    }

    .category-cards-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 15px;
    }

    .category-card {
        width: 100%;
        height: 100px;
    }

    .category-card-overlay span {
        font-size: 0.9rem;
    }

    /* Promo Banner */
    .promo-banner {
        height: auto;
        padding: 30px 15px;
    }

    .promo-title {
        font-size: 1.5rem;
    }

    /* Footer Refinements for small screens */
    .footer {
        padding: 30px 0 10px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 2fr 1fr;
        gap: 15px 10px;
    }

    /* Newsletter full width on mobile */
    .footer-column.footer-newsletter {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-column {
        padding: 0 8px;
        text-align: left;
    }

    .footer-column h3 {
        font-size: 0.85rem;
    }

    .footer-links-list a {
        font-size: 0.75rem;
        justify-content: flex-start;
    }

    .contact-icons {
        justify-content: flex-start;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.package-card:hover::before {
    left: 100%;
}

/* Main Content Wrapper for Scrolling Effect */
.main-content {
    position: relative;
    z-index: 10;
    margin-top: 100vh;
    background: var(--white);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

/* Promo Banner (Limited Time Offers) - User Provided Design */
.promo-banner {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Decorative circles/bokeh effect */
.promo-banner::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(2px);
}

.promo-banner::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 100px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(1px);
}

.circle-1 {
    position: absolute;
    top: -30px;
    right: 50px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    filter: blur(3px);
}

.circle-2 {
    position: absolute;
    bottom: -40px;
    right: 100px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(4px);
}

.circle-3 {
    position: absolute;
    top: 30px;
    right: 200px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(1px);
}

.circle-4 {
    position: absolute;
    bottom: 20px;
    left: 50px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(2px);
}

.circle-5 {
    position: absolute;
    top: 10px;
    left: 200px;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    filter: blur(1px);
}

/* Content container */
.promo-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Horizontal lines */
.title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
}

.line {
    width: 150px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

.promo-title {
    color: white;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.promo-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Button */
.promo-button {
    background: white;
    color: #1f2937;
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.promo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.promo-button::after {
    content: '▼';
    font-size: 10px;
    color: #6b7280;
}

/* Bottom wave/curve decoration */
.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to right, rgba(180, 60, 20, 0.4), rgba(160, 50, 15, 0.3));
    clip-path: polygon(0 100%, 100% 100%, 100% 60%, 85% 80%, 70% 50%, 55% 70%, 40% 40%, 25% 60%, 10% 30%, 0 50%);
}

@media (max-width: 768px) {
    .promo-banner {
        height: auto;
        padding: 40px 20px;
    }

    .promo-title {
        font-size: 24px;
    }

    .promo-title {
        font-size: 24px;
    }

    .line {
        width: 50px;
    }
}

/* Main Content Wrapper for Parallax Effect */
.main-content {
    position: relative;
    z-index: 2;
    margin-top: 100vh;
    background: var(--white);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

/* Parallax Content Wrapper for subpages */
.parallax-content {
    position: relative;
    z-index: 2;
    background: var(--white);
    margin-top: 0;
    width: 100%;
}

/* Dual Banner Section (Cruises & Sports) */
.dual-banner-section {
    padding: 60px 0;
    background: var(--white);
}

.dual-banner-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.dual-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 300px;
    /* Fixed height for consistency */
    transition: transform 0.3s ease;
}

.dual-card:hover {
    transform: translateY(-5px);
}

.dual-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.dual-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dual-card:hover .dual-card-image img {
    transform: scale(1.05);
    /* Zoom effect on hover */
}

.dual-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.dual-card-content {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--white);
    max-width: 60%;
}

.dual-card-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.dual-card .btn-orange {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 6px;
    display: inline-block;
    background: #ff8c00;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dual-card .btn-orange:hover {
    background: #e67e00;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .dual-banner-grid {
        flex-direction: column;
    }

    .dual-card {
        height: 250px;
    }

    .dual-card-content h3 {
        font-size: 1.6rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: url('statics/mountainsbg.png') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.testimonials-section .section-title {
    color: #0c0845;
    /* Dark navy for contrast on light sky */
    margin-bottom: 10px;
}

.testimonial-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    padding-top: 40px;
    /* Space for avatar */
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.client-avatar {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--white);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-top: 20px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #ff4500;
    transform: scale(1.2);
}

/* Explore The World Section */
.explore-world {
    background: #0b162a;
    /* Deep blue background */
    padding: 60px 0;
}

.dark-header .section-title {
    color: var(--white);
}

.white-underline {
    background: var(--white);
    opacity: 0.8;
}

.explore-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.explore-card {
    flex: 0 0 calc(25% - 15px);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.explore-card:hover {
    transform: translateY(-5px);
}

.explore-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card:hover img {
    transform: scale(1.1);
}

.explore-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
    text-align: center;
    color: var(--white);
}

.explore-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.explore-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #ff8c00;
    /* Orange accent */
}

@media (max-width: 992px) {
    .explore-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 576px) {
    .explore-card {
        flex: 0 0 calc(50% - 10px);
    }
}

/* Subpages Responsive Section */
@media (max-width: 768px) {
    .page-hero {
        height: 50vh !important;
        min-height: 300px !important;
    }

    .parallax-content {
        margin-top: 0 !important;
    }

    .page-hero h1 {
        font-size: 2.2rem !important;
    }

    .page-hero p {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    .tour-grid,
    .intern-grid,
    .destinations-grid,
    .deals-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 20px 0 !important;
    }

    /* 3 packages per row on mobile */
    .packages-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        padding: 10px 0 !important;
    }

    /* Compress section description */
    .section-description {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 1.4rem !important;
        margin-bottom: 5px;
    }

    .title-underline {
        margin: 0 auto 10px;
    }

    .section-header {
        margin-bottom: 15px !important;
    }

    /* Compress package card content */
    .package-card {
        height: 180px !important;
        aspect-ratio: auto !important;
    }

    .package-overlay {
        padding: 8px 5px !important;
    }

    .package-overlay h3 {
        font-size: 0.7rem !important;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }

    .package-overlay .tour-type {
        display: none;
    }

    .package-overlay .price-tag {
        font-size: 0.45rem !important;
        padding: 3px 6px !important;
        margin-bottom: 4px;
    }

    .package-overlay .btn-book {
        padding: 3px 8px !important;
        font-size: 0.55rem !important;
        gap: 3px;
    }

    /* Tour section fills remaining 65% of viewport */
    .tour-packages {
        min-height: calc(65dvh) !important;
        padding: 15px 0 10px !important;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .intro-section {
        padding: 40px 0 !important;
    }

    .intro-section h2 {
        font-size: 2rem !important;
    }

    .intern-card,
    .dest-card {
        height: 350px !important;
    }

    .dual-banner-grid {
        flex-direction: column !important;
    }

    .main-content {
        margin-top: 35dvh !important;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem !important;
    }

    .intern-card,
    .dest-card {
        height: 300px !important;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }

}

/* Scroll Down Icon Animation */
.scroll-down-icon {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.scroll-down-icon:hover {
    opacity: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Parallax Content Wrapper - Fixes whitespace issue */
.parallax-content {
    background: var(--white);
    margin-top: 0;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Scroll Animations */
.slide-up {
    animation: slideUpFade 0.8s ease forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flight Info Grid for Itinerary Pages */
.flight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 15px;
}

.flight-item {
    background: #f7f8fa;
    border-radius: 10px;
    padding: 16px;
    border-left: 3px solid #F5811E;
}

.flight-label {
    font-size: .7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 6px;
}

.flight-value {
    font-size: .92rem;
    color: #1a1a2e;
    font-weight: 600;
}

.flight-subtext {
    font-size: .82rem;
    color: #777;
    margin-top: 4px;
}

@media(max-width:600px) {
    .flight-grid {
        grid-template-columns: 1fr;
    }
}

/* --- New Tour Price Display --- */
.package-price {
    margin-top: 15px;
    text-align: left;
    margin-bottom: 20px;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 500;
}

.price-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-val .per-person {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.price-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    font-weight: 300;
}

/* =========================================
   ROBUST MOBILE DRAWER NAVIGATION (FIX)
   ========================================= */
@media (max-width: 768px) {

    /* Toggle Button - Ensure it's above the drawer */
    .mobile-menu-toggle {
        display: block;
        z-index: 100005 !important;
        transition: transform 0.3s ease;
        position: relative;
    }

    .mobile-menu-toggle.active {
        transform: rotate(90deg);
        position: fixed;
        right: 25px;
        top: 25px;
    }

    /* Full-Height Drawer */
    .nav-menu {
        display: flex !important;
        flex-direction: column !important;

        position: fixed !important;
        top: 0 !important;
        right: -320px !important;
        /* Hidden off-screen */
        bottom: 0 !important;
        width: 300px !important;
        height: 100vh !important;

        background: #0c0845 !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5) !important;
        padding: 80px 0 40px 0 !important;
        /* Top padding for close button */
        overflow-y: auto !important;
        z-index: 100000 !important;

        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;

        /* Reset old styles */
        border: none !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 0 !important;
        max-height: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-menu.active {
        right: 0 !important;
        /* Slide in */
    }

    /* Links */
    .nav-menu li {
        width: 100%;
        display: block;
        margin: 0;
        padding: 0;
    }

    .nav-menu>li>a {
        display: block;
        padding: 15px 25px !important;
        font-size: 0.95rem !important;
        color: rgba(255, 255, 255, 0.95) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        white-space: normal !important;
        line-height: 1.4 !important;
    }

    .nav-menu>li>a:hover {
        background: rgba(245, 129, 30, 0.15) !important;
        padding-left: 35px !important;
        color: var(--primary-orange) !important;
    }

    /* Submenu (More +) */
    .dropdown-menu {
        position: static !important;
        background: rgba(0, 0, 0, 0.2) !important;
        box-shadow: none !important;
        padding: 0 !important;
        display: none;
        width: 100% !important;
        min-width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu a {
        padding: 12px 25px 12px 45px !important;
        font-size: 0.85rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    }
}

/* =========================================
   ROBUST MOBILE DRAWER FIX (Start Closed)
   ========================================= */
@media (max-width: 768px) {
    .nav-menu {
        /* Ensure it starts CLOSED */
        right: 0 !important;
        left: auto !important;
        transform: translateX(100%) !important;
        /* Move fully off-screen right */
        transition: transform 0.3s ease-in-out !important;
        visibility: hidden !important;
        /* Hide visually until active */
        opacity: 0 !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
        /* Slide in */
        visibility: visible !important;
        opacity: 1 !important;
        right: 0 !important;
    }
}

/* =========================================
   FLATTEN MOBILE DROPDOWN (Remove + Toggle)
   ========================================= */
@media (max-width: 768px) {

    /* Hide the dropdown toggle button */
    .dropdown-toggle {
        display: none !important;
    }

    /* Force submenu to be always visible and flat */
    .dropdown-menu {
        display: block !important;
        position: static !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        width: 100% !important;
        min-width: 100% !important;
        border: none !important;
    }

    /* Style submenu links exactly like main links */
    .dropdown-menu a {
        padding: 15px 25px !important;
        /* Match top-level link padding */
        font-size: 0.95rem !important;
        /* Match top-level font size */
        color: rgba(255, 255, 255, 0.95) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        background: transparent !important;
    }

    /* Remove indentation on hover too */
    .dropdown-menu a:hover {
        padding-left: 35px !important;
        /* Match top-level hover effect */
        background: rgba(245, 129, 30, 0.15) !important;
        color: var(--primary-orange) !important;
    }
}

/* =========================================
   FLOATING MOBILE MENU (Final Layout)
   ========================================= */
@media (max-width: 768px) {
    .nav-menu {
        /* Reset Drawer & Position as Floating Box */
        position: fixed !important;
        top: 60px !important;
        left: 115px !important;
        right: 15px !important;
        bottom: auto !important;
        width: auto !important;
        height: auto !important;
        max-height: 80vh !important;
        margin-right: 5px;

        /* Styling */
        background: rgba(12, 8, 69, 0.98) !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 15px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
        padding: 10px 0 !important;

        /* Animation State: Hidden */
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        /* Note: This overrides translateX from previous block */
        transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        z-index: 99999 !important;
    }

    .nav-menu.active {
        /* Animation State: Visible */
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    /* Uniform Link Alignment */
    .nav-menu li a,
    .dropdown-menu a {
        text-align: left !important;
        padding: 12px 25px !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        /* Allow wrapping */
        line-height: 1.4 !important;
    }

    /* Remove last border */
    .nav-menu li:last-child a {
        border-bottom: none !important;
    }

    /* Icon styling alignment */
    .nav-menu i {
        width: 25px;
        text-align: center;
        margin-right: 10px;
    }

    /* Reset toggle position for floating menu (no jump) */
    .mobile-menu-toggle.active {
        position: relative !important;
        right: auto !important;
        top: auto !important;
    }

    /* Force hide dropdown toggle (+) */
    .dropdown-toggle {
        display: none !important;
    }
}

/* =========================================
   FORCE HIDE TOGGLE (High Specificity Fix)
   ========================================= */
@media (max-width: 768px) {

    .nav-menu li a.dropdown-toggle,
    .nav-menu .dropdown-toggle {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        overflow: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Mobile Category Cards Padding */
@media (max-width: 768px) {
    .category-cards-container {
        padding: 0 20px !important;
        top: 60px !important;
    }

    /* Hide scroll down icon on mobile */
    .scroll-down-icon {
        display: none !important;
    }
}