/* 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: 40px;
    width: auto;
    margin-right: 10px;
}

.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);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.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;
}

/* 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;
}

@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: 0 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.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Our Tours specific layout (split into two sub-cols if needed, but grid/flex works) */
.tours-content {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    /* Further increased gap */
    flex-wrap: nowrap;
}

.contact-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.contact-icons a {
    color: white;
    font-size: 1.2rem;
    transition: opacity 0.3s;
}

.contact-icons a:hover {
    opacity: 0.8;
}

/* Newsletter styling */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.newsletter-input-group {
    display: flex;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    padding: 2px;
}

.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: 1fr;
    }

    .footer-column {
        border-left: none !important;
        padding: 0;
    }
}



/* 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) {
    .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 Slider Adjustments */
    .hero-slider {
        height: 70vh;
        /* Shorter hero on mobile to prevent overlap */
        min-height: 450px;
    }

    .slide-content {
        padding: 15px;
        max-width: 90%;
        transform: translateY(-40px);
        /* Lift content up */
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-subtitle {
        font-size: 0.9rem;
    }

    .slide-price {
        font-size: 1.1rem;
    }

    /* 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 {
        gap: 25px;
    }

    .footer-column {
        padding: 0 15px;
        text-align: center;
    }

    .footer-links-list a {
        justify-content: center;
    }

    .tours-content {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* 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: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.explore-card {
    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-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 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,
    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 20px 0 !important;
    }

    .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: 70vh !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;
}