html {
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}

:root {
    --primary-color: #004d40;
    --accent-color: #d4af37;
    --bg-dark: #0a0a0a;
    --text-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #e0e0e0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --brand-forest: #004d40;
    --glass-bg: transparent;
    --glass-border: rgba(255, 255, 255, 0.2);
    --divider-color: rgba(0, 77, 64, 0.25);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.section-divider::before,
.section-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--divider-color), transparent);
}

.divider-ornament {
    margin: 0 2.5rem;
    font-size: 1.5rem;
    color: #126353;
    opacity: 0.7;
    position: relative;
    display: flex;
    align-items: center;
}

.divider-ornament::before {
    content: "✦";
    font-size: 1.2rem;
}

.divider-ornament::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 768px) {
    /* .section-divider {
        padding: 3rem 0;
    } */

    .checkbox-container {
        gap: 0.3rem !important;
        font-size: 12px !important;
    }

    .divider-ornament {
        margin: 0 1.5rem;
    }
}

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

body {
    font-family: var(--font-body);
    background-color: #fff;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: clip;
    max-width: 100%;
    /* Clip is safer for sticky than hidden */
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}


/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
    /* background-color: var(--primary-color); */
    /* Updated to brand color */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-radius: 0 0 100px 100px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: none;
    transition: transform 0.3s ease;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.desktop-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #fff;
    /* text-decoration: underline; */
    /* margin-bottom: 5px; */
    border-bottom: 2px solid #d4af37;
}

.desktop-only {
    display: block;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #051915;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-content {
    text-align: center;
    width: 100%;
    padding: 2rem;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
}

.mobile-logo {
    margin-bottom: 3rem;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 1.5rem;
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.mobile-cta-btn {
    display: inline-block;
    margin-top: 1rem;
    background-color: #fff;
    color: #051915 !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem !important;
}

@media (max-width: 992px) {

    .desktop-nav,
    .desktop-only {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .th-mobile-menu .mobile-menu-nav > li.menu-item-has-children > a.mobile-menu-toggle {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: auto;
        gap: 1rem;
    }

    .main-header {
        border-radius: 0 0 40px 40px;
    }
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #126353;
    /* Updated to brand color */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background-color: #0d4d40;
    /* Darker shade for hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.section-cta {
    text-align: center;
    margin-top: 3.5rem;
    animation: fadeInUp 0.8s ease-out;
}

/* Hero Section */
.hero {
    position: relative;
    /* height: 100vh; */
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2rem;
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 5em 0 1em 0;
}

/* Hero Left - Elegant Typography */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

.location-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    position: relative;
}

.location-badge-top::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.location-badge-top:hover::after {
    width: 100%;
}

.location-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.9);
}

.hero-title-elegant {
    font-family: 'Playfair Display', serif;
    /* margin-bottom: 1rem; */
    line-height: 1.1;
}

.hero-title-elegant .solid-text {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 4px 18px rgba(0, 0, 0, 0.9);
}

.hero-title-elegant .outline-text {
    color: #ffffff;
    font-size: 6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: block;
    margin-top: -5px;
    text-shadow: 2px 8px 25px rgba(0, 0, 0, 0.95);
}

