/* ============================================
   THAILAND PHUKET ESCAPE – PROFESSIONAL REDESIGN
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --clr-gold: #b28e5d;
    --clr-gold-light: #f9d871;
    --clr-primary: #0ea5a0;
    --clr-primary-dark: #0a7c78;
    --clr-accent: #f7a832;
    --clr-accent-warm: #ffcd29;
    --clr-sold-out: #dc2626;
    --clr-discount: #16a34a;
    --clr-bg-body: #f8fafc;
    --clr-text-white: #ffffff;
    --clr-glass-bg: rgba(255, 255, 255, 0.1);
    --clr-glass-border: rgba(255, 255, 255, 0.25);

    --font-heading: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 8px;

    --shadow-card: 0 40px 100px rgba(0, 0, 0, 0.25);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-y: scroll;
    /* Prevents page shift when content length changes */
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--clr-bg-body);
    color: #1e293b;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body.no-scroll {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   SECTION DIVIDER COMPONENTS
   ============================================ */
.section-divider-v8 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.divider-line-v8 {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(178, 142, 93, 0.2), transparent);
}

.divider-icon-v8 {
    color: #b28e5d;
    font-size: 16px;
    opacity: 0.6;
}

/* ============================================
   HERO BANNER
   ============================================ */
/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 25px 0;
}

.header.sticky {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
}

.logo img {
    height: 44px;
    width: auto;
    transition: transform 0.3s ease;
}

.header.sticky .logo img {
    height: 38px;
}

.nav-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.navbar {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

/* Mobile Toggle Hamburger Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Toggle Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 30px;
    margin: 0 auto;
    /* True centering in flexbox! */
    align-items: center;
}

