@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --teal: #1abc9c;
    --teal-dark: #159f82;
    --orange: #ff6b35;
    --dark: #1a1a2e;
    --text-muted: #6c757d;
    --light-bg: #f7f8fa;
    --card-radius: 16px;
    --orange: #f05a22;
    --dark: #111111;
    --text-muted: #888;
    --border: #e8e8e8;
    --radius: 16px;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    height: 100vh;
    font-family: 'Poppins', sans-serif;
}

a {
    color: #333;
    text-decoration: none;
}

    a:hover {
        color: #ff5722;
    }



.head {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
    padding: 0; /* Removed the fixed padding */
}

    .head.scrolled,
    .head.menu-open {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

.collaps-content {
    position: relative;
    height: 60px;
    flex-grow: 1; /* Allows it to take up the remaining space */
    display: flex;
    justify-content: flex-end; /* Pushes content to the right */
}

.navbar-top {
    height: 60px;
    width: 96vw; /* Matches the width of your hero section */
    margin: 0 auto; /* Centers the navbar just like the rest of the page */
}
 
.logo-area a img {
    width: 100%;
    height: 40px;
}

.nav-links-area {
    position: relative;
    height: 100%;
    width: auto; /* Let it adapt to the width of the links */
}

    .nav-links-area ul {
        display: flex;
        align-items: center;
        justify-content: flex-end; /* Aligns the list items to the right */
        height: 100%;
        list-style: none;
        padding: 0px;
        margin: 0px;
        gap: 15px;
    }

        .nav-links-area ul li {
            font-size: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            margin: 0px 10px;
        }

.subtitle {
    display: flex;
    flex-direction: column;
}

    .subtitle span {
        font-size: 9px;
        font-weight: 500;
        color: #33333373;
    }

.menu-icon {
    display: none !important;
    font-size: 18px;
    cursor: pointer;
    color: #333;
}

    .menu-icon:hover {
        color: #ff5722;
    }

.btns-area {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
}

    .btns-area a {
        font-family: 'Poppins';
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: -.02em;
        line-height: 117%;
        text-transform: uppercase;
        transition: background-color .3s ease;
        padding: 10px 20px;
    }

.btng {
    background: #AC863D;
    color: #fff;
}

.btni {
    background-color: #9494941f;
    color: #333;
}

.btng:hover {
    background: #745A29;
    color: #fff;
}

.btni:hover {
    background-color: #3d3d3d1f;
}

/* ───── HERO HEADING ───── */
.hero-heading {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #1a1a2e;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}


/* ───── STEPS CARD ───── */
.steps-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: var(--card-radius);
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    font-family: 'Poppins', sans-serif;
}

.step-label {
    color: #3336;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.step-icon {
    flex-shrink: 0;
    height: 35px;
    margin-right: 5px;
    width: 35px;
}

    .step-icon svg {
        width: 30px;
        height: 30px;
    }

.step-title {
    margin-bottom: 6px;
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 600;
}

.step-desc {
    color: #3339;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    padding-left: 10px;
}

/* ───── QR CARD ───── */
.qr-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: var(--card-radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    font-family: 'Poppins', sans-serif;
}

    .qr-card h5 {
        font-size: 20px;
        font-weight: 700;
    }

    .qr-card p {
        color: #3339;
        font-size: 13px;
        font-weight: 500;
        line-height: 140%;
        margin-bottom: 15px;
        text-align: center;
    }

.qr-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .qr-image image {
        width: 100%;
        height: 100%;
    }

.btn-store {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    margin-bottom: 10px;
    transition: background .2s;
}

    .btn-store:hover {
        background: #333;
        color: #fff;
    }

    .btn-store i {
        font-size: 22px;
    }

.btn-store-text {
    line-height: 1.2;
    text-align: left;
}

    .btn-store-text small {
        font-size: 10px;
        font-weight: 400;
        opacity: .75;
        display: block;
        margin-bottom: 3px;
    }

.phone-wrapper img {
    display: block;
    height: auto;
    max-width: 100%;
}

.app-cont {
    padding: 45px;
}

.footer,
.coprt-cont {
    border-top: 1px solid #e0e0e0;
}

.footer-logo-cont {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

    .footer-logo-cont .footer-logo {
        cursor: pointer;
    }

.footer-logo img {
    width: 100%;
    height: 45px;
}

.footer-logo-cont span {
    color: #0006;
    font-size: 12px;
    line-height: 1.5;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    color: #00000059;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.list-unstyled {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .list-unstyled li a {
        font-family: 'Poppins', sans-serif;
        color: #0000008c;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        transition: color .15s;
    }

        .list-unstyled li a:hover {
            color: #ff5722;
        }

.appbtns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    gap: 10px;
    height: 30px;
    background: #000;
    border-radius: 8px;
    margin: 5px 0px;
    padding: 20px;
    color: #fff;
}

    .appbtns i {
        font-size: 15px;
    }

    .appbtns span {
        font-size: 12px;
        font-family: 'Poppins', sans-serif;
        font-weight: 500
    }

    .appbtns:hover {
        color: #f5f5f5;
    }

.coprt-cont div {
    height: 50px;
}

    .coprt-cont div p {
        margin: 0px;
        padding: 0px;
        color: #0000004d;
        font-size: 10px;
        letter-spacing: .03em;
        text-transform: uppercase;
        text-align: center;
    }

/* ── LAYOUT ── */
.page-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ── LEFT PANEL ── */
.left-panel {
    width: 50%;
    background: var(--teal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

    /* subtle radial glow */
    .left-panel::before {
        content: '';
        position: absolute;
        top: -80px;
        left: -80px;
        width: 380px;
        height: 380px;
        background: rgba(255, 255, 255, .08);
        border-radius: 50%;
        pointer-events: none;
    }

    .left-panel::after {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -60px;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, .06);
        border-radius: 50%;
        pointer-events: none;
    }

/* ── SLIDER ── */
.slider-wrap {
    width: 100%;
    max-width: 420px;
    text-align: center;
    position: relative;
    z-index: 1;
}


.slide-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
    font-family: 'Poppins', sans-serif;
}

.slide-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.5;
    margin-bottom: 28px;
    font-size: 14px;
    letter-spacing: -.02em;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: background .3s, transform .3s;
}

    .dot.active {
        background: #fff;
        transform: scale(1.3);
    }

