/* ============================================================
   MASTER CSS — Sand Dune Safari
   Version: 3.0.0 (Clean + Optimized)
   ============================================================ */

/* ===== 1. ROOT VARIABLES ===== */
:root {
    --black: #0d0d0d;
    --dark: #1a1a1a;
    --gold: #c9a227;
    --sand: #d9c29c;
    --orange: #ff7a00;
    --white: #fff;
    --muted: #b5b0a8;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', Arial, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== 2. RESET ===== */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s var(--ease);
}
img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* ===== 3. TYPOGRAPHY ===== */
.section-space {
    padding: 130px 0;
}
.eyebrow {
    color: var(--gold);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 18px;
}
.section-heading {
    margin-bottom: 60px;
}
h1,
h2,
h3,
p {
    margin-top: 0;
}
h1,
h2 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.03;
}
h1 {
    font-size: clamp(3.35rem, 7vw, 7.4rem);
}
h2 {
    font-size: clamp(2.7rem, 4.6vw, 5rem);
}
h1 em,
h2 em {
    color: var(--gold);
    font-weight: 500;
}
.section-copy {
    color: var(--muted);
    max-width: 510px;
    margin-bottom: 18px;
}

/* ===== 4. BUTTONS ===== */
.btn {
    border-radius: 0;
    border: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 16px 22px;
    text-transform: uppercase;
    transition: 0.4s var(--ease);
}
.btn i {
    margin-left: 10px;
    font-size: 1rem;
}
.btn-gold {
    background: var(--gold);
    color: var(--black);
}
.btn-gold:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}
.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: white;
}
.btn-outline-light:hover {
    background: white;
    color: var(--black);
    border-color: white;
}
.text-link {
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 9px;
}
.text-link:hover {
    color: var(--gold);
    gap: 16px;
}

/* ===== 5. LOADER ===== */
.page-loader {
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-content {
    text-align: center;
}
.loader-dunes {
    height: 44px;
    width: 110px;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 4px;
    margin: auto;
}
.loader-dunes i {
    display: block;
    background: var(--gold);
    height: 15px;
    width: 38px;
    border-radius: 100% 100% 0 0;
    transform: skewX(-20deg);
}
.loader-dunes i:nth-child(2) {
    height: 28px;
}
.loader-dunes i:nth-child(3) {
    height: 18px;
}
.loader-content p {
    font-size: 0.62rem;
    letter-spacing: 0.23em;
    margin: 20px 0 12px;
    color: var(--sand);
}
.loader-line {
    display: block;
    width: 150px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}
.loader-line:after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    animation: loading 1.6s infinite var(--ease);
    transform: translateX(-100%);
}
@keyframes loading {
    to {
        transform: translateX(100%);
    }
}

/* ===== 6. FORMS ===== */
.form-status {
    margin: 12px 0 0;
    font-size: 0.78rem;
    min-height: 1.25em;
}
.form-status.is-success {
    color: #8acb91;
}
.form-status.is-error {
    color: #ff9b87;
}

/* ===== 7. NAVBAR (FIXED) ===== */
.site-header {
    background: #0d0d0d;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}
.site-header.scrolled {
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(10px);
}
.navbar {
    background: transparent;
    padding: 12px 0;
    min-height: 72px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}
.navbar-brand img {
    height: 55px;
    width: auto;
    display: block;
}
.navbar-nav {
    gap: 5px;
}
.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
    color: #c9a227;
    background: rgba(201, 162, 39, 0.08);
}
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 12px;
    border-radius: 4px;
    background: transparent;
}
.navbar-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
}
.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.theme-toggle {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 9px 16px;
    border-radius: 4px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s;
}
.theme-toggle:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: #c9a227;
}
.nav-booking {
    background: #c9a227;
    color: #000;
    padding: 9px 18px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
}
.nav-booking:hover {
    background: #d8b36a;
    color: #000;
    transform: translateY(-2px);
}

