:root {
    --primary-teal: #0e666a;
    --accent-highlight: #00ffcc;
    --dark-teal: #0a4d50;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

/* Standard Section Title */
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #0c0c45;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
}

/* Main Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.main-header.scrolled {
    padding: 15px 0;
    background: rgba(14, 102, 106, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-smooth);
}

.main-nav {
    background: #fff;
    padding: 6px 10px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #444;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.main-nav a:hover {
    color: #5d7ce6;
}

.main-nav a.active {
    background-color: #5d7ce6;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(93, 124, 230, 0.3);
}

.main-nav a::after {
    display: none;
}

.header-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid var(--accent-highlight);
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.header-btn:hover {
    background: var(--accent-highlight);
    color: #000;
    box-shadow: 0 0 20px var(--accent-highlight);
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition-smooth);
}

.main-header.scrolled .menu-toggle {
    color: #fff;
}

/* Enquiry Split Section */
.enquiry-split-section {
    padding: 20px 0 80px 0;
    background-color: #fff;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.split-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
}

/* Mosaic Image Grid */
.mosaic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.mosaic-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mosaic-item:hover img {
    transform: scale(1.05);
}

.item-large {
    grid-row: span 2;
}

.item-large img {
    /* height: 620px; */
    /* height: auto; */
    object-fit: cover;
}

.item-small img {
    height: 300px;
}

.grid-caption {
    margin-top: 30px;
}

.grid-caption h3 {
    font-family: 'Prata', serif;
    font-size: 2.2rem;
    color: var(--primary-teal);
    margin-bottom: 10px;
}

.grid-caption p {
    font-size: 1.1rem;
    color: #666;
}

/* Enquiry Card Styles - Ultra Compact to match image grid */
.enquiry-card {
    background: #fff;
    padding: 25px 35px;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.form-header {
    margin-bottom: 15px;
}

.form-header h2.section-title {
    font-size: 1.6rem;
    text-align: left;
    margin-bottom: 2px;
}

.form-header p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.3;
}

.split-enquiry-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.split-enquiry-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.split-enquiry-form label {
    font-size: 0.6rem;
    font-weight: 800;
    color: #666;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.split-enquiry-form input,
.split-enquiry-form select {
    width: 100%;
    padding: 6px 12px;
    border: 1px solid #eee;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.split-enquiry-form input:focus,
.split-enquiry-form select:focus {
    outline: none;
    border-color: var(--primary-teal);
    background-color: #fff;
}

/* Phone Input with Flag */
.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 4px;
    background-color: #fafafa;
    padding: 0 8px;
}

.phone-input .flag {
    font-size: 0.8rem;
    margin-right: 6px;
    white-space: nowrap;
}

.phone-input input {
    border: none;
    padding: 6px 4px;
    background: transparent;
}

/* Consent Checks */
.consent-checks {
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.check-item input {
    width: auto;
    margin-top: 2px;
}

.check-item label {
    font-size: 0.68rem;
    font-weight: 400;
    color: #777;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: normal;
}

.split-enquiry-form .submit-btn {
    width: 100%;
    padding: 12px;
    /* background-color: #4b5320; */
    background-color: #6d75e2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.split-enquiry-form .submit-btn:hover {
    background-color: #3a4118;
    transform: translateY(-1px);
}

.form-footer {
    margin-top: 15px;
    text-align: center;
    color: #bbb;
    font-size: 0.8rem;
}

/* Premium Banner */
.premium-banner#home {
    position: relative;
    /* min-height: 100vh; */
    min-height: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Full-Width Split Backgrounds */
.banner-bg-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    /* Extends to 60% of screen */
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.bg-slide.active {
    opacity: 1;
}

.banner-bg-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: #ffffff;
    z-index: 1;
}

.banner-container {
    max-width: 1400px;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    position: relative;
    z-index: 10;
}

/* Left Content Area */
.banner-content {
    padding: 60px 40px 60px 0;
    /* Padding relative to container */
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    height: 100%;
    justify-content: center;
}

.banner-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo-circle {
    width: 30px;
    height: 30px;
    background-color: var(--accent-highlight);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-highlight);
}

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