/* ── RIGHT PANEL ── */
.right-panel {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: #fff;
}

.form-box {
    width: 100%;
    max-width: 400px;
    font-family: 'Poppins', sans-serif;
}

.form-title {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -.02em;
    color: #1a1a2e;
    text-align: center;
}

.form-subtitle {
    color: #0006;
    font-size: 14px;
    line-height: 129%;
    text-align: center;
    margin-bottom: 15px;
}

/* Inputs */
.form-control-tourist {
    width: 100%;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: #333;
    outline: none;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    margin-bottom: 12px;
}

    .form-control-tourist::placeholder {
        color: #aaa;
    }

    .form-control-tourist:focus {
        border-color: var(--teal);
        box-shadow: 0 0 0 3px rgba(26, 188, 156, .12);
    }

    .form-control-tourist.is-invalid {
        border-color: #e74c3c;
    }

.invalid-msg {
    font-size: 12px;
    color: #e74c3c;
    margin-top: -8px;
    margin-bottom: 10px;
    padding-left: 4px;
    display: none;
}

/* Password wrapper */
.input-pw-wrap {
    position: relative;
    margin-bottom: 12px;
}

    .input-pw-wrap .form-control-tourist {
        margin-bottom: 0;
        padding-right: 44px;
    }

.pw-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    cursor: pointer;
    font-size: 18px;
    border: none;
    background: none;
    padding: 0;
}

    .pw-toggle:hover {
        color: #555;
    }

/* Sign Up btn */
.btn-signup-main {
    width: 100%;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, transform .1s;
    margin-bottom: 12px;
}

    .btn-signup-main:hover {
        background: var(--teal-dark);
    }

    .btn-signup-main:active {
        transform: scale(.98);
    }

