* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    /* Android */
    -webkit-touch-callout: none;
    /* iOS */
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
    user-select: none;
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

:root {
    --primary-color: #0A2A4F;
    --primary-two-color: #1E6FB9;
    --cta-focus: #F5A623;
    --secondary-color: #000000;
    --accent-color: #007bff;
    --main_background: #F9FAFB;
    --card-forms: #FFFFFF;
    --high-readability: #1F2933;
    --low-readability: #6B7280;
    --alert: #E63946;

}






/*--------------------------- TOP BAR ( Announcement Bar )------------------------- */

.top-bar {
    background: var(--alert);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);


    background-repeat: no-repeat;
    background-size: 200px 100%;

    animation: shine-loop 3s infinite linear;
}


@keyframes shine-loop {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(100% + 200px) 0;
    }
}

/*--------------------------------------------- NAVBAR -------------------------------------*/
.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    background: #fff;
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: #0b1220;
}



.main-navbar {
    height: 70px;
    display: flex;
    align-items: center;
}

.menu-bar {
    height: 50px;
    background: #020617;
}

/* --------------------------------------Menu Bar Hover Effect-------------------------------- */



.menu-bar ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background-color: #0b1220;
    transition: width 0.3s ease;
}

.menu-bar ul li a:hover::after {
    width: 100%;
}

.menu-bar ul li a:hover {
    color: #0b1220;
}

.menu-bar ul li .dropdown-content {
    display: none;
    position: absolute;
    background-color: #0b1220;
    top: 100%;
    left: 0;
    min-width: 150px;
    border-radius: 6px;
    overflow: hidden;
    z-index: 1000;
}

.menu-bar ul li:hover .dropdown-content {
    display: block;
}

.menu-bar ul li .dropdown-content li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
}

.menu-bar ul li .dropdown-content li a:hover {
    background-color: #1f2937;
    color: #38bdf8;
}

/* ---------------------------------------------------------------------- */


.nav-wrapper {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.nav-wrapper {
    position: sticky;
    top: 0;
}


.nav-logo {
    width: 150px;
    height: 110px;
    margin-top: 30px;
    display: block;
    background-image: url("images/logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}

.logo {
    color: #0a7f3f;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

.logo span {
    font-size: 16px;
}

.search-wrapper {
    position: relative;
    width: 420px;
}

#searchInput {
    width: 100%;
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}



.phone {
    font-size: 14px;
}

.login-btn {
    padding: 10px 20px;
    font-size: 15px;
    background: #000;
    color: #fff;
    border-radius: 20px;
    border: none;
    cursor: pointer;
}

/* SEARCH DROPDOWN */
.search-dropdown {
    position: absolute;
    top: 55px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
}

.search-dropdown h4 {
    margin: 10px 0;
    font-size: 15px;
}

.pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-container span {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 13px;
}

.pill-container span:hover {
    background: #e8f4ff;
    border-color: #007bff;
}



/*----------------------------------------------------------------- MENU BAR------------------------- */
.menu-bar {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 12px;
    background: #fff;
    border-top: 1px solid #eee;
}

.menu-bar a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}



.navbar {
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 70px;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}



.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 10px 5px;
}

/* Dropdown Menu (The White Box) */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 100;
}

.dropdown-content li {
    width: 100%;
}

.dropdown-content a {
    padding: 12px 20px;
    color: #666;
    font-weight: normal;
}

.dropdown-content a:hover {
    background-color: #f8f8f8;
    color: #000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.arrow::after {
    content: ' ⌵';
    font-size: 12px;
    margin-left: 5px;
}




/*--------------------------------------------------- HERO SECTION ------------------------------------*/


.hero {
    height: 70vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 70%;
    position: relative;
    transition: background-image 0.8s ease-in-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}





/*----------------------------------TRENDING DESTINATIONS------------------------------------------- */




.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.destination-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}


