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

:root {
    --accent: #3ecfb2;
    /* teal-mint */
    --accent-dark: #27a891;
    --accent-pale: #e8faf7;
    --accent-glow: rgba(62, 207, 178, 0.18);
    --ink: #0f1923;
    --ink2: #1c2b38;
    --ink3: #243344;
    --text: #2c3e50;
    --text-muted: #6b7f90;
    --white: #ffffff;
    --surface: #f5f8fa;
    --card-bg: #ffffff;
    --border: #dde6ed;
    --green: #16a34a;
    --red: #e53e3e;
    --coral: #ff6b6b;
    --sky: #4fc3f7;
    --nav-h: 66px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--surface);
    color: var(--text);
    min-height: 100vh;
}

/* ── NAVBAR ── */
/* ══ NAVBAR ══ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
}

/* Top Bar */
.nav-topbar {
    background: #a28046;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 36px;
}

.nav-topbar-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgb(255, 255, 255);
    font-size: 12.5px;
}

.nav-topbar-item a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-topbar-item a:hover {
    color: white;
}

.nav-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    color: white;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-icon:hover {
    background: white;
    color: var(--ink);
    border-color: white;
}

/* Main Bar */
.nav-mainbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
    height: 62px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 79px;
    /* apne hisab se adjust kar lena */
    width: auto;
    display: block;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 23px;
    font-weight: 700;
    color: #0f1923;
}

.nav-logo-text span {
    color: black;
}

/* Desktop links */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    height: 62px;
    gap: 0;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 0 14px;
    height: 62px;
    display: flex;
    align-items: center;
    border-bottom: 2.5px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    /* color: var(--accent-dark); */
    border-bottom-color: black;
}

/* Right buttons */
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-btn {
    background: #a28046;
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}

.nav-btn:hover {
    background: #2d364d;
    transform: translateY(-1px);
}

.nav-icon-btn {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #0f1923;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: border-color 0.2s, background 0.2s;
}

.nav-icon-btn:hover {
    border-color: var(--accent);
    background: var(--accent-pale);
}

.nav-topbar-item i {
    color: #ffffff;
    font-size: 13px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.06);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0f1923;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1),
        opacity 0.25s ease,
        width 0.3s ease;
    transform-origin: center;
}

/* X animation */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 999;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1),
        padding 0.3s ease;
}

.mobile-menu.open {
    max-height: 600px;
    padding: 12px 20px 24px;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu a:hover {
    color: var(--accent-dark);
    padding-left: 10px;
}

.mobile-menu a:last-of-type {
    border-bottom: none;
}

.mobile-menu .mob-book-btn {
    display: block;
    margin-top: 16px;
    width: 100%;
    background: #0f1923;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
}

.mobile-menu .mob-book-btn:hover {
    background: var(--accent);
    color: var(--ink);
}

/* Overlay behind mobile menu */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 998;
    backdrop-filter: blur(2px);
}

.menu-overlay.show {
    display: block;
}

@media (max-width: 860px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-icon-btn {
        display: none;
    }

    .nav-topbar {
        padding: 6px 20px;
    }

    .nav-topbar-item:nth-child(3) {
        display: none;
    }

    .nav-mainbar {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {

    /* Top bar */
    .nav-topbar-left {
        display: none;
    }

    .nav-topbar {
        justify-content: flex-end;
        padding: 6px 14px;
    }

    .social-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
        border-radius: 5px;
    }

    /* Main bar */
    .nav-mainbar {
        padding: 0 14px;
        height: 54px;
    }

    .nav-logo-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
        border-radius: 8px;
    }

    .nav-logo-text {
        font-size: 19px;
    }

    .nav-btn {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 20px;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile drawer */
    .mobile-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: #ffffff;
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        pointer-events: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        padding: 0 20px;
        transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1),
            padding 0.3s ease,
            visibility 0.4s;
    }

    .mobile-menu.open {
        max-height: 620px;
        padding: 10px 20px 24px;
        visibility: visible;
        pointer-events: all;
    }

    .mobile-menu a {
        display: flex;
        align-items: center;
        color: #222;
        text-decoration: none;
        font-size: 14.5px;
        font-weight: 500;
        padding: 13px 4px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        transition: color 0.2s, padding-left 0.2s;
    }

    .mobile-menu a:hover {
        color: var(--accent-dark);
        padding-left: 8px;
    }

    .mobile-menu a:last-of-type {
        border-bottom: none;
    }

    .mobile-menu .mob-book-btn {
        display: block;
        width: 100%;
        margin-top: 14px;
        background: #0f1923;
        color: #fff;
        border: none;
        padding: 13px;
        border-radius: 28px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        text-align: center;
        transition: background 0.2s;
    }

    .mobile-menu .mob-book-btn:hover {
        background: var(--accent);
        color: var(--ink);
    }

    /* Overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
        backdrop-filter: blur(3px);
    }

    .menu-overlay.show {
        display: block;
    }
}

@media (max-width: 400px) {
    .nav-logo-text {
        font-size: 17px;
    }

    .nav-logo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .nav-btn {
        padding: 7px 11px;
        font-size: 11px;
    }

    .social-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
}

/* cta */
/* ══ CTA SECTION ══ */
.tm-cta-section {

    position: relative;

    padding: 10px 20px;

    background: url("https://images.unsplash.com/photo-1564507592333-c60657eea523?q=80&w=1920&auto=format&fit=crop");

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

    background-attachment: fixed;

    overflow: hidden;
}