.logo-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.logo-text span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.main-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eyebrow {
    font-size: 1.5rem;
    font-weight: 500;
    color: #00ffea;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Qood', 'sans-setif';
}

.script-text {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.95;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
}

/* .sub-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-highlight);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: -5px;
} */

.sub-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-highlight);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Vertical Text Box - Highlighted */
.vertical-text-box {
    position: absolute;
    right: -115px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    -webkit-text-stroke: 1px #009688;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    line-height: 0.8;
    letter-spacing: 2px;
    pointer-events: none;
    z-index: 10;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vertical-text-box span {
    display: block;
}

@media (max-width: 1400px) {
    .vertical-text-box {
        right: -45px;
        font-size: 2rem;
        gap: 8px;
    }
}

@media (max-width: 1200px) {
    .vertical-text-box {
        display: none;
        /* Hide on mobile/smaller screens to avoid overflow */
    }
}

.package-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-left: 4px solid var(--accent-highlight);
    padding-left: 20px;
}

.stay-info {
    font-size: 1.5rem;
    font-weight: 700;
}

.duration {
    font-size: 1.2rem;
    opacity: 0.8;
}

.price-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column;
}

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

.price-box .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.price-box .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.price-box .amount span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin-left: 10px;
    letter-spacing: 1px;
    opacity: 0.8;
}

.value-badge {
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-highlight);
    border: none;
    border-bottom: 2px solid var(--accent-highlight);
    margin-left: 20px;
    letter-spacing: 1px;
}

.highlight-glow {
    color: var(--accent-highlight);
    /* text-shadow: 0 0 15px var(--accent-highlight); */
    font-weight: 800;
}

.inclusions {
    font-size: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.inclusions strong {
    color: var(--accent-highlight);
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
}

.inclusion-items {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inc-icon {
    display: none;
    /* Hide icons on desktop to keep it same as before */
}

.inclusion-items .divider {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
}

.explore-btn {
    display: none;
    /* Hide by default, will show on mobile if needed or replace book-btn */
}

.book-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-highlight);
    text-decoration: none;
    padding: 18px 45px;
    font-weight: 800;
    font-size: 1.1rem;
    border: 2px solid var(--accent-highlight);
    border-radius: 5px;
    width: fit-content;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--accent-highlight);
    background-color: var(--accent-highlight);
    color: #000;
}

/* Decorative Dots */
.decorative-dots {
    width: 60px;
    height: 60px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 12px 12px;
    position: absolute;
}

.dots-top {
    top: 20px;
    right: 20px;
}

.dots-bottom {
    bottom: 120px;
    left: 20px;
}