/* Terms text */
.terms-text {
    font-size: 12px;
    color: #aaa;
    text-align: center;
    margin-bottom: 24px;
}

    .terms-text a {
        color: #aaa;
        text-decoration: underline;
    }

        .terms-text a:hover {
            color: var(--teal);
        }

.forget-text {
    font-weight: 500;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: #eee;
    }

    .divider span {
        font-size: 12px;
        color: #bbb;
        white-space: nowrap;
    }

/* Social buttons */
.btn-social {
    width: 100%;
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    transition: opacity .2s, transform .1s;
    margin-bottom: 12px;
    text-decoration: none;
}

    .btn-social:active {
        transform: scale(.98);
    }

.btn-google {
    background: #fff;
    border: 1.5px solid #e0e0e0 !important;
    color: #333;
}

    .btn-google:hover {
        background: #f8f8f8;
        color: #333;
    }

.btn-apple {
    background: #111;
    color: #fff;
    margin-bottom: 0;
}

    .btn-apple:hover {
        background: #333;
        color: #fff;
    }

/* Google G icon */
.google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Login link */
.login-link {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 20px;
}

    .login-link a {
        color: var(--teal);
        font-weight: 600;
        text-decoration: none;
    }

        .login-link a:hover {
            text-decoration: underline;
        }

.siguptext {
    color: #3336;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 108%;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}


/* ── HERO ── */
.hero-section {
    padding: 100px 0 36px;
    text-align: center;
}

.hero-title {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #1a1a2e;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
}

/* ── SEARCH ── */
.search-wrap {
    max-width: 560px;
    margin: 0 auto 16px;
    position: relative;
}

.search-input {
    width: 100%;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    padding: 14px 52px 14px 46px;
    font-size: 15px;
    outline: none;
    color: #333;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: border-color .2s, box-shadow .2s;
}

    .search-input:focus {
        border-color: var(--teal);
        box-shadow: 0 0 0 3px rgba(26, 188, 156, .12);
    }

.search-icon-left {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 18px;
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--teal);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background .2s;
}

    .search-btn:hover {
        background: var(--teal-dark);
    }

/* ── NEAR ME ── */
.near-me-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
}

.btn-near-me {
    align-items: center;
    background: #1abc9c14;
    border: 1px solid rgba(26, 188, 156, .25);
    border-radius: 100px;
    color: #1abc9c;
    cursor: pointer;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    gap: 6px;
    justify-content: center;
    padding: 10px 24px;
    transition: all .2s;
    width: -moz-fit-content;
    width: fit-content;
}

    .btn-near-me:hover {
        background: var(--teal);
        color: #fff;
    }

.near-me-text {
    color: #3336;
    font-size: 15.6px;
    font-weight: 500;
}

/* ── SECTION HEADER ── */
.section-header {
    padding: 32px 0 20px;
}

.countries-badge {
    color: #1abc9c;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: -.02rem;
    line-height: 1;
    text-transform: uppercase;
}

.section-title {
    color: #000;
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -.08rem;
    line-height: 1.1;
    text-transform: uppercase;
}

/* ── FILTER TABS ── */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.filter-tab {
    background-color: #fff;
    border: none;
    border: .5px solid rgba(0, 0, 0, .1);
    border-radius: 30px;
    color: #333;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.02rem;
    padding: 14px 18px 12px;
    transition: all .3s ease;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

    .filter-tab:hover {
        border-color: var(--teal);
        color: var(--teal);
    }

    .filter-tab.active {
        background: var(--teal);
        border-color: var(--teal);
        color: #fff;
    }

/* ── DESTINATION GRID ── */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* ── DESTINATION CARD ── */
.dest-card {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #222;
    display: block;
    text-decoration: none;
}

    .dest-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
        display: block;
    }

    .dest-card:hover img {
        transform: scale(1.07);
    }

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .1) 55%, transparent 100%);
    transition: background .3s;
}

