/* ----- your exact root & global styles (unchanged) ----- */
:root {
    --primary: #1E3E8A;
    --secondary: #2F5FB3;
    --accent: #2FA7C6;
    --success: #3FAF4A;
    --dark: #333333;
    --light: #F1F1F1;

    /* --font-montez: "Montez", cursive; */
    --font-greatvibes: "Great Vibes", cursive;
    --font-parisienne: "Parisienne", cursive;
    --font-alexbrush: "Alex Brush", cursive;

}

body {
    margin: 0;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        sans-serif;
    background-color: #ffffff;
    color: var(--dark);
    overflow-x: hidden;
}


/* Disable global card hover logic for Contact Page components */
    main .card.shadow-lg {
        transition: none !important;
    }
    main .card.shadow-lg:hover {
        transform: none !important;
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important; /* Keep original shadow-lg */
        border-color: transparent !important;
    }

.text-muted{
    color: #2c2c2c !important;
}

/* ===== GLOBAL HEADING STYLES - ALL H2 SAME ===== */
.section-heading h2,
.global-title,
.tour-package-section .section-heading h2,
.about-heading-2024,
.premier-destination-section .section-heading h2 {
    font-size: clamp(1.4rem, 4vw, 2.5rem) !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    margin-bottom: 0;
    line-height: 1.2;
}

h3,
h4 {
    color: var(--secondary);
}

/* ===== GLOBAL SUB-TITLE STYLES - ALL SAME ===== */
.section-heading .sub-title,
.global-sub,
.about-company-name-2024 {
    font-family: var(--font-parisiennefont-parisienne) !important;
    font-size: clamp(1.3rem, 5vw, 2rem) !important;
    color: var(--accent) !important;
    display: inline-block;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

/* ===== GLOBAL BUTTON STYLES - ALL SAME ===== */
.btn-primary,
.tc-btn-outline,
.about-btn-2024 {
    background-color: var(--secondary) !important;
    border: 2px solid var(--secondary) !important;
    color: white !important;
    border-radius: 40px !important;
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.btn-primary:hover,
.tc-btn-outline:hover,
.about-btn-2024:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 62, 138, 0.3);
}

/* Small button variant */
.btn-sm.btn-primary {
    padding: 0.5rem 1.5rem !important;
    font-size: 0.9rem !important;
}

/* Icon styles within buttons */
.btn-primary i,
.tc-btn-outline i,
.about-btn-2024 i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i,
.tc-btn-outline:hover i,
.about-btn-2024:hover i {
    transform: translateX(5px);
}

/* ========== SECTION 1 - HEADER ========== */
.header-area.style-five {
    position: relative;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    z-index: 1050;
    padding: 0px !important;
    transition: all 0.3s ease;
}

/* Sticky class added on scroll */
.header-area.style-five.sticky {
    background: #ffffff !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    top: 0 !important;
    padding: 0px !important;
    position: fixed !important;
    /* Make sure this is set */
    width: 100% !important;
    z-index: 9999 !important;
    /* Higher z-index */
}

.header-area.style-five.sticky .navbar-nav .nav-link,
.header-area.style-five.sticky .navbar-nav .touria-dd>a {
    color: var(--dark) !important;
    text-shadow: none;
}

/* Default (transparent navbar) */
.navbar-brand span {
    color: var(--primary);
    transition: 0.3s ease;
    font-size: 32px !important;
    font-family: math;
}

/* Sticky state */
.header-area.style-five.sticky .navbar-brand span {
    color: var(--dark);
    /* Brand Yellow */
}

.header-area.style-five.sticky .navbar-nav .touria-dd>a i {
    color: var(--dark);
}

.header-area.style-five.sticky .header-search-btn .btn {
    background: var(--accent) !important;
}

.header-area.style-five.sticky .header-search-btn .btn svg path {
    stroke: white !important;
}

.header-area.style-five.sticky .offcanvas-icon {
    background: var(--accent) !important;
}

.header-area.style-five.sticky .offcanvas-icon svg path {
    fill: white !important;
}

.header-area.style-five.sticky .navbar-toggler {
    border-color: var(--dark);
}

.header-area.style-five.sticky .navbar-toggler i {
    color: var(--dark);
}

.header-area.style-five.sticky .navbar-brand img {
    color: #ff9f1c;
}

.navbar-brand img {
    height: 72px;
    width: auto;
}

.navbar-nav .nav-link,
.navbar-nav .touria-dd>a {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 0.5rem 1rem;
    /* text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); */
    display: flex;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
}

/* Remove dropdown indicators */
.navbar-nav .touria-dd>a i {
    display: none;
}

.navbar-nav .touria-dd>a:hover {
    color: var(--primary) !important;
}

.navbar-nav .touria-dd.active>a {
    color: var(--secondary) !important;
}

/* Header icons with white background */
.header-search-btn .btn {
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    transition: background-color 0.3s ease;
}

.header-search-btn .btn svg path {
    stroke: var(--accent);
    transition: stroke 0.3s ease;
}

