/* =====================================================
   RESET & GLOBAL
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f7f4ed;
    color: #222;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.section-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #c9a227;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.section-heading h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    margin-bottom: 15px;
    color: #171717;
}

.section-heading p {
    color: #666;
    font-size: 16px;
}


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

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, .97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #2b2b2b;
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

/* LOGO */

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    flex-shrink: 0;
}

.logo-main {
    font-family: "Poppins", sans-serif;
    font-size: 21px;
    font-weight: 800;
    color: #d4af37;
    letter-spacing: -.3px;
}

.logo-sub {
    margin-top: 5px;
    font-size: 10px;
    color: #999;
    letter-spacing: .4px;
}

/* NAVIGATION */

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    position: relative;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    color: #d6d6d6;
    transition: color .25s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width .25s ease;
}

.nav a:hover {
    color: #d4af37;
}

.nav a:hover::after {
    width: 100%;
}

/* MENU BUTTON */

.menu-btn {
    display: none;
    border: 0;
    background: transparent;
    padding: 7px;
    color: #d4af37;
    font-size: 25px;
    line-height: 1;
}


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

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .72);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 88%);
    height: 100%;
    padding: 90px 30px 35px;
    background: #151515;
    box-shadow: -15px 0 45px rgba(0, 0, 0, .35);
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
}

.menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

/* CLOSE BUTTON */

.close-btn {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #3a3a3a;
    border-radius: 50%;
    background: #1d1d1d;
    color: #d4af37;
    font-size: 28px;
    line-height: 1;
    transition: .25s ease;
}

.close-btn:hover {
    background: #d4af37;
    color: #111;
    border-color: #d4af37;
    transform: rotate(90deg);
}

/* MOBILE MENU LOGO */

.mobile-menu-logo {
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 35px;
}

/* MOBILE MENU LINKS */

.mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 0 5px;
    border-bottom: 1px solid #2c2c2c;
    color: #eee;
    font-size: 16px;
    font-weight: 600;
    transition: .25s ease;
}

.mobile-menu a:hover {
    color: #d4af37;
    padding-left: 12px;
}

.mobile-menu a:first-of-type {
    border-top: 1px solid #2c2c2c;
}


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

.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-image: url("trekking.webp");
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .72),
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .15)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 750px;
    margin-left: max(4%, calc((100vw - 1180px) / 2));
}

.hero-label {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #d4af37;
}

.hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(36px, 6vw, 60px);
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero p {
    max-width: 650px;
    font-size: 18px;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 23px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    transition: .25s;
}

.btn-primary {
    background: #c9a227;
    color: #111;
}

.btn-primary:hover {
    background: #b08b1e;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #22c55e;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: #ddd;
    background: #fff;
}

.btn-outline:hover {
    border-color: #ff7a00;
    color: #ff7a00;
}


/* =====================================================
   WHY US
===================================================== */

.why-us {
    background: #fff;
}

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

.why-card {
    padding: 30px 25px;
    border: 1px solid #eee;
    border-radius: 14px;
    background: #fff;
    text-align: center;
    transition: .25s;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.why-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f4e7bd;
    color: #9a7410;
    font-size: 25px;
}

.why-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    color: #777;
    font-size: 14px;
}


/* =====================================================
   TOUR SEARCH
===================================================== */

.tour-search {
    display: flex;
    max-width: 700px;
    margin: 0 auto 25px;
}

.tour-search input {
    flex: 1;
    min-width: 0;
    height: 50px;
    padding: 0 17px;
    border: 1px solid #ddd;
    border-right: 0;
    border-radius: 8px 0 0 8px;
    outline: none;
    background: #fff;
}

.tour-search input:focus {
    border-color: #ff7a00;
}

.tour-search button {
    width: 110px;
    border: 0;
    border-radius: 0 8px 8px 0;
    background: #c9a227;
    color: #111;
    font-weight: 700;
}

.tour-search button:hover {
    background: #e56800;
}


/* =====================================================
   FILTER
===================================================== */

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 9px 16px;
    border: 1px solid #ddd;
    border-radius: 30px;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    transition: .2s;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #c9a227;
    background: #c9a227;
    color: #111;
}

.result-info {
    margin-bottom: 22px;
    color: #777;
    text-align: center;
    font-size: 14px;
}


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

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

.tour-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5dfd0;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

/* IMAGE */

.tour-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #e9e4d8;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.06);
}

/* BADGE */

.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 14px;
    border-radius: 30px;
    background: rgba(212, 175, 55, .95);
    color: #111;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .18);
    backdrop-filter: blur(5px);
}

/* CONTENT */

.tour-content {
    padding: 23px;
}

.tour-location {
    display: block;
    margin-bottom: 8px;
    color: #9a9a9a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px;
}

.tour-content h3 {
    min-height: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 15px;
    color: #171717;
    letter-spacing: -.2px;
}

.tour-info {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 13px;
    color: #777;
    font-size: 13px;
}

.rating {
    margin-bottom: 17px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 800;
}

.rating small {
    color: #888;
    font-weight: 400;
}