/* ===== 8. HERO ===== */
.hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background: #16120d;
}
.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
    background: #16120d;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.73) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.18) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 42%);
}
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.12;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='35'/%3E%3C/svg%3E");
}
.hero-content {
    padding-top: 90px;
    position: relative;
    z-index: 1;
}
.hero-kicker {
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.hero h1 {
    max-width: 850px;
    margin-bottom: 20px;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 500;
    line-height: 1.05;
    color: #fff;
}
.hero h1 em {
    color: #c9a227;
    font-style: italic;
}
.hero-intro {
    font-size: 1.05rem;
    color: #e6e1da;
    max-width: 550px;
    line-height: 1.6;
}
.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.hero-bottom {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: end;
    justify-content: space-between;
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 1;
}
.hero-location {
    color: #d9c29c;
}
.pulse-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c9a227;
    margin-right: 7px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    70% {
        box-shadow: 0 0 0 7px transparent;
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.55rem;
    text-decoration: none;
    cursor: pointer;
}
.scroll-indicator i {
    animation: scrollBounce 1.7s infinite;
}
@keyframes scrollBounce {
    50% {
        transform: translateY(7px);
    }
}
.hero-side-text {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* ===== 9. ABOUT ===== */
.about-visual {
    position: relative;
}
.image-frame {
    position: relative;
    max-width: 480px;
}
.image-frame:before {
    content: '';
    position: absolute;
    inset: -18px 18px 18px -18px;
    border: 1px solid rgba(201, 162, 39, 0.58);
    z-index: -1;
}
.image-frame img {
    height: 590px;
    width: 100%;
}
.experience-badge {
    position: absolute;
    right: -42px;
    bottom: 45px;
    background: var(--gold);
    color: var(--black);
    width: 155px;
    height: 155px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.experience-badge strong {
    font-family: var(--serif);
    font-size: 3.2rem;
    line-height: 1;
}
.experience-badge span {
    font-size: 0.64rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.stats-row {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 120px;
    padding-top: 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stats-row strong {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 500;
}
.stats-row strong span {
    color: var(--gold);
}
.stats-row p {
    font-size: 0.68rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

/* ===== 10. WHY US ===== */
.why-section {
    background: var(--dark);
}
.centered {
    text-align: center;
}
.feature-card {
    height: 100%;
    padding: 35px 28px;
    background: #202020;
    border: 1px solid transparent;
    position: relative;
    transition: 0.4s var(--ease);
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.55);
}
.feature-card>span {
    position: absolute;
    right: 24px;
    top: 20px;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--serif);
    font-size: 1.25rem;
}
.feature-card>i {
    display: block;
    color: var(--gold);
    font-size: 2rem;
    margin: 25px 0;
}
.feature-card h3 {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 500;
}
.feature-card p {
    color: var(--muted);
    font-size: 0.88rem;
    margin: 0;
}

/* ===== 11. PACKAGES ===== */
.package-card {
    height: 100%;
    background: #171717;
    transition: 0.4s var(--ease);
}
.package-card:hover {
    transform: translateY(-9px);
}
.package-image {
    height: 395px;
    position: relative;
    overflow: hidden;
}
.package-image img {
    width: 100%;
    height: 100%;
    transition: 0.7s var(--ease);
}
.package-card:hover img {
    transform: scale(1.08);
}
.package-image:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 50%);
}
.package-image span {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 1;
    background: var(--gold);
    color: var(--black);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 8px 11px;
    text-transform: uppercase;
}
.package-detail {
    padding: 26px;
    position: relative;
}
.package-detail>p {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}
.package-detail h3 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
}
.package-detail ul {
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.9;
    margin: 20px 0 0;
}
.package-detail ul li:before {
    content: '·';
    color: var(--gold);
    font-size: 1.3rem;
    padding-right: 7px;
}
.package-detail>a {
    position: absolute;
    right: 25px;
    bottom: 30px;
    width: 39px;
    height: 39px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: grid;
    place-items: center;
}
.package-detail>a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

/* ===== 12. ACTIVITIES ===== */
.activities-section {
    overflow: hidden;
}
.activities-intro {
    background: #25211c;
    padding: 90px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.activities-list {
    background: #151515;
    padding: 40px 8%;
}
.activities-list article {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.3s;
}
.activities-list article:hover {
    padding-left: 12px;
}
.activities-list span {
    font-family: var(--serif);
    color: var(--gold);
}
.activities-list h3 {
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 500;
    margin: 0;
}
.activities-list p {
    font-size: 0.83rem;
    color: var(--muted);
    margin: 2px 0 0;
}
.activities-list>article>i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ===== 13. GALLERY ===== */
.gallery-section {
    background: #121212;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 12px;
    padding: 0 3vw;
}
.gallery-item {
    margin: 0;
    overflow: hidden;
}
.gallery-item img {
    height: 100%;
    width: 100%;
    transition: 0.7s var(--ease);
    filter: saturate(0.75);
}
.gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.1);
}
.gallery-tall {
    grid-row: span 2;
}
.gallery-wide {
    grid-column: span 2;
}

