/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
    --primary-color: #803e39;
    /* Forest Green (from logo mountains) */
    --accent-color: #d2a76b;
    /* Earthy Brown (from tag line) */
    --accent-glow: rgba(166, 124, 82, 0.4);
    --bg-white: #ffffff;
    --bg-soft: #fbfbfc;
    --text-dark: #000000;
    --text-light: #333333;
    --text-white: #ffffff;

    /* Thanks Page Specific */
    --accent-color-pale: #F5EDD5;
    --cream: #FAF6EE;
    --text-brown: #4A3820;
    --text-brown-light: #8A7055;


    --header-height: 90px;
    --island-width: 900px;
    --border-radius-pill: 100px;
    --border-radius-large: 28px;
    --section-spacing: 50px 0px;

    --heading-font: 'Playfair Display', serif;
    --body-font: 'Outfit', sans-serif;
    --mono-font: 'Playfair Display', serif;

    --shadow-island: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-premium: 0 30px 60px -15px rgba(0, 0, 0, 0.2);

    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.section-padding {
    padding: var(--section-spacing);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--text-dark);
}

.text-white {
    color: var(--text-white);
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

/* ==========================================================================
   Components
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 2px solid transparent;
}

.btn-link:hover {
    border-bottom: 2px solid var(--primary-color);
}

.sub-title {
    display: block;
    font-family: var(--body-font);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 14px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 48px;
}

.section-header h2 span {
    color: var(--primary-color);
}

/* ==== Header & Navigation (Unique Island Concept) ==== */
#site-header {
    position: fixed;
    width: 100%;
    top: 20px;
    left: 0;
    z-index: 1000;
    padding: 0 20px;
    transition: var(--transition);
    pointer-events: none;
    /* Only allow clicks on island-wrap */
}

.island-wrap {
    background: rgb(255 255 255);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 5px 40px;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

#site-header.scrolled {
    top: 15px;
}

#site-header.scrolled .island-wrap {
    background: rgb(255 255 255);
    border-color: rgba(212, 180, 124, 0.1);
    box-shadow: var(--shadow-island), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    padding: 5px 40px;
}

.main-logo {
    width: 100%;
    max-width: 125px;
    border-radius: 50%;
}

/* ===== LOGO ===== */
.logo a {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -1px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

#site-header.scrolled .logo a {
    color: var(--primary-color);
}

.logo span {
    color: var(--accent-color);
    font-weight: 300;
}

/* ===== NAV LINKS ===== */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: black;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 8px 0;
    font-family: poppins;
    transition: var(--transition-fast);
}

#site-header.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-dark) !important;
}

#site-header.scrolled .nav-links a:hover {
    color: var(--primary-color) !important;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-nav-footer {
    display: none;
}

/* ===== NAV DROPDOWN (Rooms) ===== */
.nav-dropdown {
    position: relative;
}

.mobile-nav-footer {
    display: none;
}

/* Suppress the underline slide on the toggle itself */
.nav-dropdown-toggle::after {
    display: none !important;
}

.dropdown-chevron {
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    margin-bottom: 2px;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    /* Changed from calc(100% + 14px) to 100% to remove physical gap */
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.97);
    min-width: 240px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-radius: 18px;
    padding: 10px 8px;
    margin-top: 10px;
    /* Use margin for the visual gap */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(210, 167, 107, 0.15);
    opacity: 0;
    pointer-events: none;
    list-style: none;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2000;
}

/* This is the 'bridge' that keeps the menu open while moving the mouse down */
.dropdown-menu::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* Little caret arrow pointing up to the nav item */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.97);
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.06));
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 14px;
    border-radius: 12px;
    color: var(--text-dark) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    transition: background 0.25s ease, color 0.25s ease;
}

/* Suppress underline slide for dropdown links */
.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover {
    background: rgba(210, 167, 107, 0.12);
    color: var(--primary-color) !important;
}

.dm-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: rgba(128, 62, 57, 0.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.dropdown-menu li a:hover .dm-icon {
    background: rgba(210, 167, 107, 0.2);
}

.dm-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dm-text strong {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--body-font);
    color: var(--text-dark);
    letter-spacing: 0;
    text-transform: none;
}

.dm-text small {
    font-size: 11px;
    color: #888;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    font-family: var(--body-font);
}

/* ===== BUTTONS ===== */
.header-cta .btn {
    padding: 10px 24px;
    font-size: 12px;
    background: var(--accent-color);
    color: var(--text-white);
    border: none;
}