.dest-card:hover .dest-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .2) 60%, transparent 100%);
}

.dest-card-offers {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--teal);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    padding: 4px 10px;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.dest-card-info {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
}

.dest-card-country {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.dest-card-city {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}


/* ── PHOTO GALLERY HERO ── */
.gallery-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 4px;
    height: 364px;
    position: relative;
    overflow: hidden;
    background: #111;
    margin-top: 60px;
}

.gallery-main {
    grid-row: 1 / 3;
    overflow: hidden;
    cursor: pointer;
}

    .gallery-main img,
    .gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }

    .gallery-main:hover img,
    .gallery-thumb:hover img {
        transform: scale(1.04);
    }

.gallery-thumb {
    overflow: hidden;
    cursor: pointer;
}

/* nav arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    transition: background .2s;
}

    .gallery-nav:hover {
        background: #fff;
    }

.gallery-nav-prev {
    left: 12px;
}

.gallery-nav-next {
    right: 12px;
    display: none;
}

/* hidden on desktop – right column is thumbnails */

/* View all photos btn */
.btn-view-photos {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255, 255, 255, .92);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
    transition: background .2s;
}

    .btn-view-photos:hover {
        background: #fff;
    }

/* Share btn */
.btn-share {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, .92);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

/* ── MAIN CONTENT GRID ── */
.content-section {
    padding: 36px 0 60px;
}

/* ── BREADCRUMB CATS ── */
.cats-link {
    font-size: 13px;
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
}

    .cats-link:hover {
        text-decoration: underline;
    }

.cats-sep {
    color: #aaa;
    margin: 0 4px;
}

/* ── VENDOR TITLE ── */
.vendor-title {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a2e;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.vendor-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ── OFFER CARDS ── */
.offers-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.offer-card {
    flex: 1;
    min-width: 220px;
    border: 1.5px solid #eee;
    border-radius: var(--card-radius);
    padding: 20px 18px 16px;
    position: relative;
    cursor: pointer;
    transition: box-shadow .2s, border-color .2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

    .offer-card:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
        border-color: #ddd;
    }

.offer-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 12px;
}

.offer-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.offer-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* ── CTA BUTTON ── */
.btn-redeem {
    display: block;
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .1s;
}

    .btn-redeem:hover {
        background: #e85c27;
        color: #fff;
    }

    .btn-redeem:active {
        transform: scale(.99);
    }

/* ── PROMO BANNER ── */
.promo-banner {
    background: var(--teal);
    border-radius: var(--card-radius);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    text-decoration: none;
    transition: opacity .2s;
}

    .promo-banner:hover {
        opacity: .92;
    }

.promo-banner-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.promo-banner-text {
    flex: 1;
}

.promo-banner-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.promo-banner-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .85);
}

.promo-banner-phone {
    width: 70px;
    height: 90px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.promo-banner-arrow {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

/* ── CONTACT SECTION ── */
.sidebar-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
}

    .contact-item:last-child {
        border-bottom: none;
    }

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #555;
    flex-shrink: 0;
}

.contact-label {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    word-break: break-all;
}

.contact-item:hover .contact-value {
    color: var(--teal);
}

/* ── SOCIAL LINKS ── */
.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color .2s;
}

    .social-link:hover {
        color: var(--teal);
    }

/* ── MAP ── */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    margin: 14px 0 10px;
    border: 1px solid #eee;
}

    .map-container iframe {
        display: block;
    }

.address-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

    .address-row i {
        font-size: 18px;
        color: #555;
    }

/* ── LIGHTBOX ── */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    z-index: 1050;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .lightbox-overlay.show {
        display: flex;
    }

.lightbox-img {
    max-width: 600px;
    max-height: 70vh;
    border-radius: 10px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .15);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

    .lightbox-nav-btn:hover {
        background: rgba(255, 255, 255, .3);
    }

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