.tm-cta-overlay {

    position: absolute;
    inset: 0;

    background: linear-gradient(135deg,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .55));
}

.tm-cta-container {

    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: auto;

    text-align: center;

    padding: 9px;

    /* border-radius: 30px; */

    /* backdrop-filter: blur(12px);

     background: rgba(255, 255, 255, .08); */

    /* border: 1px solid rgba(255, 255, 255, .15); */

    /* box-shadow: 0 20px 60px rgba(0, 0, 0, .35); */
}

.tm-cta-tag {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .15);

    color: #fff;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;
}

.tm-cta-title {

    color: #fff;

    font-size: 52px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.tm-cta-desc {

    color: rgba(255, 255, 255, .9);

    font-size: 18px;

    line-height: 1.8;

    max-width: 700px;

    margin: auto auto 35px;
}

.tm-cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.tm-cta-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    padding: 16px 32px;

    border-radius: 60px;

    font-size: 16px;

    font-weight: 700;

    transition: .4s ease;
}

.tm-call-btn {

    background: #a28046;

    color: #fffefe;
}

.tm-whatsapp-btn {

    background: #a28046;

    color: #fff;
}

.tm-cta-btn:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

/* Tablet */

@media(max-width:992px) {

    .tm-cta-title {
        font-size: 42px;
    }

    .tm-cta-container {
        padding: 40px 30px;
    }
}

/* Mobile */

@media(max-width:768px) {

    .tm-cta-section {

        padding: 80px 15px;

        background-attachment: scroll;
    }

    .tm-cta-container {

        padding: 35px 20px;
    }

    .tm-cta-title {

        font-size: 30px;
    }

    .tm-cta-desc {

        font-size: 16px;
    }

    .tm-cta-buttons {

        flex-direction: column;
    }

    .tm-cta-btn {

        width: 100%;

        justify-content: center;
    }
}

/* ── HERO SLIDER ── */
.hero {
    margin-top: var(--nav-h);
    position: relative;
    height: calc(100vh - var(--nav-h));
    min-height: 520px;
    max-height: 650px;
    overflow: hidden;
}

/* ── Slide ── */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.3s ease;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide.prev {
    opacity: 0;
    z-index: 1;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.slide.active .slide-img {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(8, 16, 26, 0.15) 0%,
            rgba(8, 16, 26, 0.05) 25%,
            rgba(8, 16, 26, 0.50) 60%,
            rgba(8, 16, 26, 0.90) 100%);
    z-index: 1;
}

/* ── Hero Content ── */
.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 24px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ── Badge ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /* animate in */
    opacity: 0;
    transform: translateY(14px);
    animation: heroFadeUp 0.7s 0.3s forwards;
}

/* ── Heading ── */
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 89px;
    font-weight: 700;
    color: #fff;
    line-height: 1.06;
    letter-spacing: -0.5px;
    white-space: nowrap;
    /* one line on desktop */
    margin: 0 0 24px;

    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 0.7s 0.5s forwards;
}

/* ── Search Wrap ── */
.hero-search-wrap {
    width: 92%;
    max-width: 720px;
    margin-bottom: 24px;

    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp 0.7s 0.65s forwards;
}

/* Tabs */
.hero-search-tabs {
    display: flex;
    gap: 3px;
    padding: 0 6px;
}

.hstab {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 7px 18px;
    border-radius: 14px 14px 0 0;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    white-space: nowrap;
}

.hstab.active {
    background: rgba(255, 255, 255, 0.97);
    color: #0f1923;
    border-color: rgba(255, 255, 255, 0.97);
}

.hstab:not(.active):hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Search Bar */
.hero-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 0 16px 16px 16px;
    padding: 8px 8px 8px 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Field */
.hs-field {
    flex: 1.1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    min-width: 0;
}

.hs-field--main {
    flex: 2;
}

.hs-divider {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.hs-ico {
    width: 18px;
    height: 18px;
    color: #999;
    flex-shrink: 0;
}

.hs-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    width: 100%;
}

.hs-label {
    font-size: 10px;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
    white-space: nowrap;
}

.hs-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13.5px;
    color: #111;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 3px;
    width: 100%;
    min-width: 0;
}

.hs-input::placeholder {
    color: #bbb;
    font-weight: 400;
}

/* Search Button */
.hs-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #a28046;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.hs-btn:hover {
    background: #2d364d;
    transform: translateY(-1px);
}

/* ── Stats Pills ── */
.hero-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;

    opacity: 0;
    transform: translateY(12px);
    animation: heroFadeUp 0.7s 0.85s forwards;
}

.hstat {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgb(0 0 0 / 60%);
    border: 1px solid rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 8px 16px;
}