.offcanvas-icon {
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.offcanvas-icon svg path {
    fill: var(--accent);
    transition: fill 0.3s ease;
}

.navbar-toggler {
    border: 1.5px solid var(--dark);
    color: var(--dark);
    background: transparent;
}

.navbar-toggler i {
    font-size: 1.6rem;
    color: var(--dark);
}

/* Header Enquiry Button Style */
.header-area .btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.header-area .btn-primary:hover {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

/* ===== FIX: MOBILE HAMBURGER MENU DROPDOWN BACKGROUND ===== */
@media (max-width: 1199.98px) {

    /* matches expand-xl breakpoint */
    .navbar-collapse {
        background: white !important;
        padding: 1.5rem !important;
        border-radius: 20px !important;
        margin-top: 1rem !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }

    /* Style the nav links inside dropdown for mobile */
    .navbar-nav .nav-link,
    .navbar-nav .touria-dd>a {
        color: var(--dark) !important;
        text-shadow: none !important;
        padding: 0.75rem 1rem !important;
        border-radius: 10px !important;
        transition: background 0.2s;
    }

    .navbar-nav .touria-dd>a:hover {
        background: rgba(30, 62, 138, 0.1) !important;
        color: var(--primary) !important;
    }

    /* Header navigation items in mobile view */
    .header-navigation {
        margin-top: 1rem !important;
        padding-top: 1rem !important;
        border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
        justify-content: center !important;
    }

    /* Make button full width on mobile */
    .header-navigation .btn-primary {
        width: 100% !important;
        justify-content: center !important;
        margin-top: 0.5rem !important;
    }

    /* Adjust icon colors for mobile */
    .header-search-btn .btn {
        background: var(--primary) !important;
    }

    .header-search-btn .btn svg path {
        stroke: white !important;
    }

    .offcanvas-icon {
        background: var(--primary) !important;
    }

    .offcanvas-icon svg path {
        fill: white !important;
    }
}

/* Small screens adjustments */
@media (max-width: 567px) {
    .navbar-collapse {
        padding: 1rem !important;
    }

    .header-navigation {
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }

    .header-search-btn .btn,
    .offcanvas-icon {
        width: 45px !important;
        height: 45px !important;
    }
}

/* SECTION 1 - HEADER completed */

/* ========== SECTION 2 - HERO SECTION started========== */
.hero-parallax {
    position: relative;
    width: 100%;
    /* Default height for desktop > 1300px (maintained from original design) */
    height: 600px;
    min-height: 600px;
    overflow: hidden;
    background-color: #0a1a12;
    color: white;
}

/* Perfect proportional scaling below 1300px */
@media (max-width: 1300px) {
    .hero-parallax {
        height: auto;
        min-height: auto;
        aspect-ratio: 2 / 1;
    }
}

/* Background layers */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    /* default: fully centered */
    background-repeat: no-repeat;
    transform: translateZ(0);
    will-change: transform;
    z-index: 1;
    transition: background-image 0.8s ease-in-out;
}

/* Ensure banner image is fully visible on mobile to tablet devices */
@media (max-width: 768px) {
    .parallax-bg {
        background-size: 100% 100%;
    }
}

/* Slider backgrounds */
.parallax-bg.slide-1 {
    background-image: url("../new/banner/banner4.jpg");
}

.parallax-bg.slide-2 {
    background-image: url("../new/banner/banner22.jpg");
}

.parallax-bg.slide-3 {
    background-image: url("../new/banner/banner3.jpg");
}

/* @media (max-width: 576px){

.parallax-bg.slide-1{
    background-image: url("../new/banner/mobilebanner1.jpg");
}

.parallax-bg.slide-2{
    background-image: url("../new/banner/banner2-mobile.jpg");
}

.parallax-bg.slide-3{
    background-image: url("../new/banner/banner3-mobile.jpg");
}

} */

/* ===== Flight Section ===== */

/* ===== Flight Section ===== */
.plane-transition-wrapper {
    position: relative;
    height: 400px;
    margin-top: -200px;
    margin-bottom: -200px;
    z-index: 20;
    pointer-events: none;
    overflow: visible;
}

/* Clouds - Full width */
.parallax-clouds {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 100%;
    height: 100%;
    /* transform: translateY(-50%); */
    background: url("../img/cloud2.png") center/cover no-repeat;
    opacity: 32.0;
    pointer-events: none;
    z-index: 12;
    /* animation: floatClouds 20s ease-in-out infinite; */
}

/* Plane - Centered horizontally */
.parallax-plane {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Center horizontally */
    width: 80%;
    transform: translate(-50%);
    /* Center both horizontally and vertically */
    filter: drop-shadow(0 40px 40px rgba(0, 0, 0, 0.35));
    z-index: 15;
    animation: floatPlane 6s ease-in-out infinite;
}

.parallax-plane img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Overlay */
.parallax-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--success));
    opacity: 0.6;
    /* Added opacity for better visibility of background image */
    border-radius: 30px;
    z-index: 4;
    pointer-events: none !important;
}