/* ===== 14. TESTIMONIALS ===== */
.testimonials-section {
    background: var(--gold);
    color: var(--black);
}
.testimonials-section .eyebrow {
    color: #5c4712;
}
.testimonials-section h2 em {
    color: #fff;
}
.testimonial-swiper {
    padding: 15px 10px 38px;
}
.testimonial-swiper blockquote {
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.5vw, 2.4rem);
    line-height: 1.25;
    margin: 0 0 38px;
}
.guest {
    display: flex;
    align-items: center;
    gap: 12px;
}
.guest>span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--black);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
}
.guest p {
    font-size: 0.75rem;
    line-height: 1.35;
    margin: 0;
}
.guest p strong {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.68rem;
}
.stars {
    margin-left: auto;
    font-size: 0.85rem;
    letter-spacing: 2px;
}
.swiper-pagination {
    text-align: left;
}
.swiper-pagination-bullet {
    background: var(--black);
    opacity: 0.3;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ===== 15. FAQ ===== */
.accordion-item {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.16);
}
.accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-family: var(--serif);
    font-size: 1.3rem;
    padding: 24px 4px;
    box-shadow: none !important;
}
.accordion-button:after {
    background-image: none;
    content: '+';
    font-family: var(--sans);
    font-size: 1.8rem;
    width: auto;
    height: auto;
    color: var(--gold);
}
.accordion-button:not(.collapsed):after {
    content: '−';
    transform: none;
}
.accordion-body {
    padding: 0 35px 24px 4px;
    color: var(--muted);
    font-size: 0.9rem;
}

/* ===== 16. CTA ===== */
.cta-section {
    height: 570px;
    position: relative;
    display: grid;
    place-items: center;
    text-align: center;
    isolation: isolate;
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.64)), url('../images/cta-desert.webp') center/cover;
}
.cta-content>p:not(.eyebrow) {
    color: #ddd;
    margin: 20px 0 28px;
}

/* ===== 17. CONTACT ===== */
.contact-section {
    background: #141414;
}
.contact-details {
    margin-top: 35px;
    display: flex;
    gap: 35px;
}
.contact-details a {
    display: flex;
    gap: 12px;
    align-items: center;
}
.contact-details i {
    color: var(--gold);
    font-size: 1.1rem;
}
.contact-details small,
.contact-card small {
    display: block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}
.contact-details span {
    font-size: 0.85rem;
}
.contact-card {
    background: var(--gold);
    color: var(--black);
    padding: 42px;
    position: relative;
}
.card-number {
    position: absolute;
    top: 18px;
    right: 24px;
    font-family: var(--serif);
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.25);
}
.contact-card h3 {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 500;
    margin-top: 25px;
}
.contact-card p {
    font-size: 0.9rem;
}
.btn-dark {
    background: var(--black);
    color: var(--white);
    margin: 18px 0;
}
.btn-dark:hover {
    background: #333;
    color: white;
    transform: translateY(-3px);
}

/* ===== 18. FOOTER ===== */
.site-footer {
    background: #0a0a0a;
    padding: 75px 0 0;
}
.footer-newsletter {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0 0 55px;
    margin-bottom: 55px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
}
.footer-newsletter h2 {
    font-size: 2.1rem;
    margin: 0;
}
.newsletter-ui {
    display: flex;
    min-width: 410px;
}
.newsletter-ui input {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 0;
    color: #fff;
    padding: 13px 15px;
    width: 100%;
    outline: 0;
    font-size: 0.82rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 65px;
}
.footer-brand>p {
    font-size: 0.86rem;
    color: var(--muted);
    margin: 24px 0;
    max-width: 270px;
}
.social-links {
    display: flex;
    gap: 9px;
}
.social-links a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}
.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}
.footer-top h2 {
    font-family: var(--sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--gold);
    margin: 9px 0 22px;
}
.footer-links a,
.footer-contact a,
.footer-contact p {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    margin-bottom: 11px;
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}
.footer-contact p {
    line-height: 1.7;
    margin-top: 19px;
}
.payment-icons {
    display: flex;
    gap: 6px;
    margin-top: 15px;
}
.payment-icons span {
    font-size: 0.56rem;
    font-weight: 700;
    border: 1px solid #555;
    padding: 3px 5px;
    color: #aaa;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.footer-bottom p {
    margin: 0;
}
.footer-bottom div {
    display: flex;
    gap: 20px;
}
.footer-bottom a:hover {
    color: var(--gold);
}