.lightbox-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.lightbox-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    opacity: .6;
    transition: opacity .2s;
    border: 2px solid transparent;
}

    .lightbox-thumb.active {
        opacity: 1;
        border-color: var(--teal);
    }

.explore-body {
    background-color: #f9f9f9;
}


.hero-section-main {
    position: relative;
    width: 96vw;
    min-height: 85vh;
    height: auto;
    background-image: url('/assets/media/images/hero-bg.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    margin: 70px auto 15px auto;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff; /* or any contrasting color */
    padding: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hero-sect-content {
    width: 100%;
    height: auto;
}

    .hero-sect-content h1 {
        font-size: 35px;
        font-weight: 700;
        letter-spacing: -.04em;
        line-height: 0.9;
        text-transform: uppercase;
        color: #fff;
    }

    .hero-sect-content h2 {
        font-size: 25px;
        font-weight: 400;
        letter-spacing: -.04em;
        line-height: 1.1;
        color: #fff;
    }

    .hero-sect-content p {
        font-size: 22px;
        font-weight: 500;
        letter-spacing: -.02em;
        line-height: 120%;
        margin-bottom: 40px;
        color: #ffff;
        font-family: 'Poppins';
    }

.description-hero {
    margin-top: 30px;
    font-family: 'Poppins';
    font-weight: 500;
}

    .description-hero p {
        color: #fffc;
        font-size: 14px;
        font-weight: 500;
        line-height: 140%;
    }

.hero-btns-rating {
    width: 100%;
    margin-top: 30px;
    color: #fff;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .hero-btns a {
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: -.02em;
        line-height: 117%;
        text-transform: uppercase;
        transition: background-color .3s ease;
        min-width: 200px;
        padding: 16px 42px;
        text-align: center;
        font-family: 'Poppins', sans-serif;
    }

.btnjoin {
    background-color: #ff5722;
    color: #fff;
}

.btnhiw {
    background-color: #fff;
    color: #333;
}

    .btnhiw:hover {
        background-color: #ececec;
        color: #333;
    }

.rating-cont {
    position: absolute;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    right: 15px;
    bottom: 15px;
}

.starts {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff5722;
    font-size: 18px;
}

.rating-cont span {
    font-family: 'Poppins', sans-serif;
    color: #707070cc;
    font-size: 12px;
    font-weight: 600;
    line-height: 117%;
}

.part-two {
    position: relative;
    width: 96vw;
    height: auto;
    margin: 20px auto;
}

.title-sect h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 110%;
    text-transform: uppercase;
}

.desc-sect p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.testimonial-tabs {
    width: 96vw;
    height: auto;
    background-color: #f5f5f5;
    overflow: hidden;
}

.right-side-testim {
    width: 65%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.feedback {
    width: 100%;
}

    .feedback h4 {
        font-size: 30px;
        font-family: Helvetica, sans-serif;
        color: #333;
        line-height: 131%;
        font-weight: bold;
    }

    .feedback p {
        color: #6b7280;
        font-size: 12px;
        font-weight: 600;
        line-height: 150%;
        text-transform: uppercase;
    }

.tabs {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tab {
    align-items: center;
    background: #ffffffd1;
    border: 1px solid #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px #3333330a;
    cursor: pointer;
    display: flex;
    margin-right: 5px;
    min-width: 200px;
    padding: 12px;
}

.profile {
    display: flex;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    height: 32px;
    justify-content: center;
    margin-right: 10px;
    width: 32px;
}

.clara {
    background-color: #ff5722;
}

.Luka {
    background-color: #1ABC9C;
}

.Emily {
    background-color: #4A6CF7;
}

.userdetails {
    margin: 0px 10px;
}

    .userdetails p {
        padding: 0px;
        margin: 0px;
        font-family: 'Poppins', sans-serif;
    }

    .userdetails .username {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: -.01em;
        line-height: 114%;
    }

    .userdetails .country {
        color: #3336;
        font-size: 11px;
        letter-spacing: -.01em;
        line-height: 127%;
    }

.left-side-testim {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .left-side-testim img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
    }

.testimonial-item {
    display: none;
}

    .testimonial-item.active {
        display: block;
    }

.tab {
    opacity: 0.4;
    transition: 0.3s ease;
}

    .tab.active {
        opacity: 1;
    }

.how-it-works {
    width: 96vw;
    margin: 30px auto;
    background-color: #d1f2eb;
    flex-direction: column;
}

.benifits-title {
    width: 50%;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 150%;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

/*    .benefits__middle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }

    .benefits__inner {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .benefits__item-top {
        background: #ffffffe6;
        border-radius: 36px;
        padding: 24px;
    }

    .benefits__item-top:first-child {
        margin-bottom: 15px;
    }

    .benefits__item-top-pic {
        display: inline-block;
        margin-bottom: 15px;
    }

    .benefits__item-top-title {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 100%;
        margin-bottom: 15px;
    }

    .benefits__item-top-dscr {
        color: #3339;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: -.02em;
        line-height: 140%;
    }

    .benefits__pic {
        display: flex;
        justify-content: center;
    }

    .benefits__pic img {
        display: block;
        height: auto;
        max-width: 100%;
    } */

/* ============================
       SECTION – WHAT OUR TOURISTS SAY
    ============================ */
#tourists-say {
    padding: 72px 0 64px;
    overflow: hidden;
}

    /* Header row */
    #tourists-say .section-heading h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 48px;
        font-weight: 600;
        letter-spacing: -.04em;
        line-height: 110%;
        text-transform: uppercase;
    }

    #tourists-say .section-heading .sub-text {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.7;
        max-width: 420px;
        margin-left: auto;
    }

/* ── Slider wrapper ── */
.tourists-slider-outer {
    position: relative;
    overflow: hidden;
    margin-top: 36px;
    /* allow slight bleed on right to hint at next card */
    padding-right: 0;
}

.tourists-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: stretch;
}