/* Content */
.parallax-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.parallax-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.parallax-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.parallax-content .btn-primary {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatPlane {
    0% {
        transform: translate(-50%, -50%) translateY(0) rotate(0deg);
    }

    25% {
        transform: translate(-50%, -52%) translateY(-5px) rotate(0.5deg);
    }

    50% {
        transform: translate(-50%, -50%) translateY(0) rotate(0deg);
    }

    75% {
        transform: translate(-50%, -48%) translateY(5px) rotate(-0.5deg);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0) rotate(0deg);
    }
}

@keyframes floatClouds {
    0% {
        transform: translateY(-50%) translateX(-2%);
    }

    50% {
        transform: translateY(-50%) translateX(2%);
    }

    100% {
        transform: translateY(-50%) translateX(-2%);
    }
}

/* Responsive adjustments for all screen sizes */
@media screen and (min-width: 1600px) {
    .plane-transition-wrapper {
        height: 500px;
        margin-top: -250px;
        margin-bottom: -250px;
    }

    .parallax-clouds {
        top: 25%;
    }
}

@media screen and (max-width: 1400px) {
    .plane-transition-wrapper {
        height: 420px;
        margin-top: -210px;
        margin-bottom: -210px;
    }
}

@media screen and (max-width: 1200px) {
    .plane-transition-wrapper {
        height: 380px;
        margin-top: -190px;
        margin-bottom: -190px;
    }
}

@media screen and (max-width: 992px) {
    .plane-transition-wrapper {
        height: 340px;
        margin-top: -170px;
        margin-bottom: -170px;
    }

    .parallax-clouds {
        top: 28%;
    }
}

@media screen and (max-width: 768px) {
    .plane-transition-wrapper {
        height: 300px;
        margin-top: -150px;
        margin-bottom: -150px;
    }

    .parallax-clouds {
        top: 30%;
        opacity: 0.8;
    }

    .parallax-plane {
        filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.3));
    }
}

@media screen and (max-width: 576px) {
    .plane-transition-wrapper {
        height: 250px;
        margin-top: -125px;
        margin-bottom: -125px;
    }

    .parallax-clouds {
        top: 32%;
        opacity: 0.7;
    }

    .parallax-plane {
        filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.25));
    }
}

@media screen and (max-width: 480px) {
    .plane-transition-wrapper {
        height: 200px;
        margin-top: -100px;
        margin-bottom: -100px;
    }

    .parallax-clouds {
        top: 35%;
    }
}

@media screen and (max-width: 375px) {
    .plane-transition-wrapper {
        height: 170px;
        margin-top: -85px;
        margin-bottom: -85px;
    }

    .parallax-clouds {
        top: 38%;
    }
}

@media screen and (max-width: 320px) {
    .plane-transition-wrapper {
        height: 140px;
        margin-top: -70px;
        margin-bottom: -70px;
    }

    .parallax-clouds {
        top: 40%;
    }
}

/* flight section endd  */

/* Slider controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.3);
    border-color: white;
}

.slider-dot:hover {
    background: white;
}

/* Slide content animation */
.slide-content {
    transition: opacity 0.5s ease;
}

.slide-content.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

.slide-content.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========== COMPREHENSIVE RESPONSIVENESS (320–1600) ========== */
@media (min-width: 320px) and (max-width: 567px) {
    .parallax-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .parallax-content p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem;
    }

    .parallax-plane {
        width: 90% !important;
        bottom: 10%;
    }

    .btn-primary {
        padding: 0.5rem 1.25rem !important;
        font-size: 0.9rem !important;
    }

    .parallax-overlay {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 20px;
    }

    .navbar-brand img {
        height: 32px;
    }

    .header-search-btn .btn,
    .offcanvas-icon {
        width: 34px;
        height: 34px;
    }

    .offcanvas-icon svg {
        width: 20px;
        height: 14px;
    }
}

