/* ============================================================
   AURA LUXE SPA — Complete Stylesheet
   ============================================================ */

/* ---------- RESET & ROOT VARIABLES ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-green: #163d20;
    --forest: #2d5a3d;
    --gold: #ffc039;
    --gold-light: #d4af37;
    --cream: #f5eddc;
    --parchment: #f8f3e8;
    --dark: #3b2f22;
    --brown-light: #b99b67;
    --text-mid: #555555;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cormorant Garamond", Georgia, serif;
    background: var(--parchment);
    color: var(--dark);
    line-height: 1.6;
}

/* ---------- IMAGE PLACEHOLDERS ---------- */
.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c8b99a 0%, #a89070 100%);
    border-radius: inherit;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    background: var(--dark-green);
    padding: 10px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(201, 169, 97, .25);
}

.header-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.logo-circle {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--gold);
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    flex-shrink: 0;
}

.logo-leaf {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 10px;
}

.logo-letter {
    font-size: 18px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    color: var(--gold);
    font-size: 22px;
    font-style:italic;
    letter-spacing: 5px;
}

.logo-sub {
    color: var(--gold);
    font-size: 12px;
    font-style:italic;
    text-align: center;
    letter-spacing: 2px;
}

/* Nav */
.nav {
    min-height: 50px;
    text-align: center;
    display: flex;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-family: "Cormorant Garamond", Georgia, serif;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

/* Book Button */
.book-btn {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 10px 18px;
    border-radius: 22px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-family: "Cormorant Garamond", Georgia, serif;
    transition: background 0.3s;
}

.book-btn:hover {
    background: var(--gold-light);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
    margin-top: 65px;
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 2;
    animation: hero-kenburns 18s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes hero-kenburns {
    0% {
        transform: scale(1) translateX(0) translateY(0);
    }

    33% {
        transform: scale(1.06) translateX(-1%) translateY(-1%);
    }

    66% {
        transform: scale(1.04) translateX(1%) translateY(0.5%);
    }

    100% {
        transform: scale(1.08) translateX(-0.5%) translateY(-0.5%);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.15) 25%,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.15) 75%,
            rgba(0, 0, 0, 0.65));
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    width: 100%;
    align-items: flex-start;
}

/* Hero Left */
.hero-left {
    flex: 1;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: var(--cream);
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-up 0.8s ease forwards 0.3s;
}

.hero-heading {
    font-size: 72px;
    font-weight: 400;
    line-height: 1.0;
    margin-bottom: 22px;
    color: var(--gold);
    font-style: italic;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-up 0.9s ease forwards 0.6s;
}

.hero-desc {
    font-size: 14px;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.9;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-up 0.8s ease forwards 1s;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-up 0.8s ease forwards 1.3s;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 13px 28px;
    border-radius: 26px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    font-family: "Cormorant Garamond", Georgia, serif;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    animation: btn-pulse 3s ease-in-out infinite 2s;
}

@keyframes btn-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(201, 169, 97, 0.25), 0 6px 24px rgba(201, 169, 97, 0.4);
    }
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 169, 97, 0.5);
    animation: none;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 11px 26px;
    border-radius: 26px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    font-family: "Cormorant Garamond", Georgia, serif;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: var(--dark);
    transform: translateY(-2px);
}

/* Hero Sidebar */
.hero-sidebar {
    width: 300px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(40px);
    animation: slide-in-right 1s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.9s;
}

.top-right {
    transform: scaleX(-1);
}

.bottom-left {
    transform: scaleY(-1);
}

.bottom-right {
    transform: scale(-1, -1);
}

.corner {
    position: absolute;
    width: 120px;
}

.top-left {
    top: -33px;
    left: -25px;
}

.top-right {
    top: -33px;
    right: -25px;
}

.bottom-left {
    bottom: -33px;
    left: -25px;
}

.bottom-right {
    bottom: -33px;
    right: -25px;
}

/* Wrapper that holds both the decorative frame and the card */
.sidebar-frame-wrapper {
    position: relative;
    display: block;
}

/* frame-1.png sits exactly on top of the card edges as an outer decorative frame */
.sidebar-frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: none;
    z-index: 4;
    border-radius: 14px;
}

@keyframes slide-in-right {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sidebar-box {
    background: rgba(245, 237, 220, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 28px 24px 24px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 0;
    animation: sidebar-levitate 5s ease-in-out infinite 2s;
}

.sidebar-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: none;
    z-index: -1;
}

.sidebar-box::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 13px;
    background: transparent;
    z-index: -1;
}

@property --sb-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes spin-sidebar {
    to {
        --sb-angle: 360deg;
    }
}

@keyframes sidebar-levitate {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.sidebar-logo-circle {
    width: 46px;
    height: 46px;
    border: 2px solid var(--brown-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-style: italic;
    color: var(--dark);
    font-weight: 600;
}

.sidebar-logo-text {
    text-align: left;
    line-height: 1.2;
    font-style: italic;
    font-size: 16px;
    color: var(--dark);
}

.sidebar-logo-text span {
    display: block;
    font-style: normal;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--dark);
}

.sidebar-tagline {
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--cream);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 18px;
    line-height: 1.5;
}