/* BOTTOM */

.tour-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    padding-top: 17px;
    border-top: 1px solid #eee7d8;
}

/* PRICE */

.price {
    display: flex;
    flex-direction: column;
}

.price small {
    color: #888;
    font-size: 12px;
    margin-bottom: 2px;
}

.price strong {
    color: #b08b1e;
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.3px;
}

.price span {
    color: #888;
    font-size: 11px;
}

/* BOOK BUTTON */

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    min-width: 105px;
    padding: 0 20px;
    border-radius: 10px;
    border: 1px solid #d4af37;
    background: linear-gradient(
        135deg,
        #d4af37,
        #c29b25
    );
    color: #111;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(212, 175, 55, .22);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.book-btn:hover {
    background: linear-gradient(
        135deg,
        #e2c04a,
        #d4af37
    );
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(212, 175, 55, .32);
}

.book-btn:active {
    transform: translateY(-1px);
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    background: #f7f4ed;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.about-image {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .10);
}

.about-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-content h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #171717;
    letter-spacing: -.5px;
}

.about-content p {
    color: #666;
    margin-bottom: 15px;
}

.about-content .btn {
    margin-top: 10px;
}


/* =====================================================
   WHY VISIT
===================================================== */

.visit-section {
    background: #111;
    color: #fff;
}

.visit-section .section-heading h2 {
    color: #fff;
}

.visit-section .section-heading p {
    color: #aaa;
}

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

.visit-card {
    padding: 30px;
    background: #1b1b1b;
    border: 1px solid #333;
    border-radius: 16px;
    text-align: center;
    transition: .3s ease;
}

.visit-card:hover {
    border-color: #d4af37;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.visit-card > span {
    display: block;
    font-size: 38px;
    margin-bottom: 15px;
}

.visit-card h3 {
    font-family: "Poppins", sans-serif;
    margin-bottom: 8px;
    color: #fff;
}

.visit-card p {
    color: #aaa;
    font-size: 14px;
}


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

.gallery-section {
    background: #fff;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}


/* =====================================================
   TESTIMONIAL
===================================================== */

.testimonial-section {
    background: #f7f4ed;
}

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

.testimonial-card {
    padding: 28px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #e5dfd0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.testimonial-card .rating {
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 18px;
}

.testimonial-card strong {
    font-size: 14px;
}


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

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5dfd0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .04);
}

.faq-item summary {
    position: relative;
    padding: 20px;
    padding-right: 50px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 24px;
    color: #c9a227;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    text-align: center;
    background: #fff;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}


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

.footer {
    background: #111;
    color: #fff;
    border-top: 1px solid #2a2a2a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 55px;
    padding: 70px 0 60px;
}

.footer h3 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 18px;
}

.footer-about p {
    max-width: 430px;
    color: #a9a9a9;
    font-size: 14px;
    line-height: 1.8;
}

.footer h4 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    width: fit-content;
    color: #a9a9a9;
    font-size: 14px;
    margin-bottom: 11px;
    transition: .25s ease;
}

.footer-links a:hover {
    color: #d4af37;
    transform: translateX(4px);
}

.footer-contact p {
    margin-bottom: 11px;
    color: #a9a9a9;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    padding: 22px 20px;
    border-top: 1px solid #292929;
    text-align: center;
    background: #0d0d0d;
}

.footer-bottom p {
    color: #777;
    font-size: 12px;
}

.footer-bottom span {
    color: #d4af37;
}


/* =====================================================
   FLOATING ACTION BUTTONS
===================================================== */

.language-float {
    position: fixed;
    right: 20px;
    bottom: 88px;
    z-index: 1490;
}

.language-float-btn {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: #c9a227;
    color: #fff;
    font-size: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .20);
    cursor: pointer;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1500;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .20);
    transition: .25s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}


/* =====================================================
   LANGUAGE MENU
===================================================== */