/* ── Individual card ── */
.tourist-card {
    flex: 0 0 calc(33.333% - 18px);
    margin-right: 24px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    transition: box-shadow 0.25s, transform 0.25s;
    min-height: 310px;
}

    .tourist-card:hover {
        box-shadow: 0 10px 36px rgba(0, 0, 0, 0.08);
        transform: translateY(-3px);
    }

    /* Quote text */
    .tourist-card .quote-text {
        font-size: 0.97rem;
        line-height: 1.65;
        color: #222;
        flex: 1;
        margin-bottom: 28px;
    }

/* Save badge – teal hand-drawn oval look */
.save-badge-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 28px;
}

.save-badge {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 64px;
}

    .save-badge svg.oval {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        overflow: visible;
    }

        .save-badge svg.oval ellipse {
            fill: none;
            stroke: var(--teal);
            stroke-width: 2.4;
            stroke-dasharray: 6 3;
            stroke-linecap: round;
        }

    .save-badge .save-label {
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: var(--teal);
        line-height: 1;
        position: relative;
        z-index: 1;
    }

    .save-badge .save-amount {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--teal);
        line-height: 1.1;
        position: relative;
        z-index: 1;
    }

/* Footer: name + stars */
.tourist-card .card-footer-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.tourist-card .tourist-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.tourist-card .tourist-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.stars {
    color: var(--orange);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ── Dot navigation ── */
.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 32px;
}

.s-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

    .s-dot.active {
        background: var(--orange);
        transform: scale(1.35);
    }

/* ── Arrow buttons ── */
.slider-arrows {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    color: #555;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

    .arrow-btn:hover {
        border-color: var(--orange);
        color: var(--orange);
        background: #fff5f2;
    }

/* ============================
       FAQ SECTION
    ============================ */
#faq-section {
    padding: 72px 0 80px;
}

/* Left column */
.faq-left h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 35px;
    text-transform: uppercase;
    line-height: 1.08;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
}

.faq-left .faq-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 300px;
}