.sidebar-list {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.sidebar-list li {
    font-size: 13px;
    font-weight: 700px;
    color: var(--cream);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(201, 169, 97, .3);
    opacity: 0;
    transform: translateX(-16px);
    animation: slide-in-left 0.5s ease forwards;
}

.sidebar-list li:nth-child(1) {
    animation-delay: 1.5s;
}

.sidebar-list li:nth-child(2) {
    animation-delay: 1.7s;
}

.sidebar-list li:nth-child(3) {
    animation-delay: 1.9s;
}

.sidebar-list li:nth-child(4) {
    animation-delay: 2.1s;
}

@keyframes slide-in-left {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-icon {
    font-size: 14px;
    animation: icon-spin 6s linear infinite;
    display: inline-block;
}

.sidebar-list li:nth-child(2) .sidebar-icon {
    animation-delay: -1.5s;
}

.sidebar-list li:nth-child(3) .sidebar-icon {
    animation-delay: -3s;
}

.sidebar-list li:nth-child(4) .sidebar-icon {
    animation-delay: -4.5s;
}

@keyframes icon-spin {

    0%,
    80%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    90% {
        transform: rotate(15deg) scale(1.2);
    }
}

.btn-dark {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 11px 20px;
    border-radius: 22px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    letter-spacing: 0.5px;
    font-family: "Cormorant Garamond", Georgia, serif;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on book button */
.btn-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.18) 50%,
            transparent 100%);
    animation: btn-shimmer 3s ease-in-out infinite 2.5s;
}

@keyframes btn-shimmer {
    0% {
        left: -75%;
    }

    60%,
    100% {
        left: 125%;
    }
}

.btn-dark:hover {
    background: #5a4a3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
    background: var(--dark-green);
    padding: 0 80px;
    color: var(--gold);
    position: relative;
}

.stats-border {
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
}

/* Shimmer sweep over the border image */
.stats-border::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(255, 220, 120, 0.35) 50%,
            transparent 70%);
    background-size: 200% 100%;
    animation: shimmer-sweep 3s ease-in-out infinite;
    pointer-events: none;
}

.stats-border--bottom::after {
    animation-delay: 1.5s;
}

