/* =========================================================
RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    min-height:100%;
    overflow-x:hidden;

}

body{
    background:#fff;
}

img{
    display:block;
    max-width:100%;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea{
    font:inherit;
}

/* =========================================================
   MAIN HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: var(--header-height);

    z-index: 9999;

    background: transparent !important;

    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        background-color 0.35s ease,
        backdrop-filter 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.site-header.scrolled {
    background: #000000 !important;

    -webkit-backdrop-filter: none;
    backdrop-filter: none;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 3px 15px rgba(0, 0, 0, 0.35);
}

body.home-page .site-header {
    background: transparent !important;
}

body.home-page .site-header.scrolled {
    background: #000000 !important;
}

body.contact-page .site-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
}


/* =========================================================
   HEADER INNER
========================================================= */

.header-inner {
    position: relative;

    width: 100%;
    height: 100%;

    max-width: 1840px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav {
    position: absolute;

    top: 0;
    height: 100%;

    display: flex;
    align-items: center;

    gap: 52px;
}

.nav-left {
    left: 85px;
}

.nav-right {
    right: 72px;
}


/* =========================================================
   NAV LINKS
========================================================= */

.nav a {
    position: relative;

    display: inline-flex;
    align-items: center;

    color: #ffffff;

    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 1;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.nav a:hover {
    color: #ffffff;
    opacity: 0.75;
}


/* =========================================================
   CENTER LOGO
========================================================= */

.site-logo {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    width: 200px;

    z-index: 5;
}

.site-logo img {
    display: block;

    width: 200px;
    height: auto;

    max-width: 100%;
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.menu-toggle {
    display: none;

    position: absolute;

    right: 25px;
    top: 50%;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    padding: 0;
    margin: 0;

    border: 0;
    outline: none;

    background: transparent !important;

    cursor: pointer;

    z-index: 20;

    appearance: none;
    -webkit-appearance: none;
}


/* =========================================================
   HAMBURGER LINES
========================================================= */

.menu-toggle span {
    position: absolute;

    left: 8px;

    width: 26px;
    height: 2px;

    background: #ffffff !important;

    border: 0;

    display: block;

    transition:
        top 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 11px;
}

.menu-toggle span:nth-child(2) {
    top: 20px;
}

.menu-toggle span:nth-child(3) {
    top: 29px;
}


/* =========================================================
   HAMBURGER → X
========================================================= */

.menu-toggle.active span:nth-child(1) {
    top: 20px;

    transform: rotate(45deg);

    background: #ffffff !important;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    top: 20px;

    transform: rotate(-45deg);

    background: #ffffff !important;
}


/* =========================================================
   MOBILE MENU
========================================================= */

#mobileMenu {
    display: none;

    position: fixed;

    top: var(--header-height);
    left: 0;
    right: 0;

    background: #000000;

    padding: 20px 25px 30px;

    z-index: 9998;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.35);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

#mobileMenu.active {
    display: block;

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =========================================================
   MOBILE LINKS
========================================================= */

#mobileMenu a {
    display: block;

    color: #ffffff !important;

    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;

    padding: 16px 5px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    transition: opacity 0.2s ease;
}

#mobileMenu a:hover {
    opacity: 0.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .nav {
        gap: 30px;
    }

    .nav-left {
        left: 35px;
    }

    .nav-right {
        order: 2;
        right: 35px;
    }

.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center !important;
}
    .site-logo {
        order: 1 !important;
        width: 80px !important;
    }

    .site-logo img {
        width: 80px !important;
    }
}


/* =========================================================
   MOBILE HEADER — FIXED / NO OVERLAP
========================================================= */