#site-header.scrolled .header-cta .btn {
    box-shadow: 0 4px 15px var(--accent-glow);
}


/* ==== Hero Slider Section (Split Modern + Dynamic) ==== */
.hero-slider-container {
    height: 820px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: relative;
    height: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: #000;
    /* Fallback */
    perspective: 2000px;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    animation: kenburns 20s infinite alternate;
    z-index: 0;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(210, 167, 107, 0.15) 0%, transparent 50%),
        linear-gradient(75deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Additional push-down to feel truly centered below header */
}

.hero-slide .hero-content {
    max-width: 600px;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-slide .hero-content::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    transition: transform 1.2s ease-out;
    pointer-events: none;
}

.swiper-slide-active .hero-content::before {
    transform: translate(50%, 50%);
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-family: 'Space Mono', monospace;
}

.hero-sub {
    font-size: 12px;
    color: var(--accent-color);
    letter-spacing: 4px;
    font-weight: 700;
    background: rgba(210, 167, 107, 0.1);
    padding: 6px 15px;
    border-radius: 50px;
    border: 1px solid rgba(210, 167, 107, 0.2);
    text-transform: uppercase;
}

.hero-separator {
    width: 30px;
    height: 1px;
    background: rgba(210, 167, 107, 0.4);
}

.hero-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
}

.swiper-button-next,
.swiper-button-prev {
    color: #d2a76b !important;
}

.swiper-slide {
    align-content: center;
}

.hero-slide h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(to bottom, #fff 40%, rgba(255, 255, 255, 0.7));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-slide h1 span {
    color: var(--accent-color);
}

.hero-slide p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-luxury {
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.btn-luxury i {
    font-size: 14px;
    transition: transform 0.4s ease;
}

.btn-luxury:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-white) !important;
    box-shadow: 0 15px 30px var(--accent-glow);
    transform: translateY(-5px);
}

.btn-luxury:hover i {
    transform: translateX(5px);
}