.nav-links a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
    transition: var(--transition-smooth);
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Better contrast */
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.btn-register {
    background: linear-gradient(135deg, #0A2647, #144272);
    color: #fff !important;
    padding: 10px 28px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    text-decoration: none;
}

.btn-register:hover {
    background: #144272;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(10, 38, 71, 0.4);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #144272;
    /* Blue underline */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-login {
    font-weight: 900 !important;
    opacity: 1 !important;
    color: #fff !important;
}

/* ============================================
   BALANCED LEAD SECTION V3 (COMPACT)
   ============================================ */
.lead-split-v3 {
    padding: 60px 0;
    /* Shorter padding */
    /* background: #F8FAFC; */
    background: #fff;

    position: relative;
}

.lead-v3-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ── Professional 4-Image Grid ── */
.new-balanced-grid-v4 {
    display: flex;
    gap: 15px;
    height: 580px;
    /* Aligns with compact form */
}

.grid-tall {
    flex: 1.2;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.grid-cluster {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.grid-top-row {
    flex: 1.1;
    display: flex;
    gap: 15px;
}

.grid-square {
    flex: 1;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.grid-wide {
    flex: 1;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.new-balanced-grid-v4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grid-tall:hover img,
.grid-square:hover img,
.grid-wide:hover img {
    transform: scale(1.1);
}

/* ── Glass Form V3 (Right) ── */
.glass-form-v3 {
    background: #fff;
    /* padding: 30px 35px; */
    /* Compacter padding */
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #F1F5F9;
}

.compact-form-v3 .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 12px;
    /* Compacter row gap */
}

.compact-form-v3 .field-item label {
    display: block;
    font-size: 10px;
    /* Smaller label */
    font-weight: 800;
    color: #8D7A5C;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compact-form-v3 input,
.compact-form-v3 select {
    width: 100%;
    height: 38px;
    /* Shorter inputs */
    background: #fff;
    border: 1.2px solid #E2E8F0;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 13px;
    color: #1e293b;
    font-weight: 500;
    transition: all 0.3s ease;
}

.compact-form-v3 input:focus,
.compact-form-v3 select:focus {
    border-color: #8D7A5C;
    background: #fff;
    box-shadow: 0 5px 15px rgba(141, 122, 92, 0.06);
    outline: none;
}

.phone-box-v3 {
    display: flex;
    gap: 8px;
}

.code-v3 {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #F8FAFC;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
}

.form-consents-v3 {
    margin: 15px 0;
}

.custom-check-v3 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 11px;
    color: #64748B;
    line-height: 1.4;
    cursor: pointer;
}

@media (max-width: 768px) {
    .custom-check-v3 {
        margin-bottom: 15px;
        font-size: 12px;
    }
}

.custom-check-v3 input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.btn-submit-v3 {
    width: 100%;
    background: #8D7A5C;
    color: #fff;
    border: none;
    padding: 14px;
    /* Compacter button */
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-submit-v3:hover {
    background: #76654a;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(141, 122, 92, 0.3);
}


/* Handled in consolidated media query at line 1800+ */


/* Deleted redundant mobile media query here (already handled at line 1800+) */

/* ============================================
   ABOUT HERO V3 (MOCKUP STYLE)
   ============================================ */
.about-hero-v3 {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.about-eyebrow-v3 {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #D4A017;
    /* Warm Gold */
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-title-v3 {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 800;
    color: #0A2647;
    /* Deep Blue from theme */
    line-height: 1.1;
    margin-bottom: 35px;
    letter-spacing: -1.5px;
}

.about-p-v3 {
    font-size: 18px;
    line-height: 1.8;
    color: black;
    margin-bottom: 50px;
    max-width: 620px;
}

/* ── Stats Container ── */
.stats-container-v3 {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    font-weight: 700;
    color: #64748B;
    text-transform: capitalize;
}

.stat-divider {
    width: 3px;
    height: 60px;
    background: #D4A017;
    border-radius: 20px;
}

/* ── Full Image Gallery (Side-by-Side) ── */
.oval-image-group {
    width: 100%;
}

.about-title-v4 {
    font-family: var(--font-serif);
    font-weight: 600;
}

.oval-img-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    /* Increased height for premium scale */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
    border: 8px solid #fff;
    background: #0A2647;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.om-2 {
    margin-top: -60px;
    /* Maintains elegant architectural stagger */
}

.oval-img-wrapper:hover {
    z-index: 5;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.18);
}

.oval-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.oval-img-wrapper:hover img {
    transform: scale(1.15);
}

@media (max-width: 991px) {
    .about-hero-v3 {
        padding: 80px 0;
        text-align: center;
    }

    .about-p-v3 {
        margin-inline: auto;
    }

    .stats-container-v3 {
        justify-content: center;
        gap: 20px;
    }

    .oval-image-group {
        justify-content: center;
        margin-top: 80px;
        padding-left: 0;
    }

    .oval-img-wrapper {
        width: 45%;
        height: 400px;
    }

    .stat-divider {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .w-enq-btn {
        display: none !important;
        padding: 16px 45px !important;
        font-size: 15px !important;
        background: #fff !important;
        color: #0A2647 !important;
        width: auto !important;
    }

    section#why-us {
        padding: 0 !important;
        background: #fff;
    }

    .enq-btn {
        display: inline-block !important;
    }

    .dks {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .about-hero-v3 {
        padding: 0;
    }

    .testimonial-row-v5 {
        display: block !important;
    }

    .testi-card {
        margin-bottom: 25px;
    }

    .moments-gallery-v4 {
        padding: 40px 0 !important;
    }

    .banner-title {
        font-size: 36px !important;
    }

    .badge-accent {
        display: block !important;
    }

    .campaign-badge {
        display: block !important;
    }

    .oval-image-group {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 50px;
    }

    .oval-img-wrapper {
        width: 100% !important;
        height: 350px !important;
        margin: 0 !important;
    }

    .about-title-v3 {
        font-size: 38px;
    }
}

/* ============================================
   LUXURY ROOMS SECTION (INTERACTIVE)
   ============================================ */
.luxury-rooms-v7 {
    padding: 60px 0;
    background: linear-gradient(rgba(10, 38, 71, 0.8), rgba(10, 38, 71, 0.8)), url('../images/boat-lagoon/g1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(178, 142, 93, 0.3);
    border-bottom: 1px solid rgba(178, 142, 93, 0.3);
}

.eyebrow-v7 {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #b28e5d;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.title-v7 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 60px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.rooms-wrapper-v7 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    transition: gap 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    height: 600px;
}

.room-card-v7 {
    flex: 0 0 500px;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.4);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.room-img-v7 {
    height: 350px;
    overflow: hidden;
}

.room-img-v7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card-v7:hover .room-img-v7 img {
    transform: scale(1.1);
}

.room-info-v7 {
    padding: 35px;
}

.room-info-v7 h4 {
    font-size: 24px;
    font-weight: 800;
    color: #0A2647;
    margin-bottom: 15px;
}

.room-info-v7 p {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
}

/* Right Card Initial State */
.right-card {
    opacity: 0;
    visibility: hidden;
    flex: 0 0 0;
    transform: translateX(20px);
    overflow: hidden;
}

/* Expanded State */
.rooms-wrapper-v7.expanded {
    gap: 30px;
}

.rooms-wrapper-v7.expanded .right-card {
    opacity: 1;
    visibility: visible;
    flex: 0 0 500px;
    transform: translateX(0);
}

.btn-more-rooms {
    background: #0A2647;
    color: #fff;
    padding: 16px 45px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(10, 38, 71, 0.2);
    display: inline-flex;
    align-items: center;
}

.btn-more-rooms:hover {
    background: #b28e5d;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(178, 142, 93, 0.3);
}

@media (max-width: 991px) {
    .rooms-wrapper-v7 {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .rooms-wrapper-v7 {
        height: auto;
    }

    .room-card-v7 {
        flex: 0 0 auto;
        width: 100%;
        max-width: 450px;
        margin-bottom: 25px;
    }

    .right-card {
        transform: translateY(30px);
        margin-bottom: 0;
        flex: 0 0 0;
    }

    .rooms-wrapper-v7.expanded {
        gap: 25px;
    }

    .rooms-wrapper-v7.expanded .right-card {
        flex: 0 0 auto;
        transform: translateY(0);
    }

    .room-img-v7 {
        height: 280px;
    }
}

/* ============================================
   MOMENTS GALLERY V4 (UNIFORM 3-COLUMN GRID)
   ============================================ */
.moments-gallery-v4 {
    /* padding: 120px 0 0 0;
    background: #F8FAFC; */
    background: #fff;
}

.gallery-header {
    margin-bottom: 80px;
}

.eyebrow-v4 {
    font-size: 14px;
    font-weight: 800;
    color: #D4A017;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.title-v4 {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 800;
    color: #0A2647;
    margin-top: 15px;
}

/* Gallery Tabs Custom Styling */
/* ── Glass Form V3 (Right) ── */
.compact-form-v3 {
    background: #fff;
    padding: 40px 35px;
    border-radius: 35px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

/* Validation Styles */
.is-invalid {
    border-bottom: 2px solid #ef4444 !important;
    background-color: rgba(239, 68, 68, 0.05) !important;
}

.invalid-feedback {
    display: block;
    /* Ensure visibility when plugin inserts it */
    color: #ef4444;
    font-size: 11px;
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.is-valid {
    border-bottom: 2px solid #10b981 !important;
    background-color: rgba(16, 185, 129, 0.05) !important;
}

.gallery-tabs-v4 {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-tabs-v4 .nav-pills {
    background: #fff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    border: 1px solid #E2E8F0;
}

.gallery-tabs-v4 .nav-link {
    border-radius: 40px;
    padding: 12px 30px;
    font-weight: 800;
    font-size: 14px;
    color: #64748B;
    background: transparent;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-tabs-v4 .nav-link.active {
    background: #0A2647 !important;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(10, 38, 71, 0.3);
}

.gallery-tabs-v4 .nav-link:hover:not(.active) {
    color: #0A2647;
    background: rgba(212, 160, 23, 0.1);
}

.gallery-uniform-v4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.moment-card-v4 {
    position: relative;
    height: 380px;
    /* Fixed Uniform Height */
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.moment-card-v4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.moment-card-v4:hover {
    z-index: 5;
    box-shadow: 0 60px 100px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.moment-card-v4:hover img {
    transform: scale(1.1);
}




@media (max-width: 1200px) {

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

@media (max-width: 768px) {
    .moment-card-v4 {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .title-v7 {
        font-size: 35px;
    }

    .why-cards-track-v6 {
        padding: 15px 15px !important;
    }

    .about-us-img {
        order: 2;
    }

    .gallery-uniform-v4 {
        grid-template-columns: 1fr;
    }

    .moment-card-v4 {
        height: 350px;
    }
}

/* ============================================
   TESTIMONIALS V5 (THEME BLUE BACKGROUND)
   ============================================ */
.testimonials-v5 {
    padding: 120px 0;
    background: #0A2647;
    /* Deep Theme Blue */
    position: relative;
    overflow: hidden;
}

.testimonial-header {
    margin-bottom: 70px;
}

.eyebrow-v5 {
    font-size: 13px;
    font-weight: 800;
    color: #D4A017;
    /* Gold */
    letter-spacing: 5px;
}

.title-v5 {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-top: 15px;
}

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

.testi-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 40px 0 40px 40px;
    /* Unique Speech-Bubble Shape */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testi-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    font-size: 60px;
    color: #0A2647;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.1;
    font-family: serif;
}

.testi-name {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
}

.testi-stars {
    color: #D4A017;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
}

/* Consistently handled in refined responsive section below */

/* ============================================
   NEW HERO BANNER
   ============================================ */
.banner {
    position: relative;
    width: 100%;
    /* height: 90vh; */
    height: 50rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111;
}

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

.banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.banner-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 60px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-content {
    max-width: 800px;
    color: #fff;
    z-index: 10;
    margin-top: 3em;
}

/* ── Campaign Badges ── */
.campaign-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge-accent {
    color: #FFD272;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.sold-tag-v2 {
    background: #FF4B4B;
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 75, 75, 0.4);
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 70PX;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    animation: slideInRight 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.banner-sub-headline {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeIn 1s ease-out 0.4s both;
}

.price-hl-pill {
    background: linear-gradient(45deg, #0cbbd2, transparent);
    padding: 3px 20px;
    /* border-radius: 100px; */
    font-weight: 800;
    color: #fff;
    box-shadow: 0 8px 25px rgba(209, 77, 20, 0.4);
    /* padding: 10px; */
    font-size: 42px;
}

/* ── Glassmorphism Strip ── */
.promo-bar-glass {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 30px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 10px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.discount-hl-v2 {
    color: #FFD272;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(255, 210, 114, 0.4);
}

/* ── Stay details ── */
.stay-meta {
    /* margin-bottom: 45px; */
    animation: fadeIn 1s ease-out 0.8s both;
}

.stay-range {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stay-policy {
    font-size: 15px;
    font-style: italic;
    opacity: 0.7;
    color: #fff;
}

.legal-note {
    font-size: 12px;
    opacity: 1;
    margin-top: 0px;
    /* animation: fadeIn 1s ease-out 1.2s both; */
}

/* ── Explore Button (White Capsule) ── */
.btn-explore-white {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    padding: 10px 45px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-explore-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.arrow-capsule {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-explore-white:hover .arrow-capsule {
    transform: translateX(5px);
}

/* ── Social Sidebar (Vertical circles) ── */
.social-sidebar-v2 {
    position: absolute;
    bottom: 80px;
    left: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
}

.social-circ {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-circ:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

/* ── Banner Timeline (New) ── */
.banner-timeline {
    position: absolute;
    bottom: -25px;
    left: 140px;
    right: 140px;
    z-index: 10;
}

.timeline-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.timeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    /* Animated via JS */
    height: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transition: width 0.1s linear;
}

.timeline-knob {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
}

/* ── Banner Dots (Mobile Only) ── */
.banner-dots {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    /* Hidden by default */
    align-items: center;
    gap: 12px;
    z-index: 20;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 10px #fff;
}

/* ── Card Slider ── */
.card-stack {
    position: relative;
    width: 420px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.stack-item {
    position: absolute;
    width: 250px;
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.4);
    background: #fff;
    /* Extra clarity */
    image-rendering: -webkit-optimize-contrast;
}

.stack-item.active {
    border: 3px solid #fff;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.4);
}

.stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1);
    /* Ensure it is clearly visible */
}

.stack-item:hover {
    transform: translateY(-10px) scale(1.02);
    /* Removed z-index override to keep the hierarchical stack order stable */
}

/* Stack styling logic moved to item order in index.html */
.stack-item:nth-child(1) {
    z-index: 4;
    transform: translateX(0) scale(1);
    border: 2px solid #fff;
}

.stack-item:nth-child(2) {
    z-index: 3;
    transform: translateX(60px) scale(0.9);
    opacity: 0.8;
}

.stack-item:nth-child(3) {
    z-index: 2;
    transform: translateX(120px) scale(0.8);
    opacity: 0.6;
}

/* ============================================
   FOOTER SECTION V6
   ============================================ */
.footer-v6 {
    background: #1A1A1A;
    color: #fff;
    padding: 100px 0 0 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-v6 {
    max-width: 280px;
}

.footer-logo-v6 img {
    width: 100%;
}

.footer-heading-v6 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.footer-links-v6 {
    list-style: none;
}

.footer-links-v6 li {
    margin-bottom: 12px;
}

.footer-links-v6 a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
}

.link-plus {
    opacity: 0.6;
    font-size: 14px;
}

.footer-links-v6 a:hover {
    color: #0cbbd2;
    transform: translateX(5px);
}

.office-info-v6 {
    display: flex;
    gap: 20px;
}

.office-icon {
    font-size: 28px;
    color: #0cbbd2;
}

.office-details h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.office-details p {
    color: #A0A0A0;
    font-size: 14px;
    line-height: 1.6;
}

/* Copyright Bar */
.copyright-bar-v6 {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
    padding: 25px 0;
    margin-top: 80px;
}

.copyright-bar-v6 p {
    font-size: 12px;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.copyright-bar-v6 a {
    color: #fff;
    text-decoration: none;
}

.back-to-top-v6 {
    width: 45px;
    height: 45px;
    background: #D4A017;
    /* Matches the campaign gold/beige */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.back-to-top-v6:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .footer-v6 {
        padding: 60px 0 0 0;
    }
}

.why-eyebrow-v6 {
    color: #0cbbd2;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.why-title-v6 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #0A2647;
    font-weight: 800;
    margin-bottom: 25px;
}

.why-p-v6 {
    font-size: 17px;
    color: #64748B;
    line-height: 1.6;
}

/* Nav Buttons Slider */
.why-nav-btns-v6 {
    display: flex;
    gap: 15px;
}

.btn-slider {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #fff;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-slider.next.active {
    background: #0A2647;
    color: #fff;
    border-color: #0A2647;
    box-shadow: 0 10px 25px rgba(10, 38, 71, 0.2);
}

.btn-slider:hover {
    transform: scale(1.1);
}

/* Isolated Slider Wrapper (Right Column) */
.why-slider-wrapper {
    position: relative;
    padding: 40px 0;
    height: 520px;
    overflow: visible;
    /* Allows cards to stick out left if needed */
}

/* The Dark Tray (Stationary Background) */
.dark-tray-v6 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -100vw;
    /* Extends to infinity right */
    width: 200vw;
    height: 480px;
    background: #333333;
    border-radius: 60px;
    z-index: 1;
    left: 100px;
    /* Offset from the content start */
}

/* The Sliding Track (Isolated to Right side) */
.why-slider-mask-v6 {
    position: relative;
    z-index: 2;
    overflow: hidden;
    /* This isolates the movement! */
    width: 100%;
    height: 100%;
}

.why-cards-track-v6 {
    display: flex;
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    width: max-content;
    padding: 20px 0;
}

.why-card-v6 {
    width: 320px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.6s ease;
}

.why-card-img-v6 {
    height: 220px;
    overflow: hidden;
}

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

.why-card-body-v6 {
    padding: 30px;
}

.why-card-body-v6 h4 {
    font-size: 20px;
    font-weight: 800;
    color: #0A2647;
    margin-bottom: 15px;
}

.why-card-body-v6 p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .why-slider-wrapper {
        height: auto;
    }

    .dark-tray-v6 {
        left: 0;
        width: 100%;
        right: 0;
    }
}

/* ============================================
   WHY CHOOSE THAILAND SECTION V5 (SPLIT)
   ============================================ */
.why-thailand-v5 {
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.why-info-col {
    padding-left: 8%;
    padding-right: 5%;
}

.why-eyebrow-v5 {
    color: #0cbbd2;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.why-title-v5 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #0A2647;
    font-weight: 800;
    margin-bottom: 25px;
}

.why-p-v5 {
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
}

/* Nav Buttons Style from Image 1 */
.why-nav-btns {
    display: flex;
    gap: 15px;
}

.btn-why-prev,
.btn-why-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #fff;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-why-next.active {
    background: #0A2647;
    color: #fff;
    border-color: #0A2647;
    box-shadow: 0 10px 25px rgba(10, 38, 71, 0.2);
}

.btn-why-next:hover {
    transform: scale(1.1);
}

/* Right Section with Dark Tray */
.why-cards-col {
    position: relative;
    padding: 40px 0;
}

.dark-tray-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 10%;
    /* Creates the split mid-column */
    background: #333333;
    /* Dark Grey/Black as in Image 1 */
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    z-index: 1;
}

.why-cards-scroll-v5 {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 30px;
    padding-left: 0;
    padding-right: 5%;
}

.why-card-v5 {
    flex: 0 0 320px;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card-v5:hover {
    transform: translateY(-15px);
}

.why-card-img {
    height: 200px;
    overflow: hidden;
}

.why-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.why-card-v5:hover .why-card-img img {
    transform: scale(1.1);
}

.why-card-body {
    padding: 30px;
}

.why-card-body h4 {
    font-size: 20px;
    font-weight: 800;
    color: #0A2647;
    margin-bottom: 15px;
}

.why-card-body p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .why-cards-col {
        padding: 60px 20px;
    }

    .dark-tray-bg {
        left: 0;
        border-radius: 40px;
        top: 20%;
    }

    .why-info-col {
        padding: 60px 30px;
    }

    .why-cards-scroll-v5 {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE DESIGN – REFINED
   ============================================ */

/* ---- Tablet & Mobile (991px and down) ---- */
@media (max-width: 991px) {
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 12px 0 !important;
        background: rgba(10, 38, 71, 0.95);
        backdrop-filter: blur(15px);
        z-index: 2000 !important;
    }

    .header .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .nav-container {
        flex-grow: 0 !important;
    }

    .logo img {
        height: 32px !important;
    }

    .mobile-toggle {
        display: flex !important;
        margin-left: 0 !important;
        position: relative;
        z-index: 2100 !important;
    }

    .navbar {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: #0A2647 !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        z-index: 2050 !important;
        display: flex !important;
    }

    .navbar.active {
        right: 0 !important;
    }

    .nav-links {
        display: flex !important;
        position: relative !important;
        left: auto !important;
        transform: none !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 40px !important;
        margin-bottom: 50px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-links a {
        font-size: 22px !important;
        color: #fff !important;
        letter-spacing: 3px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
    }

    .navbar .btn-register {
        display: inline-block !important;
        padding: 16px 45px !important;
        font-size: 15px !important;
        background: #fff !important;
        color: #0A2647 !important;
        width: auto !important;
    }
}

/* ---- Small Mobile (768px and down) ---- */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
        padding-top: 120px !important;
    }

    .banner-content {
        max-width: 100% !important;
        padding: 0 15px !important;
    }

    .banner-title {
        font-size: 35px !important;
    }

    .card-stack,
    .banner-timeline {
        display: none !important;
    }

    .banner-dots {
        display: flex !important;
    }

    .banner-sub-headline {
        font-size: 22px;
        line-height: 1.5;
    }

    .badge-accent {
        margin-bottom: 10px;
    }

    .price-hl-pill {
        font-size: 18px;
        margin-left: 0;
        display: inline-block;
    }

    /* Standard mobile row gutter fix */
    .row {
        --bs-gutter-x: 1.5rem !important;
    }
}



/* Form Row Modern Grid */
.compact-form-v3 .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.compact-form-v3 .field-item {
    display: flex;
    flex-direction: column;
}

/* Response Fixes for Form (Mobile) */
@media (max-width: 991px) {
    .lead-split-v3 {
        padding: 40px 0;
    }

    .new-balanced-grid-v4 {
        display: none !important;
    }

    .glass-form-v3 {
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    .compact-form-v3 {
        padding: 25px 15px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
        border-radius: 20px !important;
    }

    .compact-form-v3 .form-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
    }

    .field-item {
        width: 100% !important;
        margin-bottom: 5px;
    }
}

.consent-item span {
    font-size: 11px;
    line-height: 1.5;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--clr-gold);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(178, 142, 93, 0.3);
    margin-top: 8px;
    transition: 0.3s ease;
}

.btn-submit:hover {
    background: var(--clr-gold-light);
    color: #000;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 0 0;
    background: var(--clr-bg-body);
}

.divider__line {
    width: 120px;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
}

.divider__icon {
    font-size: 24px;
    filter: grayscale(0.2);
}

.about {
    padding: 80px 0 120px;
    background: var(--clr-bg-body);
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about__content {
    flex: 1;
}

.about__image-wrap {
    flex: 0 1 500px;
}

.about__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--clr-gold);
    display: block;
    margin-bottom: 20px;
}

.about__title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 30px;
}

.about__text {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 40px;
}

.about__image-shape {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.about__cta {
    display: inline-block;
    padding: 16px 48px;
    background: #0f172a;
    color: #fff;
    font-weight: 800;
    border-radius: 100px;
}


/* ============================================
   LUXURY ACCOMMODATIONS (ROOMS)
   ============================================ */
.rooms {
    padding: 100px 0 140px;
    background: #fdfdfd;
}

.rooms__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.rooms__header {
    text-align: center;
    margin-bottom: 60px;
}

.rooms__eyebrow {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
}

.rooms__title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: #111;
}

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

.room-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.room-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

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

.room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

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

.room-item:hover img {
    transform: scale(1.1);
}

.room-info h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: #fff;
    margin-bottom: 12px;
}

.room-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 90%;
}

.room-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.room-price span {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-gold-light);
}

.room-label-static {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #111;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.room-item:hover .room-label-static {
    opacity: 0;
    transform: translateY(-10px);
}

/* ============================================
   ROOMS RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .rooms__grid {
        grid-template-columns: 1fr;
    }

    .rooms__container {
        padding: 0 32px;
    }

    .rooms__title {
        font-size: 36px;
    }
}

@media (max-width: 500px) {
    .rooms {
        padding: 60px 0 100px;
    }

    .room-overlay {
        padding: 30px 20px;
    }

    .room-info h3 {
        font-size: 22px;
    }

    .room-info p {
        font-size: 13px;
    }

    .room-label-static {
        top: 20px;
        right: 20px;
        padding: 8px 18px;
        font-size: 10px;
    }
}

/* ============================================
   GALLERY SECTION (MIRRORING 4-COL REFERENCE)
   ============================================ */
.gallery {
    padding: 100px 0 160px;
    background: #fafafa;
}

.gallery__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery__header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery__eyebrow {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
}

.gallery__title {
    font-family: var(--font-serif);
    font-size: 48px;
    color: #111;
}

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

.gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 480px;
    /* Fixed height for vertical look */
    background-color: #eee;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Staggered Vertical Shifts matching Mirroring Reference */
.stagger-1 {
    transform: translateY(0);
}

.stagger-2 {
    transform: translateY(60px);
}

.stagger-3 {
    transform: translateY(-20px);
}

.stagger-4 {
    transform: translateY(40px);
}

/* ── Gallery Content (Icon & Title) ── */
.gallery__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
}

.content__icon {
    font-size: 24px;
    color: #fff;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.content__title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

/* ── Gallery Hover ── */
.gallery__item:hover {
    z-index: 5;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item:hover .gallery__content {
    background: linear-gradient(to top, var(--clr-primary) 0%, rgba(14, 165, 160, 0.5) 100%);
}

.gallery__item:hover .content__icon {
    transform: scale(1.2) rotate(-5deg);
}

/* ============================================
   GALLERY RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stagger-1,
    .stagger-2,
    .stagger-3,
    .stagger-4 {
        transform: translateY(0);
    }

    .gallery__item {
        height: 400px;
        margin-bottom: 25px;
    }
}

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

    .gallery__title {
        font-size: 32px;
    }
}


.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 12px !important;
    color: maroon !important;
    text-transform: lowercase !important;
}

section#why-us {
    padding: 4em 0;
    background: #fff;
}

.iti__selected-flag {
    height: auto;
}





.iti {
    width: -webkit-fill-available !important;
}

.iti__selected-flag {
    height: 100% !important;
}

.head-enq {
    margin: 0 !important;
}