/*-----------------------------------------EXPLORE DESTINATIONS-------------------------- */

.container {
    max-width: 1200px;
    height: 380px;
    margin: 30px auto;
    overflow: hidden
}

h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
}


.filter-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: white;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab:hover {
    border-color: #2c7a7b;
}

.tab.active {
    background-color: #e6fffa;
    border-color: #38b2ac;
}

.green-dot {
    width: 15px;
    height: 15px;
    background-color: #2f855a;
    border-radius: 50%;
}


.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    justify-items: center;
}

.exp_top_wraper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dest-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.dest-card:hover {
    transform: translateY(-5px);
}

.image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;

    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-card p {
    font-weight: 500;
    color: #333;
    font-size: 1.1rem;
}





/* Filter Pills */
.filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.pill {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
}

.pill.active {
    background-color: #e8f5e9;
    border-color: #2e7d32;
}


/* Section 2: UPCOMING TRIPS---------------------------------------------------------------------- */


#section_upc_grp_trip {
    width: 100%;
    height: 510px;
    padding: 30px;
    overflow: hidden;

    margin-top: 40px;
    background-color: white;

}

.trips-grid {
    display: inline-block;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}


.trip-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.trip-img {
    position: relative;
    height: 200px;
}

.trip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.trip-content {
    padding: 15px;
}

.duration {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.trip-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.price strong {
    font-size: 18px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin: 0 5px;
}

.discount {
    color: #d32f2f;
    font-size: 13px;
    font-weight: bold;
}

.date {
    margin-top: 15px;
    font-size: 13px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}


.section h1 {
    text-align: center;
    margin-bottom: 20px;
}

.filter-bar {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 20px;
}


.pill {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    background-color: #eee;
    cursor: pointer;
    transition: 0.3s;
}

.pill.active {
    background-color: #0B1220;
    color: white;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.trip-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.trip-card:hover {
    transform: scale(1.03);
}

.trip-img {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.trip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff6347;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
}

.trip-content {
    padding: 12px 16px;
}

.duration {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
}

.price {
    margin: 8px 0;
    font-size: 14px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 6px;
}

.discount {
    color: #ff6347;
    margin-left: 6px;
}

.date {
    font-size: 13px;
    color: #555;
}

#group-trips button {
    margin-top: 20px;
}

/* Confidence Section ---------------------------------------------------------------------------------------- */
.confidence-section {
    background-color: white;
    padding: 50px 20px;
    border-radius: 20px;
    margin-top: 40px;
}

.confidence-section h2 {
    font-size: 35px;
    width: 100%;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    margin-top: 40px;
}

.feature-card {
    background: #0B1220;
    color: #ffffff;
    padding: 18px;
    border-radius: 10px;
    font-weight: 500;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 30px;
    min-width: 50px;
}

.feature-item p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.tc-text {
    text-align: right;
    font-size: 12px;
    margin-top: 20px;
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* vibe container video ------------------------------------------------------------------------------------*/


.vibe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

/* Scroll Wrapper */
.video-scroll-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.video-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* Video Card Styling */
.video-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 250px;
    aspect-ratio: 9 / 14;
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: scale(1.02);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.video-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    z-index: 2;
}

.location-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    border-left: 3px solid #4caf50;
}