.hstat strong {
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hstat span {
    color: rgb(255, 255, 255);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── Animate in ── */
@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ════════════════════════════════════════════
   MOBILE RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 768px) {

    .hero {
        max-height: 100svh;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 16px 28px;
    }

    /* Heading wrap karne do chhoti screen pe */
    .hero-title {
        white-space: normal;
        font-size: clamp(28px, 7.5vw, 42px);
        margin-bottom: 20px;
    }

    .hero-search-wrap {
        width: 98%;
    }

    /* Tabs scroll */
    .hero-search-tabs {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .hero-search-tabs::-webkit-scrollbar {
        display: none;
    }

    .hstab {
        font-size: 11.5px;
        padding: 6px 14px;
    }

    /* Search bar — vertical stack */
    .hero-search-bar {
        flex-direction: column;
        align-items: stretch;
        border-radius: 16px;
        padding: 6px;
        gap: 0;
    }

    .hs-field {
        flex: unset;
        padding: 11px 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    }

    .hs-field--main {
        flex: unset;
    }

    .hs-divider {
        display: none;
    }

    .hs-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
        border-radius: 12px;
        margin: 6px 0 0 0;
        font-size: 15px;
    }

    /* Stats smaller */
    .hero-stats {
        gap: 7px;
    }

    .hstat {
        padding: 6px 12px;
    }

    .hstat strong {
        font-size: 12px;
    }

    .hstat span {
        font-size: 9px;
    }
}

@media (max-width: 420px) {

    .hero-badge {
        font-size: 9px;
        padding: 4px 10px;
    }

    .hero-title {
        font-size: clamp(24px, 8.5vw, 32px);
    }

    /* 2x2 grid for stats */
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .hstat {
        justify-content: center;
    }
}

/* ── MAIN ── */
/* :root {
     --primary: #0f172a;
     --secondary: #ff7b00;
     --accent: #ffb703;
     --white: #ffffff;
     --text: #1e293b;
     --muted: #64748b;
     --border: #e5e7eb;
 } */

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

/* .section {
     max-width: 1400px;
     margin: auto;
     padding: 20px 52px;
     background: white;
 }

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

 .heading h2 {
     font-size: 46px;
     color: #2d364d;
     font-family: 'Cormorant Garamond', serif;
     margin-bottom: 10px
 }

 .heading p {
     color: black;
     font-size: 17px;
 }

 .tours-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 25px;
     margin-bottom: 20px;
 }


 .tour-card {
     position: relative;
     height: 430px;
     border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
 }

 .tour-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: 1s
 }

 .tour-card:hover img {
     transform: scale(1.12)
 }

 .overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, .95), rgba(0, 0, 0, .35), transparent);
     padding: 20px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .badge {
     background: #2d364d;
     padding: 8px 14px;
     color: white;
     border-radius: 30px;
     width: max-content;
     font-size: 12px;
     font-weight: 700
 }

 .content {
     transform: translateY(70px);
     transition: .5s
 }

 .tour-card:hover .content {
     transform: translateY(0)
 }

 .category {
     color: #ffffff;
     font-size: 13px
 }

 .title {
     color: #fff;
     font-size: 22px;
     margin: 12px 0;
     line-height: 1.4
 }

 .meta {
     display: flex;
     gap: 15px;
     color: #fff;
     font-size: 14px;
     flex-wrap: wrap
 }

 .bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 18px
 }

 .price {
     color: #fff;
     font-size: 28px;
     font-weight: 700
 }

 .btn {
     background: #a28046;
     color: #ffffff;
     padding: 10px 18px;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 700
 }

 .btn:hover {
     background: #2d364d;
 }

 .hidden-cards {
     display: none
 }

 .load-wrap {
     text-align: center;
     margin-top: 35px
 }

 .load-btn {
     border: none;
     padding: 11px 21px;
     border-radius: 50px;
     background: #a28046;
     color: #fff;
     cursor: pointer;
     font-family: 'Plus Jakarta Sans', sans-serif;
     font-weight: 700
 }

 @media(max-width:1024px) {
     .tours-grid {
         grid-template-columns: repeat(2, 1fr)
     }
 }

 @media(max-width:768px) {
     .heading h2 {
         font-size: 30px
     }

     .tours-grid {
         grid-template-columns: 1fr
     }

     .tour-card {
         height: 380px
     }
 } */

/* ══ INLINE OFFER SECTION ══ */
.inline-offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 52px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    min-height: 360px;
}

.inline-offer-img {
    overflow: hidden;
    position: relative;
}

.inline-offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    display: block;
}

.inline-offer:hover .inline-offer-img img {
    transform: scale(1.04);
}

.inline-offer-content {
    background: #0f1923;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Dark variant — image right, content left dark */
.inline-offer--dark .inline-offer-content {
    background: var(--ink);
    order: -1;
}

.inline-offer--dark .inline-offer-tag {
    background: rgba(62, 207, 178, 0.15);
    color: white;
}

.inline-offer--dark .inline-offer-title {
    color: #fff;
}

.inline-offer--dark .inline-offer-desc {
    color: rgba(255, 255, 255, 0.6);
}

.inline-offer--dark .inline-offer-perk {
    color: rgba(255, 255, 255, 0.8);
}

.inline-offer-tag {
    display: inline-block;
    background: rgb(255 255 255);
    color: black;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    width: fit-content;
}

.inline-offer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.inline-offer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 16px;
}

.inline-offer-perks {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}