/* Right column – accordion */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    border-bottom: 1.5px solid var(--border);
}

    .faq-item:first-child {
        border-top: 1.5px solid var(--border);
    }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;
    gap: 20px;
    user-select: none;
    transition: color 0.2s;
}

    .faq-question:hover {
        color: var(--orange);
    }

        .faq-question:hover .faq-icon {
            color: var(--orange);
        }

.faq-icon {
    font-size: 1.05rem;
    color: #333;
    flex-shrink: 0;
    transition: transform 0.32s ease, color 0.2s;
    line-height: 1;
}

.faq-item.open .faq-question {
    color: var(--dark);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--orange);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}



/* Responsive  */
@media only screen and (max-width: 1100px) {
    .part-two {
        flex-direction: column;
        justify-content: center;
        padding: 30px;
    }

    .title-sect h3,
    .desc-sect p {
        text-align: center;
    }
}

@media only screen and (max-width: 991px) {
    .tourist-card {
        flex: 0 0 calc(50% - 12px);
    }

    .app-cont {
        padding: 20px;
    }

    .menu-icon {
        display: block !important;
    }

    /* 1. The default hidden state */
    .collaps-content {
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        flex-direction: column;
        height: auto; /* <--- THIS IS THE MAGIC FIX! Overrides the 60px desktop height */
        max-height: 0;
        overflow: hidden;
        background: #fff;
        transition: max-height 0.4s ease-in-out;
    }

        /* 2. The new active state */
        .collaps-content.active {
            max-height: 400px;
            border-bottom: 1px solid #e8e8e8;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        }

    .nav-links-area {
        height: auto;
        width: 100%;
        padding: 15px;
    }

        .nav-links-area ul {
            flex-direction: column;
        }

    .subtitle {
        align-items: center;
    }

    .btns-area {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }

        .btns-area a {
            width: 30%;
            border-radius: 8px;
        }

    .testimonial-tabs {
        flex-direction: column-reverse;
    }

    .left-side-testim,
    .right-side-testim {
        width: 100%;
    }

    .starts,
    .feedback,
    .tabs {
        justify-content: center;
    }

    .feedback {
        text-align: center;
        margin: 20px 0px;
    }

    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .phone-wrapper img {
        width: auto;
        height: 85%;
    }
    /* .benefits__pic img{
            width: 90%;
        } */
}



@media only screen and (max-width: 766px) {
    .faq-left {
        margin-bottom: 36px;
    }

        .faq-left .faq-sub {
            max-width: 100%;
        }

    .appbtns {
        justify-content: center;
    }

    .coprt-cont div {
        justify-content: center;
    }

    .hero-section-main {
        padding: 15px;
        align-items: center;
    }

    .hero-sect-content h2 {
        font-size: 60px;
        text-align: center;
    }

    .hero-sect-content p {
        font-size: 20px;
        text-align: center;
    }

    .description-hero p {
        text-align: center;
    }

    .hero-btns-rating {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .rating-cont {
        position: relative;
        right: 0px;
        bottom: 0px;
    }

    .feedback h4 {
        font-size: 25px;
    }

    .benifits-title {
        width: 100%;
        font-size: 18px;
        padding: 15px 20px;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-hero {
        grid-template-columns: 1fr;
        grid-template-rows: 240px;
        height: 240px;
    }

    .gallery-thumb {
        display: none;
    }

    .gallery-nav-next {
        display: flex;
    }

    .offers-row {
        flex-direction: column;
    }

    .phone-wrapper img {
        width: 100%;
        height: auto;
    }

    .page-wrapper {
        flex-direction: column;
    }

    .left-panel,
    .right-panel {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .tourist-card {
        flex: 0 0 calc(100%);
        margin-right: 16px;
    }

    #tourists-say .section-heading .sub-text {
        margin-left: 0;
        margin-top: 14px;
    }
}

@media only screen and (max-width: 576px) {
    .btns-area a {
        width: 50%;
    }

    .hero-sect-content h2 {
        font-size: 50px;
    }

    .hero-sect-content p {
        font-size: 18px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .info {
        padding: 24px;
    }

    .benifits-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}