@media (max-width: 900px) {

    /* Header */
    .site-header {
        height: 90px;
    }

    /* Header inner */
    .header-inner {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 0;
    }

    /* Hide desktop navigation */
    .nav {
        display: none !important;
    }


    /* =====================================================
       LOGO
    ===================================================== */

    .site-logo {
        position: absolute !important;

        left: 50% !important;
        top: 50% !important;

        transform: translate(-50%, -50%) !important;

        width: 150px !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        display: block !important;

        z-index: 5 !important;
    }

    .site-logo img {
        display: block !important;

        width: 150px !important;
        height: auto !important;

        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* =====================================================
       HAMBURGER
    ===================================================== */

    .menu-toggle {
        display: block !important;

        position: absolute !important;

        top: 50% !important;
        right: 20px !important;

        left: auto !important;

        transform: translateY(-50%) !important;

        width: 42px !important;
        height: 42px !important;

        margin: 0 !important;
        padding: 0 !important;

        border: none !important;
        outline: none !important;

        background: transparent !important;

        z-index: 50 !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       HAMBURGER LINES
    ===================================================== */

    .menu-toggle span {
        position: absolute !important;

        left: 8px !important;

        width: 26px !important;
        height: 2px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: block !important;

        background: #ffffff !important;

        border: none !important;

        opacity: 1;

        box-sizing: border-box !important;
    }

    .menu-toggle span:nth-child(1) {
        top: 11px !important;
    }

    .menu-toggle span:nth-child(2) {
        top: 20px !important;
    }

    .menu-toggle span:nth-child(3) {
        top: 29px !important;
    }


    /* =====================================================
       HAMBURGER → X
    ===================================================== */

    .menu-toggle.active span:nth-child(1) {
        top: 20px !important;

        transform: rotate(45deg) !important;

        background: #ffffff !important;
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .menu-toggle.active span:nth-child(3) {
        top: 20px !important;

        transform: rotate(-45deg) !important;

        background: #ffffff !important;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 600px) {

    .site-logo {
        width: 130px !important;
    }

    .site-logo img {
        width: 130px !important;
    }

    .menu-toggle {
        right: 12px !important;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .site-logo {
        width: 115px !important;
    }

    .site-logo img {
        width: 115px !important;
    }

    .menu-toggle {
        right: 8px !important;
    }
}
/* =========================================================
GLOBAL INNER WIDTH

SECTIONS = FULL WIDTH
CONTENT = MAX 1440PX
========================================================= */

.inner-container{
    width:calc(100% - 80px);
    max-width:1440px;
    margin-left:auto;
    margin-right:auto;
}
/* =========================================
   HERO SLIDER
========================================= */

.hero-slider {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 650px;

    overflow: hidden;

    background: #111;
}


/* =========================================
   INDIVIDUAL SLIDES
========================================= */

.hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center center;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.04);

    transition:
        opacity 1s ease,
        transform 1.5s ease,
        visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);
}


/* =========================================
   DARK IMAGE OVERLAY
========================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0.38) 42%,
            rgba(0, 0, 0, 0.22) 100%
        );

    z-index: 1;
}


/* =========================================
   HERO CONTAINER
========================================= */

.hero-container {
    position: relative;

    z-index: 2;

    width: min(1340px, calc(100% - 40px));

    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    width: 620px;

    padding-top: 45px;
}

.hero-content h1 {
    margin: 0 0 38px;

    color: #fff;

    font-size: clamp(52px, 5vw, 80px);

    font-weight: 700;

    line-height: 1.18;

    letter-spacing: -1.8px;
}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    min-width: 162px;
    height: 50px;

    padding: 0 22px;

    border-radius: 30px;

    background: #68BDA7;

    border: 1px solid #68BDA7;

    color: #fff;

    text-decoration: none;


    font-size: 16px;

    /* font-weight: 600; */

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.hero-btn:hover {
    background: #fff;

    border-color: #fff;

    color: #68BDA7;

    transform: translateY(-2px);
}


/* SECONDARY BUTTON */

.hero-btn-outline {
    background: #68BDA7;

    border-color: #fff;
}

.hero-btn-outline:hover {
    background: #fff;
    color: #68BDA7;
}


/* BUTTON ARROW */

.btn-arrow {
    font-size: 19px;

    font-weight: 300;

    line-height: 1;

    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-arrow {
    transform: translateX(4px);
}


/* =========================================
   RIGHT SIDE CONTROLS
========================================= */

.hero-controls {
    position: absolute;

    z-index: 10;

    right: 42px;

    top: 50%;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 15px;
}


/* =========================================
   ARROWS
========================================= */

.slider-arrow {
    width: 48px;
    height: 48px;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.22);

    color: #fff;

    font-size: 25px;

    font-weight: 300;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.slider-arrow:hover {
    background: #68BDA7;

    transform: scale(1.05);
}


/* =========================================
   VERTICAL INDICATORS
========================================= */

.slider-indicators {
    width: 3px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 9px;
}

.indicator {
    position: relative;

    width: 3px;
    height: 35px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.indicator span {
    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    border-radius: 5px;

    background: rgba(255, 255, 255, 0.35);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.indicator.active span {
    background: #68BDA7;

    transform: scaleX(1.5);
}


/* =========================================
   SLIDE CONTENT ANIMATION
========================================= */

.hero-content h1,
.hero-buttons {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.8s ease 0.25s,
        transform 0.8s ease 0.25s;
}

.hero-slide.active .hero-content h1 {
    opacity: 1;

    transform: translateY(0);
}

.hero-slide.active .hero-buttons {
    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.4s;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .hero-content {
        width: 500px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-controls {
        right: 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .hero-slider {
        min-height: 650px;
    }

    .hero-container {
        width: calc(100% - 40px);
    }

    .hero-content {
        width: 100%;

        padding-top: 35px;
    }

    .hero-content h1 {
        font-size: clamp(40px, 12vw, 52px);

        line-height: 1.08;

        letter-spacing: -1px;

        margin-bottom: 30px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .hero-btn {
        min-width: 145px;

        height: 47px;

        padding: 0 17px;

        font-size: 11px;
    }

    .hero-controls {
        right: 10px;

        gap: 10px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;

        font-size: 20px;
    }

    .indicator {
        height: 27px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.67),
                rgba(0, 0, 0, 0.3)
            );
    }

}

/* ========================================= DESTINATION SECTION ========================================= */ .destination-section { width: 100%;max-width: 1440px; margin: auto; padding: 120px 10px; overflow: hidden; } /* ========================================= HEADER ========================================= */ .destination-header { display: flex !important; justify-content: space-between !important; gap: 40px; align-items: center; margin-bottom: 55px; } .destination-header h2 {color:#113D48; margin: 0; font-size:48px; line-height: 0.95; font-weight: 700; } .destination-header h2 { display: block; } .destination-header p { max-width: 500px; font-size: 16px; line-height: 1.7; opacity: 0.7; } /* ========================================= CARDS WRAPPER ========================================= */ .destination-wrapper { display: flex; width: 100%; height: 620px; gap: 12px; overflow: hidden; } /* ========================================= DESTINATION CARD ========================================= */ .destination-card {    justify-content: start;
    display: flex; align-items: end;border-radius:34px;  position: relative; height: 100%; /* inactive width */ flex: 0 0 25%; overflow: hidden; cursor: pointer; transition: flex-basis 0.8s cubic-bezier(.77, 0, .18, 1); isolation: isolate; } /* ACTIVE CARD */ .destination-card.active { flex-basis: 75%; } /* ========================================= IMAGE ========================================= */ .destination-card img {border-radius:34px; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.77, 0, .18, 1); } /* subtle zoom */ .destination-card:hover img { transform: scale(1.04); } /* ========================================= DARK OVERLAY ========================================= */ .destination-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient( to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, .05) 65% ); } /* ========================================= CONTENT ========================================= */ .destination-content {display: flex;flex-direction: column;  inset: 0; z-index: 2; display: flex; align-items: center; padding: 35px; } /* ========================================= TITLE ========================================= */ .destination-title { color: white; font-size: 42px; font-weight: 500; white-space: nowrap; transition: transform .7s cubic-bezier(.77, 0, .18, 1), font-size .5s ease; } /* ========================================= INACTIVE TITLE Vertical text ========================================= */ .destination-card:not(.active) .destination-content { align-items: end; justify-content: center; padding-bottom:30px; } .destination-card:not(.active) .destination-title { transform: rotate(-90deg) translateX(0); transform-origin: center; font-size: 32px; } /* ========================================= ACTIVE TITLE ========================================= */ .destination-card.active .destination-title { transform: rotate(0deg); } /* ========================================= BOOK BUTTON ========================================= */ .book-tour { position: absolute;
    right: 40px;
    bottom: 40px;
    padding: 10px 30px; color:white; background:var(--teal-green); border: 1px solid white; border-radius: 24px; text-decoration: none; font-size: 16px; opacity: 0; transform: translateY(20px); transition: opacity .5s ease .25s, transform .5s ease .25s, background .3s ease; } /* show button only on active card */ .destination-card.active .book-tour { opacity: 1; transform: translateY(0); } /* button hover */ .book-tour:hover { background: #111; color: white; } .book-tour span { font-size: 18px; } /* ========================================= MOBILE ========================================= */
 @media (max-width: 1024px){.destination-header { flex-direction: column; justify-content: start !important; gap: 30px; align-items:start; margin-bottom: 55px; } .destination-header p{width: 100%;}}
@media (max-width: 768px) {.destination-header h2 {font-size: 34px;} .destination-section { padding: 80px 20px; } .destination-content { padding: 20px; } .destination-title, .destination-card:not(.active) .destination-title { font-size: 28px; } .destination-card:not(.active) .destination-title { font-size: 22px; } .book-tour { padding: 12px 16px; font-size: 12px; } 
 .destination-wrapper {
        flex-direction: column;
        height: 700px;
        gap: 10px;
    }

    .destination-card {
        /* 25% height when inactive */
        flex: 0 0 25%; width: 100%;
        height: auto;
        transition: flex-basis 0.8s cubic-bezier(.77, 0, .18, 1);
    }

    .destination-card.active {
        /* 75% height when active */
        flex: 0 0 70%;
    }
   .destination-card .destination-title,
    .destination-card:not(.active) .destination-title,
    .destination-card.active .destination-title {
        transform: rotate(0deg); }
}
/* ========================================= SMALL MOBILE ========================================= */ @media (max-width: 480px) { .destination-header h2 {font-size: 28px;}.destination-wrapper { height: 420px; } .destination-card { flex-basis: 25%; } .destination-card.active { flex-basis: 75%; } .destination-title { font-size: 28px; } .destination-card:not(.active) .destination-title { font-size: 28px; } .book-tour { padding: 10px 13px; } }

/* ==============================
================ */

/* ===========================
   JOURNEY SECTION
=========================== */

.journey-section{
    padding:30px 20px;
    background:#fff;
}

.journey-container{
    width: 100%;
    max-width: 1200px;
    margin:auto;

    display:grid;
    grid-template-columns: 1fr 1.5fr;
    gap:40px;
    align-items:center;
}

/* Video */

.journey-video{
    position:relative;
    overflow:hidden;
    border-radius:6px;
}

.journey-video video{
    width:100%;
    height:700px;
    object-fit:cover;
    display:block;
}

/* Content */

.journey-content{
    max-width:560px;
}

.journey-subtitle{
    font-family:Montez, cursive;
   
    display:block;
    color:var(--dark-teal);
    font-size:40px;
    font-weight: 400;
    line-height:1;
    margin-bottom:15px;
}

.journey-content h2{
    font-size:48px;
    line-height:1.15;
    font-weight:600;
    color:var(--dark-teal);
    margin:0 0 30px;
}

.journey-content h2 span{
    display:block;
}

.journey-intro{
    font-size:16px;
    line-height:1.9;
    color:#7A7A7A;
    margin-bottom:40px;
}

/* Features */

.journey-feature{
    display:flex;
    gap:22px;
    align-items:flex-start;
}

.journey-feature + .journey-feature{
    margin-top:35px;
}

.feature-icon{
    width:72px;
    height:72px;
    min-width:72px;

    border-radius:50%;
    background:#eef8f5;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--teal-green);
    font-size:26px;
}

.feature-content h4{
    color:var(--dark-teal);
    font-size:24px;
    font-weight:600;
    margin:0 0 10px;
}

.feature-content p{
    color:#7A7A7A;
    line-height:1.9;
    margin:0;
    font-size:16px;
}

/* Button */

.journey-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    margin-top:45px;
    padding:18px 38px;

    background:var(--teal-green);
    color:#fff;
    text-decoration:none;

    border-radius:60px;
    transition:.35s ease;
}

.journey-btn:hover{
    background:var(--dark-teal);
    transform:translateY(-2px);
}

.journey-btn svg{
    color: var(--dark-teal);
    transition:.35s ease;
}


.journey-btn:hover svg{
    color: white;
    transform:translateX(4px);
}

/* Responsive */

@media (max-width:1024px){

    .journey-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .journey-content{
        max-width:100%;
    }

    .journey-content h2{
        font-size:50px;
    }

    .journey-video video{
        height:600px;
    }
}

@media (max-width:767px){

    .journey-section{
        padding:70px 20px;
    }

    .journey-subtitle{
        font-size:30px;
    }

    .journey-content h2{
        font-size:38px;
    }

    .feature-content h4{
        font-size:24px;
    }

    .journey-video video{
        height:450px;
    }
}
/* =========================================
   DESTINATIONS SLIDER
========================================= */

.destinations-slider-section{
    width:100%;
    max-width: 1440px;
    margin: auto;
    padding:40px 0;
    background:#fff;
}

.destinations-slider-wrap{
    width:min(1440px, 100%);
    margin:0 auto;
    position:relative;
    padding:0px 10px;
}
.destination-content{
    text-align:center;
    margin-bottom:50px;
}

.destination-subtitle{
    font-family:Montez, cursive;
   
    display:block;
    color:var(--dark-teal);
    font-size:40px;
    font-weight: 400;
    line-height:1;
    margin-bottom:15px;
}

.destination-content h2{
    font-size:48px;
    line-height:1.15;
    font-weight:600;
    color:var(--dark-teal);
    margin:0 0 30px;
}
/* =========================================
   SLIDER
========================================= */

.destinations-slider{
    width:100%;
    overflow:hidden;
}

.destinations-track{
    display:flex;
    gap:24px;
    transition:transform .65s cubic-bezier(.22,.61,.36,1);
    will-change:transform;
}


/* =========================================
   CARD
========================================= */

.destination-card{
    flex:0 0 calc((100% - 72px) / 4);
    min-width:0;
}

.destination-image{
    height:350px;
    width:100%;

    position:relative;
    overflow:hidden;

    background-size:cover;
    background-position:center;

    border-radius:14px 14px 0 14px;
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.destination-image::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        to bottom,
        rgba(17,61,72,0.02) 30%,
        rgba(17,61,72,0.18) 100%
    );

    pointer-events:none;
}


/* =========================================
   CENTER WHITE LOCATION BOX
========================================= */

.destination-name{
    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    background:#fff;

    padding:12px;

    border-radius:50px;

    display:flex;
    align-items:center !important;
    justify-content:center;
    gap:11px;

    white-space:nowrap;

    color:var(--dark-teal);

    font-size:16px;
    font-weight:500;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    z-index:3;
}

.location-icon{
    width:21px;
    height:21px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--dark-teal);
}

.location-icon svg{
    width:100%;
    height:100%;
    display:block;
}


/* =========================================
   SCOOP / CUT OUT
========================================= */

.destination-image::after{
    content:"";

    position:absolute;

    width:75px;
    height:55px;

    right:-1px;
    bottom:-1px;

    background:#fff;

    border-radius:50% 0 0 0;

    z-index:4;
}


/* =========================================
   CARD ARROW
========================================= */

.destination-card-arrow{
    position:absolute;

    width:46px;
    height:46px;

    right:17px;
    bottom:17px;

    border:1px solid var(--dark-teal);

    border-radius:50%;

    background:transparent;

    color:var(--dark-teal);

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:6;

    text-decoration:none;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.destination-card-arrow svg{
    width:28px;
    height:28px;
}

.destination-card-arrow:hover{
    background:var(--dark-teal);
    color:#fff;
    transform:translateX(3px);
}


/* =========================================
   SIDE NAVIGATION
========================================= */

.destination-nav{
    
    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:52px;
    height:52px;

    border-radius:50%;

    border:1px solid rgba(17,61,72,.45);

    background:rgba(17,61,72,.07);

    color:var(--dark-teal);

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    z-index:20;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.destination-nav svg{
    width:22px;
    height:22px;
}

.destination-nav:hover{
    background:var(--dark-teal);
    border-color:var(--dark-teal);
    color:#fff;
}


/* LEFT ARROW */

.destination-nav.prev{
    left:0;
}


/* RIGHT ARROW */

.destination-nav.next{
    right:0;
}

.destination-view-all{
    display:flex;
    justify-content:center;
    margin-top:50px;
}

.view-all-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:150px !important;
    height:38px !important;

    padding:18px 35px !important;

    background:var(--teal-green) ;/* teal green */

    color:#fff;
    text-decoration:none;

    font-size:16px !important;
    font-weight:500;
    letter-spacing:.3px;

    border:2px solid white;

    border-radius:999px;

    transition:
        background .35s ease,
        border-color .35s ease,
        transform .35s ease;
}
.view-all-btn svg{
    color:var(--dark-teal);
}

.view-all-btn:hover{
    background:var(--dark-teal);
    border-color:var(--dark-teal);
    color:#fff;

    transform:translateY(-2px);
}
.view-all-btn:hover svg{
    color:white;
}
/* =========================================
   TABLET
========================================= */

@media(max-width:1100px){

    .destinations-slider-wrap{
        padding:0 60px;
    }

    .destination-card{
        flex:0 0 calc((100% - 48px) / 3);
    }

}


/* =========================================
   SMALL TABLET
========================================= */

@media(max-width:800px){

    .destinations-slider-wrap{
        padding:0 55px;
    }

    .destination-card{
        flex:0 0 calc((100% - 24px) / 2);
    }

    .destination-image{
        height:390px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:550px){

    .destinations-slider-section{
        padding:65px 0;
    }

    .destinations-slider-wrap{
        width:88%;
        padding:0 42px;
    }

    .destination-card{
        flex:0 0 100%;
    }

    .destination-image{
        height:430px;
    }

    .destination-name{
        padding:15px 22px;
        font-size:17px;
    }

    .destination-card-arrow{
        width:52px;
        height:52px;

        right:16px;
        bottom:16px;
    }

    .destination-nav{
        width:42px;
        height:42px;
    }

    .destination-nav svg{
        width:19px;
        height:19px;
    }

    .destination-nav.prev{
        
     
        left:0;
    }

    .destination-nav.next{
        right:0;
    }

}


/* BUS AREA */

.bus-runner{
    position:relative;
    width:100%;
    height:140px;
    overflow:hidden;
}

/* BUS */

.bus-runner img{
    position:absolute;
    bottom:0;
   
    height:auto;

    animation:busDrive 25s linear infinite;
}


/* LEFT → RIGHT */

@keyframes busDrive{

    0%{
        left:-220px;
        transform:scaleX(-1);
    }

    49%{
        left:calc(100% - 180px);
        transform:scaleX(-1);
    }

    /* Turn Around */

    50%{
        left:calc(100% - 180px);
        transform:scaleX(1);
    }

    /* RIGHT → LEFT */

    99%{
        left:-220px;
        transform:scaleX(1);
    }

    100%{
        left:-220px;
        transform:scaleX(-1);
    }
}



/* =========================================
   TRAVEL GALLERY SECTION
========================================= */

.travel-gallery-section{
    width:100%;
    max-width: 1440px;
    margin: auto;
    padding:100px 0;
    background:#fff;
}

.travel-gallery-wrap{
    width:min(1400px, 90%);
    margin:0 auto;
}


/* =========================================
   HEADER
========================================= */

.travel-gallery-header{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    gap:40px;

    margin-bottom:55px;
}

.travel-gallery-heading{
    max-width:700px;
}

.travel-gallery-subtitle{
     font-family:Montez, cursive;
   
    display:block;
    color:var(--dark-teal);
    font-size:40px;
    font-weight: 400;
    line-height:1;
    margin-bottom:15px;
}

.travel-gallery-heading h2{
    margin:0;

    color:var(--dark-teal);

    font-size:clamp(38px,4.2vw,48px);
    line-height:1.08;

    font-weight:700;
    letter-spacing:-1.5px;
}


/* =========================================
   VIEW BUTTON
========================================= */

.travel-gallery-btn{
    flex-shrink:0;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:14px;

    min-width:190px;
    height:58px;

    padding:0 28px;

    background:var(--teal-green);

    border:1px solid var(--teal-green);
    border-radius:50px;

    color:#fff;
    text-decoration:none;

    font-size:16px;
    font-weight:500;

    transition:
        background .35s ease,
        border-color .35s ease,
        transform .35s ease;
}

.travel-gallery-btn svg{
    width:21px;
    height:21px;

    color:#fff;

    transition:transform .35s ease;
}

.travel-gallery-btn:hover{
    background:var(--dark-teal);
    border-color:var(--dark-teal);

    color:#fff;

    transform:translateY(-2px);
}

.travel-gallery-btn:hover svg{
    color:#fff;
    transform:translateX(4px);
}


/* =========================================
   GALLERY
========================================= */

.travel-gallery{
    display:grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:20px;

    align-items:stretch;
}


/* =========================================
   COLUMNS
========================================= */

.gallery-column{
    display:flex;
    flex-direction:column;

    gap:20px;

    min-width:0;
}


/* =========================================
   IMAGE
========================================= */

.gallery-image{
    position:relative;

    width:100%;

    overflow:hidden;

    border-radius:16px;

    background:#eee;
}

.gallery-image img{
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .7s cubic-bezier(.22,.61,.36,1);
}


/* =========================================
   IMAGE HEIGHTS
========================================= */

/* Outer columns */

.gallery-column-single .gallery-image{
    height:560px;
}


/* Middle columns */

.gallery-column:not(.gallery-column-single) .gallery-image{
    height:270px;
}


/* =========================================
   IMAGE HOVER
========================================= */

.gallery-image:hover img{
    transform:scale(1.045);
}


/* =========================================
   TABLET
========================================= */

@media(max-width:1000px){

    .travel-gallery-header{
        align-items:flex-start;
    }

    .travel-gallery-heading h2{
        font-size:44px;
    }

    .travel-gallery{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-column-single .gallery-image{
        height:500px;
    }

    .gallery-column:not(.gallery-column-single) .gallery-image{
        height:240px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:650px){

    .travel-gallery-section{
        padding:70px 0;
    }

    .travel-gallery-header{
        flex-direction:column;
        align-items:flex-start;

        gap:25px;

        margin-bottom:35px;
    }

    .travel-gallery-heading h2{
        font-size:38px;
    }

    .travel-gallery-btn{
        min-width:175px;
        height:54px;
    }

    .travel-gallery{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .gallery-column{
        gap:12px;
    }

    .gallery-column-single .gallery-image{
        height:390px;
    }

    .gallery-column:not(.gallery-column-single) .gallery-image{
        height:189px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:450px){

    .travel-gallery{
        grid-template-columns:1fr;
    }

    .gallery-column-single .gallery-image,
    .gallery-column:not(.gallery-column-single) .gallery-image{
        height:300px;
    }

}

/* =========================
   SECTION 1 CSS
========================= */

.trip-app-section {
    width: 100%;
    max-width: 1440px ;
    margin: auto;
    background: #fff;
    padding: 45px 20px 55px;
    box-sizing: border-box;
}

.trip-app-container {
    width: min(1150px, 100%);
    margin: 0 auto;
}

/* Collaboration */

.collaboration-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 38px;
}

.collaboration-block h2 {
    margin: 0 0 22px;
    color: var(--dark-teal);
    font-size: 48px;
    font-weight: 700;
}

.hotel-logos {
   width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 25px;
    flex-wrap: wrap;
   
}

.hotel-logos img {
    width: 125px;
    height: 125px;
    object-fit: contain;
}

/* App Area */

.app-download-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 95px;
    /* max-width: 950px; */
    margin: 50px auto;
}

/* Phone Preview */

.app-preview {
    width: 40%;
    /* position: relative; */
    /* flex: 0 0 180px; */
}

.app-preview > img {
    display: block;
    width: 100%;
    height: auto;
}

.free-download {
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%);

    width: 70px;
    height: 70px;
    border-radius: 50%;

    background: var(--teal-green);
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    line-height: 1.1;
}

.free-download strong {
    font-size: 17px;
}

.free-download span {
    font-size: 9px;
    font-weight: 600;
}

/* Content */

.app-content {
    /* max-width: 550px; */
    width: 60%;
}

.app-small-text {
    display: block;
    color: var(--dark-teal);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.app-content h1 {
    margin: 0 0 8px;
    color: var(--dark-teal);
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
}

.app-content p {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.6;
}

.app-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-buttons a {
    display: block;
}

.app-buttons img {
    display: block;
    width: 165px;
    height: auto;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 700px) {

    .trip-app-section {
        padding: 35px 18px 45px;
    }

    .hotel-logos {
        gap: 25px;
    }

    .app-download-wrapper {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    /* .app-preview {
        margin-right: 35px;
    } */

    .app-content {
        max-width: 500px !important;
    }

    .app-buttons {
        justify-content: center;
    }
    .hotel-logos img{
        width: 100px;
    }
}

@media (max-width: 400px) {

    .collaboration-block h2 {
        font-size: 18px;
    }

    .hotel-logos {
        gap: 18px;
    }

    .hotel-logos img {
        width: 75px;
    }

    .app-content h1 {
        font-size: 22px;
    }
}

/* =========================
   SECTION 2 CSS
========================= */

.features-section {
    width: 100%;
    max-width: 1440px;
    margin: auto    ;
    background: #fff;
    padding: 28px 20px 35px;
    box-sizing: border-box;
}

.features-container {
    width: min(1200px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

/* Individual Feature */

.feature-box {
    text-align: center;
    padding: 0 8px;
    box-sizing: border-box;
}

/* Circular Icon */

.feature-icon {
    width: 42px;
    height: 72px;
    margin: 0 auto 13px;

    border-radius: 50%;
    background: #eaf7f5;

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}
.feature-icon img:nth-of-type(2) {
    width: 55px !important;
    height: 55px !important;
}
/* Heading */

.feature-box h3 {
    margin: 0 0 8px;

    color: var(--dark-teal);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
}

/* Description */

.feature-box p {
    margin: 0;
    line-height: 1.65;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .features-container {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 35px;
    }
}

@media (max-width: 600px) {

    .features-section {
        padding: 35px 20px;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }

    .feature-box p {
        font-size: 9px;
    }

    .feature-box h3 {
        font-size: 11px;
    }
}

@media (max-width: 400px) {

    .features-container {
        grid-template-columns: 1fr;
    }
}


/* =========================
   SECTION 3 CSS
========================= */

.contact-section {
    width: 100%;
    min-height: 285px;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url("assets/images/home-images/Cotswold-Blenheim-Palace-Oxford.jpg");

    background-size: cover;
    background-position: center;

    padding: 55px 20px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
}

.contact-container {
    width: min(1140px, 100%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

/* =========================
   LEFT SIDE
========================= */

.contact-intro {
    width: 40%;
    color: #fff;
}

.contact-script {
    display: block;
    font-weight: 400 !important;
    font-family: cursive;
    font-size: 40px;
    font-style: italic;

    margin-bottom: 3px;
}

.contact-intro h2 {
    margin: 0 0 10px;

    color: #fff;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
}

.contact-intro p {
    max-width: 220px;

    margin: 0;

    color: #fff;
    line-height: 1.6;
}


/* =========================
   FORM BOX
========================= */

.contact-form-box {
    width: 618px;
    max-width: 100%;
    /* padding: 40px; */
    background: #fff;
    border-radius: 7px;

    overflow: hidden;

    box-sizing: border-box;
}

.contact-form-box form {
    width: 100%;
}

/* Rows */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 40px;
  padding: 40px 40px 0;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #dce5e5;
    border-radius: 5px;

    background: #fff;

    color: #333;

    font-family: inherit;
    font-size: 14px;

    outline: none;
}

.form-group input,
.form-group select {
    height: 46px;
    padding: 0 10px;
}

.form-group textarea {
    height: 55px;
    padding: 10px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-green);
}

/* Message */

.message-group {
    padding: 40px 40px 0;
}


/* =========================
   FORM FOOTER
========================= */

.form-footer {
    min-height: 45px;

    margin-top: 15px;
    padding: 40px ;

    background: var(--teal-green);

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-footer button {
    border: 0;
    background: transparent;

    color: var(--dark-teal);

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
}

.form-footer a {
    color: #fff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 800px) {

    .contact-section {
        padding: 45px 20px;
    }

    .contact-container {
        flex-direction: column;
        gap: 35px;
    }

    .contact-intro {
        width: 100%;
        text-align: center;
    }

    .contact-intro p {
        margin: 0 auto;
    }

    .contact-form-box {
        width: 500px;
    }
}


@media (max-width: 500px) {

    .contact-section {
        padding: 40px 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-form-box {
        width: 100%;
    }

    .contact-intro h2 {
        font-size: 24px;
    }

    .form-footer {
        padding: 12px 15px;
        gap: 10px;
    }
}


@media (max-width: 350px) {

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================
   SECTION 4 — CLIENTS FEEDBACK
========================================= */

.clients-feedback-section {
    width: 100%;
  background-image:
        url("assets/images/visit-ethiopia/map.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;


    padding: 40px 20px 55px;
    box-sizing: border-box;
}

.clients-feedback-container {
    width: min(1440px, 100%);
    margin: 0 auto;
}

.feedback-heading {
    text-align: center;
    margin-bottom: 25px;
}

.feedback-script {
    display: block;
    color: var(--dark-teal);
    font-style: italic;
    margin-bottom: 3px;
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    font-family: cursive;
}

.feedback-heading h2 {
    margin: 0;
    color: var(--dark-teal);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
}

.google-reviews-wrapper {
    width: 100%;
    box-sizing: border-box;
}


/* Plugin reviews should stay responsive */

.google-reviews-wrapper * {
    box-sizing: border-box;
}


/* Mobile */

@media (max-width: 768px) {

    .clients-feedback-section {
        padding: 35px 15px 45px;
    }

    .feedback-heading h2 {
        font-size: 48px;
    }
    h2{
        font-size: 32px !important;
    }
}

/* =========================================
   SECTION 5 — FAQ + VIDEO
========================================= */

.faq-video-section {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    background: #fff;
    padding: 55px 20px 65px;
    box-sizing: border-box;
}

.faq-video-container {
    width: min(1200px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;

    align-items: start;
}


/* =========================================
   FAQ
========================================= */

.faq-column {
    width: 100%;
}

.faq-script {
    
    color: var(--dark-teal);
    display: block;
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    font-family: Montez, cursive;
    position: relative;
    margin-bottom: 4px;
}

.faq-column h2 {
  

    color: var(--dark-teal);
    font-size: 48px;
        text-transform: none;
    font-weight: 700;
    line-height: 1.4;
    margin: 0px 0px 15px;
}



/* FAQ item */

.faq-list {
    width: 100%;
}

.faq-item {
    width: 100%;
    border: 1px solid var(--dark-teal);
    margin-bottom: 9px;
    box-sizing: border-box;
}

.faq-item summary {
    

    color: var(--dark-teal);

   font-size: 24px;
    font-weight: 600;
    font-family:Manrope, sans-serif;
    background-color: transparent;
    min-height: 75px;
    margin-bottom: 0px;
    text-align: left;
    position: relative;
    border-width: 0px;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    border-radius: 0px;
    padding: 12px 45px 12px 30px;
    gap: 10px;
    transition: 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-arrow {
    /* margin-left: 15px;
    flex-shrink: 0; */
    display: none;
}

.faq-answer {
    padding: 0 12px 12px;
    color: #777;
}

.faq-answer p {
    margin: 0;
}


/* =========================================
   VIDEO
========================================= */

.faq-video-column {
    width: 100%;
}

.faq-video-box {
    width: 100%;

    overflow: hidden;
}

.faq-video-box video {
    display: block;

    width: 100%;
    height: auto;

   

    object-fit: cover;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .faq-video-section {
        padding: 40px 15px 50px;
    }

    .faq-video-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
.faq-script{
    font-size: 22px;
}
    .faq-column h2 {
        font-size: 32px !important;
    }

    .faq-video-box video {
        max-height: none;
    }
}


/*  */

/* =========================================
   FIXED / STICKY HEADER
========================================= */

.site-header {
    position: fixed !important;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 84px;

    z-index: 99999;

    background: rgba(18, 28, 39, 0.48);

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        height 0.35s ease;
}


/* =========================================
   BLACK HEADER AFTER SCROLL
========================================= */

.site-header.scrolled {
    background: #000 !important;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
}


/* ================================
   PERFECT TRIP / TOUR SECTION
================================ */

.perfect-trip-section {
    width: 100%;
    padding: 25px 20px 35px;
    background: #fff;
}

.perfect-trip-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.perfect-trip-title {
    margin: 0 0 28px;
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    color: var(--dark-teal);
}


/* ================================
   TOUR GRID
================================ */

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* ================================
   TOUR CARD
================================ */

.tour-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


/* ================================
   TOUR IMAGE
================================ */

.tour-card > img {
    display: block;
    width: 100%;
    /* height:80%; */
    object-fit: cover;
}


/* ================================
   CARD CONTENT
================================ */

.tour-card-content {
    padding: 8px 9px 9px;
}

.tour-card h3 {
    min-height: 29px;
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--dark-teal);
}


/* ================================
   DURATION
================================ */

.tour-duration {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 7px;
    font-size: 12px;
    color: #999;
}

.tour-duration span:first-child {
    font-size: 16px;
}


/* ================================
   NOTE
================================ */

.tour-note {
    min-height: 27px;
    margin: 0 0 7px;
    font-size: 14px;
    line-height: 1.45;
    color: #999;
}


/* ================================
   PRICE + BOOK BUTTON
================================ */

.tour-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    border-top: 1px solid #e5e5e5;
    padding-top: 7px;
}

.tour-price {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 20px;
    padding: 18px;
    border-radius: 20px;
    background: var(--teal-green);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.3s ease;
}

.book-btn:hover {
    background: var(--dark-teal);
    transform: translateY(-1px);
}


/* ================================
   VIEW ALL
================================ */

.view-all-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.view-all-btn {
       display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 45px;
    padding: 18px 38px;
    background: var(--teal-green);
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    transition: .35s ease;
}

.view-all-btn:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .perfect-trip-section {
        padding: 35px 20px;
    }

    .perfect-trip-container {
        max-width: 700px;
    }

    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .tour-card > img {
        height: 150px;
    }

    .tour-card-content {
        padding: 12px;
    }

    .tour-card h3 {
        font-size: 13px;
    }

    .tour-duration {
        font-size: 9px;
    }

    .tour-note {
        font-size: 8px;
    }

    .tour-price {
        font-size: 8px;
    }

    .book-btn {
        min-width: 72px;
        height: 27px;
        font-size: 8px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .perfect-trip-section {
        padding: 30px 15px;
    }

    .perfect-trip-title {
        margin-bottom: 22px;
        font-size: 32px;
    }

    .tour-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tour-card > img {
        height: 190px;
    }

    .tour-card-content {
        padding: 13px;
    }

    .tour-card h3 {
        font-size: 14px;
    }

    .tour-duration {
        font-size: 10px;
    }

    .tour-note {
        font-size: 9px;
    }

    .tour-price {
        font-size: 9px;
    }

    .book-btn {
        min-width: 80px;
        height: 30px;
        font-size: 8px;
    }

    .view-all-wrapper {
        margin-top: 25px;
    }

    .view-all-btn {
        min-width: 75px;
        height: 30px;
        font-size: 9px;
    }
}