.hero-visual-slider {
    position: relative;
    transform: rotateY(-15deg) scale(0.85);
    width: 100%;
    max-width: 40%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    z-index: 3;
    opacity: 0;
    transition: all 1.8s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.swiper-slide-active .hero-visual-slider {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
    transition-delay: 0.5s;
}

.hero-visual-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-text-slider {
    position: absolute;
    left: 2%;
    bottom: -5%;
    font-size: 18vw;
    font-weight: 950;
    color: rgba(255, 255, 255, 0.03);
    line-height: 0.7;
    z-index: 0;
    pointer-events: none;
    letter-spacing: -10px;
    text-transform: uppercase;
    transform: translateY(100px);
    transition: all 1.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.swiper-slide-active .hero-bg-text-slider {
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Swiper Navigation Customization */
.hero-slider-container .swiper-pagination-bullet {
    background: var(--text-white);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.hero-slider-container .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
    width: 35px;
    border-radius: 5px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-indicator span {
    font-size: 10px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

.hero-scroll-indicator .mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.hero-scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes scroll-wheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .hero-visual-slider {
        display: none;
    }

    .hero-slide h1 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .hero-slide p {
        font-size: 16px;
    }

    .hero-slide .hero-content {
        padding-left: 0;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}


/* ==== Premium About (The Layered Mosaic) ==== */
.premium-about {
    background-color: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

.about-bg-text {
    position: absolute;
    left: 14.5%;
    top: 58%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5vw;
    font-weight: 900;
    color: rgb(212 180 124 / 86%);
    pointer-events: none;
    line-height: 0.85;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: -5px;
}

.about-bg-text span {
    display: block;
}

.mosaic-gallery {
    position: relative;
    padding-right: 10%;
}

.mosaic-item {
    border-radius: 4px;
    /* More professional sharp-ish corners */
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.mosaic-item.large {
    width: 85%;
    height: 400px;
    position: relative;
    z-index: 1;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

.experience-years {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--accent-color);
    padding: 25px 35px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-years .num {
    font-size: 56px;
    font-family: var(--heading-font);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1;
}

.experience-years .txt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-white);
    font-family: var(--body-font);
}

/* Premium Content Styling */
.premium-content {
    padding-left: 20px;
    position: relative;
    z-index: 2;
}

.accent-line {
    width: 109px;
    height: 2px;
    background: var(--accent-color);
    margin-bottom: 30px;
}

.premium-content h2 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.premium-content h2 span {
    color: var(--accent-color);
    font-weight: 400;
}

.premium-content .lead-text {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* ==========================================================================
   Local Landmarks Slider
   ========================================================================== */
.booking-nearby-section {
    background-color: #f9f8f4;
    position: relative;
    overflow: hidden;
}

.booking-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
    margin-right: -50px;
}

.card-sub {
    font-size: 18px;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.booking-card h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
}

.booking-form-modern .form-group {
    margin-bottom: 20px;
}

.booking-form-modern label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #333;
}

.booking-form-modern .form-control,
.booking-form-modern .form-select {
    background: #f4f4f4;
    border: none;
    border-radius: 0;
    padding: 15px 20px;
    font-size: 14px;
    color: #666;
}

.btn-availability {
    width: 100%;
    margin-top: 20px;
    background: #ffb347;
    color: #fff;
    border: none;
    padding: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-availability:hover {
    background: #f3a02f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 179, 71, 0.3);
}

.nearby-card {
    background: #f9f8f4;
    padding: 80px 80px 80px 130px;
}

.nearby-content h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.nearby-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

.nearby-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    margin-bottom: 40px;
    padding: 0;
}

.nearby-list li {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nearby-list li i {
    font-size: 6px;
    color: #000;
}

.btn-discovery {
    display: inline-block;
    background: #d2a76b;
    color: #fff;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: var(--transition);
}

.btn-discovery:hover {
    background: #f3a02f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 179, 71, 0.3);
    color: #fff;
}

.landmarks-section {
    background-color: var(--bg-soft);
}

.attractions-swiper {
    padding-bottom: 80px !important;
}

.landmark-card {
    position: relative;
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    height: 220px;
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.landmark-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 18, 34, 0.8) 0%, rgba(12, 18, 34, 0.4) 40%, transparent 70%);
    z-index: 1;
    transition: var(--transition);
}

.landmark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.landmark-card:hover::after {
    background: linear-gradient(to top, rgba(12, 18, 34, 0.9) 0%, rgba(12, 18, 34, 0.6) 50%, rgba(12, 18, 34, 0.2) 100%);
}

.landmark-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.landmark-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.landmark-card:hover .landmark-image img {
    transform: scale(1.1);
}

.landmark-category {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 5;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.landmark-info {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    z-index: 3;
    transition: var(--transition);
    height: 90px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.landmark-card:hover .landmark-info {
    height: 160px;
    background: rgba(255, 255, 255, 0.1);
}

.landmark-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-white);
    font-weight: 700;
    transition: var(--transition-fast);
}

.landmark-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.landmark-card:hover .landmark-info p {
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
}

/* Swiper Customize */
.swiper-pagination-bullet {
    width: 12px;
    height: 4px;
    border-radius: 10px;
    background: var(--accent-color) !important;
    opacity: 0.3;
    transition: var(--transition-fast);
}

.swiper-pagination-bullet-active {
    width: 35px;
    opacity: 1;
}

.swiper-pagination {
    bottom: 20px !important;
}

/* Unique Link Animation */
.reveal-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 5px;
}

.reveal-link svg {
    transition: transform 0.3s ease;
}

.reveal-link:hover svg {
    transform: translateX(10px);
}

.reveal-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.reveal-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    z-index: 1;
}

.reveal-link:hover::before {
    width: 100%;
}

/* ==========================================================================
   Room Detail & Listing Pages (Premium Editorial)
   ========================================================================== */

/* Background Typography */
.editorial-text {
    font-family: var(--heading-font);
    opacity: 0.03;
    font-size: 15vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-weight: 800;
}

.room-hero .editorial-text {
    font-size: 20vw;
}

/* Room Showcase Integrated Layout */
.showcase-img-wrap {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    height: 400px;
    z-index: 1;
    margin-bottom: 3rem;
}

.showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.showcase-img-wrap:hover img {
    transform: scale(1.05);
}

.showcase-label {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showcase-label span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 5px;
    font-weight: 800;
}

.showcase-label h4 {
    font-size: 24px;
    margin: 0;
    color: var(--primary-color);
}

/* Specs & Number Accents */
.specs-grid {
    display: flex;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin: 40px 0;
}

.spec-item .label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.spec-item .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.number-accent {
    font-family: var(--heading-font);
    font-size: 80px;
    line-height: 1;
    color: var(--accent-color);
    opacity: 0.15;
    position: absolute;
    top: -40px;
    left: -7px;
    z-index: -1;
}

/* Amenities Minimalist Style */
.amenity-minimal {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #fff;
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.amenity-minimal:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.amenity-minimal i {
    width: 50px;
    height: 50px;
    background: rgba(212, 180, 124, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
    flex-shrink: 0;
}

/* Clean Gallery Grid */
.clean-room-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.gallery-card-v2 {
    border-radius: 24px;
    overflow: hidden;
    background: #eee;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 350px;
}

.gallery-card-v2.gc-md {
    grid-column: span 6;
}

.gallery-card-v2.gc-lg {
    grid-column: span 8;
}

.gallery-card-v2.gc-sm {
    grid-column: span 4;
}

.gallery-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.gallery-card-v2:hover img {
    transform: scale(1.1);
}

/* Rooms Listing Page (Catalog Style) */
.rooms-hero-mini {
    position: relative;
    padding: 120px 0 80px;
    background: var(--bg-soft);
    overflow: hidden;
}

.premium-room-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.premium-room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.card-img-wrap {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.premium-room-card:hover .card-img-wrap img {
    transform: scale(1.1);
}

.card-number {
    position: absolute;
    top: 30px;
    left: 30px;
    font-family: var(--heading-font);
    font-size: 60px;
    color: #fff;
    opacity: 0.3;
    line-height: 1;
    z-index: 2;
}

.card-price-pill {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 12px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.card-price-pill .price {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 20px;
}

.card-body-v2 {
    padding: 40px;
    position: relative;
}

.card-body-v2 h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.amenity-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.amenity-pill {
    background: var(--bg-soft);
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.amenity-pill i {
    color: var(--accent-color);
    font-size: 14px;
}

.btn-premium-v2 {
    display: inline-block;
    padding: 14px 30px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.btn-premium-v2:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.experience-minimal-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.experience-minimal-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.exp-icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(212, 180, 124, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
}

/* ==========================================================================
   Responsive Utilities for Rooms
   ========================================================================== */
@media (max-width: 991px) {
    .clean-room-gallery {
        gap: 15px;
    }

    .gallery-card-v2 {
        height: 300px;
        grid-column: span 6 !important;
    }
}

@media (max-width: 768px) {
    .editorial-text {
        font-size: 18vw;
    }

    .showcase-img-wrap {
        height: 350px;
        border-radius: 30px;
    }

    .specs-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .number-accent {
        font-size: 60px;
    }

    .card-img-wrap {
        height: 250px;
    }

    .card-body-v2 {
        padding: 30px;
    }

    .card-body-v2 h3 {
        font-size: 24px;
    }

    .gallery-card-v2 {
        grid-column: span 12 !important;
        height: 300px;
    }
}

/* ==========================================================================
   Reference-Based Footer (Modern & Professional)
   ========================================================================== */
.signature-footer {
    background-color: #0b0f19;
    /* Slightly lighter deep navy/black from image */
    color: var(--text-white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    position: relative;
    z-index: 5;
}

/* Column Titles */
.footer-col-title {
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    /* Forest Green accent from logo */
}

/* Brand Section */
.footer-logo-box {
    background: white;
    padding: 10px;
    display: inline-block;
    border-radius: 8px;
    margin-bottom: 25px;
    width: 120px;
}

.footer-logo-box img {
    width: 100%;
    height: auto;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-desc-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgb(255 255 255 / 87%);
    margin-bottom: 30px;
}

/* Social Buttons (Boxed style from image) */
.footer-social-strip {
    display: flex;
    gap: 12px;
}

.social-icon-box {
    width: 35px;
    height: 35px;
    background: rgb(255 255 255 / 30%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: var(--transition-fast);
}

.social-icon-box:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

/* Navigation Links (Chevron style) */
.footer-links-list {
    list-style: none;
    padding: 0;
    list-style-type: circle;
    margin-left: 10px;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgb(255 255 255 / 80%);
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.gt-logo {
    width: 100%;
    max-width: 130px;
}

.footer-links-list a:hover {
    color: rgb(255 255 255);
    padding-left: 5px;
}

/* Contact Details (Boxed style from image) */
.contact-detail-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon-wrap {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-text-wrap {
    display: flex;
    flex-direction: column;
}

.contact-text-wrap .label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.contact-text-wrap .value {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Payment Icons Bar */
.footer-payment-bar {
    margin-top: 8px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-method-item {
    background: white;
    padding: 6px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method-item img {
    height: 34px;
    width: auto;
    object-fit: cover;
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    background: #080b12;
    /* Darker than footer */
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 15px;
}

.dev-credit {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .signature-footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 768px) {
    .bottom-bar-content {
        justify-content: center;
        text-align: center;
    }
}


/* ==== Testimonials Section (Premium Glassmorphism) ==== */
.testimonials-editorial {
    padding: 120px 0;
    background: linear-gradient(45deg, #803e39, #844540) !important;
    position: relative;
    overflow: hidden;
}

.editorial-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 950;
    color: rgba(0, 0, 0, 0.02);
    font-family: var(--heading-font);
    z-index: 0;
    pointer-events: none;
    letter-spacing: -5px;
}

.testimonials-swiper-editorial {
    padding: 40px 0 100px !important;
}

.editorial-testimonial {
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.editorial-testimonial.mirrored {
    flex-direction: row-reverse;
}

.testimonial-portrait {
    flex: 0 0 320px;
    height: 220px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.testimonial-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.editorial-testimonial:hover .testimonial-portrait img {
    transform: scale(1.1);
}

.rating-stars {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: white;
    padding: 8px 15px;
    border-radius: 50px;
    color: #ffb700;
    font-size: 12px;
    display: flex;
    gap: 4px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-body {
    flex: 1;
    position: relative;
}

.quote-mark {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.1;
    margin-bottom: -30px;
    position: relative;
    left: -10px;
}

.main-quote {
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.guest-identity .name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guest-identity .origin {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.editorial-pagination {
    position: absolute;
    bottom: 30px !important;
    text-align: center;
}

.editorial-pagination .swiper-pagination-bullet {
    width: 35px;
    height: 5px;
    border-radius: 10px;
    background: #d2a76b !important;
    opacity: 0.2;
    transition: var(--transition-fast);
}

.editorial-pagination .swiper-pagination-bullet-active {
    width: 60px;
    opacity: 1;
}

/* Responsive Fixes */
@media (max-width: 991px) {

    .editorial-testimonial,
    .editorial-testimonial.mirrored {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 30px;
    }

    .testimonial-portrait {
        flex: 0 0 280px;
        width: 100%;
        height: 350px;
    }

    .main-quote {
        font-size: 22px;
    }

    .quote-mark {
        display: none;
    }
}

/* ==========================================================================
   Custom AOS Animations
   ========================================================================== */

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color) !important;
}


/* ==========================================================================
   Why Choose Us Section (Professional & Clean)
   ========================================================================== */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.reason-card {
    background: var(--bg-soft);
    padding: 20px 20px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason-card:hover {
    background: var(--bg-white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--accent-color);
}

.reason-icon-box {
    width: 80px;
    height: 80px;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
    transition: var(--transition);
}

.reason-card:hover .reason-icon-box {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.reason-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.reason-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

/* ==========================================================================
   Custom AOS Animations
   ========================================================================== */
[data-aos='reveal-right'] {
    clip-path: inset(0 100% 0 0);
    transition-property: clip-path;
}

[data-aos='reveal-right'].aos-animate {
    clip-path: inset(0 0 0 0);
}

[data-aos='reveal-left'] {
    clip-path: inset(0 0 0 100%);
    transition-property: clip-path;
}

[data-aos='reveal-left'].aos-animate {
    clip-path: inset(0 0 0 0);
}

/* ==========================================================================
   Rooms Section (Sanctuaries)
   ========================================================================== */
.rooms-section {
    background-color: var(--bg-white);
}

.room-card {
    background: var(--bg-soft);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(212, 180, 124, 0.2);
}

.room-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(12, 18, 34, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--text-white);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.room-price .price {
    font-weight: 800;
    font-size: 18px;
    margin: 0 4px;
}

.room-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.room-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
    padding: 0;
    list-style: none;
}

.room-amenities li {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 180, 124, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
}

.room-amenities li i {
    color: var(--accent-color);
}

.btn-room-cta {
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 15px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
    border: none;
    width: 100%;
}

.btn-room-cta:hover {
    background: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

/* ==========================================================================
   Room Detail Page
   ========================================================================== */
.room-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}

.room-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.room-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-hero-image .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 18, 34, 0.9) 0%, rgba(12, 18, 34, 0.4) 40%, transparent 100%);
}

.room-hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
}

.room-hero-content h1 {
    font-size: 5rem;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 0;
}

.hero-price-tag {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 20px;
    display: inline-block;
    text-align: left;
}

.hero-price-tag .label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    opacity: 0.7;
}

.hero-price-tag .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    font-family: var(--heading-font);
}

/* Description Section */
.room-main-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.description-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Amenities */
.amenity-item {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: var(--transition-fast);
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 180, 124, 0.15);
}

.amenity-item i {
    display: block;
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.amenity-item span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Booking Sidebar */
.booking-sticky-card {
    position: sticky;
    top: 130px;
    z-index: 10;
}

.booking-sticky-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.booking-features {
    margin: 30px 0;
}

.b-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
}

.b-feature i {
    color: #2fb86c;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
}

/* Gallery */
.gallery-item-full,
.gallery-item-tall,
.gallery-item-square {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.gallery-item-full img,
.gallery-item-tall img,
.gallery-item-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.gallery-item-tall {
    height: 500px;
}

.gallery-item-square {
    height: 240px;
}

.section-padding-bottom {
    padding-bottom: var(--section-spacing);
}

.rooms-hero-mini {
    padding: 160px 0 80px;
    background: var(--primary-color);
    color: var(--text-white);
}

.rooms-hero-mini h1 {
    font-size: 3rem;
}

.rooms-hero-mini h1 span {
    color: var(--accent-color);
    font-style: italic;
    font-weight: 400;
}

/* Experience Cards in Rooms Page */
.experience-card {
    background: var(--bg-soft);
    padding: 40px;
    border-radius: 24px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.experience-card:hover {
    background: var(--bg-white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(212, 180, 124, 0.2);
}

.experience-card .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 180, 124, 0.1);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 25px;
    transition: var(--transition-fast);
}

.experience-card:hover .feature-icon {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: rotateY(180deg);
}

.experience-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.experience-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Amenities Section (Minimalist & Premium) */
.amenities-section {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
}

.amenities-minimal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
    margin-top: 50px;
}

.amenity-item {
    text-align: center;
    transition: var(--transition);
}

.amenity-item .icon-box {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-color);
    position: relative;
    transition: var(--transition);
}

.amenity-item .icon-box::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent-glow);
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: var(--transition);
}

.amenity-item:hover .icon-box::after {
    transform: scale(1.5);
}

.amenity-item span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .amenities-minimal-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .amenities-minimal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }
}


/* ==========================================================================
   Custom AOS Animations
   ========================================================================== */

/* ==========================================================================
   Privacy Policy Page (Clean & Professional)
   ========================================================================== */
.privacy-policy-page {
    background: var(--bg-soft);
}

.policy-hero {
    padding: 100px 0 60px;
    background: var(--primary-color);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

.policy-hero h1 span {
    color: var(--accent-color);
}

.policy-hero p {
    max-width: 600px;
    margin: 20px auto 0;
    opacity: 0.8;
}

.policy-sidebar {
    position: sticky;
    top: 120px;
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-island);
}

.sidebar-info-box {
    background: var(--bg-soft);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

.sidebar-info-box i {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.sidebar-info-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.sidebar-info-box p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.policy-nav-list {
    padding: 0;
    margin: 0;
}

.policy-nav-list li {
    margin-bottom: 10px;
}

.policy-nav-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.policy-nav-list a i {
    width: 20px;
    color: var(--primary-color);
}

.policy-nav-list a:hover {
    background: var(--primary-color);
    color: white;
}

.policy-nav-list a:hover i {
    color: white;
}

.policy-content-wrap {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.policy-group {
    margin-bottom: 50px;
    scroll-margin-top: 140px;
}

.policy-group:last-child {
    margin-bottom: 0;
}

.group-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.group-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.rule-list {
    padding: 0;
    margin: 0;
}

.rule-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.rule-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    font-size: 18px;
}

.alert-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    align-items: center;
}

.alert-box.warning {
    background: #fff8e1;
    border: 1px solid #ffe082;
}

.alert-box i {
    font-size: 24px;
    color: #ffa000;
}

.alert-box p {
    margin: 0;
    font-size: 15px;
    color: #5d4037;
    font-weight: 500;
}

@media (max-width: 991px) {
    .policy-content-wrap {
        padding: 30px;
    }

    .policy-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

/* ==========================================================================
   Gallery Page Layout (Unique Asymmetrical Version)
   ========================================================================== */
.gallery-section {
    background-color: var(--bg-soft);
    padding: 100px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 12px 28px;
    border: none;
    background: #fff;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 8px 25px var(--accent-glow);
}

/* Unique Hybrid Grid */
.gallery-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-grid-sub {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Asymmetrical Leaf Card */
.gallery-card-organic {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.gallery-card-organic img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Standard Rounded Card for Sub Grid */
.gallery-card-standard {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.gallery-card-standard img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Common Overlay */
.gallery-overlay-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(90, 127, 169, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay-v2 i {
    color: #fff;
    font-size: 28px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-card-organic:hover,
.gallery-card-standard:hover {
    transform: translateY(-10px);
}

.gallery-card-organic:hover img,
.gallery-card-standard:hover img {
    transform: scale(1.1);
}

.gallery-card-organic:hover .gallery-overlay-v2,
.gallery-card-standard:hover .gallery-overlay-v2 {
    opacity: 1;
}

.gallery-card-organic:hover .gallery-overlay-v2 i,
.gallery-card-standard:hover .gallery-overlay-v2 i {
    transform: translateY(0);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background-color: var(--bg-soft);
    padding: 100px 0;
}

.contact-info-wrap h2 span {
    color: var(--accent-color);
}

.info-item-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.info-item-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.info-item-box .icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-soft);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
    flex-shrink: 0;
}

.info-item-box .text-box h5 {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-item-box .text-box p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.form-group-v2 {
    margin-bottom: 5px;
}

.form-group-v2 label {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    color: var(--primary-color);
}

.form-group-v2 .form-control {
    border: 1px solid #00000017;
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 15px 20px;
    font-family: "Outfit", sans-serif;
    transition: all 0.3s ease;
}

.form-group-v2 .form-control:focus {
    background: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px var(--accent-glow);
    outline: none;
}

.btn-primary-v2 {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 15px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-primary-v2:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--accent-glow);
}

/* ==========================================================================
   Booking Modal (Premium Glassmorphism)
   ========================================================================== */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    background: #ffffff;
    width: 100%;
    max-width: 560px;
    border-radius: 32px;
    position: relative;
    padding: 60px 50px;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.booking-modal-overlay.active .booking-modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--bg-soft);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent-color);
    color: var(--text-white);
    transform: rotate(90deg);
}

.modal-header-v3 {
    text-align: center;
    margin-bottom: 40px;
}

.modal-header-v3 .sub-title {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.modal-header-v3 h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.modal-header-v3 h3 span {
    color: var(--accent-color);
    font-weight: 400;
}

.modal-header-v3 .accent-line {
    margin: 0 auto;
}

.modal-body-v3 .booking-form-modern .form-group {
    margin-bottom: 20px;
}

.modal-body-v3 .booking-form-modern label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.modal-body-v3 .booking-form-modern .form-control,
.modal-body-v3 .booking-form-modern .form-select {
    background: var(--bg-soft);
    border: 1.5px solid #00000017;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 14px;
    font-family: var(--body-font);
    transition: all 0.3s ease;
}

.modal-body-v3 .booking-form-modern .form-control:focus,
.modal-body-v3 .booking-form-modern .form-select:focus {
    background: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px var(--accent-glow);
    outline: none;
}

.modal-body-v3 .btn-room-cta {
    margin-top: 15px;
    padding: 18px;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 14px;
    background: var(--primary-color);
}

.modal-body-v3 .btn-room-cta:hover {
    background: var(--accent-color);
    box-shadow: 0 15px 30px var(--accent-glow);
}

/* Base adjustment for the existing form in index to ensure consistency */
.btn-room-cta {
    display: inline-block;
    padding: 14px 30px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: var(--transition);
}

.btn-room-cta:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-glow);
    color: var(--text-white);
}

@media (max-width: 768px) {
    .booking-modal {
        padding: 50px 30px 40px;
        border-radius: 24px;
    }

    .modal-header-v3 h3 {
        font-size: 24px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* ==== Thanks Page (Localized Styles moved from thanks.php) ==== */
/* ── Background canvas ── */
.thanks-bg-wrap {
    position: fixed;
    inset: 0;
    z-index: 0;
}

/* Grain overlay */
.thanks-bg-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

/* Ornamental corner lines */
.thanks-corner {
    position: fixed;
    width: 80px;
    height: 80px;
    z-index: 1;
    opacity: 0.35;
}

.thanks-corner--tl {
    top: 20px;
    left: 20px;
    border-top: 1.5px solid var(--accent-color);
    border-left: 1.5px solid var(--accent-color);
}

.thanks-corner--tr {
    top: 20px;
    right: 20px;
    border-top: 1.5px solid var(--accent-color);
    border-right: 1.5px solid var(--accent-color);
}

.thanks-corner--bl {
    bottom: 20px;
    left: 20px;
    border-bottom: 1.5px solid var(--accent-color);
    border-left: 1.5px solid var(--accent-color);
}

.thanks-corner--br {
    bottom: 20px;
    right: 20px;
    border-bottom: 1.5px solid var(--accent-color);
    border-right: 1.5px solid var(--accent-color);
}

/* ── Page wrapper ── */
.thanks-page {
    position: relative;
    z-index: 2;
    padding: 180px 24px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ── Card ── */
.thanks-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 4px;
    max-width: 680px;
    width: 100%;
    padding: 30px 60px;
    text-align: center;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 24px 64px rgba(0, 0, 0, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: cardIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
    border-radius: 20px;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Logo / Hotel name ── */
.thanks-brand {
    margin-bottom: 36px;
    animation: fadeUp 0.8s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.thanks-brand-rule {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.thanks-brand-rule span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.thanks-brand-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.thanks-hotel-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.thanks-hotel-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.04em;
    line-height: 1.15;
}

.thanks-hotel-name em {
    font-style: italic;
    color: var(--accent-color);
}

/* ── Checkmark ── */
.thanks-check-wrap {
    margin: 0 auto 32px;
    width: 80px;
    height: 80px;
    animation: fadeUp 0.8s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.thanks-check-circle {
    animation: circleDraw 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
}

.thanks-check-tick {
    animation: tickDraw 0.5s 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
}

@keyframes circleDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes tickDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* ── Text content ── */
.thanks-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 16px;
    animation: fadeUp 0.8s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.thanks-tagline strong {
    font-weight: 600;
    font-style: italic;
    color: var(--accent-color);
}

.thanks-divider {
    width: 60px;
    height: 1px;
    background: var(--accent-color);
    margin: 0 auto 24px;
    animation: fadeUp 0.8s 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.thanks-message {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-brown-light);
    max-width: 480px;
    margin: 0 auto 36px;
    animation: fadeUp 0.8s 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.thanks-message b {
    color: var(--text-brown);
    font-weight: 500;
}

/* ── Info pills ── */
.thanks-info-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeUp 0.8s 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.thanks-info-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color-pale);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-brown);
}

/* ── Buttons ── */
.thanks-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    border: 1.5px solid var(--accent-color);
    transition: background 0.25s, color 0.25s, transform 0.2s;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.thanks-btn-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.thanks-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--accent-color);
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 2px;
    border: 1.5px solid var(--accent-color);
    transition: background 0.25s, color 0.25s, transform 0.2s;
    cursor: pointer;
}

.thanks-btn-outline:hover {
    background: var(--accent-color-pale);
    transform: translateY(-2px);
}

/* ── Footer note ── */
.thanks-footer-note {
    margin-top: 44px;
    font-size: 12px;
    font-weight: 300;
    color: var(--text-brown-light);
    letter-spacing: 0.04em;
    animation: fadeUp 0.8s 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.thanks-footer-note a {
    color: var(--accent-color);
    text-decoration: none;
}

.thanks-footer-note a:hover {
    text-decoration: underline;
}

/* ── Contact strip ── */
.thanks-contact-strip {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.thanks-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-brown-light);
    text-decoration: none;
    transition: color 0.2s;
}

.thanks-contact-item:hover {
    color: var(--primary-color);
}

/* ── Floating petals ── */
.thanks-petals {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.thanks-petal {
    position: absolute;
    top: -30px;
    width: 8px;
    height: 8px;
    border-radius: 50% 0;
    background: var(--accent-color);
    opacity: 0;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.1;
    }

    100% {
        opacity: 0;
        transform: translateY(110vh) rotate(720deg);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .thanks-card {
        padding: 44px 28px;
    }

    .thanks-corner {
        width: 50px;
        height: 50px;
    }

    .thanks-info-row {
        gap: 10px;
    }

    .thanks-info-pill {
        padding: 8px 14px;
        font-size: 12px;
    }

    .thanks-btn-group {
        flex-direction: column;
        align-items: center;
    }

    .thanks-btn-primary,
    .thanks-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .thanks-contact-strip {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
}

@media (max-width: 400px) {
    .thanks-card {
        padding: 36px 20px;
    }
}