/* ===== 19. WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 15px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.whatsapp-float i {
    font-size: 1.25rem;
}
.whatsapp-float:hover {
    color: white;
    transform: translateY(-3px);
}

/* ===== 20. THEME LIGHT ===== */
body[data-theme="light"] {
    --black: #f4efe5;
    --dark: #e9e0d1;
    --white: #17130d;
    --muted: #625a50;
    background: #f4efe5;
    color: #17130d;
}
body[data-theme="light"] .site-header {
    background: #f4efe5 !important;
    border-bottom: 1px solid rgba(23, 19, 13, 0.12) !important;
}
body[data-theme="light"] .site-header.scrolled {
    background: rgba(244, 239, 229, 0.92) !important;
}
body[data-theme="light"] .navbar-brand img {
    filter: brightness(0) invert(1);
}
body[data-theme="light"] .nav-link {
    color: rgba(23, 19, 13, 0.75) !important;
}
body[data-theme="light"] .nav-link:hover,
body[data-theme="light"] .nav-link.active {
    color: #c9a227 !important;
}
body[data-theme="light"] .navbar-toggler span {
    background: #17130d;
}
body[data-theme="light"] .theme-toggle {
    color: #17130d;
    border-color: rgba(23, 19, 13, 0.2);
    background: rgba(23, 19, 13, 0.05);
}
body[data-theme="light"] .theme-toggle:hover {
    background: rgba(201, 162, 39, 0.15);
}
body[data-theme="light"] .nav-booking {
    background: #c9a227;
    color: #000;
}
body[data-theme="light"] .why-section,
body[data-theme="light"] .gallery-section,
body[data-theme="light"] .contact-section {
    background: #f4efe5;
}
body[data-theme="light"] .feature-card,
body[data-theme="light"] .package-card,
body[data-theme="light"] .contact-card {
    background: #fff;
    color: #17130d;
    border-color: rgba(23, 19, 13, 0.12);
}
body[data-theme="light"] .feature-card p,
body[data-theme="light"] .package-detail ul,
body[data-theme="light"] .section-copy,
body[data-theme="light"] .accordion-body {
    color: #625a50;
}
body[data-theme="light"] .accordion-button {
    color: #17130d !important;
}
body[data-theme="light"] .site-footer {
    color: #fff;
}
body[data-theme="light"] .whatsapp-float {
    background: #25d366;
    color: #fff;
}
body[data-theme="light"] .whatsapp-float:hover {
    color: #fff;
}