.black-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.play-btn {
    color: white;
    font-size: 3rem;
    opacity: 0.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-card {
        flex: 0 0 70%;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

.benefits-section {
    background-color: beige;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    width: 100%;
    text-align: center;
}

.main-heading {
    font-size: 2.5rem;
    color: #0B1220;
    margin-bottom: 40px;
    font-weight: 600;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #0B1220;
    border-radius: 20px;
    padding: 30px;
    width: 350px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.card p {
    font-size: 1rem;
    color: white;
    line-height: 1.5;
    max-width: 280px;
}

.card:first-child h3 {
    margin-top: 0;
}


/* Trending Section------------------------------------------------------------------------------------*/


.trending-section {
    max-width: 1200px;
    margin: 2% auto;
    padding: 20px 0px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.destinations-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.destination-card {
    position: relative;
    flex: 1;
    min-width: 250px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.02);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
}

.card-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-overlay p {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.whatsapp-float img {
    width: 35px;
}

@media (max-width: 768px) {
    .destinations-grid {
        justify-content: center;
    }

    .destination-card {
        flex: 0 0 100%;
    }
}


/* -----------------------------------------BLOG SECTION------------------------------------------- */



.blog-section {
    padding: 60px 20px;
    background-color: #0b1220;
    color: #e5e7eb;
}

.blog-container {
    max-width: 1200px;
    height: 400px;
    margin: auto;
    line-height: 1.8;
}

.blog-container h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #ffffff;
}

.blog-container p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #d1d5db;
}

.blog-container strong {
    color: #38bdf8;
}

.blog-quote {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid #38bdf8;
    font-style: italic;
    color: #ffffff;
}


/* -----------------------------------------REVIEWS SECTION------------------------------------------- */


.reviews-grid {
    display: grid;
    padding: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#review_section h2 {
    margin: 40px;
}

.review-card {
    background: white;
    border-radius: 15px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.review-img {
    width: 30%;
}

.review-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    width: 60%;
    padding: 20px;
    text-align: center;
}

.review-text {
    font-size: 14px;
    color: #555;
    margin: 10px 0;
    line-height: 1.4;
}

.reviewer-name {
    font-weight: bold;
    margin-top: 10px;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}




/* ---------------------------------------Links Footer Section ---------------------------*/
.links-section {
    background-color: beige;
    padding: 20px 0;
}

.container_link_footer {
    max-width: 1200px;
    height: 150px;
    margin: 30px auto;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 20px;
    font-size: 14px;
    color: #444;
}

/* -----------------------------------------Floating WhatsApp ---------------------------*/
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn img {
    width: 50px;
    height: 50px;
}

/* -----------------------------------------------FOOTER SECTION---------------------- */



.footer-columns {
    width: 100%;
    padding: 20px;
    font-size: 18px;

    font-weight: 400;
    color: whitesmoke;
    background-color: #0B1220;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.socials {
    width: 100%;
    margin-top: 20px;
}

.socials i {
    margin: 10px;
    font-size: 35px
}

.socials i:hover {
    color: #007bff;
    cursor: pointer;
}

.socials a {
    text-decoration: none;
    color: inherit;
}

.btn-map {
    border: 1px solid whitesmoke;
    color: white;
    background: none;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 10px;
}

.footer-col ul li a,
.footer-col ul li a:visited,
.footer-col ul li a:hover,
.footer-col ul li a:active {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.footer-col ul li a:hover {
    color: inherit;
}


.footer-bottom {
    width: 100%;
    border-top: 2px solid #ddd;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.payment-icons img {
    height: 35px;
    margin-left: 15px;
    vertical-align: middle;
}

/*---------------------------------------- ENQUIRY MODEL--------------------------------------------- */


/* OVERLAY */
.enquiry-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* MODAL */
.enquiry-modal {
    background: #fff;
    width: 360px;
    max-width: 90%;
    border-radius: 18px;
    padding: 25px 22px 30px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.25s ease;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: #eee;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

/* TEXT */
.enquiry-modal h2 {
    font-size: 20px;
    margin-bottom: 6px;
}

.enquiry-modal p {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}

/* FORM */
.enquiry-form input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 30px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* PHONE */
.phone-field {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 0 14px;
    margin-bottom: 12px;
}

.phone-field span {
    font-size: 14px;
    margin-right: 6px;
}

.phone-field input {
    border: none;
    outline: none;
    padding: 12px 6px;
    flex: 1;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 13px;
    border-radius: 30px;
    border: none;
    background-color: #0b1220;
    /* background: linear-gradient(135deg, #1e7f3f, #0b1220); */
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

/* ANIMATION */
@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* BODY FREEZE */
body.modal-open {
    overflow: hidden;
}





/* ===== PAGE LOADER ===== */
#page-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    /* Dark background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top: 6px solid #1e6fb9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}





/* ======================= MOBILE & TABLET RESPONSIVE ======================= */

/* ---------- Tablets & Small Laptops ---------- */
@media (max-width: 1024px) {

    .search-wrapper {
        width: 300px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---------- Mobile Devices ---------- */
@media (max-width: 768px) {

    /* TOP BAR */
    .top-bar {
        font-size: 13px;
        height: auto;
        padding: 6px 10px;
    }

    /* NAVBAR */
    .navbar {
        height: auto;
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }



    .nav-logo {
        width: 290px;
        height: 90px;
        margin-top: 0px;
        background-position: center;
    }

    .search-wrapper {
        width: 0%;
        display: none;
    }

    .nav-right {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* MENU BAR */
    .menu-bar {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px;
    }


    .menu-bar::-webkit-scrollbar {
        display: none;
    }

    .nav-links {
        gap: 12px;
        flex-wrap: nowrap;
    }

    .nav-links a {
        font-size: 13px;
        white-space: nowrap;
    }

    /* HERO */
    .hero {
        height: 45vh;
    }

    /* ------------------------------EXPLORE DESTINATIONS------------------------- */
    .container {
        height: 320px;
        width: 100%;
        overflow: auto;
        padding: 0 10px;
    }


    .filter-tabs {
        overflow-x: auto;
        overflow-y: hidden;
        height: 40px;
    }




    #view_btn_explore_dest,
    #view_btn_group_trips {
        width: 30%;
        font-size: 12px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0px;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab {
        white-space: nowrap;
    }

    .image-wrapper {
        width: 140px;
        height: 140px;
    }

    /*---------------------------------- UPCOMING TRIPS -----------------------------*/
    #section_upc_grp_trip {
        height: 1800px;
        padding: 20px 10px;
    }

    .trips-grid {
        grid-template-columns: 1fr;
    }

    #tripFilterBar::-webkit-scrollbar {
        display: none;
    }

    #tripFilterBar {
        overflow-x: auto;
        overflow-y: hidden;
        height: 70px;
        padding: 0px;
        width: auto;
    }

    /* CONFIDENCE SECTION */
    .confidence-section h2 {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* VIBE VIDEO */
    .video-card {
        flex: 0 0 75%;
    }

    /* BENEFITS */
    .card {
        width: 100%;
        min-height: auto;
    }

    /* TRENDING */
    .destination-card {
        height: 260px;
        width: 90%;
    }


    .trending-section {
        width: 90%;
    }

    /* BLOG */
    .blog-container {
        height: auto;
    }

    .blog-container h2 {
        font-size: 24px;
    }

    .blog-container p {
        font-size: 15px;
    }

    /* REVIEWS */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        flex-direction: column;
    }

    .review-img,
    .review-content {
        width: 100%;
        justify-content: center;
    }

    .review-img {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .review-img img {
        width: 60%;
        height: 100%;
        object-fit: cover;
    }

    /* FOOTER LINKS */
    .links-grid {
        grid-template-columns: repeat(1, 1fr);

    }

    .container_link_footer {
        padding: 10px;

    }

    /* FOOTER */
    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* ENQUIRY MODAL */
    .enquiry-modal {
        width: 90%;
        padding: 20px;
    }
}

/* ---------- Small Phones ---------- */
@media (max-width: 480px) {

    h1,
    .section-title {
        font-size: 1.4rem;
    }

    .main-heading {
        font-size: 1.8rem;
    }

    .trip-content h3 {
        font-size: 14px;
    }

    .price strong {
        font-size: 16px;
    }

    .whatsapp-float,
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
}