/* Contact Footer */
.contact-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.contact-icon {
    background-color: var(--accent-highlight);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 1.2rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.contact-text strong {
    font-size: 1.2rem;
}

/* Right Image Area */
.banner-image-area {
    position: relative;
    padding: 40px 0;
}

.banner-image-area::before {
    content: '';
    position: absolute;
    top: 90px;
    right: -25%;
    width: 110%;
    height: calc(100% - 40px);
    background-color: var(--primary-teal);
    z-index: 0;
}

.image-wrapper {
    width: 110%;
    height: 100%;
    position: relative;
    left: -10%;
    /* Overlap effect */
    border: 15px solid white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background: #fff;
    overflow: hidden;
    z-index: 1;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.discount-badge {
    position: absolute;
    bottom: 40px;
    left: -40px;
    width: 140px;
    height: 140px;
    background-color: var(--accent-highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
    /* Above images */
    animation: pulse 2s infinite;
}

.slider-dots {
    display: none;
    /* Hidden on desktop, shown on mobile via media query */
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    gap: 12px;
    z-index: 100;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--accent-highlight);
    width: 25px;
    border-radius: 10px;
}

/* Slider Arrows */
.slider-arrows {
    position: absolute;
    bottom: 20px;
    right: -25px;
    display: flex;
    gap: 10px;
    z-index: 50;
}

.slider-arrows .arrow {
    background: #fff;
    color: var(--primary-teal);
    border: 2px solid #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 1rem;
    border-radius: 4px;
}

.slider-arrows .arrow:hover {
    background: var(--primary-teal);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .slider-arrows {
        display: none;
        /* Hide on mobile */
    }
}

.stay-offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 2px;
    border-right: 4px solid var(--accent-highlight);
    text-align: right;
}

.stay-duration {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-highlight);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stay-islands {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.badge-content {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.badge-content span {
    font-size: 1rem;
    font-weight: 500;
}

.badge-content strong {
    font-size: 2.5rem;
    font-weight: 900;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Enquiry Section */
.enquiry-section {
    padding: 100px 20px;
    background-color: #fff;
}

.enquiry-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.enquiry-form h2.section-title {
    margin-bottom: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    /* text-transform: uppercase; */
    color: #666;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    /* padding: 15px; */
    border: 1px solid #ddd;
    /* border-radius: 8px; */
    font-size: 12px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(14, 102, 106, 0.1);
}

.phone-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* .phone-input .flag {
    padding: 15px;
    background: #f0f0f0;
    border-radius: 8px;
} */

.phone-input input {
    flex: 1;
}

.consent-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-teal);
    color: white;
    border: none;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    background-color: var(--dark-teal);
    transform: translateY(-2px);
}

/* Responsive Adjustments - UNIFIED MOBILE HERO */
@media (max-width: 1024px) {
    .premium-banner#home {
        min-height: 800px;
    }
}

/* Responsive Adjustments - UNIFIED MOBILE HERO */
@media (max-width: 1024px) {
    .premium-banner#home {
        min-height: 800px;
    }
}