.pricing-elegant {
    /* margin-top: 0.5rem; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.star-circle {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}

.worth-text {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}

.strike-price {
    position: relative;
    font-weight: 600;
}

.strike-price::after {
    content: '';
    position: absolute;
    left: -5%;
    top: 50%;
    width: 110%;
    height: 3px;
    background-color: #e74c3c;
    transform: rotate(-8deg);
}

.arrow {
    color: #fff;
    font-size: 1.5rem;
}

.main-price-text {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 4px 18px rgba(0, 0, 0, 0.9);
}

.taxes-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: -2px;
    margin-bottom: 8px;
}

.divider-line {
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
    margin: 5px 0 15px 0;
}



.features-elegant {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.features-elegant span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    cursor: default;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.95);
}

.features-elegant span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 20px;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.features-elegant span:hover::after {
    width: 100%;
}

.check-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 800;
    text-shadow: 0 0 8px rgba(224, 169, 42, 0.6);
}

/* Hero Right - Scrapbook */
.hero-right {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-mobile-footer {
    display: none;
}

.scrapbook-container {
    position: relative;
    width: 400px;
    height: 500px;
}

.mobile-slider-container {
    display: none;
}

.polaroid-frame {
    background-color: #fffef0;
    padding: 15px 15px 70px 15px;
    box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.3);
    transform: rotate(3deg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 5;
    position: relative;
}

.polaroid-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.polaroid-image {
    width: 100%;
    height: 330px;
    overflow: hidden;
    background-color: #eee;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.polaroid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.1) contrast(1.05);
    transition: opacity 0.5s ease;
}

.polaroid-caption.thumbnail-nav {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.slider-offers-caption {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
    flex: 1;
}

.slider-offers-caption .badge {
    font-size: 0.85rem;
    color: #5d4a3a;
    font-weight: 700;
    font-family: var(--font-body);
    background: transparent;
    padding: 2px 4px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
}

.slider-offers-caption .badge::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 4px;
    width: 20px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.slider-offers-caption .badge:hover::after {
    width: calc(100% - 8px);
}

.nav-arrows {
    display: flex;
    gap: 0.5rem;
}

.thumb-arrow {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thumb-arrow:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.thumb-arrow .chevron {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Scrap Elements */
.scrap-element {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.torn-paper {
    position: absolute;
    width: 200px;
    height: 150px;
    background-color: #f1ebd7;
    top: -50px;
    left: -60px;
    z-index: 1;
    clip-path: polygon(5% 5%, 95% 0, 100% 40%, 80% 95%, 15% 100%, 0 50%);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.paper-piece {
    position: absolute;
    width: 120px;
    height: 100px;
    background-color: #fff;
    bottom: 10px;
    right: -50px;
    z-index: 1;
    transform: rotate(12deg);
    clip-path: polygon(0 15%, 100% 0, 95% 100%, 5% 85%);
    opacity: 0.9;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }

    .hero-title-elegant .solid-text {
        font-size: 2.8rem;
    }

    .hero-title-elegant .outline-text {
        font-size: 5.5rem;
    }

    .scrapbook-container {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .enquiry-media-container {
        /* display: none !important; */
    }

    .hero-right {
        justify-content: center;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 80px 0 0 0;
        display: block;
        overflow: hidden;
    }

    /* .hero-bg {
        height: 650px;
    } */

    .hero-bg .overlay {
        background: linear-gradient(to top, #0000008c, transparent);
        display: block;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0rem;
        padding-bottom: 0;
    }

    .hero-left {
        align-items: center;
        text-align: center;
    }

    .pricing-elegant {
        align-items: center;
    }

    .price-row {
        flex-direction: column;
        gap: 0.5rem;
        line-height: 1;
    }

    .divider-line {
        margin: 10px auto 25px auto;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    }

    .details-elegant {
        flex-direction: column;
        gap: 1rem;
    }

    .features-elegant {
        display: none;
    }

    .hero-mobile-footer {
        display: block;
        background-color: #126353;
        /* Updated to brand color */
        padding: 1.2rem 0;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        position: relative;
        z-index: 20;
    }

    .mobile-banner-details-v3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .mb-top-row {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        width: 100%;
        padding: 0 1rem;
    }

    .mb-item-v3 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .mb-content {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 0.4rem;
    }

    .mb-icon {
        font-size: 1rem;
    }

    .mb-text {
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 0.8rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mb-line {
        width: 25px;
        height: 3px;
        background-color: var(--accent-color);
        border-radius: 2px;
    }

    .mb-divider {
        width: 100%;
        max-width: 300px;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.2);
        margin: 0.2rem 0;
    }

    .features-elegant-mobile-v3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }

    .features-elegant-mobile-v3 span {
        color: #fff;
        font-size: 0.75rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 0.3rem;
        text-transform: uppercase;
    }

    .hero-right {
        margin-top: 2rem;
        width: 100%;
    }

    .scrapbook-container.desktop-slider {
        display: none;
    }

    .mobile-slider-container {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 2em 2rem 3rem 2rem;
        background-color: #ffffff;
    }

    .scrapbook-container.mobile-slider {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
    }

    .polaroid-frame {
        padding-bottom: 50px;
    }

    .polaroid-image {
        height: 280px;
    }

    .handwritten {
        font-size: 2.2rem;
    }

    .desktop-nav {
        display: none;
    }

    .main-header .container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 1.5rem;
    }

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

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero-title-elegant .solid-text {
        font-size: 1.8rem;
    }

    .hero-title-elegant .outline-text {
        font-size: 3rem;
        -webkit-text-stroke: 1px #ffffff;
    }

    .location-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .worth-text {
        font-size: 0.9rem;
    }

    .main-price-text {
        font-size: 2.2rem;
    }

    .taxes-text {
        font-size: 0.75rem;
    }

    .enquiry-section {
        padding: 0 !important;

    }
}

/* Enquiry Section */
.enquiry-section {
    padding: 5rem 0;
    background-color: #fff;
    /* Light greenish background */
    color: #333;
}

.enquiry-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* overflow: hidden; */
    justify-content: space-around;
    align-items: center;
    /* max-width: 1100px; */
    margin: 0 auto;
}

/* Horizontal Progress */
.horizontal-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1.5rem 0 2rem 0;
    max-width: 400px;
}

.h-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.h-step-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #d1e8e2;
    color: #7b9992;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 0.7rem;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px #d1e8e2;
}

.h-step.active .h-step-icon,
.h-step.completed .h-step-icon {
    background-color: #389e8a;
    color: #ffffff;
    box-shadow: 0 0 0 1px #389e8a;
}

.h-step-text {
    font-weight: 600;
    color: #88a39e;
    font-size: 0.8rem;
}

.h-step.active .h-step-text,
.h-step.completed .h-step-text {
    color: #1a1a1a;
}

.h-line {
    flex: 1;
    height: 2px;
    background-color: #d1e8e2;
    margin: 0 0.5rem;
}

/* Left Form Area */
.enquiry-form-container {
    width: 40%;
    padding: 2.5rem 3rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.02);
    border-left: 1px solid #f1f5f9;
}

/* Left Media Area */
.enquiry-media-container {
    width: 60%;
    background: linear-gradient(135deg, #fffcf0 0%, #fff9e6 100%);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.design-wrapper {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.design-text-top {
    margin-bottom: 1rem;
    z-index: 10;
}

.script-text {
    font-family: 'Bunga Zivilia', cursive !important;
    font-size: 3rem;
    color: #333;
    line-height: 1.1;
    display: block;
    font-weight: 400;
}

.main-design-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 0.8;
    margin: -0.5rem 0 0.5rem;
    text-transform: capitalize;
}

.sub-design-text {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    letter-spacing: 1px;
}

.design-visual-area {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 1rem;
}

.bg-rect {
    position: absolute;
    width: 260px;
    height: 380px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    top: 20px;
    border-top: 5px solid #d4af37;
}

.left-rect {
    left: 0;
    background-color: #a0d8ef;
    border-left: 3px solid #d4af37;
}

.right-rect {
    right: 0;
    background-color: #f7d794;
    border-right: 3px solid #d4af37;
}

.bg-rect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.location-tag {
    position: absolute;
    bottom: 20px;
    background: #fff;
    color: #000;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-left {
    left: 20px;
}

.tag-right {
    right: 20px;
}

.foreground-couple {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    z-index: 5;
}

.foreground-couple img {
    width: 75%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #d9534f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(217, 83, 79, 0.4);
    transition: transform 0.3s;
}

.play-button-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    color: #ffffff;
    font-size: 1.5rem;
    margin-left: 4px;
}

.badge-enquiry {
    display: inline-block;
    background-color: #eeeeeed6;
    color: #d4af37;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.form-main-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #0b1a30;
    margin-bottom: 0.1rem;
}

.form-subtitle {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

/* Form Fields */
.enquiry-form .form-row {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group.full-width {
    flex: 100%;
}

.form-group label {
    font-size: 0.6rem;
    font-weight: 700;
    color: #3a4b60;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.1rem;
}

.form-group input,
.form-group select {
    padding: 0.4rem 0.5rem;
    border: 1px solid #d1d9e2;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #333;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
    background-color: #fcfcfc;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #389e8a;
    background-color: #ffffff;
}

/* Phone Input Special */
.phone-input-wrapper {
    display: flex;
    border: 1px solid #d1d9e2;
    border-radius: 8px;
    /* overflow: hidden; */
    background-color: #fcfcfc;
}

.phone-input-wrapper:focus-within {
    border-color: #389e8a;
    background-color: #ffffff;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 1rem;
    background-color: #f4f7f6;
    border-right: 1px solid #d1d9e2;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.country-code .dropdown-arrow {
    font-size: 0.6rem;
    color: #666;
}

.phone-input-wrapper input {
    flex: 1;
    border: none;
    border-radius: 0;
    background: transparent;
}

/* Checkboxes */
.checkbox-group {
    margin: 0.8rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

.checkbox-container input {
    margin-top: 0.2rem;
    width: 16px;
    height: 16px;
    accent-color: #126353;
}

/* Submit Button */
.form-submit {
    margin-top: 0.5rem;
}

.btn-submit {
    background-color: #d4af37;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #d4af37;
    transform: translateY(-3px);
}

.send-icon {
    font-size: 1rem;
}

/* Comprehensive Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .hero-left {
        align-items: center;
        text-align: left;
        margin-top: -5rem;
    }

    .hero-title-elegant .solid-text {
        font-size: 1.8rem;
    }

    .hero-title-elegant .outline-text {
        font-size: 4rem;
    }

    .main-price-text {
        font-size: 2.5rem;
    }

    .pricing-elegant {
        align-items: center;
    }

    .features-elegant {
        justify-content: center;
        gap: 1rem;
    }

    .hero-right {
        justify-content: center;
    }

    .scrapbook-container {
        width: 340px;
        height: 420px;
        margin: 0 auto;
    }

    .polaroid-image {
        height: 280px;
    }

    .enquiry-card {
        flex-direction: column-reverse;
    }

    .enquiry-form-container,
    .enquiry-media-container {
        width: 100%;
        padding: 2.5rem 1.5rem;
    }

    .media-grid {
        height: auto;
        padding: 3rem 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .adventure-text {
        font-size: 2.5rem;
    }

    .world-text {
        font-size: 3.5rem;
    }

    .side-pill {
        height: 200px;
        width: 90px;
    }

    .center-pill {
        height: 280px;
        width: 110px;
    }
}

/* Mobile Hero Banner Slider */
.mobile-hero-slider {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.m-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.5s ease-out;
    transform: scale(1.15);
}

.m-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.m-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 63% center;
}

.m-slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    /* Reduced height to keep top clear */
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.4) 60%,
            transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.m-slider-nav {
    position: absolute;
    bottom: 30px;
    right: 20px;
    z-index: 300;
    /* Highest priority */
    display: none;
    gap: 15px;
    pointer-events: auto;
}

.m-nav-btn {
    background: rgba(255, 255, 255, 0.35);
    /* Increased contrast */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
    /* Slightly larger icon */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    touch-action: manipulation;
    position: relative;
    z-index: 500 !important;
    /* Force to top within container */
}

.m-nav-btn:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .mobile-hero-slider {
        display: block;
    }

    .hero-bg {
        z-index: 0 !important;
    }

    .hero-content {
        padding-top: 100px;
        /* Moved content down */
        pointer-events: none;
        /* Let clicks pass through to banner arrows */
        z-index: 10 !important;
    }

    .hero-left,
    .hero-right {
        pointer-events: none;
        /* Allow clicks to pass through to slider arrows */
        z-index: 10 !important;
    }

    /* Re-enable pointer events for interactive elements only */
    .pricing-elegant,
    .features-elegant,
    .hero-cta,
    .btn,
    .scrapbook-container {
        pointer-events: auto;
    }

    .m-slider-nav {
        display: flex;
    }

    .m-top-badge {
        display: flex;
        position: absolute;
        top: 25px;
        right: 15px;
        background: #ffffff;
        padding: 6px 18px 6px 6px;
        border-radius: 50px;
        align-items: center;
        gap: 10px;
        z-index: 100;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        animation: fadeInRight 0.8s ease-out;
    }

    .m-badge-circle {
        width: 34px;
        height: 34px;
        background: #126353;
        /* Deep brand green */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e0a92a;
        /* Accent gold */
        font-size: 1rem;
    }

    .m-badge-label {
        color: #1a1a1a;
        font-weight: 800;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-family: var(--font-body);
    }

    .m-bottom-location {
        display: flex;
        position: absolute;
        bottom: 30px;
        left: 20px;
        color: #ffffff;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        align-items: center;
        gap: 8px;
        text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);
        font-family: var(--font-body);
        z-index: 1000 !important;
        pointer-events: auto !important;
    }

    .m-bottom-location i {
        color: var(--accent-color);
        font-size: 0.9rem;
    }

    .location-badge-top {
        display: none !important;
    }

    .m-slider-nav {
        z-index: 1000 !important;
        /* Absolute highest to stay above hero-content */
        pointer-events: auto !important;
    }

    .m-nav-btn {
        pointer-events: auto !important;
        z-index: 1001 !important;
    }

    /* .about-title {
        font-size: 1.8rem !important;
    } */

    .hero-title-elegant .outline-text {
        font-size: 3.2rem;
    }

    .main-price-text {
        font-size: 2.2rem;
    }

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

    .inclusion-card-elite {
        padding: 1.0rem !important;
    }

    .inclusion-icon-wrapper {
        margin: 0 auto 0.5rem !important;
    }
}