.inline-offer-perk {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.inline-offer-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.inline-offer-input {
    flex: 1;
    min-width: 160px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 40px;
    padding: 0 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.inline-offer-input input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13.5px;
    padding: 12px 0;
    width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #222;
}

.inline-offer-input input::placeholder {
    color: #aaa;
}

.inline-offer-btn {
    background: white;
    color: var(--ink);
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}

.inline-offer--dark .inline-offer-btn {
    background: white;
    color: var(--ink);
}

.inline-offer-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.inline-offer-code {
    background: rgb(0, 0, 0);
    border: white;
    color: white;
    font-size: 20px;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 10px;
    letter-spacing: 3px;
}

/* Responsive */
@media (max-width: 860px) {
    .inline-offer {
        grid-template-columns: 1fr;
    }

    .inline-offer-img {
        min-height: 240px;
        order: -1 !important;
    }

    .inline-offer--dark .inline-offer-content {
        order: 0;
    }

    .inline-offer-content {
        padding: 32px 28px;
    }

    .inline-offer-title {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .inline-offer {
        border-radius: 16px;
        margin-bottom: 36px;
    }

    .inline-offer-img {
        min-height: 200px;
    }

    .inline-offer-content {
        padding: 24px 20px;
    }

    .inline-offer-title {
        font-size: 21px;
    }

    .inline-offer-form {
        flex-direction: column;
    }

    .inline-offer-btn {
        width: 100%;
        text-align: center;
        padding: 13px;
    }
}

/* Tour grid responsive */
@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
}

/* things to do css */
/* ══ THINGS TO DO SECTION ══ */
.ttd-section {
    background: white;
    padding: 18px 24px;
}

.ttd-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.ttd-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 700;
    color: #2d364d;
    text-align: center;
    margin-bottom: 36px;
}

.ttd-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    align-items: start;
}

.ttd-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #818899;
    background: var(--white);
    transition: box-shadow 0.2s;
}

.ttd-item:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);

}

.ttd-item.open {
    border-color: #2d364d;
}

.ttd-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.ttd-header:hover {
    background: #f0f4f8;
}

.ttd-item.open .ttd-header {
    background: #f0f4f8;
}

.ttd-num {
    background: #2d364d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ttd-item.open .ttd-num {
    background: #0f1923;
    color: #ffffff;
}

.ttd-name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
}

.ttd-icon {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.3s, color 0.2s;
    line-height: 1;
}

.ttd-item.open .ttd-icon {
    transform: rotate(45deg);
    color: black;
}

.ttd-body {
    max-height: 0;
    overflow: hidden;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 14px;
    transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1),
        padding 0.3s ease;
    border-top: 0px solid var(--border);
}

.ttd-item.open .ttd-body {
    max-height: 200px;
    padding: 12px 14px 14px;
    border-top: 1px solid var(--border);
    color: black;
}

/* Responsive */
@media (max-width: 1024px) {
    .ttd-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .ttd-section {
        padding: 44px 16px;
    }

    .ttd-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

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

    .ttd-name {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .ttd-grid {
        grid-template-columns: 1fr;
    }
}

/* gallery */
/* ══ GALLERY SECTION ══ */
/* ══ GALLERY SECTION ══ */
/* ══ GALLERY SECTION ══ */
.gallery-section {
    background: white;
    padding: 64px 24px;
}

.gallery-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 36px;
}

.gallery-tag {
    display: inline-block;
    background: #f0f4f8;
    color: #0f1923;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.gallery-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 700;
    color: #2d364d;
    margin-bottom: 10px;
}

.gallery-sub {
    font-size: 17px;
    color: #000000;
    max-width: 480px;
    margin: 0 auto;
}

/* Slider Wrap */
.gallery-slider-wrap {
    position: relative;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 20px;
    transition: opacity 0.5s ease;
}

.gallery-grid .gallery-item {
    display: none;
}

.gallery-grid .gallery-item.g-visible {
    display: block;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.4, 0, .2, 1),
        filter 0.6s ease;
    filter: brightness(1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.75);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 20, 30, 0.88) 0%,
            rgba(10, 20, 30, 0.3) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    gap: 8px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Camera icon */
.gallery-overlay::before {

    font-size: 32px;
    opacity: 0;
    transform: translateY(12px) scale(0.8);
    transition: opacity 0.4s 0.1s ease,
        transform 0.4s 0.1s ease;
    margin-bottom: 8px;
}

.gallery-item:hover .gallery-overlay::before {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Info slide up */
.gallery-info {
    text-align: center;
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.4s 0.15s ease,
        opacity 0.4s 0.15s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.gallery-loc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

/* Shine sweep effect */
.gallery-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.12),
            transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    left: 130%;
}

/* Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.gallery-dot.active {
    background: #0f1923;
    width: 24px;
    border-radius: 4px;
}

/* CTA */
.gallery-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px;
    background: #f0f4f8;
    border: 1px solid #dde6ed;
    border-radius: 14px;
}

.gallery-cta p {
    font-size: 15px;
    font-weight: 500;
    color: #0f1923;
}

.gallery-cta-btn {
    background: #0f1923;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 28px;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.gallery-cta-btn:hover {
    background: #243344;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 860px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-title {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .gallery-section {
        padding: 44px 16px;
    }

    .gallery-title {
        font-size: 22px;
    }

    .gallery-sub {
        font-size: 14px;
    }

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

    .gallery-cta {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .gallery-cta-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-title {
        font-size: 20px;
    }
}