@keyframes shimmer-sweep {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.stats-border img {
    width: 100%;
    height: auto;
    display: block;
}

/* Top border — show top edge of image (vine runs along top) */
.stats-border--top img {
    margin-top: 0;
}

/* Bottom border — flip the image vertically so vine faces upward */
.stats-border--bottom {
    transform: scaleY(-1);
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-circle {
    width: 68px;
    height: 68px;
    border: 2px solid rgba(201, 169, 97, .4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    flex-shrink: 0;
    animation: pulse-ring 3s ease-in-out infinite;
}

.stat-item:nth-child(2) .icon-circle {
    animation-delay: 0.5s;
}

.stat-item:nth-child(4) .icon-circle {
    animation-delay: 1s;
}

.stat-item:nth-child(6) .icon-circle {
    animation-delay: 1.5s;
}

@keyframes pulse-ring {

    0%,
    100% {
        border-color: rgba(201, 169, 97, .4);
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0);
    }

    50% {
        border-color: rgba(201, 169, 97, .9);
        box-shadow: 0 0 0 6px rgba(201, 169, 97, .15), 0 0 18px rgba(201, 169, 97, .25);
    }
}

.stat-text-block h3 {
    margin: 0;
    font-size: 46px;
    font-weight: 300;
    line-height: 1;
    color: var(--gold);
    font-family: 'Times New Roman', Times, serif;
}

.stat-text-block p {
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 1px;
    color: white;
    line-height: 1.4;
    font-family: 'Courier New', Courier, monospace;

}

.divider {
    width: 1px;
    height: 78px;
    background: rgba(201, 169, 97, .25);
    flex-shrink: 0;
}

/* ============================================================
   EXPERIENCES
   ============================================================ */
.experiences-section {
    padding: 52px 80px;
    background: var(--parchment);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.section-header h2 {
    color: var(--dark);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.leaf-icon {
    font-size: 0.7em;
}

.section-header a {
    color: #444;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.experience-card {
    position: relative;
    background: var(--cream);
    border: 4px solid #8A6426;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
}

.experience-card::before,
.experience-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
}

.experience-card::before {
    top: -14px;
    left: -25px;
    background-image: url("./images/corner.png");
}

.experience-card::after {
    top: -8px;
    right: -23px;
    transform: scaleX(-1);
    background-image: url("./images/corner.png");
}

.corner-bl {
    position: absolute;
    width: 130px;
    height: 150px;
    background: url("./images/root-frame-1.png") no-repeat;
    background-size: contain;
    z-index: 20;
    pointer-events: none;
}

.corner-br {
    position: absolute;
    width: 150px;
    height: 150px;
    background: url("./images/root-frame-2.png") no-repeat;
    background-size: contain;
    z-index: 20;
    pointer-events: none;
}

.corner-bl {
    bottom: -28px;
    left: -18px;
    /* transform:scaleY(-1); */
}

.corner-br {

    bottom: -32px;
    right: -65px;
    /* transform:scale(-1,-1); */
}

.card-img-wrap {
    position: relative;
    width: 100%;
    height: 185px;
    overflow: visible;
    background: linear-gradient(135deg, #c8b99a 0%, #a89070 100%);
    z-index: 1;
}

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

.card-badge {
    position: absolute;
    bottom: -18px;
    left: 8px;
    width: 40px;
    height: 40px;
    background: rgba(22, 61, 32, .75);
    border: 1px solid var(--gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 2;
}

.card-content {
    padding: 16px;
    position: relative;
    z-index: 1;
}

.card-content h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 22px;
    font-weight: 600;
}

.card-content p {
    color: var(--text-mid);
    font-size: 13px;
    line-height: 1.6;
    min-height: 60px;
    margin-bottom: 10px;
}

.card-content a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.3px;
}

/* ============================================================
   JOURNEY
   ============================================================ */
.journey-map {

    position: relative;
    max-width: 1400px;
    margin: auto;
}

.map-bg {
    width: 100%;
    display: block;
}

.step {
    position: absolute;
    text-align: center;
    width: 180px;
}

.step img {
    width: 60px;
    display: block;
    margin: auto;
}

.step p {
    margin-top: 10px;
    font-size: 18px;
    color: #100a03;
    font-family: "Cormorant Garamond", serif;
}

/* Positions */

.step1 {
    top: 70%;
    left: 30%;
}

.step2 {
    top: 45%;
    left: 12%;
}

.step3 {
    top: 50%;
    right: 0%;
}

.step4 {
    bottom: 52%;
    left: 28%;
}

.step5 {
    bottom: 46%;
    left: 80%;
    transform: translateX(-50%);
}

.step6 {
    bottom: 18%;
    right: 16%;
}



.journey-section {
    margin: 0;
    padding: 0;
    padding-top: 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background: url(./images/f75c1e33-790c-4860-b88f-7a1266f1cbd0.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.journey-inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 120px 0;
}

.journey-map {
    width: 42%;
    flex-shrink: 0;
    min-height: 320px;
    overflow: hidden;
    /* background: linear-gradient(135deg, #c8b99a 0%, #9a8060 100%); */
}

.journey-map img {
    width: 70%;
    height: 70%;
    object-fit: cover;
    display: block;
}

.journey-right {
    flex: 1;
    padding: 44px 60px 44px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
    /* width: 300px; */
}

.journey-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 34px;
    letter-spacing: 1px;
    text-align: center;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    position: relative;
}

/* Connecting line */
.journey-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    height: 2px;
    background: linear-gradient(to right, var(--dark-green), var(--gold), var(--dark-green));
    opacity: 0.35;
    z-index: 0;
}

.journey-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 6px;
}


.step-num {
    font-size: 18px;
    color: var(--dark-green);
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.journey-step p {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.4;
    font-weight: 1000;
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages-section {
    background: var(--parchment);
    /* margin: 0; */
    /* width: 100%;
    overflow: hidden; */
}

.packages-inner {
    background: url('./images/WhatsApp Image 2026-06-22 at 3.45.02 PM.jpeg') center/cover no-repeat;
    background-color: #ede0c4;
    min-height: 200px;
    width: 100%;
    padding-left: 20px;
    padding-top: 60px;
    padding-bottom: 20px;
    object-fit: cover;
}

.packages-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.packages-wrapper {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 20px;
    align-items: start;
    position: relative;
    z-index: 1;
    width: calc(100% - 220px);
}

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

.pkg-card {
    /* Wood-grain base: warm amber layered tones */
    background:
        repeating-linear-gradient(88deg,
            transparent 0px,
            transparent 6px,
            rgba(139, 90, 20, 0.06) 6px,
            rgba(139, 90, 20, 0.06) 7px),
        repeating-linear-gradient(92deg,
            transparent 0px,
            transparent 18px,
            rgba(90, 55, 10, 0.04) 18px,
            rgba(90, 55, 10, 0.04) 19px),
        linear-gradient(175deg, #f0d9a0 0%, #e2c07a 25%, #d4a855 50%, #c99840 75%, #d4a855 100%);
    /* Outer wooden plank border */
    border: 0 none;
    border-radius: 8px;
    padding: 22px 18px 0;
    text-align: center;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    /* Layered shadows: deep drop + warm inner glow */
    box-shadow:
        0 0 0 4px #6b4008,
        0 0 0 7px #9b6820,
        0 0 0 9px #6b4008,
        6px 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(90, 55, 0, 0.15);
}

/* Wood knot / grain inner decorative frame */
.pkg-card::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1.5px solid rgba(100, 62, 8, 0.4);
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
    box-shadow:
        inset 0 0 0 1px rgba(201, 169, 97, 0.2),
        inset 0 1px 4px rgba(255, 220, 120, 0.15);
}

/* Corner wood nail/bolt ornaments */
.pkg-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background-image:
        radial-gradient(circle 4px at 16px 16px, #4a2800 60%, transparent 61%),
        radial-gradient(circle 3px at 16px 16px, #c9a040 40%, transparent 41%),
        radial-gradient(circle 4px at calc(100% - 16px) 16px, #4a2800 60%, transparent 61%),
        radial-gradient(circle 3px at calc(100% - 16px) 16px, #c9a040 40%, transparent 41%),
        radial-gradient(circle 4px at 16px calc(100% - 16px), #4a2800 60%, transparent 61%),
        radial-gradient(circle 3px at 16px calc(100% - 16px), #c9a040 40%, transparent 41%),
        radial-gradient(circle 4px at calc(100% - 16px) calc(100% - 16px), #4a2800 60%, transparent 61%),
        radial-gradient(circle 3px at calc(100% - 16px) calc(100% - 16px), #c9a040 40%, transparent 41%);
    pointer-events: none;
    z-index: 2;
}

.pkg-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 0 0 4px #6b4008,
        0 0 0 7px #b87e28,
        0 0 0 9px #6b4008,
        8px 16px 40px rgba(0, 0, 0, 0.55),
        inset 0 0 30px rgba(90, 55, 0, 0.15),
        0 0 28px rgba(201, 169, 60, 0.3);
}

.pkg-card.featured {
    background:
        repeating-linear-gradient(88deg,
            transparent 0px,
            transparent 6px,
            rgba(139, 90, 20, 0.07) 6px,
            rgba(139, 90, 20, 0.07) 7px),
        repeating-linear-gradient(92deg,
            transparent 0px,
            transparent 18px,
            rgba(90, 55, 10, 0.05) 18px,
            rgba(90, 55, 10, 0.05) 19px),
        linear-gradient(175deg, #f8e8b8 0%, #eccf85 25%, #dbb860 50%, #c9a040 75%, #dbb860 100%);
    box-shadow:
        0 0 0 4px #7a4a0a,
        0 0 0 7px #c9a040,
        0 0 0 9px #7a4a0a,
        6px 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(90, 55, 0, 0.15);
}

.pkg-card h4 {
    font-size: 14px;
    color: #2a1a05;
    margin-bottom: 2px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    text-align: center;
}

.pkg-time {
    font-size: 11px;
    color: #5a3e1b;
    margin-bottom: 14px;
    font-style: italic;
    position: relative;
    z-index: 3;
    text-align: center;
}

.pkg-list {
    list-style: none;
    margin-bottom: 0;
    text-align: left;
    position: relative;
    z-index: 3;
    flex: 1;
}

.pkg-list li {
    color: #2a1a05;
    font-size: 12.5px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(139, 90, 20, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-list li:last-child {
    border-bottom: none;
}

.pkg-price {
    font-size: 26px;
    color: #1a0f00;
    font-weight: 700;
    margin: 14px 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    position: relative;
    z-index: 3;
    text-align: center;
}

.btn-pkg {
    background: linear-gradient(90deg, #1a0f00 0%, #4a3000 15%, #6b4c11 40%, #8b6914 50%, #6b4c11 60%, #4a3000 85%, #1a0f00 100%);
    color: #f0c84a;
    border: none;
    border-top: 2px solid #8b6914;
    padding: 11px 18px;
    border-radius: 0 0 4px 4px;
    font-size: 11px;
    font-weight: 700;
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-bottom: 0;
    letter-spacing: 1.5px;
    font-family: "Cormorant Garamond", Georgia, serif;
    transition: filter 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-pkg::before {
    content: '❧';
    color: #f0c84a;
    font-size: 14px;
    opacity: 0.85;
}

.btn-pkg::after {
    content: '❧';
    color: #f0c84a;
    font-size: 14px;
    opacity: 0.85;
    transform: scaleX(-1);
    display: inline-block;
}

.btn-pkg:hover {
    filter: brightness(1.3);
    box-shadow: 0 4px 16px rgba(201, 169, 60, 0.4);
}

/* Most Popular badge */
.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #6b4008, #c9a040, #6b4008);
    color: #fff8dc;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 4;
    border: 1px solid #9b7020;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Why Choose */
.why-choose {
    background: rgba(245, 233, 204, 0.45);
    border: 1.5px solid rgba(139, 105, 20, 0.4);
    border-radius: 10px;
    padding: 20px 18px;
    backdrop-filter: blur(2px);
}

.why-choose h4 {
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(139, 105, 20, .3);
    padding-bottom: 8px;
}

.why-choose ul {
    list-style: none;
}

.why-choose li {
    color: var(--dark);
    font-size: 12px;
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(139, 105, 20, .15);
}

.why-choose li:last-child {
    border-bottom: none;
}

.why-icon {
    font-size: 15px;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    background: url('./images/testimonials-bg.png') center/cover no-repeat;
    background-color: var(--dark-green);
    padding: 30px 80px 36px;
}

.testimonials-section>h2 {
    font-size: 28px;
    color: var(--gold);
    text-align: left;
    letter-spacing: 1px;
    margin-bottom: 32px;
    font-weight: 600;
}

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

.testi-card {
    background: rgba(0, 0, 0, .22);
    border: 1.5px solid rgba(201, 169, 97, .4);
    border-radius: 12px;
    padding: 12px 18px;
}

.stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testi-card p {
    color: var(--cream);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.testi-author {
    color: var(--gold) !important;
    font-weight: 600;
    font-size: 13px !important;
}

/* Gift Card */
.testi-card.gift-card {
    background: rgba(255, 255, 255, 0.08);
    /* transparent glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 400px;
    margin-left: 30px;


    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;

    padding: 12px 18px;

}

.gift-card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gift-img-wrap {
    width: 120px;
    min-width: 120px;
    height: 110px;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
}

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

.gift-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.testi-card.gift-card h4 {
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.testi-card.gift-card p {
    color: var(--cream);
    font-size: 12px;
    margin: 0;
    line-height: 1.6;
}

.gift-link {
    display: inline-block;
    background: transparent;
    color: var(--cream);
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 8px;
    transition: color 0.3s;
    width: fit-content;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}

.gift-link:hover {
    background: #5a4a3a;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    --lime: #a8d84f;
    --lime-soft: rgba(168, 216, 79, 0.14);
    background-color: #0a2405;
    color: #e9e9e9;
    padding: 0;
    border-top: none;
    position: relative;
    font-family: 'Poppins', 'Cormorant Garamond', sans-serif;
    font-size: 14px;
}

.footer::before {
    content: none;
}

.footer-inner,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-inner {
    padding: 48px 40px 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* ---- Top contact cards ---- */
.footer-contact-row {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 36px;
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.footer-icon-circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--lime-soft);
    border: 1px solid rgba(168, 216, 79, 0.5);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.footer-contact-text h4 {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: .3px;
    margin-bottom: 6px;
}

.footer-contact-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #cfcfcf;
    margin: 0;
    text-align: left;
}

/* ---- Divider under contact cards ---- */
.footer-divider {
    height: 1px;
    background: rgba(238, 118, 63, 0.14);
    margin-bottom: 40px;
}

/* ---- About / Map grid ---- */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
    padding-bottom: 40px;
}

.footer-vertical-divider {
    width: 1px;
    background: rgba(238, 118, 63, 0.14);
}

/* Contact column — left aligned on desktop */
.footer-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.footer-about .footer-logo img {
    width: 46px;
    height: 46px;
}

.footer-about .logo-name {
    color: var(--gold);
    font-size: 22px;
    font-style:italic;
    letter-spacing: 5px;
};


.footer-about .logo-sub {
   color: var(--gold);
    font-size: 12px;
    font-style:italic;
    text-align: center;
    letter-spacing: 2px;
}

.footer-about-title {
    color: goldenrod;
    font-family: 'Cinzel', serif;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: left;
}

.footer-about-desc {
    color: #c7c7c7;
    font-size: 14.5px;
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 14px;
    text-align: left;
}

.footer-col p,
.footer-col .hours {
    text-align: left;
}

.footer-col .hours {
    color: goldenrod;
    font-size: 13px;
    letter-spacing: .3px;
}

/* Map iframe container */
.footer-map {
    width: 100%;
}

.map-box {
    width: 100%;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: 0;
    display: block;
}


.footer-bottom {
    text-align: center;
    padding: 22px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
    color: #bdbdbd;
}

.footer-brand-highlight {
    color: goldenrod;
    font-weight: 600;
}

.footer-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: none;
    z-index: 999;
    transition: transform .2s;
    animation: whatsappBlockFloat 2.2s ease-in-out infinite;
    overflow: visible;
}

.footer-whatsapp::before,
.footer-whatsapp::after { display: none; content: none; }

.footer-whatsapp svg {
    width: 100% !important;
    height: 100% !important;
    animation: whatsappIconPulse 1.4s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
    position: relative;
    z-index: 2;
}

.footer-whatsapp:hover { transform: scale(1.12); }

@keyframes whatsappBlockFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes whatsappIconPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

  

/* ============================================================
   RESPONSIVE — Tablet (max 1200px)
   ============================================================ */
@media (max-width: 1200px) {
    .hero-heading {
        font-size: 56px;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .packages-inner {
        padding: 40px 40px 50px;
    }

    .packages-wrapper {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .pkg-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-choose {
        width: 100%;
        max-width: 600px;
    }

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

    .journey-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .journey-steps::before {
        display: none;
    }

    .stats-section {
        padding: 0 40px;
    }

    .stats-container {
        gap: 24px;
    }
}

/* ============================================================
   RESPONSIVE — Small Tablet (max 900px)
   ============================================================ */
@media (max-width: 900px) {
    .header {
        padding: 10px 24px;
    }

    .nav {
        gap: 16px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hero-content {
        gap: 30px;
        padding: 60px 24px 40px;
    }

    .hero-heading {
        font-size: 46px;
    }

    .hero-sidebar {
        width: 260px;
    }

    .stats-section {
        padding: 0 24px;
    }

    .stats-container {
        gap: 16px;
    }

    .stat-text-block h3 {
        font-size: 36px;
    }

    .experiences-section {
        padding: 40px 24px;
    }

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

    .journey-section {
        height: auto;
        min-height: unset;
        background-position: center center;
        margin: 0;
    }

    .journey-inner {
        flex-direction: column;
    }

    .journey-map {
        width: 100%;
        height: auto;
        min-height: unset;
        position: relative;
        background: url(./images/f75c1e33-790c-4860-b88f-7a1266f1cbd0.png);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        padding-bottom: 56%;
    }

    .step {
        width: 90px;
    }

    .step img {
        width: 36px;
    }

    .step p {
        font-size: 12px;
        margin-top: 6px;
    }

    .step1 {
        top: 60%;
        left: 33%;
    }

    .step2 {
        top: 36%;
        left: 6%;
    }

    .step3 {
        top: 42%;
        right: 0%;
    }

    .step4 {
        bottom: 46%;
        left: 24%;
    }

    .step5 {
        bottom: 38%;
        left: 76%;
    }

    .journey-right {
        padding: 32px 24px;
        margin: 0;
        background: var(--parchment, #f5eddc);
    }

    .journey-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .journey-steps::before {
        display: none;
    }

    .packages-inner {
        padding: 36px 24px 44px;
    }

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

    .testimonials-section {
        padding: 28px 24px 32px;
    }

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

    .testi-card.gift-card {
        width: 100%;
        margin-left: 0;
        grid-column: span 2;
    }

    .footer-inner {
        padding: 40px 24px 24px;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 22px;
    }

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

    .footer-vertical-divider {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE — Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* Header */
    .header {
        padding: 8px 16px;
    }

    .logo img {
        width: 40px !important;
        height: 40px !important;
    }

    .logo-name {
        font-size: 22px;
    }

    .logo-sub {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .header-wrapper {
        flex-wrap: nowrap;
        gap: 12px;
    }

    /* Hide desktop nav & book btn; show hamburger */
    .nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-green);
        border-top: 1px solid rgba(201, 169, 97, .25);
        padding: 12px 0;
        z-index: 998;
    }

    .nav.nav-open {
        display: flex;
    }

    .nav-link {
        font-size: 14px;
        width: 100%;
        padding: 12px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .book-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: auto;
        margin-top: 57px;
    }

    .hero-content {
        flex-direction: column;
        padding: 28px 16px 32px;
        gap: 24px;
    }

    .hero-heading {
        font-size: 38px;
    }

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

    .hero-sidebar {
        width: 100%;
    }

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

    .btn-gold,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    /* Stats */
    .stats-section {
        padding: 0 16px;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .divider {
        display: none;
    }

    .stat-text-block h3 {
        font-size: 36px;
    }

    /* Experiences */
    .experiences-section {
        padding: 36px 16px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

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

    /* Journey */
    .journey-section {
        height: auto;
        min-height: unset;
        background: none;
        margin: 0;
    }

    .journey-inner {
        position: relative;
        z-index: 1;
        flex-direction: column;
    }

    .journey-map {
        width: 100%;
        height: auto;
        min-height: unset;
        position: relative;
        overflow: visible;
        background: url(./images/f75c1e33-790c-4860-b88f-7a1266f1cbd0.png);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        padding-bottom: 56%;
        /* aspect ratio — adjust if image is taller */
    }

    .step {
        width: 70px;
    }

    .step img {
        width: 28px;
    }

    .step p {
        font-size: 10px;
        margin-top: 4px;
    }

    .step1 {
        top: 58%;
        left: 32%;
    }

    .step2 {
        top: 32%;
        left: 4%;
    }

    .step3 {
        top: 40%;
        right: 0%;
    }

    .step4 {
        bottom: 44%;
        left: 22%;
    }

    .step5 {
        bottom: 36%;
        left: 74%;
    }

    .journey-right {
        padding: 28px 16px;
        margin: 0;
        background: var(--parchment, #f5eddc);
    }

    .journey-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

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

    .journey-steps::before {
        display: none;
    }

    .step-num {
        font-size: 14px;
        margin-top: 14px;
        margin-bottom: 14px;
    }

    .journey-step p {
        font-size: 13px;
    }

    /* Packages */
    .packages-inner {
        padding: 32px 16px 40px;
        background-image: linear-gradient(rgba(237, 224, 196, 0.82), rgba(237, 224, 196, 0.82)),
            url('./images/WhatsApp Image 2026-06-22 at 3.45.02 PM.jpeg');
        background-size: cover;
        background-position: center;
        min-height: unset;
    }

    .packages-title {
        font-size: 18px;
        margin-bottom: 20px;
        letter-spacing: 0;
        line-height: 1.3;
        word-break: break-word;
        text-align: center;
    }

    .packages-wrapper {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 16px;
    }

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

    .pkg-card {
        padding: 20px 14px 0;
    }

    .btn-pkg {
        width: calc(100% + 28px);
        margin-left: -14px;
    }

    .why-choose {
        width: 100%;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 28px 16px 32px;
    }

    .testimonials-section>h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testi-card.gift-card {
        width: 100%;
        margin-left: 0;
        grid-column: span 1;
    }

    .gift-card-inner {
        flex-direction: column;
    }

    .gift-img-wrap {
        width: 100%;
        min-width: unset;
        height: 140px;
    }

    /* Footer */
    .footer-inner {
        padding: 32px 16px 20px;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer-vertical-divider {
        display: none;
    }

    .footer-bottom {
        padding: 14px 16px;
        font-size: 10px;
    }

    .video-box {
        height: 160px;
    }
}

/* ============================================================
   RESPONSIVE — Small Mobile (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .logo-name {
        font-size: 22px;
    }

    .stat-text-block h3 {
        font-size: 30px;
    }

    .icon-circle {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .card-content h3 {
        font-size: 18px;
    }

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

    .journey-map {
        padding-bottom: 70%;
    }



    .step img {
        width: 22px;
    }

    .step p {
        font-size: 9px;
    }

    .packages-title {
        font-size: 16px;
        text-align: center;
        letter-spacing: 0;
    }

    .pkg-price {
        font-size: 22px;
    }

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

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

/* ============================================================
   SCROLL REVEAL — base hidden state
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal--left {
    transform: translateX(-40px);
}

.reveal.reveal--right {
    transform: translateX(40px);
}

.reveal.reveal--scale {
    transform: scale(0.92);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Stagger children inside a reveal group */
.reveal-group>* {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-group.is-visible>*:nth-child(1) {
    transition-delay: 0.05s;
    opacity: 1;
    transform: none;
}

.reveal-group.is-visible>*:nth-child(2) {
    transition-delay: 0.15s;
    opacity: 1;
    transform: none;
}

.reveal-group.is-visible>*:nth-child(3) {
    transition-delay: 0.25s;
    opacity: 1;
    transform: none;
}

.reveal-group.is-visible>*:nth-child(4) {
    transition-delay: 0.35s;
    opacity: 1;
    transform: none;
}

.reveal-group.is-visible>*:nth-child(5) {
    transition-delay: 0.45s;
    opacity: 1;
    transform: none;
}

.reveal-group.is-visible>*:nth-child(6) {
    transition-delay: 0.55s;
    opacity: 1;
    transform: none;
}

/* ============================================================
   FLOATING LEAF PARTICLES
   ============================================================ */
.leaf-particle {
    position: absolute;
    width: 32px;
    height: 32px;
    background: url('./images/leaf1.png') center / contain no-repeat;
    opacity: 0.18;
    pointer-events: none;
    animation: float-leaf linear infinite;
    z-index: 0;
}

@keyframes float-leaf {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.18;
    }

    50% {
        transform: translateY(-120px) rotate(180deg) scale(1.1);
    }

    90% {
        opacity: 0.12;
    }

    100% {
        transform: translateY(-260px) rotate(360deg) scale(0.8);
        opacity: 0;
    }
}

/* ============================================================
   SECTION HEADING SHIMMER
   ============================================================ */
.shimmer-heading {
    background: linear-gradient(90deg,
            var(--dark) 0%,
            var(--gold) 40%,
            #fff8dc 50%,
            var(--gold) 60%,
            var(--dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heading-shimmer 4s linear infinite;
}

@keyframes heading-shimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

.shimmer-heading--light {
    background: linear-gradient(90deg,
            var(--cream) 0%,
            var(--gold) 40%,
            #fffbe8 50%,
            var(--gold) 60%,
            var(--cream) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heading-shimmer 4s linear infinite;
}

/* ============================================================
   SECTION DIVIDER LEAVES (decorative corners)
   ============================================================ */
.leaf-divider {
    text-align: center;
    margin: 8px 0;
    opacity: 0.55;
    font-size: 0;
    line-height: 0;
    height: 22px;
    background: url('./images/leaf1.png') center / auto 22px repeat-x;
    animation: divider-drift 8s linear infinite;
}

@keyframes divider-drift {
    from {
        background-position: 0 center;
    }

    to {
        background-position: 200px center;
    }
}

/* ============================================================
   MOBILE — keep leaf strips from overflowing layout
   ============================================================ */
@media (max-width: 768px) {

    /* ===== Aura Journey — mobile: shows the journey-vertical.jpeg
       artwork in full, with the journey content/icons placed in the
       blank gap at its bottom ===== */

    .journey-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 40px 0;
    }

    /* Old floating-icon decorative map graphic is no longer needed —
       the uploaded parchment artwork replaces it */
    .journey-map {
        display: none;
    }

    /* The parchment scroll: the full journey-vertical.jpeg image,
       shown un-cropped at its true proportions (1024 x 1536). The box
       is locked to that exact aspect ratio so the artwork always
       displays completely, and the journey content is bottom-aligned
       inside it, landing in the image's blank lower section. */
    .journey-right {
        flex: none;
        width: 94%;
        max-width: 420px;
        margin: 0 auto;
        aspect-ratio: 1024 / 1536;
        background-image: url(./images/journey-vertical.jpeg);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 0 22px 7%;
        position: relative;
    }

    .journey-title {
        font-size: 18px;
        margin-bottom: 14px;
        text-align: center;
    }

    .journey-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        column-gap: 18px;
        row-gap: 14px;
        justify-items: center;
        align-items: start;
        width: 100%;
        position: relative;
    }

    /* Remove the desktop horizontal connecting line on mobile */
    .journey-steps::before {
        content: none;
        display: none;
    }

    .journey-step {
        width: 100%;
        max-width: 130px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }

    .journey-step .step-circle {
        width: 40px;
        height: 40px;
        margin: 0 auto 4px;
    }

    .journey-step .step-circle img {
        width: 24px !important;
        height: 24px !important;
    }

    .journey-step .step-num {
        font-size: 12px;
        margin-top: 2px;
        margin-bottom: 2px;
    }

    .journey-step p {
        font-size: 11px;
        margin: 0;
        line-height: 1.2;
    }
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    padding: 35px;
    border-radius: 20px;
    position: relative;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);

    animation: popup .3s ease;
}

@keyframes popup {
    from {
        transform: scale(.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

#bookingForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea {
    padding: 12px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    outline: none;
}

#bookingForm input::placeholder,
#bookingForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

#bookingForm select option {
    color: #000;
}

#bookingForm textarea {
    resize: none;
}

/* ============================
   MOBILE-ONLY JOURNEY SECTION
   ============================ */

.journey-section-mobile {
    display: none;
}

@media (max-width: 768px) {

    .journey-section {
        display: none !important;
    }

    .journey-section-mobile {
        display: block;
        padding: 20px 10px 30px;
        background: #f5eddc;
    }

    .journey-mobile-inner {
        max-width: 480px;
        margin: 0 auto;
    }

    .journey-mobile-art {
        position: relative;
    }

    .journey-mobile-bg {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    /* Heading sits inside the blank gap of the parchment artwork,
       between the map illustrations above and the step list below */
    .journey-mobile-inner .journey-title {
        position: absolute;
        top: 52%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, 0);
        margin: 0;
        text-shadow:
            0 0 4px #f5eddc,
            0 0 4px #f5eddc,
            0 0 4px #f5eddc;
    }

    /* Journey-map illustrations: pinned along the artwork's dashed path,
       in the top (drawn) portion of the parchment only */
    .m-map-step {
        position: absolute;
        transform: translate(-50%, -50%);
    }

    .m-map-step img {
        width: 38px;
        height: auto;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35));
    }

    .m-map-step1 {
        top: 36%;
        left: 60%;
    }

    /* near the waterfall - start */
    .m-map-step2 {
        top: 24%;
        left: 64%;
    }

    /* right mountain */
    .m-map-step3 {
        top: 20%;
        left: 45%;
    }

    /* central mountain loop */
    .m-map-step4 {
        top: 33%;
        left: 25%;
    }

    /* standing rocks, left side */
    .m-map-step5 {
        top: 15%;
        left: 20%;
    }

    /* arrow tip - destination */

    /* Journey-right content: the numbered step list, positioned inside
       the blank lower gap of the parchment image itself */
    .m-right-grid {
        position: absolute;
        top: 57%;
        left: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 8px;
        padding: 0 14px;
    }

    .m-right-step {
        text-align: center;
    }

    .m-right-icon {
        width: 30px;
        height: 30px;
        object-fit: contain;
        display: block;
        margin: 0 auto 3px;
        border-radius: 50%;
    }

    .m-right-num {
        display: block;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 1px;
        color: var(--dark-green);
        margin-bottom: 2px;
    }

    .m-right-step p {
        font-size: 8.5px;
        font-weight: 600;
        line-height: 1.15;
        color: #1f1205;
        margin: 0;
    }
}

@media (max-width: 360px) {
    .m-map-step img {
        width: 30px;
    }

    .m-right-grid {
        top: 58%;
        gap: 10px 6px;
    }

    .m-right-icon {
        width: 26px;
        height: 26px;
        margin-bottom: 2px;
    }

    .m-right-num {
        font-size: 8px;
    }

    .m-right-step p {
        font-size: 7.5px;
    }
}

/* ============================================================
   MOBILE RESPONSIVE FOOTER
   ============================================================ */

@media (max-width: 992px) {

    .footer-inner {
        padding: 30px 20px;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 22px;
        padding-bottom: 28px;
    }

    .footer-divider {
        margin-bottom: 28px;
    }

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

    .footer-vertical-divider {
        display: none;
    }

    .map-box iframe {
        height: 220px;
    }

    .footer-bottom {
        padding: 18px 20px;
        font-size: 13px;
    }

    .footer-whatsapp {
        position: fixed;
        right: 20px;
        bottom: 20px;
        margin-right: 0;
        width: 75px;
        height: 75px;
        border-width: 5px;
        z-index: 999;
    }

    .footer-whatsapp::before {
        width: 8px;
        height: 8px;
        top: 5px;
        left: 5px;
        box-shadow:
            52px 0 0 #2b8f2f,
            0 52px 0 #2b8f2f,
            52px 52px 0 #79df56,
            inset 2px 2px 0 rgba(255,255,255,.38);
    }

    .footer-whatsapp::after {
        inset: 8px;
    }

    .footer-whatsapp svg {
        width: 65%;
        height: 65%;
    }

}

@media (max-width: 768px) {

    .footer {
        font-size: 13px;
    }

    .footer-inner {
        padding: 25px 16px;
    }

    .footer-contact-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-contact-text p {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-about .footer-logo {
        justify-content: center;
    }

    .map-box {
        max-width: 100%;
    }

    .map-box iframe {
        height: 200px;
    }

    .footer-about-title,
    .footer-about-desc,
    .footer-col p,
    .footer-col .hours {
        text-align: center;
    }

    .footer-bottom {
        padding: 16px;
        font-size: 12px;
        line-height: 1.6;
    }

    .footer-whatsapp {
        width: 65px;
        height: 65px;
        right: 16px;
        bottom: 16px;
        border-width: 4px;
    }

    .footer-whatsapp::before {
        display: none;
    }

}

@media (max-width: 480px) {

    .footer-inner {
        padding: 20px 15px;
    }

    .footer {
        font-size: 12px;
    }

    .map-box iframe {
        height: 180px;
    }

    .footer-bottom {
        padding: 15px;
        font-size: 11px;
    }

    .footer-whatsapp {
        width: 58px;
        height: 58px;
        right: 12px;
        bottom: 12px;
        border-width: 3px;
    }

    .footer-whatsapp svg {
        width: 60%;
        height: 60%;
    }

}