@media (max-width: 600px) {
    .hero-title-elegant .solid-text {
        font-size: 1.5rem;
    }

    .hero-title-elegant .outline-text {
        font-size: 2.8rem;
    }

    .enquiry-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .horizontal-progress {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .h-line {
        display: none;
    }

    .side-pill {
        height: 160px;
        width: 70px;
    }

    .center-pill {
        height: 220px;
        width: 90px;
    }

    .adventure-text {
        font-size: 2rem;
    }

    .world-text {
        font-size: 2.8rem;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #051915;
    /* Deep brand green */
    padding: 80px 0 40px;
    color: #ffffff;
    font-family: var(--font-body);
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 5px;
}

.logo-tagline {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 5px;
    color: #ffffff;
    margin-top: 0;
    text-transform: uppercase;
    opacity: 0.9;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

.footer-title::after {
    content: "";
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-left: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-links a::before {
    content: ">";
    color: var(--accent-color);
    font-weight: 800;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.office-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.office-list {
    font-size: 0.95rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

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

.copyright {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 992px) {
    .main-footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: left;
    }

    /* .footer-logo {
        align-items: center;
    } */

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

    .footer-title::after {
        display: none;
    }

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

/* Dream Destinations Design Responsive */
@media (max-width: 1200px) {
    .main-design-title {
        font-size: 3.2rem;
    }

    .sub-design-text {
        font-size: 1.4rem;
    }

    .bg-rect {
        width: 200px;
        height: 300px;
    }

    .foreground-couple {
        width: 380px;
    }

    .design-visual-area {
        height: 380px;
    }
}

@media (max-width: 992px) {
    .enquiry-media-container {
        padding: 4rem 1rem;
    }

    .design-visual-area {
        height: 400px;
        max-width: 450px;
        margin: 0 auto;
    }

    .bg-rect {
        width: 180px;
        height: 280px;
    }

    .foreground-couple {
        width: 340px;
    }

    .about-title-main {
        font-size: 1.5rem !important;
    }

    .about-subtitle-main {
        font-size: 0.6rem !important;
    }

    .section-desc {
        font-size: 0.8rem !important;
    }
}

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

    .main-design-title {
        font-size: 3.2rem;
    }

    .sub-design-text {
        font-size: 0.8rem;
    }

    .bg-rect {
        width: 140px;
        height: 220px;
        border-radius: 20px;
    }

    .location-tag {
        font-size: 0.65rem;
        padding: 4px 8px;
        bottom: 12px;
    }

    .tag-left {
        left: -5px;
    }

    .tag-right {
        right: -5px;
    }

    .foreground-couple {
        width: 280px;
    }

    .design-visual-area {
        height: 300px;
    }
}

.th-header {
    background: rgba(0, 0, 0, 0.7) !important;
    padding: 1.4rem 0 !important;
}