/* faq */
/* ══ FAQ SECTION ══ */
.faq-section {
    background: var(--white);
    padding: 20px 24px;
}

.faq-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}

/* Left Image */
.faq-img-col {
    position: relative;
}

.faq-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.faq-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-img-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.faq-badge-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
}

.faq-badge-text {
    font-size: 12px;
    font-weight: 500;
    color: black;
}

.faq-img-card {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-card-icon {
    font-size: 26px;
    flex-shrink: 0;
}

.faq-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px;
}

.faq-card-sub {
    font-size: 12px;
    color: black;
}

/* Right Content */
.faq-tag {
    display: inline-block;
    background: #a28046;
    color: white;
    border: 1px solid rgba(62, 207, 178, 0.3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 700;
    color: #2d364d;
    line-height: 1.2;
    margin-bottom: 10px;
}

.faq-sub {
    font-size: 17px;
    color: #000000;
    margin-bottom: 28px;
}

/* FAQ Items */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
    border-color: white;
}

.faq-item.open {
    border-color: black;
    box-shadow: 0 4px 16px rgba(62, 207, 178, 0.12);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    user-select: none;
    transition: background 0.2s;
}

.faq-q:hover {
    background: #f0f4f8;
}

.faq-item.open .faq-q {
    background: #f0f4f8;
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-muted);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.3s, color 0.2s;
    width: 24px;
    text-align: center;
}

.faq-item.open .faq-icon {
    color: var(--accent-dark);
    transform: rotate(0deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 0 18px;
    border-top: 0px solid var(--border);
    transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1),
        padding 0.3s ease,
        border-top 0.2s;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 14px 18px 16px;
    border-top: 1px solid var(--border);
    color: black;
}

/* Responsive */
@media (max-width: 860px) {
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .faq-img-wrap {
        aspect-ratio: 16/9;
    }

    .faq-title {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 48px 16px;
    }

    .faq-title {
        font-size: 22px;
    }

    .faq-sub {
        font-size: 14px;
    }

    .faq-q {
        font-size: 13.5px;
        padding: 14px 15px;
    }

    .faq-a {
        font-size: 13.5px;
    }
}

/* awars */
/* ══ AWARDS SECTION ══ */
.awards-section {
    background: var(--white);
    padding: 31px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.awards-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.awards-header {
    text-align: center;
    margin-bottom: 44px;
}

.awards-tag {
    display: inline-block;
    background: #f0f4f8;
    color: #0f1923;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.awards-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 700;
    color: #2d364d;
    margin-bottom: 10px;
}

.awards-sub {
    font-size: 15px;
    color: #000000;
    max-width: 480px;
    margin: 0 auto;
}

.awards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
}

.award-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: 134px;
    width: 156px;
    padding: 28px 20px;
    border: 1px solid #2d364d;
    border-radius: 7px;
    cursor: pointer;
}

.award-img-wrap {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-img-wrap img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.award-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    line-height: 3.4;
}

@media (max-width: 860px) {
    .awards-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .awards-section {
        padding: 44px 16px;
    }

    .awards-title {
        font-size: 24px;
    }

    .awards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .award-card {
        padding: 20px 14px;
    }

    .award-img-wrap {
        height: 55px;
    }
}

@media (max-width: 400px) {
    .awards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── SIGHTS ── */
.sights-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 52px;
}

.sights-row::-webkit-scrollbar {
    display: none;
}

.sight-card {
    flex: unset;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 320px;
    cursor: pointer;
    transition: transform 0.25s;
}

.sight-card:hover {
    transform: translateY(-4px);
}

.sight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 55%);
}

.sight-name {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
}

.sight-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}

/* ── CHIPS ── */
.exp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 52px;
}

.exp-chip {
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text);
    padding: 9px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.exp-chip:hover,
.exp-chip.active {
    border-color: #0f1923;
    background: #0f1923;
    color: #ffffff;
}

/* ── ABOUT ── */
.about-section {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink3) 100%);
    border-radius: 22px;
    padding: 50px 48px;
    margin-bottom: 52px;
    position: relative;
    overflow: hidden;
}

.about-section::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(62, 207, 178, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 16px;
}

.about-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    max-width: 760px;
}