@media (max-width: 768px) {

    .main-header,
    .main-header.scrolled {
        background: transparent !important;
        background-image: none !important;
        position: absolute !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    .slider-arrows .arrow {
        display: none !important;
    }

    .premium-banner#home {
        height: auto !important;
        min-height: 100vh;
        display: block !important;
        background-color: #000000 !important;
        overflow-x: hidden;
        position: relative;
    }

    .banner-bg-left,
    .banner-bg-right {
        display: none !important;
    }

    .banner-container {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        padding: 0 !important;
        max-width: 100% !important;
    }

    /* Top Image Area */
    .banner-image-area {
        display: block !important;
        order: 1 !important;
        width: 100% !important;
        height: 55vh !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 5;
    }

    .banner-image-area::before {
        display: none !important;
    }

    .image-wrapper {
        width: 100% !important;
        height: 100% !important;
        left: 0 !important;
        border: none !important;
        margin: 0 !important;
        box-shadow: none !important;
        position: relative;
        overflow: hidden;
    }

    .image-wrapper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to top, #000000 0%, transparent 100%);
        z-index: 6;
    }

    .banner-slide {
        border-radius: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .banner-slide.active {
        opacity: 1;
    }

    /* Badges on Top of Image */
    .stay-offer-badge {
        position: absolute !important;
        top: 90px !important;
        /* Below the transparent header */
        right: 0 !important;
        background: rgba(0, 0, 0, 0.7) !important;
        padding: 8px 16px !important;
        border-radius: 8px 0 0 8px !important;
        border: none !important;
        text-align: right !important;
        z-index: 100;
        display: flex !important;
        flex-direction: column !important;
        gap: 2px;
    }

    .stay-duration {
        font-size: 0.65rem !important;
        color: #00ffcc !important;
        font-weight: 800 !important;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 5px;
    }

    .stay-duration::before {
        content: '\f073';
        font-family: 'Font Awesome 6 Free';
        font-weight: 400;
    }

    .stay-islands {
        font-size: 0.8rem !important;
        font-weight: 800 !important;
        color: #fff !important;
        letter-spacing: 0.5px;
    }

    /* Content Overlay */
    .banner-content {
        order: 2 !important;
        width: 100% !important;
        padding: 30px 20px 100px 20px !important;
        background: transparent !important;
        margin-top: 0 !important;
        z-index: 10;
        position: relative;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .eyebrow {
        position: relative !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 5px 12px !important;
        border-radius: 50px !important;
        color: #00ffcc !important;
        font-size: 0.65rem !important;
        font-weight: 800 !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px !important;
        z-index: 20;
    }

    .eyebrow::before {
        content: '\f3c5';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #00ffcc;
        font-size: 0.8rem;
    }

    /* Typography */
    .script-text {
        font-family: 'Outfit', sans-serif !important;
        font-size: 2.1rem !important;
        font-weight: 800 !important;
        margin: 0 !important;
        line-height: 1.1 !important;
        text-transform: uppercase;
    }

    .sub-heading {
        font-family: 'Outfit', sans-serif !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        color: #00ffcc !important;
        letter-spacing: 1px !important;
        margin-top: 2px !important;
        text-transform: uppercase;
    }

    /* Price Section */
    .price-section {
        border-top: 1px dotted rgba(255, 255, 255, 0.2);
        padding-top: 20px;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .price-box .amount {
        font-size: 1.7rem !important;
        font-weight: 800 !important;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .value-badge {
        font-size: 0.72rem !important;
        padding: 6px 16px !important;
        border: 1px solid #00ffcc !important;
        border-radius: 50px !important;
        color: #00ffcc !important;
        background: rgba(0, 255, 204, 0.08) !important;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-transform: uppercase;
        font-weight: 800;
    }

    .inclusion-items {
        display: flex !important;
        flex-direction: row !important;
        gap: 15px !important;
        justify-content: center !important;
        width: 100%;
    }

    /* Controls Overlays */
    .slider-dots {
        display: flex !important;
        order: 3;
        position: relative !important;
        bottom: 95px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        gap: 8px !important;
        margin-top: -30px;
        z-index: 50;
    }

    .slider-arrows {
        display: flex !important;
        position: absolute !important;
        bottom: 80px !important;
        left: 0 !important;
        right: 0 !important;
        padding: 0 25px !important;
        justify-content: space-between !important;
        width: 100% !important;
        z-index: 60 !important;
    }

    .slider-arrows .arrow {
        background: #fff !important;
        border-radius: 50% !important;
        width: 48px !important;
        height: 48px !important;
        color: #333 !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
        border: none !important;
    }

    /* CTA Button */
    .explore-btn {
        display: flex !important;
        background: #00ffcc !important;
        color: #000000 !important;
        padding: 18px !important;
        border-radius: 12px !important;
        font-size: 1rem !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
        text-decoration: none !important;
        margin-top: 10px !important;
        box-shadow: 0 8px 25px rgba(0, 255, 204, 0.3) !important;
    }

    /* Hide unnecessary elements on mobile */
    .vertical-text-box,
    .decorative-dots {
        display: none !important;
    }

    /* Make the form responsive */
    .split-enquiry-form .form-row {
        flex-direction: column;
        gap: 12px;
    }
}

/* About Section Styles */
.about-section {
    padding: 120px 0;
    background-color: #fff;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
}

/* Left side Content Area */
.about-content-area {
    position: relative;
    padding-top: 40px;
    z-index: 2;
}

.accent-bar {
    position: absolute;
    top: 0;
    left: 50px;
    /* Moved to left */
    width: 250px;
    height: 60px;
    background-color: #eba747;
    z-index: 1;
}

.about-content-box {
    background-color: #12686bd9;
    padding: 80px 60px;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.2);
    margin-right: -80px;
    /* Overlap image on the right */
}

/* Right side Image Area */
.about-image-area {
    position: relative;
    padding-left: 50px;
    /* Added padding to right */
    z-index: 1;
}

.bg-deco-box {
    position: absolute;
    bottom: -40px;
    right: -60px;
    /* Moved to right */
    width: 300px;
    height: 350px;
    background-color: #12686b;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    z-index: 2;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    display: block;
    height: 500px;
    object-fit: cover;
}

/* Loved by Indians Badge */
.loved-badge {
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 3;
}

.ribbon {
    background: #8b7355;
    padding: 15px 20px;
    color: white;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ribbon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 40px 0 40px;
    border-color: #8b7355 transparent transparent transparent;
}

.ribbon span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.ribbon strong {
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.tagline {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #eba747;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.about-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-description {
    position: relative;
    padding-left: 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.about-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.8;
}

.about-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #4b5320;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.about-btn:hover {
    background-color: #5c6628;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 80px;
    }

    #about1 .about-grid {
        flex-direction: column-reverse;
    }

    .about-image-area {
        padding-right: 0;
    }

    .about-content-box {
        margin-left: 0;
        padding: 60px 40px;
    }

    .accent-bar {
        right: 20px;
    }

    .about-title {
        font-size: 2.8rem;
    }
}