/* ===== 21. MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(13, 13, 13, 0.96);
        padding: 20px 25px;
        border-radius: 8px;
        margin-top: 12px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }
    .nav-actions a,
    .nav-actions button {
        width: 100%;
        justify-content: center;
    }
    .navbar-nav {
        width: 100%;
        gap: 2px;
    }
    .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
    .nav-link:last-child {
        border-bottom: 0 !important;
    }
    .section-space {
        padding: 85px 0;
    }
    .about-visual {
        max-width: 520px;
        margin: auto;
    }
    .stats-row {
        margin-top: 85px;
    }
    .activities-intro {
        padding: 65px 7%;
    }
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1/-1;
    }
    .footer-brand>p {
        max-width: 420px;
    }
    .contact-card {
        max-width: 520px;
    }
    .footer-newsletter {
        align-items: start;
        flex-direction: column;
    }
    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
}

@media (max-width: 767px) {
    html {
        scroll-padding-top: 72px;
    }
    body {
        font-size: 15px;
    }
    .container {
        --bs-gutter-x: 1.25rem;
    }
    .navbar {
        padding: 10px 0 !important;
        min-height: 60px !important;
    }
    .navbar-brand img {
        height: 40px !important;
    }
    .section-space {
        padding: 70px 0;
    }
    .hero {
        min-height: 100svh;
        min-height: 100dvh;
    }
    .hero-video {
        min-width: 150% !important;
        min-height: 150% !important;
    }
    .hero-content {
        padding-top: 80px !important;
        padding-bottom: 120px;
    }
    .hero h1 {
        font-size: clamp(3.15rem, 14vw, 4.65rem) !important;
        line-height: 0.98;
    }
    .hero h1 br {
        display: none;
    }
    .hero-intro {
        font-size: 0.92rem;
        max-width: 335px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 310px);
        margin-top: 28px;
    }
    .hero-actions .btn {
        text-align: left;
        display: flex;
        justify-content: space-between;
    }
    .hero-bottom {
        bottom: 18px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .hero-location,
    .hero-side-text {
        display: none;
    }
    .scroll-indicator {
        margin: auto;
        font-size: 0.55rem;
    }
    .image-frame {
        max-width: 100%;
    }
    .image-frame img {
        height: 430px;
    }
    .experience-badge {
        right: -12px;
        bottom: 22px;
        width: 112px;
        height: 112px;
    }
    .experience-badge strong {
        font-size: 2.25rem;
    }
    .experience-badge span {
        font-size: 0.55rem;
    }
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 62px;
        gap: 26px 14px;
        padding-top: 27px;
    }
    .stats-row strong {
        font-size: 2.35rem;
    }
    .section-heading {
        margin-bottom: 34px;
    }
    .package-image {
        height: 330px;
    }
    .package-detail h3 {
        font-size: 1.8rem;
    }
    .activities-list {
        padding: 14px 7%;
    }
    .activities-list article {
        grid-template-columns: 31px 1fr auto;
        padding: 19px 0;
    }
    .activities-list h3 {
        font-size: 1.32rem;
    }
    .activities-list p {
        font-size: 0.72rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 210px 165px 165px;
        gap: 7px;
        padding: 0 10px;
    }
    .gallery-tall {
        grid-row: span 2;
    }
    .gallery-wide {
        grid-column: span 2;
    }
    .testimonial-swiper {
        margin-top: 28px;
        padding-left: 0;
    }
    .testimonial-swiper blockquote {
        font-size: 1.5rem;
    }
    .contact-details {
        flex-direction: column;
        gap: 17px;
    }
    .cta-section {
        height: 450px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
    }
    .footer-brand {
        grid-column: 1/-1;
    }
    .footer-contact {
        grid-column: 1/-1;
    }
    .footer-bottom {
        display: block;
        line-height: 2;
    }
    .footer-bottom div {
        margin-top: 5px;
        gap: 13px;
    }
    .newsletter-ui {
        min-width: 0;
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    .newsletter-ui input {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
    .footer-newsletter {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 11px;
    }
    .whatsapp-float span {
        display: none;
    }
    .nav-booking span {
        display: none;
    }
    .theme-toggle span {
        display: none;
    }
    .navbar-toggler {
        padding: 6px 10px !important;
    }
    .navbar-toggler span {
        width: 20px !important;
        margin: 4px 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-video {
        min-width: 200% !important;
        min-height: 200% !important;
    }
    .hero-content {
        padding-top: 70px !important;
    }
    .hero h1 {
        font-size: clamp(2.8rem, 12vw, 3.5rem) !important;
    }
    .hero-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }
    .hero-bottom .hero-location,
    .hero-bottom .hero-side-text {
        display: none !important;
    }
    .scroll-indicator {
        margin: 0 auto !important;
    }
    .feature-card {
        padding: 29px 24px;
    }
    .gallery-grid {
        grid-template-rows: 180px 150px 150px;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 2.8rem !important;
    }
    .stats-row {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 260px 200px 200px 200px;
    }
    .gallery-tall,
    .gallery-wide {
        grid-column: auto;
        grid-row: auto;
    }
    .gallery-item {
        height: 190px;
    }
    .gallery-item:first-child {
        height: 260px;
    }
}


/* ============================================================
   END OF MASTER CSS
   ============================================================ */