.about-highlights {
    display: flex;
    gap: 28px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.h-icon {
    width: 34px;
    height: 34px;
    background: rgba(62, 207, 178, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ── REVIEWS ── */
.reviews-section {
    max-width: 1300px;
    margin: 2px auto;
    padding: 0 20px;
}

.rating-overview {
    display: flex;
    align-items: center;
    gap: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 36px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.rating-big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 700;
    color: #2d364d;
    line-height: 1;
}

.rating-info {
    flex: 1;
    min-width: 160px;
}

.rating-stars-big {
    font-size: 24px;
    color: #f59e0b;
    margin-bottom: 6px;
}

.rating-total {
    color: #2d364d;
    font-size: 14px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    transition: box-shadow 0.2s;
}

.review-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
}

.review-date {
    font-size: 12px;
    color: black;
}

.review-stars {
    font-size: 13px;
    color: #f59e0b;
}

.review-text {
    font-size: 14px;
    line-height: 1.65;
    color: black;
}

.review-tour {
    font-size: 12px;
    color: black;
    margin-top: 10px;
    font-weight: 500;
}

.rating-heading {
    font-weight: 700;
    color: #2d364d;
    margin-bottom: 4px;
    font-size: 18px;
}

.rating-trust {

    flex: 1.5;

    min-width: 350px;

    padding-left: 25px;

    border-left: 1px solid #e5e7eb;
}

.rating-trust h3 {

    font-size: 22px;

    margin-bottom: 10px;

    color: #2d364d;
}

.rating-trust p {

    color: #2d364d;

    line-height: 1.7;

    margin-bottom: 15px;
}

.trust-badges {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.trust-badges span {

    display: flex;

    align-items: center;

    gap: 8px;

    background: #f8fafc;

    padding: 10px 15px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;
}

@media(max-width:768px) {

    .rating-overview {

        flex-direction: column;

        align-items: flex-start;
    }

    .rating-trust {

        width: 100%;

        min-width: 100%;

        padding-left: 0;

        padding-top: 20px;

        border-left: none;

        border-top: 1px solid #e5e7eb;
    }

    .trust-badges {

        flex-direction: column;
    }

}

.trust-badges i {

    color: #16a34a;
}

/* ════════════════════════════════════
     PREMIUM FOOTER
  ════════════════════════════════════ */
footer {
    background: #2d364d;
    position: relative;
    overflow: hidden;
}

.footer-glow-1 {
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(62, 207, 178, 0.07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-glow-2 {
    position: absolute;
    top: -100px;
    right: -60px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

/* Newsletter band */
.footer-newsletter {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 44px 40px;
}

.footer-nl-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-nl-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 6px;
}

.footer-nl-text p {
    font-size: 14px;
    color: rgb(255, 255, 255);
    max-width: 380px;
}

.footer-nl-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-nl-form input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
    min-width: 240px;
    transition: border-color 0.2s;
}

.footer-nl-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer-nl-form input:focus {
    border-color: var(--accent);
}

.footer-nl-form button {
    background: white;
    color: black;
    border: none;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 0 20px rgba(62, 207, 178, 0.3);
    white-space: nowrap;
}

.footer-nl-form button:hover {
    /* background: #000000; */
    transform: translateY(-1px);
    color: rgb(0, 0, 0);
}

/* Main footer grid */
.footer-main {
    max-width: 1160px;
    margin: 0 auto;
    padding: 15px 40px 44px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 52px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 24px rgba(62, 207, 178, 0.2);
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand-name span {
    color: white;
}

.footer-brand-desc {
    font-size: 14px;
    color: rgb(255, 255, 255);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

.s-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.s-btn:hover {
    background: white;
    border-color: var(--accent);
    color: var(--ink);
}

.footer-awards {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.award-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    gap: 6px;
}

.award-badge .aw-icon {
    font-size: 14px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: rgb(255, 255, 255);
}

/* Contact column */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(62, 207, 178, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 11px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-val {
    font-size: 14px;
    color: rgb(255, 255, 255);
    font-weight: 500;
}

/* Divider */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 32px;
}

/* Pay row */
.footer-pay-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.pay-label {
    font-size: 12px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pay-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-icon {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-copy {
    font-size: 13px;
    color: rgb(255, 255, 255);
}

.footer-copy a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-copy a:hover {
    color: var(--accent);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-lang {
    background: rgba(253, 253, 253, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgb(255, 255, 255);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.footer-lang:hover {
    border-color: white;
    color: rgb(255, 255, 255);
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
/* ══════════════════════════════
     RESPONSIVE — FULL
  ══════════════════════════════ */

@media (max-width: 1024px) {


    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-newsletter {
        padding: 36px 28px;
    }

    .footer-main {
        padding: 44px 28px 36px;
    }
}

@media (max-width: 860px) {



    /* Grid */
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 640px) {

    /* ── TOP BAR ── */


    /* ── MOBILE MENU ── */


    /* ── HERO ── */
    .hero {
        min-height: 420px;
        max-height: 580px;
    }

    .slide-content {
        padding: 0 18px 110px;
        align-items: center;
    }

    .slide-tag {
        font-size: 10px;
        padding: 4px 12px;
    }

    .slide-title {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 10px;
    }

    .slide-desc {
        font-size: 13.5px;
        margin-bottom: 20px;
        text-align: center;
        max-width: 100%;
    }

    .slide-actions {
        justify-content: center;
        gap: 10px;
    }

    .btn-primary {
        padding: 11px 22px;
        font-size: 14px;
    }

    .btn-outline {
        padding: 10px 20px;
        font-size: 14px;
    }

    .slider-arrow {
        display: none;
    }

    .slider-dots {
        bottom: 72px;
        right: 50%;
        transform: translateX(50%);
    }

    /* ── SEARCH INSIDE HERO ── */
    .hero>div[style*="position:absolute"][style*="bottom"] {
        width: 94% !important;
        bottom: 14px !important;
    }

    .hero>div[style*="position:absolute"][style*="bottom"]>div {
        padding: 5px 5px 5px 14px !important;
        border-radius: 40px !important;
    }

    .hero>div[style*="position:absolute"][style*="bottom"] input {
        font-size: 13px !important;
    }

    .hero>div[style*="position:absolute"][style*="bottom"] button {
        padding: 9px 18px !important;
        font-size: 13px !important;
    }

    /* ── STATS BAR ── */
    .stats-bar {
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .stat-item {
        min-width: 115px;
        padding: 14px 16px;
        flex-shrink: 0;
    }

    .stat-icon-wrap {
        width: 34px;
        height: 34px;
        font-size: 16px;
        border-radius: 8px;
    }

    .stat-val {
        font-size: 15px;
    }

    .stat-label {
        font-size: 10px;
    }

    /* ── MAIN CONTENT ── */
    .main-content {
        padding: 28px 16px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-link {
        font-size: 13px;
    }

    /* ── TOUR CARDS ── */
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .card-img-wrap {
        height: 180px;
    }

    .card-body {
        padding: 14px 15px 16px;
    }

    .card-title {
        font-size: 14px;
    }

    .card-price {
        font-size: 16px;
    }

    /* ── SIGHTS ROW ── */
    .sights-row {
        gap: 12px;
    }

    .sight-card {
        flex: 0 0 145px;
        height: 200px;
        border-radius: 12px;
    }

    .sight-name {
        font-size: 13px;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }

    /* ── EXPERIENCE CHIPS ── */
    .exp-chips {
        gap: 8px;
    }

    .exp-chip {
        padding: 8px 13px;
        font-size: 12px;
    }

    /* ── ABOUT SECTION ── */
    .about-section {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .about-title {
        font-size: 22px;
    }

    .about-text {
        font-size: 14px;
    }

    .about-highlights {
        flex-direction: column;
        gap: 12px;
    }

    .highlight {
        font-size: 13px;
    }

    .h-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
        border-radius: 7px;
    }

    /* ── REVIEWS ── */
    .rating-overview {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
    }

    .rating-big {
        font-size: 52px;
    }

    .rating-stars-big {
        font-size: 20px;
    }

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

    .review-card {
        padding: 18px;
    }

    .review-text {
        font-size: 13.5px;
    }

    /* ── FOOTER ── */
    .footer-newsletter {
        padding: 28px 18px;
    }

    .footer-nl-text h3 {
        font-size: 20px;
    }

    .footer-nl-text p {
        font-size: 13px;
    }

    .footer-nl-inner {
        flex-direction: column;
        gap: 20px;
    }

    .footer-nl-form {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .footer-nl-form input {
        min-width: 0;
        width: 100%;
        padding: 12px 18px;
    }

    .footer-nl-form button {
        width: 100%;
        text-align: center;
        padding: 13px;
    }

    .footer-main {
        padding: 32px 18px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand-desc {
        font-size: 13px;
    }

    .footer-social {
        gap: 8px;
    }

    .s-btn {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        font-size: 14px;
    }

    .footer-awards {
        gap: 8px;
    }

    .award-badge {
        font-size: 10px;
        padding: 6px 10px;
    }

    .footer-pay-row {
        gap: 10px;
        flex-wrap: wrap;
    }

    .pay-icon {
        font-size: 11px;
        padding: 5px 10px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }

    .footer-copy {
        font-size: 12px;
    }

    .footer-lang {
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 400px) {
    .nav-logo-text {
        font-size: 18px;
    }

    .nav-logo-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .nav-btn {
        padding: 7px 12px;
        font-size: 11px;
    }

    .slide-title {
        font-size: 24px;
    }

    .slide-desc {
        font-size: 13px;
    }

    .btn-primary,
    .btn-outline {
        padding: 10px 18px;
        font-size: 13px;
    }

    .stat-item {
        min-width: 100px;
    }

    .sight-card {
        flex: 0 0 130px;
        height: 185px;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 20px;
    }

    .about-title {
        font-size: 20px;
    }

    .rating-big {
        font-size: 46px;
    }

    .footer-nl-text h3 {
        font-size: 18px;
    }
}


/* monuments section */
/* ══ MONUMENTS SECTION ══ */
.mon-section {
    background: white;
    padding: 64px 24px;
}

.mon-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.mon-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    color: #2d364d;
    margin-bottom: 36px;
}

.mon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    align-items: start;
}

.mon-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: box-shadow 0.2s;
}

.mon-item.open {
    border-color: #0f1923;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.mon-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.mon-header:hover {
    background: #f0f4f8;
}

.mon-item.open .mon-header {
    background: #f0f4f8;
}

.mon-num {
    background: #2d364d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mon-name {
    flex: 1;
    font-size: 12.5px;
    font-weight: 600;
    color: #0f1923;
    line-height: 1.35;
}

.mon-icon {
    font-size: 18px;
    font-weight: 300;
    color: #0f1923;
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
    width: 20px;
    text-align: center;
}

.mon-item.open .mon-icon {
    transform: rotate(45deg);
}

.mon-body {
    max-height: 0;
    overflow: hidden;
    font-size: 12.5px;
    color: #000000;
    line-height: 1.7;
    padding: 0 14px;
    border-top: 0px solid var(--border);
    transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1),
        padding 0.3s ease;
}

.mon-item.open .mon-body {
    max-height: 200px;
    padding: 12px 14px 14px;
    border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 1024px) {
    .mon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .mon-section {
        padding: 44px 16px;
    }

    .mon-title {
        font-size: 22px;
        margin-bottom: 22px;
    }

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

    .mon-name {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .mon-grid {
        grid-template-columns: 1fr;
    }
}


/* new offer css */
.tmx-offer-wrap {
    padding: 40px 20px;
}

.tmx-offer-card {

    position: relative;

    max-width: 1300px;

    height: 390px;

    margin: auto;

    border-radius: 32px;

    overflow: hidden;

    cursor: pointer;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.tmx-offer-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 1.2s;
}

.tmx-offer-card:hover img {

    transform: scale(1.15);
}

.tmx-offer-overlay {

    position: absolute;
    inset: 0;

    padding: 50px;

    display: flex;
    flex-direction: column;

    justify-content: flex-end;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .9),
            rgba(0, 0, 0, .25));
}

.tmx-offer-badge {

    position: absolute;

    top: 30px;
    left: 30px;

    background: #000000;

    color: #fff;

    padding: 10px 18px;

    border-radius: 50px;

    font-weight: 700;
}

.tmx-offer-overlay h2 {

    color: #fff;

    font-size: 49px;

    line-height: 1;

    margin-bottom: 10px;
}

.tmx-offer-overlay p {

    color: #fff;

    font-size: 22px;

    margin-bottom: 25px;
}

.tmx-offer-overlay a {

    width: max-content;

    text-decoration: none;

    background: #fff;

    color: #111;

    padding: 14px 26px;

    border-radius: 50px;

    font-weight: 700;

    transition: .3s;
}

.tmx-offer-overlay a:hover {

    background: #000000;

    color: #fff;
}

.tmx-offer-hover {

    position: absolute;

    right: 30px;
    bottom: 30px;

    width: 350px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 24px;

    padding: 25px;

    color: #fff;

    opacity: 0;

    transform: translateY(50px);

    transition: .5s;
}

.tmx-offer-card:hover .tmx-offer-hover {

    opacity: 1;

    transform: translateY(0);
}

.tmx-offer-hover h3 {

    margin-bottom: 15px;
}

.tmx-offer-hover ul {

    list-style: none;
}

.tmx-offer-hover li {

    margin-bottom: 12px;
}

/* Tablet */

@media(max-width:991px) {

    .tmx-offer-overlay h2 {

        font-size: 52px;
    }

    .tmx-offer-hover {

        width: 300px;
    }
}

/* Mobile */

@media(max-width:768px) {

    .tmx-offer-card {

        height: 550px;
    }

    .tmx-offer-overlay {

        padding: 25px;
    }

    .tmx-offer-overlay h2 {

        font-size: 38px;
    }

    .tmx-offer-overlay p {

        font-size: 16px;
    }

    .tmx-offer-hover {

        position: relative;

        width: 100%;

        right: auto;
        bottom: auto;

        margin-top: 20px;

        opacity: 1;

        transform: none;
    }
}


/* TOUR SECTION */
/* ===== TOUR SECTION ONLY ===== */

.tour-packages-section {
    padding: 31px 0;
    background: #f8fafc;
}

.tour-container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.tour-heading {
    text-align: center;
    margin-bottom: 50px;
}

.tour-heading span {
    color: #b88a44;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.tour-heading h2 {
    font-size: 42px;
    font-family: 'Cormorant Garamond', serif;
    margin: 15px 0;
    color: #2d364d;
}

.tour-heading p {
    max-width: 700px;
    margin: auto;
    color: #000000;
    line-height: 1.7;
}

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

.tour-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.tour-item:hover {
    transform: translateY(-8px);
}

.tour-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #b88a44;
    color: #fff;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 12px;
}

.tour-content {
    padding: 20px;
}

.tour-category {
    color: #b88a44;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tour-content h3 {
    font-size: 20px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #111827;
}

.tour-meta {
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-footer small {
    color: #000000;
}

.tour-footer h4 {
    margin-top: 5px;
    font-size: 24px;
    color: #111827;
}

.tour-btn {
    text-decoration: none;
    background: #2d364d;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* Tablet */
@media(max-width:991px) {

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

    .tour-heading h2 {
        font-size: 34px;
    }
}

/* Mobile */
@media(max-width:576px) {

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

    .tour-heading h2 {
        font-size: 28px;
    }

    .tour-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .tour-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== DYNAMIC CATEGORY DROPDOWN ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.25s;
    display: inline-block;
}

.nav-dropdown:hover .nav-arrow,
.nav-dropdown.open .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 230px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
    border: 1px solid #ece8df;
    padding: 8px 0;
    z-index: 999;
    animation: ddFade 0.2s ease;
    list-style: none;
    margin: 0;
}

@keyframes ddFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: #1a1a2e;
    height: auto;
    border-bottom: none;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu li a:hover {
    background: #faf6ee;
    color: #a28046;
    border-bottom: none;
}

.nav-dropdown-menu li a i {
    font-size: 13px;
    color: #a28046;
    width: 16px;
}

.nav-dropdown-menu .dd-divider {
    height: 1px;
    background: #ece8df;
    margin: 6px 0;
}

/* Mobile category list */
.mob-cat-list {
    display: flex;
    flex-direction: column;
}

.mob-cat-list a {
    padding: 11px 16px 11px 32px !important;
    font-size: 13px !important;
    color: #555 !important;
    border-bottom: 1px solid #f0ebe0;
}

.mob-cat-list a:hover {
    color: #a28046 !important;
}