/* Royal Section Divider */
.section-divider {
    max-width: 1200px;
    margin: 0px auto;
    height: 1px;
    background: linear-gradient(to right, #fff, #eba747, #fff);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.6;
}

.form-devider {
    margin: 60px auto;
}

.section-divider::before {
    content: '◈';
    position: absolute;
    color: #eba747;
    font-size: 24px;
    background: #fff;
    padding: 0 15px;
    font-family: serif;
    top: -15px;
}

.section-divider::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #eba747;
    position: absolute;
    top: -1px;
    border-radius: 50%;
    filter: blur(1px);
}

/* Why Book With Us Section */
.why-book-section {
    padding: 120px 0;
    background-color: #f9f7f2;
    overflow: hidden;
}

.why-book-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-book-image-area {
    position: relative;
}

.why-book-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0 300px 0 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.why-book-image-wrapper img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.why-book-content-area {
    padding-right: 50px;
}

.why-book-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #0e666a;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.why-book-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.exclusive-benefits {
    margin-bottom: 45px;
}

.exclusive-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #b08900;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 25px;
    font-weight: 800;
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 18px;
}

.check-icon {
    width: 28px;
    height: 28px;
    background-color: #b08900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(176, 137, 0, 0.3);
}

.benefit-text {
    font-size: 1.15rem;
    color: #222;
    font-weight: 700;
}

.why-enquire-btn {
    display: inline-block;
    padding: 20px 50px;
    background-color: #4c5b31;
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(76, 91, 49, 0.3);
}

.why-enquire-btn:hover {
    background-color: #3d4a27;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 91, 49, 0.4);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .why-book-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-book-image-wrapper {
        border-radius: 0 150px 0 0;
    }

    .why-book-image-wrapper img {
        height: 450px;
    }

    .why-book-content-area {
        padding-right: 0;
    }

    .why-book-title {
        font-size: 2.8rem;
    }
}

/* Rooms Section */
.rooms-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.rooms-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.rooms-header {
    text-align: center;
    margin-bottom: 70px;
}

.rooms-title {
    /* Inherits from .section-title */
}