@media (min-width: 568px) and (max-width: 767px) {
    .parallax-content h1 {
        font-size: 2.2rem !important;
    }

    .parallax-content p {
        font-size: 1.1rem !important;
    }

    .parallax-plane {
        width: 90% !important;
        bottom: 12%;
    }

    .parallax-overlay {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .parallax-content h1 {
        font-size: 2.8rem !important;
    }

    .parallax-content p {
        font-size: 1.2rem !important;
    }

    .parallax-plane {
        width: 90% !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .parallax-content h1 {
        font-size: 3.2rem !important;
    }

    .parallax-plane {
        width: 90% !important;
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .parallax-content h1 {
        font-size: 3.5rem !important;
    }
}

@media (min-width: 1600px) {
    .parallax-content h1 {
        font-size: 4rem !important;
    }

    .parallax-content p {
        font-size: 1.4rem !important;
        max-width: 900px;
    }

    .parallax-plane {
        width: 90% !important;
    }
}

@media (max-width: 400px) {
    .parallax-content .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* removed broken about-company-section-2024 override from here */
}

/* ========== SECTION 2 - HERO SECTION ended ========== */

/* =========== SECTION 3 - About started ============= */
.about-company-section-2024 {
    position: relative;
    z-index: 1;
    padding: 60px 0 60px;
    background-color: white !important;
}

.about-mv-item-2024 {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.about-icon-wrapper-2024 svg {
    width: 40px;
    height: 40px;
}

.about-icon-wrapper-2024 svg path:first-child {
    fill: var(--accent);
}

.about-image-wrapper-2024 {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    height: 510px;
}

.about-image-2024 {
    width: 46%;
    height: 100%;
    object-fit: cover;
}

.about-image-left-2024 {
    border-radius: 300px 0 0 300px;
    transform: translateY(25px);
}

.about-image-right-2024 {
    border-radius: 0 300px 300px 0;
    transform: translateY(-45px);
}

/* responsiveness  */
/* Responsive styles for About Us section */
@media (max-width: 1199px) {
    .about-image-wrapper-2024 {
        height: 440px;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .about-company-section-2024 {
        padding: 60px 0;
    }

    .about-image-wrapper-2024 {
        height: 400px;
        flex-direction: row;
        /* Ensure side-by-side on tablets */
        gap: 20px;
        justify-content: center;
        margin-top: 40px !important;
    }

    .about-image-2024 {
        width: 47%;
        height: 100%;
        object-fit: cover;
    }

    .about-image-left-2024 {
        transform: translateY(20px);
        border-radius: 200px 0 0 200px;
    }

    .about-image-right-2024 {
        transform: translateY(-20px);
        border-radius: 0 200px 200px 0;
    }
}

@media (max-width: 767px) {
    .about-company-section-2024 {
        padding: 40px 0;
    }

    .about-heading-2024 {
        font-size: 1.8rem;
    }

    .about-image-wrapper-2024 {
        height: auto;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .about-image-2024 {
        width: 100%;
        height: 280px;
    }

    .about-image-left-2024,
    .about-image-right-2024 {
        transform: none;
        border-radius: 25px;
    }

    .about-mv-item-2024 {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 575px) {
    .about-company-section-2024 {
        padding: 50px 0;
    }

    .about-heading-2024 {
        font-size: 1.6rem;
    }

    .about-image-2024 {
        height: 220px;
    }

    .about-btn-2024 {
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }
}

/* @media (min-width: ) and (max-width) {
    .about-image-2024 {
        width: 52%;
        height: 100%;
        object-fit: cover;
    }
} */
/* ===========SECTION 3 - About ended ================ */

/* ===============SECTION 4 - SERVICES started =========== */
.td-unique-root * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.td-unique-root {
    --td-font-inter: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --td-font-montez: "Montez", cursive;
    font-family: var(--td-font-inter);
    background-color: var(--td-light);
    color: var(--td-dark);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
}

/* ===== MAIN SECTION CONTAINER ===== */
.td-deals-section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-color: var(--primary);
    position: relative;
    z-index: 1;
}

/* ===== LEFT COLUMN – accent background ===== */
.td-countdown-col {
    flex: 0 0 280px;
    width: 280px;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;
    gap: 30px;
    min-height: 500px;

    border-right: 1px solid rgba(0, 0, 0, 0.08);

    background-image: url("../gallery/review.jpg");
    /* change path if needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay */
.td-countdown-col::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.55); */
    /* dark overlay */
}

/* left column heading – exactly as requested */
.td-countdown-col h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: white !important;
    /* #1b4332 */
    margin-bottom: 0;
    line-height: 1.2;
    font-family: var(--td-font-inter);
    text-align: center;
    max-width: 220px;
}

/* ===== RIGHT COLUMN ===== */
.td-deals-content-col {
    flex: 1;
    width: calc(100% - 280px);
    padding: 40px 30px;
    min-width: 0;
    /* Fix flex overflow */
}

/* ----- DIVIDERS ----- */
.td-divider-main {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.td-divider-small {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 15px 0;
}

/* ----- SECTION HEADING (Deals & Offers) ----- */
.td-heading-wrapper {
    margin-bottom: 0;
}

/* exact style for .td-heading-sub (Deals & Offers) */
.td-heading-sub {
    font-family: var(--font-parisienne) !important;
    font-size: 2rem !important;
    color: var(--accent) !important;
    display: inline-block;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

/* exact style for h2 (Last-Minute Deals) */
.td-heading-main {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.2;
}

.td-text-white {
    color: #fff;
}

/* ----- FLEX HELPERS ----- */
.td-flex {
    display: flex;
}

.td-flex-wrap {
    flex-wrap: wrap;
}

.td-justify-between {
    justify-content: space-between;
}

.td-items-center {
    align-items: center;
}

.td-mb-0 {
    margin-bottom: 0;
}

/* ----- NAVIGATION ARROWS ----- */
.td-nav-container {
    display: flex;
    gap: 10px;
}

.td-nav-prev,
.td-nav-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: 0.2s;
    z-index: 10;
}

.td-nav-prev:hover,
.td-nav-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.td-icon-left:before {
    content: "←";
}

.td-icon-right:before {
    content: "→";
}

/* ===== SWIPER / SLIDER ===== */
.td-swiper {
    width: 100%;
    overflow: hidden;
    /* Must be hidden — Swiper clips slides here */
    position: relative;
}

.td-swiper-wrapper {
    display: flex;
    flex-direction: row;
    /* No gap here — Swiper JS spaceBetween handles spacing via margin */
}

.td-swiper-slide {
    flex-shrink: 0;
    height: auto;
}

/* Responsive slide sizing — let Swiper JS control widths via slidesPerView
   CSS here only sets box model so cards fill each Swiper slot properly.
*/
.td-unique-root .td-swiper {
    overflow: hidden !important;
    padding: 0;
    width: 100%;
}

.td-unique-root .td-swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    /* gap handled by spaceBetween in JS */
    align-items: stretch;
}

.td-unique-root .td-swiper-slide {
    flex-shrink: 0;
    height: auto;
    box-sizing: border-box;
    /* Width is set entirely by Swiper JS slidesPerView — do NOT set width here */
    display: flex;
    align-items: stretch;
}

/* ===== TESTIMONIAL CARD ===== */
.td-deal-card {
    background: var(--light);
    border-radius: 20px;
    padding: 18px 16px 16px 16px;
    transition: transform 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    /* Fill the full Swiper slide slot */
    max-width: none;
    /* No cap — Swiper controls width */
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.td-deal-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

/* ----- TESTIMONIAL ROW (icon + text) ----- */
.td-location-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 12px 0;
}

.td-location-icon {
    color: var(--secondary);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.td-location-text {
    color: var(--dark);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* ----- CUSTOMER INFO (location & name) ----- */
.td-price-row {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.td-price-label {
    color: #4e6459;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.td-price-value {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

/* ===== RESPONSIVE (preserved & improved) ===== */
@media (max-width: 991px) {
    .td-deals-section {
        flex-direction: column;
    }

    .td-countdown-col {
        flex: 0 0 auto;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        min-height: 250px;
        padding: 40px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        gap: 20px;
        background-attachment: scroll;
        /* Fix for mobile background */
    }

    .td-countdown-col h1 {
        font-size: 2.2rem !important;
        max-width: 100%;
        text-align: center;
    }

    .td-deals-content-col {
        flex: 0 0 100%;
        width: 100%;
        padding: 30px 20px;
    }

    .td-nav-container {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .td-countdown-col h1 {
        font-size: 2rem !important;
    }

    .td-deals-content-col {
        padding: 25px 15px;
    }

    .td-heading-main {
        font-size: 1.8rem !important;
    }

    .td-heading-sub {
        font-size: 1.6rem !important;
    }

    .td-deal-card {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .td-deals-content-col {
        padding: 20px 12px;
    }

    .td-heading-main {
        font-size: 1.6rem !important;
    }

    .td-nav-prev,
    .td-nav-next {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* ===============SECTION 4 - SERVICES ended =========== */
/* ===============SECTION 5 - 4 images on ============= */
.premier-destination-section {
    padding: 60px 0;
    background: var(--light);
    overflow: hidden;
    /* Prevent any horizontal bleed */
}

/* Heading spacing */
.premier-destination-section .section-heading {
    margin-bottom: 0.5rem;
}

.premier-destination-section .sub-title {
    margin-bottom: 0.25rem;
}

.premier-destination-section .row.mb-4 {
    margin-bottom: 2rem !important;
}

/* Swiper container - fully contained, no overflow */
.premier-destination-swiper {
    overflow: hidden !important;
    padding: 0 0 10px 0;
    width: 100%;
}

/* All slides: uniform fixed width, smooth transition */
.premier-destination-swiper .swiper-slide {
    width: auto;
    height: 460px;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 20px;
    overflow: hidden;
}

/* Active slide: expands */
.premier-destination-swiper .swiper-slide.active-slide {
    flex: 1 1 auto;
}

/* Card fills the full slide height */
.premier-destination-card {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.premier-destination-content {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            transparent 70%);
    border-radius: 0 0 20px 20px;
    color: white;
}

.premier-destination-content h3 {
    color: white !important;
    /* White on dark gradient for contrast */
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.premier-destination-content i {
    color: var(--accent) !important;
}

.premier-destination-content p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.premier-destination-content .btn-sm.btn-primary {
    margin-top: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Collapsed (non-active) slides: hide text for cleanliness */
.premier-destination-swiper .swiper-slide:not(.active-slide) .premier-destination-content {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premier-destination-swiper .swiper-slide.active-slide .premier-destination-content {
    opacity: 1;
    transition: opacity 0.4s ease 0.2s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .premier-destination-swiper .swiper-slide {
        height: 420px;
    }
}

@media (max-width: 992px) {
    .premier-destination-section {
        padding: 40px 0;
    }

    .premier-destination-swiper .swiper-slide {
        height: 380px;
    }

    /* On tablet show content always */
    .premier-destination-swiper .swiper-slide:not(.active-slide) .premier-destination-content {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .premier-destination-swiper .swiper-slide {
        height: 340px;
    }

    .premier-destination-content {
        padding: 1rem;
    }

    .premier-destination-content h3 {
        font-size: 1.1rem;
    }

    .section-heading h2 {
        font-size: 1.8rem;
        color: var(--primary) !important;
    }

    .section-heading .sub-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .premier-destination-section {
        padding: 30px 0;
    }

    .premier-destination-swiper .swiper-slide {
        height: 300px;
    }

    .premier-destination-content h3 {
        font-size: 1rem;
    }

    .premier-destination-content .btn-sm {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .section-heading h2 {
        font-size: 1.5rem;
    }

    .section-heading .sub-title {
        font-size: 1.4rem;
    }
}

/* ===============SECTION 5 - 4 images off ============= */

/* Services slider navigation buttons */
.premier-prev-btn,
.premier-next-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.premier-prev-btn:hover,
.premier-next-btn:hover {
    background: var(--secondary);
    transform: scale(1.08);
}

/* ================== SECTION 6 -  Tour ===============*/
.tc-section-padding {
    padding: 4rem 0;
    background: white;
    background-image: url("../img/new/bg_img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tc-badge {
    background: var(--light) !important;
    color: var(--dark) !important;
    border: 1px solid rgba(30, 62, 138, 0.2);
    padding: 0.7rem 1rem;
    border-radius: 60px;
    font-weight: 600;
    min-width: 160px;
    max-width: 180px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tc-left-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.2rem;
}

.tc-right-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.tc-img-wrapper img {
    max-width: 380px;
    width: 100%;
    border-radius: 28px;
    border: 2px solid var(--light);
    display: block;
    margin: 0 auto;
}

/* .tc-unique-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSIjZjFmYWVlIj48cGF0aCBkPSJNMjEgMTZ2LTJsLTMtM3YtNGMwLTEuMS0uOS0yLTItMkg4Yy0xLjEgMC0yIC45LTIgMnY0bC0zIDN2Mmg1djVsNiAydi03aDd6Ii8+PC9zdmc+');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 70%;
  border-radius: 42px;
  padding: 2.8rem 2rem;
  background-color: white;
  box-shadow: 0 20px 40px rgba(0,0,0,0.02);
  position: relative;
  z-index: 1;
}
.tc-unique-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.88);
  border-radius: 42px;
  z-index: -1;
} */
.tc-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.tc-nav-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 1.2rem;
    color: var(--dark);
}

.tc-nav-title i {
    color: var(--primary);
    font-size: 2rem;
    margin-right: 6px;
}

.tc-nav-prev,
.tc-nav-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    transition: 0.2s;
}

.tc-nav-prev:hover,
.tc-nav-next:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ===== RESPONSIVE FIXES ===== */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .tc-section-padding {
        padding: 3rem 0;
    }

    .tc-unique-card {
        padding: 2rem 1.5rem;
        border-radius: 36px;
    }

    .tc-unique-card::after {
        border-radius: 36px;
    }

    .tc-left-group,
    .tc-right-group {
        align-items: center;
        /* center badges on tablet */
        gap: 1rem;
    }

    .tc-left-group .tc-badge,
    .tc-right-group .tc-badge {
        min-width: 140px;
        max-width: 160px;
        font-size: 0.9rem;
        height: 50px;
    }

    .tc-img-wrapper img {
        max-width: 300px;
    }

    .tc-nav-title {
        font-size: 1.8rem;
        margin: 0 0.8rem;
    }

    .tc-nav-prev,
    .tc-nav-next {
        width: 42px;
        height: 42px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .tc-section-padding {
        padding: 2rem 0;
    }

    .tc-unique-card {
        padding: 1.5rem 1rem;
        border-radius: 30px;
    }

    .tc-unique-card::after {
        border-radius: 30px;
    }

    /* Stack left/right groups below image (Bootstrap grid already does this) */
    .tc-left-group,
    .tc-right-group {
        align-items: center;
        gap: 0.8rem;
        margin: 0.5rem 0;
    }

    .tc-left-group .tc-badge,
    .tc-right-group .tc-badge {
        min-width: 130px;
        max-width: 150px;
        font-size: 0.85rem;
        height: 46px;
        padding: 0.5rem;
    }

    .tc-img-wrapper img {
        max-width: 250px;
        border-radius: 20px;
    }

    .tc-nav-wrapper {
        margin-bottom: 0.5rem;
    }

    .tc-nav-title {
        font-size: 1.5rem;
        margin: 0 0.5rem;
    }

    .tc-nav-title i {
        font-size: 1.5rem;
    }

    .tc-nav-prev,
    .tc-nav-next {
        width: 38px;
        height: 38px;
    }

    .tc-btn-outline {
        padding: 0.6rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

/* Small mobile (max-width: 575px) */
@media (max-width: 575px) {
    .tc-unique-card {
        padding: 1.2rem 0.8rem;
    }

    .tc-left-group .tc-badge,
    .tc-right-group .tc-badge {
        min-width: 120px;
        max-width: 140px;
        font-size: 0.8rem;
        height: 42px;
    }

    .tc-img-wrapper img {
        max-width: 200px;
    }

    .tc-nav-title {
        font-size: 1.3rem;
        margin: 0 0.3rem;
    }

    .tc-nav-prev,
    .tc-nav-next {
        width: 34px;
        height: 34px;
    }

    .tc-btn-outline {
        padding: 0.5rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
}

/* ================== SECTION 6 - Tour ================= */

/* ================= SECTION 7 - Gallery ===============  */
.tour-package-section {
    padding: 60px 0;
    background: var(--light);
}

.touria-filter-nav {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 60px;
    background: var(--primary) !important;
}

.touria-filter-nav .nav-link {
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary) !important;
    background: white !important;
    border: none;
    /* text-transform: uppercase; */
}

.touria-filter-nav .nav-link.active {
    background: var(--accent) !important;
    color: white !important;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}

.grid-col-left {
    width: calc(50% - 12px);
}

.grid-col-right {
    width: calc(50% - 12px);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.right-card {
    width: calc(50% - 12px);
}

.tour-package-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(0, 20, 30, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-package-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.left-card img {
    height: 560px;
}

.right-card img {
    height: 260px;
}

.tour-package-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px 34px;
    background: linear-gradient(0deg,
            rgba(0, 20, 30, 0.9) 0%,
            rgba(0, 40, 60, 0.3) 90%);
    color: white;
}

.right-card .tour-package-content {
    padding: 16px 18px;
}

.tour-package-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
}

.right-card .tour-package-content h2 {
    font-size: 1.2rem;
}

/* responsiveness  */
/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .tour-package-section {
        padding: 50px 0;
    }

    /* Filter navigation – smaller buttons */
    .touria-filter-nav {
        padding: 10px 15px;
        gap: 6px;
        justify-content: center;
        /* ensure centered */
    }

    .touria-filter-nav .nav-link {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    /* Adjust grid gaps */
    .grid-container {
        gap: 20px;
    }

    .grid-col-right {
        gap: 20px;
    }

    /* Scale down left card image */
    .left-card img {
        height: 500px;
    }

    .right-card img {
        height: 240px;
    }

    .tour-package-content {
        padding: 24px 24px 28px;
    }

    .right-card .tour-package-content {
        padding: 14px 16px;
    }

    .tour-package-content h2 {
        font-size: 1.4rem;
    }

    .right-card .tour-package-content h2 {
        font-size: 1.1rem;
    }
}

/* Mobile & small tablets (max-width: 768px) */
@media (max-width: 768px) {
    .tour-package-section {
        padding: 40px 0;
    }

    /* Filter navigation – keep centered, slightly smaller */
    .touria-filter-nav {
        padding: 8px 12px;
        gap: 5px;
        justify-content: center;
    }

    .touria-filter-nav .nav-link {
        padding: 6px 14px;
        font-size: 0.85rem;
    }

    /* Stack columns vertically */
    .grid-col-left,
    .grid-col-right {
        width: 100%;
    }

    /* In right column, cards become 2 per row on tablets */
    .right-card {
        width: calc(50% - 10px);
    }

    .grid-col-right {
        gap: 20px;
    }

    .left-card img {
        height: 400px;
    }

    .right-card img {
        height: 220px;
    }

    .tour-package-content h2 {
        font-size: 1.3rem;
    }

    .right-card .tour-package-content h2 {
        font-size: 1rem;
    }
}

/* Small mobile (max-width: 576px) */
@media (max-width: 576px) {
    .tour-package-section {
        padding: 30px 0;
    }

    /* Filter navigation – stacked vertically, one button per row */
    .touria-filter-nav {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: stretch;
        overflow-x: visible;
        /* remove horizontal scroll */
        padding: 10px;
        gap: 8px;
        background: none !important;
    }

    .touria-filter-nav .nav-link {
        width: 100%;
        /* full width */
        padding: 10px 12px;
        /* comfortable tap size */
        font-size: 0.9rem;
        white-space: normal;
        /* allow text to wrap if needed */
        text-align: center;
    }

    /* Right column cards stack in one column */
    .right-card {
        width: 100%;
    }

    .grid-container {
        gap: 15px;
    }

    .grid-col-right {
        gap: 15px;
    }

    .left-card img {
        height: 300px;
    }

    .right-card img {
        height: 200px;
    }

    .tour-package-content {
        padding: 18px 20px 22px;
    }

    .right-card .tour-package-content {
        padding: 12px 14px;
    }

    .tour-package-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.25rem !important;
    }

    .tour-package-content h5 {
        font-size: 0.9rem;
    }

    .tour-package-content p {
        font-size: 0.85rem;
        margin-top: 0.25rem;
    }

    .right-card .tour-package-content h2 {
        font-size: 1rem;
    }
}

/* Extra small devices (max-width: 375px) */
@media (max-width: 375px) {
    .left-card img {
        height: 250px;
    }

    .right-card img {
        height: 180px;
    }

    .tour-package-content {
        padding: 14px 16px 18px;
    }
}

/* ================= SECTION 7 - Gallery ===============  */

/* =================FOOTER LAST =========================*/
.footer-tropical {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-tropical a {
    color: var(--accent);
    text-decoration: none;
    transition: 0.2s;
}

.footer-tropical a:hover {
    color: var(--success);
}

.footer-logo {
    height: 95px;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-contact i {
    width: 24px;
    color: var(--accent);
    margin-right: 8px;
}

.footer-tropical .row {
    display: flex;
    flex-wrap: wrap;
}

.footer-tropical [class*="col-"] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-tropical [class*="col-"]>div {
    flex: 1;
}

.social-icons a {
    display: inline-block;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    margin-right: 8px;
    color: white;
    transition: 0.2s;
}

.social-icons a:hover {
    background: var(--success);
    color: white;
}

/* Updated copyright section */
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    color: var(--light);
}

.copyright a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.2s;
}

.copyright a:hover {
    color: var(--success);
}

/* Responsive adjustments for copyright */
@media (max-width: 576px) {
    .copyright {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Your existing responsive rules (unchanged) */
@media (max-width: 992px) {

    .grid-col-left,
    .grid-col-right,
    .right-card {
        width: 100%;
    }

    .parallax-plane {
        width: 90%;
    }

    .parallax-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .parallax-content h1 {
        font-size: 2.5rem;
    }

    .swiper-slide.active-slide {
        width: 320px !important;
    }

    .premier-destination-card {
        min-height: 400px;
    }

    .parallax-plane {
        width: 90% !important;
        bottom: -50px !important;
    }
}

/* =================FOOTER LAST =========================*/
/* working  */
@media (min-width: 320px) and (max-width: 390px) {
    .navbar-brand span {
        color: var(--primary);
        transition: 0.3s ease;
        font-size: 25px !important;
        font-family: math;
    }

    .navbar-brand img {
        height: 30px !important;
    }
}

/* ===================================================
   GLOBAL RESPONSIVE FIXES: 320px – 1600px full sweep
   =================================================== */

/* ---- 320px: Extra small phones ---- */
@media (max-width: 360px) {

    /* Header */
    .navbar-brand img {
        height: 36px !important;
    }

    .navbar-brand span {
        font-size: 18px !important;
    }

    /* Hero */
    /* Section headings: prevent overflow on 320px */
    h2 {
        word-break: break-word;
    }

    /* About section */
    .about-image-wrapper-2024 {
        gap: 10px;
    }

    /* Testimonials */
    .td-heading-main {
        font-size: 1.4rem !important;
    }

    /* Footer */
    .copyright {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-contact li {
        font-size: 0.85rem;
    }
}

/* ---- 375-425px: Standard small phones ---- */
@media (min-width: 361px) and (max-width: 425px) {
    .navbar-brand img {
        height: 44px !important;
    }

    .td-deals-content-col {
        padding: 20px 16px;
    }
}



/* ---- 1440px–1600px: Large desktops ---- */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }

    .premier-destination-swiper .swiper-slide {
        height: 520px;
    }

    .td-deals-section {
        max-width: 100%;
    }
}

/* ---- 1600px+: Extra large / 2K screens ---- */
@media (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }

    .premier-destination-swiper .swiper-slide {
        height: 560px;
    }

    .navbar-brand img {
        height: 88px;
    }

    .footer-tropical {
        padding: 80px 0 40px;
    }
}

/* Tour Packages Buttons */
.pkg-action-btn {
    min-height: 50px;
    padding-left: 28px !important;
    padding-right: 28px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all 0.3s ease-in-out;
}

.btn-enquire-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(29, 107, 186, 0.3) !important;
    color: #fff;
}

.btn-wa-custom {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

.btn-wa-custom:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4) !important;
}

.btn-terms-custom:hover {
    background-color: var(--primary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(29, 107, 186, 0.2) !important;
}

/* Enable Bootstrap Dropdown on Hover (Desktop only) */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: ddFadeIn 0.2s ease-out;
    }
}
@keyframes ddFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Inner Page Responsive Overrides */
.inner-page-header {
    min-height: 280px;
}

.tour-img-responsive {
    height: 450px;
    object-fit: fill !important;
}

@media (max-width: 768px) {
    .inner-page-header {
        min-height: 220px !important;
    }
    .inner-page-header .display-3 {
        font-size: 2.2rem !important;
    }
    .tour-img-responsive {
        height: 250px !important;
    }
}