.language-menu {
    position: absolute;
    right: 0;
    bottom: 70px;
    width: 220px;
    padding: 8px;
    background: #151515;
    border: 1px solid #333;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: .25s ease;
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.language-menu button {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: transparent;
    color: #e5e5e5;
    text-align: left;
    border-radius: 9px;
    font-size: 15px;
    cursor: pointer;
}

.language-menu button:hover {
    background: #262626;
    color: #d4af37;
}


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

@media (max-width: 1000px) {

    .nav {
        gap: 15px;
    }

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

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

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

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

}


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

@media (max-width: 768px) {

    .section {
        padding: 60px 0;
    }

    /* HEADER */

    .header-inner {
        min-height: 68px;
    }

    .nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    /* HERO */

    .hero {
        min-height: 540px;
        height: 500px;
        background-position: center center;
    }

    .hero-content {
        padding: 50px 0 30px;
        margin-left: 0;
    }

    .hero-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .hero h1 {
    font-size: 30px !important;
    line-height: 1.1 !important;
    margin: 10px 0 14px;
}

    .hero p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        min-height: 54px;
    }

    /* WHY US */

    .why-us {
        padding: 50px 0;
    }

    .why-us .section-heading {
        margin-bottom: 30px;
    }

    .why-us .section-label {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .why-us .section-heading h2 {
        font-size: 29px;
        line-height: 1.2;
        margin: 10px 0 14px;
    }

    .why-us .section-heading p {
        font-size: 14px;
        line-height: 1.5;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .why-card {
        padding: 24px 12px;
        border-radius: 18px;
    }

    .why-icon {
        width: 54px;
        height: 54px;
        font-size: 28px;
        margin-bottom: 12px;
    }

    .why-card h3 {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .why-card p {
        font-size: 12px;
        line-height: 1.5;
    }

    /* TOUR SEARCH */

    .tour-search {
        width: 100%;
        margin-bottom: 22px;
    }

    .tour-search input {
        height: 50px;
        font-size: 14px;
        padding: 0 14px;
    }

    .tour-search button {
        width: 95px;
        height: 50px;
        font-size: 13px;
    }

    /* FILTER */

    .filter-buttons {
        justify-content: center;
        gap: 8px;
        margin-bottom: 18px;
    }

    .filter-btn {
        padding: 9px 14px;
        font-size: 12px;
    }

    /* RESULT */

    .result-info {
        margin-bottom: 20px;
        font-size: 13px;
    }

    /* TOUR GRID */

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

    .tour-card {
        border-radius: 18px;
    }

    .tour-image {
        height: 200px;
    }

    .tour-content {
        padding: 20px;
    }

    .tour-location {
        font-size: 12px;
        margin-bottom: 7px;
    }

    .tour-content h3 {
        min-height: auto;
        font-size: 19px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .tour-info {
        gap: 10px;
        font-size: 12px;
        margin-bottom: 12px;
    }

    .rating {
        margin-bottom: 14px;
    }

    .tour-bottom {
        padding-top: 15px;
        gap: 10px;
    }

    .price strong {
        font-size: 21px;
    }

    .book-btn {
        min-height: 42px;
        padding: 0 16px;
        font-size: 12px;
    }

    /* ABOUT */

    .about-section {
        padding: 35px 0 55px;
    }

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

    .about-image {
        border-radius: 18px;
    }

    .about-image img {
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    .about-content h2 {
        font-size: 32px;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 15px;
    }

    .about-content .btn {
        margin-top: 8px;
        min-height: 50px;
        padding: 0 24px;
    }

    /* WHY VISIT */

    .visit-section {
        padding: 60px 0;
    }

    .visit-section .section-heading {
        margin-bottom: 30px;
    }

    .visit-section .section-label {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .visit-section .section-heading h2 {
        font-size: 30px;
        line-height: 1.15;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .visit-card {
        padding: 22px 20px;
        border-radius: 18px;
    }

    .visit-card > span {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .visit-card h3 {
        font-size: 18px;
        margin-bottom: 7px;
    }

    .visit-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* GALLERY */

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

    .gallery-item {
        aspect-ratio: 4 / 5;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* TESTIMONIAL */

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-card {
        padding: 22px 20px;
    }

    .testimonial-card .rating {
        margin-bottom: 12px;
    }

    .testimonial-card p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .testimonial-card strong {
        font-size: 14px;
    }

    /* FAQ */

    .faq-section {
        padding-top: 10px;
    }

    .faq-section .section-heading {
        margin-bottom: 30px;
    }

    /* CONTACT */

    .contact-section {
        padding: 50px 0;
    }

    .contact-section .section-heading {
        margin-bottom: 30px;
    }

    /* FOOTER */

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

}


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

@media (max-width: 480px) {

    .container {
        width: 90%;
    }

    .logo-main {
        font-size: 17px;
    }

    .logo-sub {
        font-size: 8px;
    }

    /* HERO */

    .hero {
        min-height: 500px;
        height: 500px;
    }

   

    /* WHY */

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

    /* TOUR */

    .tour-search {
        display: flex;
    }

    .tour-search button {
        width: 90px;
    }

    .tour-bottom {
        align-items: center;
    }

    /* GALLERY */

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

    .gallery-item {
        aspect-ratio: 4 / 5;
        border-radius: 10px;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    /* CONTACT */

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn {
        width: 100%;
    }

    /* FLOATING BUTTONS */

    .language-float {
        right: 20px;
        bottom: 88px;
    }

    .whatsapp-float {
        right: 20px;
        bottom: 20px;
    }

    .language-float-btn {
        width: 58px;
        height: 58px;
        font-size: 27px;
    }

}


/* ================================
   TOUR ACTIONS - PREMIUM GOLD
================================ */

.tour-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tour-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* DETAILS - GOLD */

.detail-btn {
    color: #9a6b16;
    background: #fffaf0;
    border: 1px solid #d6a94a;
}

.detail-btn:hover {
    color: #fff;
    background: #d6a94a;
    border-color: #d6a94a;
    transform: translateY(-2px);
}


/* ================================
   ADD-ON BOX
================================ */

.addon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    margin-bottom: 15px;
}

.addon-box {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border: 1px solid #e5dfd0;
    border-radius: 6px;
    background: #faf9f5;
    color: #666;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
}