.rooms-subtitle {
    font-size: 1.25rem;
    color: #666;
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.room-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: var(--transition-smooth);
    border: none;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-image {
    height: 380px;
    overflow: hidden;
    border-radius: 0 80px 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.room-details {
    padding: 35px;
    background: #ffffff;
    margin: -80px 25px 0 25px;
    /* Overlap effect from bottom */
    border-radius: 15px;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.room-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #444;
    margin-bottom: 10px;
}

.room-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

.amenities-header {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 8px;
    display: block;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 10px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    padding: 0;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background-color: transparent;
    box-shadow: none;
    transform: translateX(3px);
}

.amenity-icon {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #444444d6;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    line-height: 1.2;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .room-image {
        height: 300px;
    }

    .room-details {
        margin: -40px 15px 0 15px;
        /* Reduced overlap for mobile */
        padding: 25px;
    }

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

/* Gallery Section - Stacked Style */
.gallery-section {
    padding: 100px 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.gallery-title {
    /* Inherits from .section-title */
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.tab-btn {
    padding: 14px 35px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tab-btn.active {
    background: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
    box-shadow: 0 8px 25px rgba(14, 102, 106, 0.2);
}

.gallery-viewport {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.image-stack {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

.image-stack.active {
    display: flex;
}

.stack-card {
    position: absolute;
    width: 800px;
    height: 500px;
    background: white;
    padding: 0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: scale(0.9) translateY(40px);
    pointer-events: none;
    border-radius: 12px;
    overflow: hidden;
}

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

/* Gallery Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--primary-teal);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(14, 102, 106, 0.3);
}

.arrow-prev {
    left: -80px;
}

.arrow-next {
    right: -80px;
}

/* Initial "Stacked" Positions */
.stack-card:nth-child(1) {
    transform: rotate(-6deg) translate(-15px, -10px);
    z-index: 1;
    opacity: 0.4;
}

.stack-card:nth-child(2) {
    transform: rotate(4deg) translate(15px, 5px);
    z-index: 2;
    opacity: 0.7;
}

.stack-card:nth-child(3) {
    transform: rotate(-2deg);
    z-index: 3;
    opacity: 1;
}

/* Active (Front) Card */
.stack-card.active {
    opacity: 1;
    z-index: 10;
    transform: scale(1.05) rotate(0deg) translateY(0);
    pointer-events: auto;
}

/* Itinerary Section */
.itinerary-section {
    padding: 50px 0;
    background-color: #fff;
    /* Soft cream background */
    position: relative;
    overflow: hidden;
}

.itinerary-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.itinerary-header {
    text-align: center;
    margin-bottom: 100px;
}

.itinerary-title {
    /* Inherits from .section-title */
}

.timeline-vertical {
    position: absolute;
    left: 50%;
    top: 300px;
    bottom: 100px;
    width: 1px;
    background: #ddd;
    transform: translateX(-50%);
    z-index: 1;
}

.itinerary-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.itinerary-item {
    display: flex;
    align-items: center;
    position: relative;
    padding: 30px 0;
    /* Reduced vertical space */
    z-index: 2;
}

.day-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #eba747;
    border: 4px solid #fff;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 0 5px rgba(235, 167, 71, 0.1);
}

.itinerary-day-col {
    width: 30%;
    display: flex;
    flex-direction: column;
}

.itinerary-day-col h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    color: #333;
}

.itinerary-day-col span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #999;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.itinerary-content-col {
    width: 40%;
    padding: 0 60px;
}

.itinerary-content-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.itinerary-content-col p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

.itinerary-content-col ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.itinerary-content-col li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.itinerary-content-col li::before {
    content: "•";
    color: var(--primary-teal);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(235, 167, 71, 0.15);
    color: #eba747;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 10px;
    border: 1px solid rgba(235, 167, 71, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    vertical-align: middle;
}

.highlight-badge i {
    font-size: 0.7rem;
}

.itinerary-note {
    font-size: 0.85rem;
    font-style: italic;
    color: #999;
    margin-bottom: 15px;
    display: block;
    line-height: 1.4;
}

.itinerary-img-col {
    width: 30%;
    position: relative;
}

.img-counter {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 45px;
    height: 45px;
    background: #eba747;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(235, 167, 71, 0.4);
}

.itinerary-img-col img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 180px 180px 0 0;
    /* Arched look */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Zigzag logic */
.itinerary-item.reverse {
    flex-direction: row-reverse;
}

.itinerary-item.reverse .itinerary-day-col {
    text-align: left;
}

.itinerary-item:not(.reverse) .itinerary-day-col {
    text-align: right;
}

.itinerary-item.reverse .itinerary-content-col {
    text-align: left;
}

.itinerary-item:not(.reverse) .itinerary-content-col {
    text-align: left;
}

/* Mobile Responsive Gallery */
@media (max-width: 768px) {
    .inclusions {
        font-size: 12px;
    }

    .slider-dots {
        display: none !important;
    }

    .gallery-viewport {
        height: 400px;
    }

    .stack-card {
        width: 90%;
        height: 300px;
        padding: 10px;
    }

    .gallery-title {
        font-size: 2.5rem;
    }

    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }

    .gallery-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .arrow-prev {
        left: 10px;
    }

    .arrow-next {
        right: 10px;
    }

    /* Itinerary Mobile */
    .itinerary-item,
    .itinerary-item.reverse {
        flex-direction: column;
        text-align: center !important;
        padding: 40px 0;
    }

    .itinerary-day-col,
    .itinerary-content-col,
    .itinerary-img-col {
        width: 100%;
        padding: 15px 0;
    }

    .timeline-vertical,
    .day-marker {
        display: none;
    }

    .itinerary-day-col h3 {
        font-size: 3rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0 150px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
}

.testimonial-card-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 0;
}



.speech-bubble-main {
    position: relative;
    z-index: 5;
    background: #fff;
    border-radius: 40px;
    padding: 60px 40px 80px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
    border: 1px solid #f0f0f0;
}

.testimonial-card-wrapper:hover .speech-bubble-main {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.user-profile-circle {
    display: none;
}

.testimonial-header-box {
    position: absolute;
    top: -20px;
    left: 40px;
    background-color: #6d75e2;
    padding: 12px 30px;
    border-radius: 0 50px;
    color: white;
    z-index: 15;
}

.testimonial-header-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.testimonial-header-box p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    margin: 2px 0 0 0;
    opacity: 0.9;
}

.quote-mark {
    font-size: 4rem;
    color: #0c0c45;
    opacity: 1;
    line-height: 1;
}

.quote-mark.left {
    align-self: flex-start;
    margin-bottom: -20px;
    margin-left: -20px;
}

.quote-mark.right {
    align-self: flex-end;
    margin-top: -20px;
    margin-right: -20px;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    height: 80px;
    line-height: 1.6;
    color: #0c0c45;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    font-weight: 500;
}

.testimonial-text strong {
    font-weight: 800;
}

.google-reviews-badge {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0c0c45;
    padding: 12px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    z-index: 30;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.google-reviews-badge:hover {
    background-color: #1a1a5e;
}

.google-reviews-badge img {
    height: 25px;
}

.google-reviews-badge .reviews-label {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-top: -2px;
}

.google-reviews-badge .stars-row {
    display: flex;
    gap: 4px;
    color: #fecb00;
    font-size: 1rem;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#eee 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

@media (max-width: 992px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .speech-bubble-main {
        padding: 60px 25px;
    }

    .testimonial-header-box {
        left: 20px;
    }
}

/* Main Footer Styles */
.main-footer {
    background-color: rgba(14, 102, 106, 0.95);
    color: #ffffff;
    padding: 80px 0 40px 0;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.footer-brand img {
    height: 60px;
    width: auto;
    opacity: 0.9;
}

.footer-title-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-title-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
}

.title-line {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    max-width: 100px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--accent-highlight);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-highlight);
    transform: translateX(5px);
}

.footer-offices p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    letter-spacing: 2px;
    opacity: 0.6;
    margin: 0;
    text-transform: uppercase;
}

/* Mobile Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-title-box {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .title-line {
        display: none;
    }
}

/* Testimonials Header */
.testimonials-header-title {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.testimonials-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0c0c45;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.testimonials-header-title p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666;
}

.about-content-box .section-title {
    color: #fff;
}

@media (max-width: 991px) {

    /* Mobile Nav */
    .menu-toggle {
        display: block;
    }

    .logo img {
        height: 40px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(14, 102, 106, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease;
        border-radius: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .main-nav a {
        color: #fff;
        font-size: 1.2rem;
        padding: 10px 30px;
    }

    .main-nav a.active {
        background: var(--accent-highlight);
        color: #000 !important;
    }

    /* Enquiry Split Section Mobile */
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-grid-area {
        order: 2;
        /* Form first on mobile */
    }

    .mosaic-item {
        border-radius: 8px;
    }

    /* .item-large img {
        height: 350px;
    } */

    .item-small img {
        height: 200px;
    }

    .form-header h2.section-title {
        font-size: 1.4rem;
    }

    /* Itinerary Refinements */
    .itinerary-day-col h3 {
        font-size: 2.5rem;
    }

    .itinerary-content-col h4 {
        font-size: 1.1rem;
    }

    .itinerary-img-col img {
        height: 250px;
        border-radius: 120px 120px 0 0;
    }

    /* Testimonials Mobile */
    .testimonial-header-box {
        position: relative;
        top: 0;
        left: 0;
        border-radius: 20px 20px 0 20px;
        margin-bottom: 20px;
        display: inline-block;
    }

    .speech-bubble-main {
        padding: 40px 20px;
        border-radius: 30px;
    }

    /* About Section Mobile */
    .about-section {
        padding: 60px 0;
    }

    .about-content-box {
        margin-right: 0;
        padding: 40px 25px;
    }

    .about-image-wrapper img {
        height: 350px;
    }

    .accent-bar {
        width: 150px;
        left: 20px;
    }

    /* Why Book Mobile */
    .why-book-section {
        padding: 60px 0;
    }

    .why-book-title {
        font-size: 2.2rem;
    }

    .benefit-text {
        font-size: 1rem;
    }

    /* Rooms Section Mobile */
    .rooms-section {
        padding: 60px 0;
    }

    .rooms-header {
        margin-bottom: 40px;
    }

    .room-image {
        height: 250px;
    }

    .room-details {
        margin: -30px 10px 0 10px;
        padding: 20px;
    }

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

@media (max-width: 480px) {
    .script-text {
        font-size: 2.2rem;
    }

    .price-box .amount {
        font-size: 1.6rem;
    }

    .dot {
        width: 40px;
        height: 40px;
    }

    .dot.active {
        width: 45px;
        height: 45px;
    }
}

/* Custom CSS for Form Submission, Validation and Spinner */
.form-group.has-error input,
.form-group.has-error select {
    border-color: #e57373 !important;
    background-color: #ffebee !important;
}

.error-message {
    color: #d32f2f;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
    font-weight: 700;
}

.form-group.has-error .error-message {
    display: block;
}

.form-error-banner {
    display: none;
    background-color: #ffebee;
    border-left: 4px solid #ef5350;
    color: #c62828;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
}

.submit-btn.is-loading {
    pointer-events: none;
    opacity: 0.8;
    background-color: var(--dark-teal) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

.submit-btn.is-loading .spinner {
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.anniversary-group {
    transition: opacity 0.3s ease, height 0.3s ease, margin 0.3s ease;
}

.anniversary-group.is-hidden {
    opacity: 0;
    height: 0;
    margin: 0 !important;
    padding: 0;
    pointer-events: none;
    overflow: hidden;
}

/* ==========================================================================
   Form Validation & International Telephone Input (intl-tel-input) Integration
   ========================================================================== */
.is-invalid {
    border-color: #dc3545 !important;
    background-color: #fff8f8 !important;
}

.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25) !important;
}

.is-valid {
    border-color: #198754 !important;
    background-color: #f8fff9 !important;
}

.is-valid:focus {
    box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.25) !important;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 4px;
    display: block;
    text-transform: none;
    letter-spacing: normal;
    text-align: left;
}

.iti {
    width: 100%;
    display: block;
}

.iti__flag-container {
    z-index: 5;
}

.iti__selected-flag {
    background-color: #fafafa;
    border-right: 1px solid #eee;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    padding: 0 10px 0 12px;
}

.iti__country-list {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 100;
    max-width: 320px;
    font-size: 0.85rem;
    color: #333;
}

.iti input[type="tel"] {
    padding-left: 90px !important;
}

/* ==========================================================================
   Gallery Lightbox Carousel Overlay Styles (Premium Glassmorphism Look)
   ========================================================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(6, 20, 24, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-overlay.active {
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 3.5rem;
    cursor: pointer;
    z-index: 100001;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent-highlight, #00ffcc);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--accent-highlight, #00ffcc);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 45px;
}

.lightbox-next {
    right: 45px;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    user-select: none;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 72vh;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    object-fit: contain;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    margin-top: 25px;
    text-align: center;
    letter-spacing: 1.2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    font-weight: 500;
    text-transform: uppercase;
}

/* Responsiveness adjustments for Lightbox */
@media (max-width: 768px) {
    .lightbox-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-close {
        top: 25px;
        right: 30px;
        font-size: 3rem;
    }

    .lightbox-content {
        max-width: 90%;
    }

    .lightbox-content img {
        max-height: 60vh;
    }

    .lightbox-caption {
        font-size: 0.95rem;
        margin-top: 18px;
    }
}

input#setMobile1::placeholder {
    color: transparent;
}

.submit-btn:disabled {
    background-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    pointer-events: none;
}