:root {
    /* Muted premium green instead of high-vibrant green */
    --primary-green: #CC9201;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-white: #ffffff;
}


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

/* Smooth scrolling (fallback-friendly) */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Hero Section */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: none;
    color: var(--text-white);
    overflow: hidden;
}

/* Hero slider (background) */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 900ms ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    will-change: transform;
}

.hero-slide.is-active img {
    animation: heroZoomIn 7.5s ease-in-out both;
}

@keyframes heroZoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.085);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide.is-active img {
        animation: none;
        transform: scale(1);
    }
}

.hero-slider-controls {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    pointer-events: none;
}

.hero-slider-btn,
.hero-slider-dots {
    pointer-events: auto;
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hero-slider-prev {
    left: 18px;
}

.hero-slider-next {
    right: 18px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    transform: translateY(calc(-50% - 2px));
}

.hero-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(10, 10, 10, 0.35);
    color: #fff;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
    backdrop-filter: blur(10px);
}

.hero-slider-btn:hover {

    background: rgba(10, 10, 10, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-slider-dots {
    display: inline-flex;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(10, 10, 10, 0.25);
    backdrop-filter: blur(10px);
    display: none;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #CC9201;
}

@media (max-width: 768px) {
    .hero-slider-prev {
        left: 10px;
    }

    .hero-slider-next {
        right: 10px;
    }
}

.phone,
.email {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Strategic gradient: clear in the middle, soft at edges */
    /* background: radial-gradient(circle, rgba(6, 4, 4, 0.289) 0%, rgba(0, 0, 0, 0.574) 100%); */
    background-color: #221c13b6;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1400px;
}

/* Banner Title Section */
.banner-title-section {
    position: relative;
    padding-top: 180px;
    height: 450px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('assets/img/apartment-Plot-150.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-white);
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    animation: fadeInDown 0.8s ease-out;
}

.banner-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--primary-green);
}

.banner-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.banner-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.banner-breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.banner-breadcrumb a:hover {
    color: rgba(204, 146, 1, 0.8);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.current-page {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

/* RERA Details Section */
.rera-details-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, rgba(250, 250, 250, 0.03), rgba(0, 0, 0, 0.02));
    color: #111;
}

.blacktext {
    color: #000 !important;
}

.rera-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.rera-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rera-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

.rera-info {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.95);
}

.rera-text {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.rera-text strong {
    color: rgba(255, 255, 255, 0.95);
    /* width: 140px; */
    display: inline-block;
}

.rera-docs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-green);
    color: #0b0b0b;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(204, 146, 1, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.download-btn i {
    color: rgba(0, 0, 0, 0.6);
}

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(204, 146, 1, 0.18);
}

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

    .rera-container {
        padding: 22px;
    }

    .banner-title-section {
        padding-top: 120px;
        height: 360px;
    }

    .banner-title {
        font-size: 40px;
        font-weight: 500;
    }
}

.rera-list {
    margin: 8px 0 12px 18px;
    color: rgba(255, 255, 255, 0.9);
}

.rera-disclaimer {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

/* THE LUXURY SPACING FIX */
.main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 80px;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
    /* Add text shadow for "latter shadows" effect */
    text-shadow:
        2px 2px 3px rgba(33, 27, 10, 0.18),
        0 4px 14px rgba(44, 44, 44, 0.15),
        1px 1px 0px #17150e8d;
}

.main-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sub-headline {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300 !important;
    letter-spacing: 2px;
    margin-bottom: 45px;
    opacity: 0.95;
}

/* BUTTON REFINEMENT */
.glow-button {
    display: inline-block;
    background-color: #921302;
    /* TEMP: force visible color */
    color: white;
    text-decoration: none;
    padding: 15px 45px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;

    /* FORCE glow visibility */
    box-shadow: 0 0 20px #CC9201(0, 168, 120, 0.3);

    /* Animation */
    animation: glowPulse 2s infinite;
}

.custom-bg {
    background-color: #cc920009 !important;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(168, 160, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(162, 168, 0, 0.6);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 241, 45, 0.514);
    }
}

.glow-button:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(212, 200, 35, 0.6);
    border-radius: 5px !important;
}



/* SCROLL INDICATOR REFINEMENT */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    z-index: 2;
}

.mouse {
    width: 24px;
    /* Slimmer for elegance */
    height: 38px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: absolute;

}

.mouse::before {
    content: '';
    width: 2px;
    height: 5px;
    background: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    border-radius: 2px;
    animation: scrollMove 2.3s infinite ease-in-out;
}

/* ================= TITLE LETTER REVEAL ================= */

.reveal-title {
    display: inline-flex;
    justify-content: center;
    gap: 4px;
    opacity: 1;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
}

.reveal-title span {
    display: inline-block;
    opacity: 0;
    transform: scale(0.6);
    animation: letterReveal 0.9s ease forwards;
}

@keyframes letterReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide animations - unified approach */
/* INITIAL STATE */
.slide-up,
.slide-left,
.slide-right {
    opacity: 0;
    will-change: transform, opacity;
}

/* DIRECTION OFFSETS */
.slide-up {
    transform: translateY(36px);
}

.slide-left {
    transform: translateX(-36px);
}

.slide-right {
    transform: translateX(36px);
}

/* ACTIVE STATE */
.slide-up.animate,
.slide-left.animate,
.slide-right.animate {
    opacity: 1;
    transform: translate(0, 0);

    transition:
        transform 1.15s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.85s ease;

    transition-delay: 0.12s;
}

/* =============================================
   TRANSPARENT HEADER
============================================= */
.club-icon2 {
    height: 20px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(16, 33, 49, 0.92);
    /* darker when scrolled */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Top Bar */
.top-bar {
    /* background: linear-gradient(90deg, #8B0000, #B8860B); maroon to gold */
    background: radial-gradient(circle, rgba(230, 200, 76, 1) 0%, rgba(197, 159, 34, 1) 58%, rgba(204, 146, 0, 1) 95%);
    color: rgb(41, 17, 17);
    font-size: 13px;
    padding: 8px 0;
}

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

.social-icons a {
    color: white;
    margin: 0 12px;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.contact-info span {
    margin-left: 24px;
}

.contact-info i {
    margin-right: 8px;
}

/* Main Navigation Bar */
.main-nav-bar {
    background: rgba(6, 10, 15, 0.736);
    /* semi-transparent navy */
    backdrop-filter: blur(8px);
    color: white;
    padding: 10px 0;
}

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

.logo .crown-logo {
    height: 75px;
    /* adjust according to your actual logo */
    width: auto;
}

/* Navigation Links */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 20px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: 0.3s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #CC9201;
    /* your brand green */
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #CC9201;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* CTA Button */
.schedule-btn {
    background: #FFFFFF;
    /* red from your screenshot */
    color: #5C0000;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.3);
}

.thm-btn:hover::before {
    transform: scaleY(1) rotateX(0deg);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.thm-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #d4af37;
    content: "";
    transform: scaleY(0) rotateX(0deg);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: -1;
}

.thm-btn.main-menu__btn:hover::before {
    transform: scaleY(1) rotateX(0deg);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.thm-btn.main-menu__btn::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #d4af37;
    content: "";
    transform: scaleY(0) rotateX(0deg);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: -1;
    border-radius: 5px !important;
}

.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    background-color: #921302;
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 30px;
    transition: all 0.5s linear;
    z-index: 1;
    border-radius: 5px;
    text-decoration: none;
}

.quicklink a {
    font-size: 15px;
}

.quicklink-flex {
    display: flex;
    gap: 60px;
    ;
    text-align: center;
    align-items: start;
}

@media (mini-width:481px) and (max-width:768px) {
    .quicklink-flex {
        gap: 10px;
        ;
        text-align: center;
        align-items: center;
    }
}

/* =============================================
   Make hero content aware of fixed header
============================================= */

.hero {
    padding-top: 140px;
    /* ← important – prevents content being hidden under header */
    min-height: calc(120vh - 140px);
    box-sizing: border-box;
}

/* Mobile adjustments */
@media (max-width: 992px) {

    .top-bar-container,
    .nav-container {
        flex-direction: column;
        gap: 12px;
        padding: 12px 20px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }

    .schedule-btn {
        margin-top: 12px;
    }

    .hero {
        padding-top: 180px;
        /* more space for stacked header */
    }
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 35px 0 45px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.highlight-badge:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(168, 151, 0, 0.4);
    /* subtle green hint */
}

.highlight-badge .icon {
    font-size: 22px;
    line-height: 1;
}

/* Second Section */
:root {
    --brand-emerald: #7b1e1e;
    --navy-deep: #16263B;
    --slate-gray: #64748B;
    --soft-border: #EAEFF3;
}

/* SECTION */
.legacy-heritage {
    background: #ffffff;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
}

/* MAIN GRID */
.legacy-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 120px;
    align-items: center;
}

/* LEFT CONTENT */
.legacy-eyebrow {
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--brand-emerald);
    font-weight: 600;
    margin-bottom: 18px;
    display: block;
}

.legacy-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--navy-deep);
    letter-spacing: -0.01em;
}

.legacy-divider {
    width: 48px;
    height: 1px;
    background: var(--brand-emerald);
    margin: 32px 0 40px;
}

.legacy-paragraph {
    font-size: 14px;
    line-height: 1.9;
    color: var(--slate-gray);
    max-width: 560px;
}

.legacy-manifesto {
    font-size: 14px;
    letter-spacing: 0.4em;
    color: var(--brand-emerald);
    font-weight: 600;
    margin-top: 28px;
    letter-spacing: 0.02em;
}

/* RIGHT VISUAL AREA */
/* RIGHT VISUAL AREA */
.legacy-visual {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

/* About Us slider (replaces image stack) */
.about-slider {
    position: relative;
    width: 560px;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(22, 38, 59, 0.16);
    background: #000;
}

.about-slides,
.about-slide {
    position: absolute;
    inset: 0;
}

.about-slide {
    opacity: 0;
    transition: opacity 700ms ease;
}

.about-slide.is-active {
    opacity: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transform: scale(1);
}

/* subtle zoom for about slides */
.about-slide.is-active img {
    animation: aboutZoomIn 7s ease-in-out both;
}

@keyframes aboutZoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.07);
    }
}

.about-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(10, 10, 10, 0.35);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease;
    backdrop-filter: blur(10px);
    appearance: none;
    z-index: 2;
}

.about-slider-btn:hover {
    transform: translateY(calc(-50% - 2px));
    background: rgba(10, 10, 10, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.about-prev {
    left: 14px;
}

.about-next {
    right: 14px;
}

.about-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(10, 10, 10, 0.25);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.about-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.about-dot.is-active {
    background: #CC9201;
}

@media (prefers-reduced-motion: reduce) {
    .about-slide.is-active img {
        animation: none;
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .about-slider {
        width: 480px;
        height: 360px;
    }
}

@media (max-width: 992px) {
    .legacy-visual {
        justify-content: center;
    }

    .about-slider {
        width: 100%;
        max-width: 520px;
        height: 360px;
    }
}

@media (max-width: 768px) {
    .about-slider {
        height: 300px;
        border-radius: 20px;
    }

    .about-slider-btn {
        width: 40px;
        height: 40px;
    }
}

/* IMAGE STACK CONTAINER */
.legacy-image-stack {
    position: relative;
    width: 560px;
    height: 420px;
}

/* MAIN IMAGE – HERO */
.image-large {
    position: absolute;
    top: 60px;
    left: 0;
    width: 420px;
    height: 300px;

    background: #ffffff;
    padding: 18px;

    border-radius: 28px 28px 40px 28px;
    /* asymmetry */
    box-shadow: 0 40px 90px rgba(22, 38, 59, 0.16);

    z-index: 2;
}

.image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px 22px 32px 22px;
}

/* SUPPORTING IMAGES – PILLS */
.image-small {
    position: absolute;
    width: 200px;
    height: 130px;

    background: #ffffff;
    padding: 5px;

    border-radius: 999px;
    /* pill shape */
    box-shadow: 0 25px 60px rgba(22, 38, 59, 0.14);
}

.image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
}

/* POSITIONING */
.image-top {
    top: 0;
    right: 0;
    z-index: 3;
}

.image-bottom {
    bottom: 0;
    right: 60px;
    z-index: 10;
}


/* STATS ROW */
.legacy-stats {
    max-width: 1150px;
    margin: 90px auto 0;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.legacy-stat-card {
    background: #ffffff;
    border: 1px solid var(--soft-border);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    transform: translateY(-10px);

}

.legacy-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(22, 38, 59, 0.12);
    border-color: rgba(197, 173, 17, 0.614);
    /* emerald hint */
    background-color: #CAE4DD;
}

.legacy-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--brand-emerald);
}

.legacy-stat-label {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: var(--slate-gray);
    letter-spacing: 0.04em;
}


/* Third Section*/

.amenities-section {
    background-color: #F9F9FA !important;
    font-family: 'Inter', sans-serif;
}

.amenities-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;

}

/* Centered Header */
.amenities-header {
    text-align: center;
    margin-bottom: 60px;
}

.amenities-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    color: #16263B;
    /* Navy */
    margin-bottom: 15px;
}

.amenities-subtitle1 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400 normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0.95;
    color: #caa13d;
}

.amenities-subtitle {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.7;
    color: #334155;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Grid Layout */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2x2 Grid */
    gap: 24px;
}

/* Card Styling */
.amenity-card {
    position: relative;
    border-radius: 20px;
    /* Matching the rounded look in your image */
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.amenity-card:hover .amenity-img {
    transform: scale(1.05);
}

/* Text Overlay */
.amenity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: #ffffff;
}

.amenity-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.amenity-desc {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.02em;
}





/* Fourth Section */
/* ================= AMENITIES SECTION ================= */

.amenities-section {
    background-color: #ffffff;
    padding: 100px 0 120px;
    font-family: 'Inter', sans-serif;
}

.amenities-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER (UNCHANGED FEEL) */
.amenities-header {
    text-align: center;
    margin-bottom: 80px;
}

/* ================= GALLERY LAYOUT ================= */

.amenities-gallery-wrapper {
    overflow: hidden;
}

.amenities-gallery {
    display: flex;
    gap: 32px;
    padding: 0 10vw;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;

    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;

    cursor: grab;
    scrollbar-width: none;
}

.amenities-gallery:active {
    cursor: grabbing;
}

.amenities-gallery::-webkit-scrollbar {
    display: none;
}


.amenities-gallery::-webkit-scrollbar {
    display: none;
}

/* CARD (SAME CARD, DIFFERENT CONTEXT) */
.amenity-card {
    flex: 0 0 420px;
    height: 520px;

    position: relative;
    border-radius: 24px;
    overflow: hidden;

    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
    background: #000;
}


.amenity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.amenity-card:hover .amenity-img {
    transform: scale(1);
}

/* OVERLAY (REUSED FROM YOUR DESIGN, JUST SMOOTHER) */
.amenity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 34px 30px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.35) 45%,
            transparent 100%);
    color: #ffffff;
}

/* =========================================================
   ROYAL UPGRADE – PREMIUM SHOWCASE (NEW DESIGN)
========================================================= */

.royal-upgrade {
    background: linear-gradient(180deg, #ffffff 0%, #f8f6f2 100%);
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}

.royal-upgrade__container {
    max-width: 1200px;
    margin: 0 auto;
}

.royal-upgrade__header {
    max-width: 820px;
    margin: 0 auto 70px;
    text-align: center;
}

.royal-upgrade__eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: #7b1e1e;
    font-weight: 700;
    margin-bottom: 16px;
}

.royal-upgrade__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 56px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #16263B;
    text-transform: uppercase;
}

.royal-upgrade__lead {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.7;
    color: #334155;
}

.royal-upgrade__sublead {
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #caa13d;
}

.royal-upgrade__grid {
    display: grid;
    grid-template-columns: 1.45fr 0.46fr;
    gap: 15px;
    align-items: stretch;
}

.royal-upgrade__hero {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 547px;
    display: block;
    text-decoration: none;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.18);
    background: #0b0b0b;
}

.royal-upgrade__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.royal-upgrade__hero:hover img {
    transform: scale(1.05);
}

.royal-upgrade__hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 35% 25%,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.6) 60%,
            rgba(0, 0, 0, 0.78) 100%);
}

.royal-upgrade__hero-content {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    color: #ffffff;
}

.royal-upgrade__kicker {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 10px;
}

.royal-upgrade__hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.15;
}

.royal-upgrade__hero-desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 520px;
}

.royal-upgrade__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(204, 146, 1, 0.92);
    color: #0b0b0b;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 12px;
    box-shadow: 0 18px 50px rgba(204, 146, 1, 0.22);
}

.royal-upgrade__tiles {
    display: grid;
    grid-template-rows: repeat(3, .66fr);
    gap: 10px;
}

.royal-tile {
    position: relative;
    border-radius: 22px;
    height: 170px;
    overflow: hidden;
    text-decoration: none;
    background: #0b0b0b;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.royal-tile img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.royal-tile:hover img {
    transform: scale(1.06);
}

.royal-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.25) 55%,
            rgba(0, 0, 0, 0.05) 100%);
}

.royal-tile__content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 6px;
    color: #ffffff;
}

.royal-tile__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.royal-tile__desc {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
}

.royal-tile__icon {
    margin-left: 8px;
    font-size: 12px;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .royal-upgrade {
        padding: 100px 20px;
    }

    .royal-upgrade__title {
        font-size: 42px;
    }

    .royal-upgrade__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .royal-upgrade__hero {
        min-height: 440px;
    }

    .royal-upgrade__tiles {
        grid-template-rows: none;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .royal-tile img {
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .royal-upgrade__header {
        margin-bottom: 46px;
    }

    .royal-upgrade__title {
        font-size: 40px;
        letter-spacing: 0.06em;
    }

    .royal-upgrade__lead {
        font-size: 17px;
    }

    .royal-upgrade__hero {
        min-height: 380px;
        border-radius: 22px;
    }

    .royal-upgrade__hero-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .royal-upgrade__hero-title {
        font-size: 28px;
    }

    .royal-upgrade__tiles {
        grid-template-columns: 1fr;
    }
}


/* FIFTH SECTION */


/* ================= CONNECTIVITY SECTION ================= */

.connectivity-section {
    padding: 100px 20px 120px;
    background: #ffffff;
    font-family: 'Inter', sans-serif;

}

/* HEADER */
.connectivity-header {
    text-align: center;
    margin-bottom: 80px;
}

.connectivity-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    color: #16263B;
}

.connectivity-header p {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600 normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0.95;
    color: #7b1e1e;
    margin-top: 20px;
}

/* GRID */
.connectivity-grid {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 80px;
    align-items: center;
}


/* LIST WRAPPER */
.connectivity-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 420px;
}

.left-list {
    align-items: flex-end;
}

.right-list {
    align-items: flex-start;
}

.left-list .location-item {
    flex-direction: row-reverse;
    text-align: right;
}

.left-list .dot {
    margin-left: 12px;
}

/* ITEM BOX */
.location-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px 18px;
    height: 85px;

    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #EEF2F6;

    transition: all 0.25s ease;
    cursor: pointer;
}

/* ICON BOX */
.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;

    background: #E5E7EB;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #64748B;
    font-size: 18px;

    transition: all 0.25s ease;
}

/* TEXT */
.location-text {
    flex: 1;
}

.location-text h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    color: #16263B;
    margin-bottom: 2px;
}

.location-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748B;
}

/* Location details popup modal */
.location-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.location-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.location-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
}

.location-modal-dialog {
    position: relative;
    z-index: 1;
    max-width: 420px;
    width: 90%;
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 24px 20px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
    font-family: 'Inter', sans-serif;
}

.location-modal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #16263B;
    margin: 0 30px 14px 0;
}

.location-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-modal-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #475569;
}

.location-modal-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #caa13d;
}

.location-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #F1F5F9;
    color: #0f172a;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-modal-close:hover {
    background: #E2E8F0;
}

.location-card--clickable {
    cursor: pointer;
}

/* RIGHT DOT */
.dot {
    width: 6px;
    height: 6px;
    background: #E5E7EB;
    border-radius: 50%;
}

/* HOVER EFFECT (MATCHES IMAGE STYLE) */
.location-item:hover {
    background: rgba(31, 143, 107, 0.12);
    border-color: #caa13d;
}

.location-item:hover .icon-box {
    background: #caa13d;
    color: #ffffff;
}

.location-item:hover .dot {
    background: #caa13d;
}


/* MAP */
/* ── RIGHT SIDE – WHEEL ── */
.wheel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 540px;
    margin: 0 auto;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.14),
        inset 0 0 90px rgba(255, 255, 255, 0.35);
    background: #f1f5f9;
}

/* NEW LAYOUT BELOW WHEEL */
.connectivity-below {
    max-width: 1100px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.connectivity-below .connectivity-list {
    max-width: 100%;
}

/* MOBILE */
@media (max-width: 992px) {
    .connectivity-below {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.segment {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    clip-path: polygon(50% 50%, 100% 0%, 100% 100%);
    transform-origin: 50% 50%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
}

/* Hover state – expand one segment */
.wheel.expanded .segment {
    opacity: 0;
    transform: scale(0.4);
    pointer-events: none;
}

.wheel.expanded .segment.active {
    opacity: 1;
    clip-path: none;
    /* full circle */
    transform: scale(1) !important;
    z-index: 5;
    pointer-events: auto;
}

/* Segment initial rotations */
.seg-1 {
    transform: rotate(0deg);
    background-image: url('assets/img/apartment-Plot-150.webp');
}

.seg-2 {
    transform: rotate(60deg);
    background-image: url('assets/img/apartment-Plot-138.jpeg');
}

.seg-3 {
    transform: rotate(120deg);
    background-image: url('assets/img/oasis-1.png');
}

.seg-4 {
    transform: rotate(180deg);
    background-image: url('assets/img/club.webp');
}

.seg-5 {
    transform: rotate(240deg);
    background-image: url('assets/img/club-back-view.webp');
}

.seg-6 {
    transform: rotate(300deg);
    background-image: url('assets/img/zen-garden-D83rteRK.jpg');
}

.center-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
}

.center-badge {
    background: linear-gradient(135deg, #caa13d, #caa13d);
    color: white;
    padding: 28px 40px;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 12px 40px #caa13d(16, 185, 129, 0.35);
    backdrop-filter: blur(8px);
    border: 4px solid rgba(255, 255, 255, 0.75);
}

/* STATS */
.connectivity-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-box {
    background: #ffffff;
    border: 1px solid #EEF2F6;
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    margin-top: 80px;
    ;
}

.intro-text {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #1e293b;
    margin: 0 0 24px 0;
}

.intro-text strong {
    color: #caa13d;
    font-weight: 600;
}

.intro-highlight {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    color: #334155;
    margin: 0;
    line-height: 1.4;
}

/* Optional hover effect like the original left boxes had */
.intro-box {
    transition: all 0.3s ease;
}

.intro-box:hover {
    border-color: #7b1e1e;
    box-shadow: 0 10px 30px rgba(31, 143, 107, 0.08);
    transform: translateY(-4px);
}

/* ───────── 3 COLUMN CONNECTIVITY LAYOUT ───────── */

.connectivity-layout {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

/* left & right lists */
.connectivity-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* center wheel alignment */
.connectivity-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MOBILE */
@media (max-width: 992px) {
    .connectivity-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .connectivity-center {
        order: -1;
        /* wheel comes first on mobile */
    }
}


/* MOBILE */
@media (max-width: 992px) {
    .connectivity-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .connectivity-stats {
        grid-template-columns: 1fr;
    }
}


/* SIXTH SECTION */

/* ================= GREEN LIVING SECTION ================= */

.green-living-section {
    position: relative;
    height: 90vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

/* IMAGE */
.green-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.green-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY – SOFT, NATURAL */
.green-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.14) 100%);
}

.vt-header {
    max-width: 1150px;
    align-items: center;
    text-align: center;
}

/* CONTENT */
.green-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 0 24px;
    text-align: center;
    padding: 30px;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    background-color: #00000037;
}

/* EYEBROW */
.green-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
}

/* TITLE */
.green-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

/* DIVIDER */
.green-divider {
    width: 64px;
    height: 1px;
    background: rgba(255, 255, 255, 0.65);
    margin: 0 auto 36px;
}

/* COPY */
.green-copy {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.92);
}

/* PROOF LINE */
.green-proof {
    margin-top: 34px;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
}

.green-proof strong {
    font-weight: 600;
    color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .green-living-section {
        height: auto;
        padding: 120px 0;
    }

    .green-title {
        font-size: 40px;
        font-weight: 500;
    }

    .green-copy {
        font-size: 15px;
    }

    .green-proof {
        font-size: 13px;
    }
}


/* 8th SECTION */


/* ================= DAILY RHYTHM – 3 ROW ================= */

.daily-rhythm-section {
    background: #ffffff;
    padding: 120px 20px;
    font-family: 'Inter', sans-serif;

}


/* ROW 1 : HEADER */
.rhythm-header {
    text-align: center;
    margin-bottom: 90px;
}

.rhythm-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
}

.rhythm-subtitle {
    font-size: 20px;
    font-weight: 400 normal;
    color: #e5e5e5;
    letter-spacing: 0.04em;
}

/* ROW 2 : BOXES */
.rhythm-box-row {
    max-width: 1150px;
    margin: 0 auto 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.rhythm-box {
    background: #ffffff;
    border: 1px solid #EEF2F6;
    border-radius: 18px;
    padding: 48px 36px;
    text-align: center;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.rhythm-box h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: #16263B;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.rhythm-box p {
    font-size: 14px;
    line-height: 1.9;
    color: #64748B;
}

/* Hover refinement */
.rhythm-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(22, 38, 59, 0.12);
    border-color: #7b1e1e(40, 146, 107, 0.35);
    /* emerald hint */
    background-color: #caa23d89;
}

/* ROW 3 : IMAGES */
.rhythm-image-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.rhythm-image {
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(22, 38, 59, 0.16);
}

.rhythm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.rhythm-image:hover img {
    transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .rhythm-box-row,
    .rhythm-image-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

/* 7th SECTION  */


.virtual-tour {
    background: #F9F9FA;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}

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

}

.vt-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    color: #16263B;
}

.vt-header p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.7;
    color: #334155;
    margin-top: 10px;
}

.vt-layout {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
}

/* LEFT */
.vt-left-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.vt-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    height: 65px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #EEF2F6;
    transition: all 0.25s ease;
    cursor: pointer;
    margin-bottom: 15px;
}

.vt-item.active {
    background: #caa23d19;
    color: #292525;
}

.vt-item.active span,
.vt-item.active strong {
    color: #2c2b2b;
}

.vt-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e2f97242;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-item.active .vt-icon {
    background: rgba(255, 255, 255, 0.2);
}

.vt-text strong {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.vt-text span {
    font-size: 14px;
    color: #64748B;
}

.vt-cta {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    background: #caa13d;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
}

/* RIGHT */
.vt-image-wrap {
    position: relative;
}

.vt-image-wrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 18px;
}

.vt-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
}

.vt-drag {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 18px;
    display: flex;
    gap: 6px;
}

.vt-info {
    background: #fff;
    margin-top: -18px;
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(22, 38, 59, 0.12);
    position: relative;
}

.vt-info h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
}

.vt-info p {
    font-size: 14px;
    color: #64748B;
    padding-top: 15px;
}

.vt-info-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    background: #E6F5EF;
    color: #caa13d;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-tip {
    margin-top: 14px;
    background: #E6F5EF;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 13px;
    color: #caa13d;
}




/*  9th SECTION  */


:root {
    --brand-emerald: #caa13d;
    /* Updated to match the green in image 1 */
    --navy-deep: #16263B;
    --soft-border: #EAEFF3;
    --gold-text: #caa13d;
    /* Adjusted gold color */
}

.floor-plan-section {
    padding: 60px 0;
    background-color: #f3f3f8;
    font-family: 'Inter', sans-serif;
}

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

/* --- TAB NAVIGATION --- */
.tab-wrapper {
    background: #ffffff;
    display: inline-flex;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.tab-button {
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy-deep);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-button.active {
    background-color: var(--brand-emerald);
    color: #ffffff;
}

/* --- CONTENT CARD --- */
/* Floor Content Card Refinement */
.floor-content-card {
    background: #ffffff;
    border-radius: 8px;
    /* Slightly sharper corners to match image 1 */
    border: 1px solid #f0f0f0;
    display: none;
    overflow: hidden;
    padding: 30px;
    /* Internal padding for the white border effect */
}

.floor-content-card.active {
    display: block;
}

.floor-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
}

/* --- LEFT SIDE (Grey Box) --- */
.floor-preview {
    background-color: #F4F7F6;
    /* Light grey-green tint from image 1 */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    border-radius: 12px;
    border: none;
    /* Removed the divider line */
}

.unit-icon-box {
    text-align: center;
}

/* SVG or Icon styling */
.unit-icon-box i,
.unit-icon-box svg {
    font-size: 60px;
    color: var(--brand-emerald);
    margin-bottom: 25px;
}

.unit-icon-box h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.sqft {
    font-size: 28px;
    font-weight: 600;
    color: var(--gold-text);
    margin-bottom: 10px;
}

.tagline {
    font-size: 14px;
    color: #888;
    margin: 0;
    font-weight: 400;
}

/* --- RIGHT SIDE (Features) --- */
.floor-features {
    padding: 20px 0 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.floor-features h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #444;
    font-weight: 400;
}

/* Custom Checkmark Styling */
.feature-list li::before {
    content: '\f058';
    /* FontAwesome Circle Check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-emerald);
    font-size: 20px;
}

/* Reset the default active display to work with flex/grid and animations */
.floor-content-card.active {
    display: block;
}

/* LEFT SIDE ANIMATION (The Grey Box) */
.floor-content-card.active .floor-preview {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* RIGHT SIDE ANIMATION (The Text & List) */
.floor-content-card.active .floor-features {
    animation: slideInRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* STAGGERED LIST ITEMS (The checkmarks appear one by one) */
.floor-content-card.active .feature-list li {
    opacity: 0;
    animation: fadeInTask 0.5s ease forwards;
}

/* Delays for the list items to create the "elegant" cascade */
.floor-content-card.active .feature-list li:nth-child(1) {
    animation-delay: 0.3s;
}

.floor-content-card.active .feature-list li:nth-child(2) {
    animation-delay: 0.4s;
}

.floor-content-card.active .feature-list li:nth-child(3) {
    animation-delay: 0.5s;
}

.floor-content-card.active .feature-list li:nth-child(4) {
    animation-delay: 0.6s;
}

.floor-content-card.active .feature-list li:nth-child(5) {
    animation-delay: 0.7s;
}

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

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

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

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

@keyframes fadeInTask {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* --- ANIMATION --- */
@keyframes fadeInSmooth {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

    /*  testimonial section*/
}

/* CTA Section: Two images left & right, content on right */
.cta-images-section {
    padding: 80px 0 100px;
    background: #ffffff;
}

.cta-images-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.cta-left-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.cta-left-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.cta-right-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-right-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.cta-right-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0 0;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    color: #16263B;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-description {
    font-size: 16px;
    line-height: 1.7;
    color: #64748B;
    margin-bottom: 28px;
}

.cta-content .thm-btn {
    align-self: flex-start;
}

@media (max-width: 992px) {
    .cta-images-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-left-image img {
        min-height: 320px;
    }

    .cta-right-block {
        order: 2;
    }

    .cta-left-image {
        order: 1;
    }

    .cta-content {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .cta-images-section {
        padding: 60px 0 80px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-right-image img {
        height: 200px;
    }
}

.testimonials-section {
    padding: 100px 20px;
    background: #f8f9fb;
    text-align: center;
}

.title-white {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
}

.testimonials-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    color: #0f1f33;
    margin-bottom: 10px;
}

.testimonials-subtitle {
    font-size: 16px;
    color: #7b1e1e;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 500;
    color: #caa13d;
}



/* 10th SECTION */

/* SECTION */
.interest-hero {
    position: relative;
    min-height: 100vh;
    background: url('assets/img/banner.webp') center/cover no-repeat;

    /* background: black; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    font-family: 'Inter', sans-serif;
    background-attachment: fixed;

}

/* DARK OVERLAY */
.interest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(5, 12, 22, 0.85) 0%,
            rgba(6, 14, 26, 0.75) 40%,
            rgba(4, 10, 18, 0.6) 100%);
}

/* CONTENT */
.interest-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1150px;
    color: #ffffff;
}

/* HEADINGS */
.interest-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 16px;
}

.interest-content p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
}

/* FORM CARD */
/* .interest-form {
    background: #ffffff;
    padding: 35px 35px;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    max-width: 400px;
    margin: 0 auto;
} */
.interest-form {
    background: rgba(3, 2, 2, 0.504);
    padding: 1.25rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* INPUTS */
.interest-form input {
    width: 100%;
    height: 42px;
    margin-bottom: 14px;
    padding: 0 12px;
    border-radius: 4px;
    border: 1px solid #E2E8F0;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #16263B;
}

.interest-form input::placeholder {
    color: #94A3B8;
}

/* BUTTON */
.interest-form button {
    width: 100%;
    height: 44px;
    margin-top: 6px;
    background: #caa13d;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.interest-form button:hover {
    background: #C5A059;
    transform: translateY(-1px);
}

/* DISCLAIMER */
.interest-form small {
    display: block;
    margin-top: 14px;
    font-size: 11px;
    color: #64748B;
    text-align: center;
}


/* Footer */
:root {
    --footer-bg: #102131;
    /* Deep Navy from reference */
    --footer-text: #ffffff;
    --footer-accent: #C5A059;
    /* Gold accent for icons/logo */
    --footer-muted: rgba(255, 255, 255, 0.7);
}

.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 0 40px 0;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- GRID LAYOUT --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    /* First column is wider */
    gap: 60px;
    /* margin-bottom: 20px; */
}

/* --- BRANDING COLUMN --- */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 24px;
    color: var(--footer-accent);
}

.footer-logo h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    margin: 0;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: var(--footer-muted);
    /* max-width: 300px; */
}

/* --- HEADINGS --- */
.footer-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 500;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

/* --- CONTACT LINKS --- */
.contact-links {
    list-style: none;
    padding: 0;
}

.contact-links li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-links i {
    color: var(--footer-accent);
    width: 16px;
    text-align: center;
}

.contact-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-links a:hover {
    opacity: 0.7;
}

/* --- LEGAL COLUMN --- */
.legal-text {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: var(--footer-muted);
}

/* --- BOTTOM BAR --- */
.footer-divider {
    height: 1px;
    background: #caa13d(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.copyright {
    text-align: center;
    font-size: 13px;
    color: var(--footer-muted);
    letter-spacing: 0.5px;
}

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

    .footer-logo,
    .contact-links li {
        justify-content: center;
    }

    .footer-tagline {
        margin: 0 auto;
    }
}

/* =========================================================
   GLOBAL RESPONSIVE SAFETY
========================================================= */
img {
    max-width: 100%;
    height: auto;
}

/* Global paragraph font family */
p {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

section {
    overflow-x: hidden;
}

/* =========================================================
   LARGE TABLETS / SMALL LAPTOPS (≤1200px)
========================================================= */
@media (max-width: 1200px) {

    .main-title {
        font-size: 40px;
        font-weight: 500;
    }

    .main-subtitle {
        font-size: 26px;
    }

    .legacy-container,
    .amenities-container,
    .vt-layout,
    .connectivity-grid {
        gap: 60px;
    }

    .legacy-image-stack {
        width: 480px;
        height: 360px;
    }

    .image-large {
        width: 360px;
        height: 260px;
    }
}

/* =========================================================
   TABLETS (≤992px)
========================================================= */
@media (max-width: 992px) {

    /* HERO */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 100px;
    }

    .main-title {
        font-size: 40px;
        font-weight: 500;
        letter-spacing: 2px;
    }

    .main-subtitle {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .sub-headline {
        font-size: 18px;
        margin-bottom: 35px;
    }

    /* LEGACY */
    .legacy-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .legacy-visual {
        justify-content: center;
        margin-top: 60px;
    }

    .legacy-paragraph {
        margin: 0 auto;
    }

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

    /* AMENITIES GRID */
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    /* CONNECTIVITY */
    .connectivity-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .connectivity-list {
        max-width: 100%;
    }

    /* DAILY RHYTHM */
    .rhythm-box-row,
    .rhythm-image-row {
        grid-template-columns: 1fr;
    }

    /* VIRTUAL TOUR */
    .vt-layout {
        grid-template-columns: 1fr;
    }

    .vt-left {
        order: 2;
    }

    .vt-right {
        order: 1;
    }

    .vt-image-wrap img {
        height: 420px;
    }

    /* FLOOR PLANS */
    .floor-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floor-features {
        padding: 0;
        text-align: center;
    }
}

/* =========================================================
   MOBILE (≤768px)
========================================================= */
@media (max-width: 768px) {

    /* TYPOGRAPHY SCALE */

    .amenities-title,
    .connectivity-header h2,
    .green-title,
    .rhythm-title,
    .vt-header h2,
    .interest-content h1,
    .legacy-title {
        font-size: 40px !important;
        font-weight: 500 !important;
    }

    /* GENERAL SPACING */
    section {
        padding-left: 6vw !important;
        padding-right: 6vw !important;
    }

    /* HERO */
    .hero {
        min-height: 80svh;
        padding: 120px 0 100px;
    }

    .main-title {
        font-size: 40px;
        font-weight: 500;
        letter-spacing: 2px;
    }

    .main-subtitle {
        font-size: 1.1rem;
    }

    .sub-headline {
        font-size: 1rem;
    }

    .glow-button {
        width: 100%;
        max-width: 320px;
    }

    /* LEGACY IMAGE STACK – FLATTEN */
    .legacy-image-stack,
    .image-large,
    .image-small {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 20px;
        border-radius: 18px;
    }

    /* AMENITIES GALLERY */
    .amenities-gallery {
        padding: 0 20px;
    }

    .amenity-card {
        flex: 0 0 85%;
        height: 420px;
    }

    /* CONNECTIVITY WHEEL */
    .wheel-container {
        max-width: 360px;
    }

    .center-badge {
        font-size: 1.2rem;
        padding: 18px 28px;
    }

    /* GREEN LIVING */
    .green-living-section {
        height: auto;
        padding: 120px 0;
    }

    /* INTEREST FORM */
    .interest-form {
        width: 100%;
        max-width: 100%;
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo,
    .contact-links li {
        justify-content: center;
    }
}

/* =========================================================
   SMALL MOBILE (≤480px)
========================================================= */
@media (max-width: 480px) {

    .main-title {
        font-size: 40px;
        font-weight: 500;
    }

    .main-subtitle {
        font-size: 18px;
    }

    .sub-headline {
        font-size: 16px;
    }

    .amenity-card {
        height: 360px;
    }

    .vt-image-wrap img {
        height: 320px;
    }

    .unit-icon-box h3 {
        font-size: 28px;
    }

    .sqft {
        font-size: 20px;
    }
}

/* =========================================================
   HERO SECTION – RESPONSIVE TEXT FIX
========================================================= */

/* Tablets */
@media (max-width: 992px) {
    .main-title {
        font-size: 40px;
        font-weight: 500;
        letter-spacing: 2px;
    }

    .main-subtitle {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .sub-headline {
        font-size: 18px;
        margin-bottom: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 16px;
    }

    .reveal-title {
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
    }

    .main-title {
        font-size: 42px;
        letter-spacing: 1.5px;
    }

    .main-subtitle {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .sub-headline {
        font-size: 16px;
        margin-bottom: 28px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .main-title {
        font-size: 40px;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .main-subtitle {
        font-size: 16px;
    }
}

/* =========================================================
   LEGACY SECTION – IMAGE ALIGNMENT FIX
========================================================= */

/* Tablet and below */
@media (max-width: 992px) {

    .legacy-visual {
        justify-content: center;
        margin-top: 60px;
    }

    .legacy-image-stack {
        position: relative;
        width: 100%;
        max-width: 520px;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    /* Disable absolute positioning safely */
    .image-large,
    .image-small {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
    }

    .image-large {
        padding: 14px;
        border-radius: 24px;
    }

    .image-large img {
        height: 280px;
        border-radius: 20px;
    }

    .image-small {
        width: 220px;
        height: 140px;
        padding: 8px;
    }
}

/* Mobile refinement */
@media (max-width: 768px) {
    .image-large img {
        height: 240px;
    }

    .image-small {
        width: 200px;
        height: 130px;
    }
}

.interest-form-title {
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Floating WhatsApp and Call Icons */
.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-end;
}

.floating-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-icon {
    background: #25D366;
}

.whatsapp-icon:hover {
    background: #20BA5A;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.call-icon {
    background: var(--primary-green);
}

.call-icon:hover {
    background: #B88201;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(204, 146, 1, 0.4);
}

/* Mobile Styles - Center Bottom */
@media (max-width: 768px) {
    .floating-icons {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        flex-direction: row;
        gap: 12px;
    }

    .floating-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .floating-icons {
        bottom: 15px;
        gap: 10px;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-green);
    color: #ffffff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #B88201;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(204, 146, 1, 0.4);
}

/* Mobile Styles for Scroll to Top */
@media (max-width: 768px) {
    .scroll-to-top {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        bottom: 90px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .scroll-to-top.show {
        transform: translateX(-50%) translateY(0);
    }

    .scroll-to-top:hover {
        transform: translateX(-50%) translateY(-5px) scale(1.1);
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 80px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

:root {
    --gold: #d4af37;
    --gold-light: rgba(212, 175, 55, 0.1);
    --gold-dark: #b8941f;
    --card-bg: #ffffff;
    --muted-bg: #f8f9fa;
    --muted-bg-30: rgba(248, 249, 250, 0.3);
    --foreground: #1a1a1a;
    --muted-foreground: #6c757d;
    --border: #dee2e6;
    --shadow: rgba(0, 0, 0, 0.1);
    --body-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --display-font: 'Georgia', 'Times New Roman', Times, serif;
}

/* Toggle Buttons */
.toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.toggle-group {
    display: inline-flex;
    background-color: var(--card-bg);
    border-radius: 9999px;
    padding: 0.25rem;
    box-shadow: 0 4px 6px var(--shadow);
    border: 1px solid var(--border);
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-family: var(--body-font);
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--muted-foreground);
}

.toggle-btn:hover {
    color: var(--foreground);
}

.toggle-btn.active {
    background-color: var(--gold);
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* White Box Container */
.content-container {
    background-color: var(--card-bg);
    border-radius: 1.5rem;
    /* box-shadow: 0 10px 25px var(--shadow); */
    border: 1px solid var(--border);
    padding: 2rem;
}

@media (min-width: 768px) {
    .content-container {
        padding: 3rem;
    }
}

/* Property Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    align-items: stretch;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Centered layout when 3 cards (4.5 BHK) */
@media (min-width: 768px) {
    .cards-grid.cards-grid--three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: center;
    }
}

.property-card {
    background-color: var(--muted-bg-30);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 4rem;
    color: var(--gold);
}

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

.property-type {
    font-family: var(--display-font);
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.property-size {
    /* font-family: var(--display-font); */
    font-size: 15px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.property-features {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.property-features p {
    margin-bottom: 0.25rem;
}

/* Selected Property View */
.selected-view {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .selected-view {
        grid-template-columns: repeat(1, 1fr);
    }
}

.selected-card {
    background-color: var(--muted-bg-30);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid var(--border);
}

.back-btn {
    margin-bottom: 1rem;
    color: var(--muted-foreground);
    background: none;
    border: none;
    font-family: var(--body-font);
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: var(--foreground);
}

.back-btn i {
    transform: rotate(180deg);
}

.selected-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.selected-icon i {
    font-size: 5rem;
    color: var(--gold);
}

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

.selected-type {
    font-family: var(--display-font);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.selected-size {
    /* font-family: var(--display-font); */
    font-size: 15px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.selected-features {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.selected-features p {
    margin-bottom: 0.25rem;
}

/* Key Features Panel */
.features-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-title {
    font-family: var(--display-font);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(20px);
    animation: slideIn 0.3s ease forwards;
}

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

.feature-check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-check i {
    color: white;
    font-size: 0.75rem;
}

.feature-text {
    font-family: var(--body-font);
    color: var(--foreground);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .property-showcase {
        padding: 2rem 1rem;
    }

    .toggle-group {
        width: 100%;
        max-width: 300px;
    }

    .toggle-btn {
        flex: 1;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .content-container {
        padding: 1.5rem;
    }
}

/* Contact / Interest Section - two column layout */


.interest-inner {
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 2rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.interest-left {
    padding: 1.5rem;
}

.interest-right {
    padding: 1.5rem;
}

.interest-logo {
    width: 170px;
    display: block;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
}



.contact-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-list li {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}



.interest-form input,
.interest-form button {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: #fff;
    outline: none;
}

.interest-form button {
    background: var(--gold);
    color: #111;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 800px) {
    .interest-inner {
        grid-template-columns: 1fr;
    }
}

.section-title__title {
    font-size: 3.5rem;
    letter-spacing: 0.5px;
    line-height: 50px;
    font-weight: 500;
    margin: 10px 0px 30px;
}

#selectedIcon {
    height: 100%;
}

.card-icon-img {
    height: 80px;
    width: 100%;
    object-fit: contain;
}


/* amanities slider css  */
.amenities-slider {
    padding: 90px 0;
    background-image: url('assets/img/about-section/4.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.amenites-conteiner {
    max-width: 1250px;
    margin: 0 auto;
}

.amenity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    border-radius: 14px;
    border: 1.5px solid #CC9201;
    background: #100f0fcf;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all .3s ease;
    height: 120px;
}

.amenity-card img {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
}

.amenity-card span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3px;
    color: #ffffff;
    line-height: 1.3;
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Arrow Style */

.swiper-button-next,
.swiper-button-prev {
    color: #CC9201;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

/* Pagination */

.swiper-pagination-bullet {
    background: #CC9201;
    opacity: .5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Mobile */

@media(max-width:768px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .amenity-card {
        height: 110px;
    }

}

/* Root section */
.green-living-section {
    width: 100%;
    min-height: 600px;
}

/* Layout */
.green-living-layout {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 600px;
}

/* LEFT — Image */
.green-living-image {
    position: relative;
    width: 55%;
    min-height: 600px;
    background-image: url("assets/img/about-section/2.webp");
    /* <-- replace with your image path */
    background-size: cover;
    background-position: center;
}

/* Optional right-edge gradient blend (desktop only) */
@media (min-width: 769px) {
    .green-living-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, transparent 60%, #1a2744 100%);
    }
}

/* RIGHT — Text Panel */
.green-living-text-panel {
    display: flex;
    align-items: center;
    width: 45%;
    background: rgba(20, 32, 60, 0.92);
    padding: 80px 72px;
}

.green-living-content {
    max-width: 420px;
}

/* Label */
.green-living-label {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c9a025;
    display: block;
    margin-bottom: 24px;
}

/* Heading */
.green-living-heading {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 48px;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

/* Gold rule */
.green-living-rule {
    width: 48px;
    height: 1px;
    background: #c9a025;
    margin-bottom: 28px;
}

/* Paragraph */
.green-living-paragraph {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .green-living-layout {
        flex-direction: column;
        min-height: auto;
    }

    .green-living-image {
        width: 100%;
        min-height: 300px;
        height: 300px;
    }

    .green-living-image::after {
        /* disable gradient on mobile */
        content: none;
    }

    .green-living-text-panel {
        width: 100%;
        padding: 60px 32px;
    }

    .green-living-heading {
        font-size: 32px;
    }
}

/* ---------------------privacy-policy -------- */
.privacy-policy-section {
    margin-top: 40px;
}

.privacy-policy-section:last-child {
    border-bottom: none;
}

.privacy-policy-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.privacy-policy-section p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.privacy-policy-section ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 10px;
}

.privacy-policy-section ul li {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.privacy-policy-section ul li b {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 30px;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f5ef;
    border: 1px solid #a1763a;
    border-radius: 12px;
    padding: 32px 24px 24px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    flex-direction: column;
    gap: 16px;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        bottom: 30px;
        padding: 24px;
    }

    .cookie-content {
        flex: 1;
        padding-right: 20px;
    }
}

.cookie-content h3 {
    font-size: 18px;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 600;
    color: #1f2933;
    margin-bottom: 8px;
}

.cookie-content p {
    font-size: 14px;
    color: #1f2933;
    opacity: 0.85;
    line-height: 1.5;
    margin-bottom: 12px;
}

.cookie-footer-text {
    font-size: 12px;
    font-weight: 600;
    color: #a1763a;
    letter-spacing: 0.05em;
}

.cookie-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
    justify-content: center;
}

@media (min-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
        justify-content: center;
    }
}

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    background-color: #a1763a;
    color: #fff7e8;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.cookie-btn:hover {
    background-color: #9b6a33;
    transform: translateY(-2px);
}

.cookie-btn-secondary {
    background-color: transparent;
    color: #1f2933;
    border: 1px solid #a1763a;
}

.cookie-btn-secondary:hover {
    background-color: rgba(161, 118, 58, 0.1);
}

.cookie-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 24px;
    color: #1f2933;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    line-height: 1;
    padding: 0;
}

.cookie-close:hover {
    opacity: 1;
}    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Cormorant+Garamond:ital,wght@1,400&family=Montserrat:wght@400;500;600&family=Raleway:wght@400;500&display=swap');

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

    .num {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(201, 160, 37, 0.35);
      color: #C9A025;
      font-family: 'Montserrat', sans-serif;
      font-size: 9px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 8px;
      flex-shrink: 0;
    }

    .annotation {
      display: inline-block;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      padding: 3px 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 9px;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.35);
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .row-label {
      display: flex;
      align-items: center;
      margin-bottom: 6px;
    }

    .footer {
      background: #0D1B2A;
      padding: 52px 36px 28px;
    }

    .footer-the {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      letter-spacing: 0.4em;
      color: rgba(255, 255, 255, 0.45);
      display: block;
    }

    .footer-oasis {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 22px;
      letter-spacing: 0.25em;
      color: #ffffff;
      display: block;
      margin: 3px 0;
    }

    .footer-sub {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.4);
      display: block;
    }

    .footer-gold-rule {
      width: 48px;
      height: 1px;
      background: rgba(201, 160, 37, 0.4);
      margin: 18px auto 20px;
    }

    .footer-brand-para {
      font-family: 'Raleway', sans-serif;
      font-size: 12.5px;
      line-height: 1.85;
      color: rgba(255, 255, 255, 0.55);
      text-align: center;
      max-width: 540px;
      margin: 0 auto;
    }

    .footer-divider {
      width: 100%;
      height: 1px;
      background: rgba(201, 160, 37, 0.2);
      margin: 28px 0;
    }

    .footer-col-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #C9A025;
      display: block;
      margin-bottom: 12px;
    }

    .footer-col-line {
      font-family: 'Raleway', sans-serif;
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 2;
      display: block;
    }

    .footer-col-line.white {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }

    .footer-bottom-divider {
      width: 100%;
      height: 1px;
      background: rgba(201, 160, 37, 0.12);
      margin-bottom: 18px;
    }

    .footer-bottom-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      letter-spacing: 0.05em;
      color: rgba(255, 255, 255, 0.25);
      line-height: 1.7;
      margin: 0;
    }

    .footer-bottom-text a {
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-bottom-text a:hover {
      color: #C9A025;
    }

    .footer-legal-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-legal-links {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-legal-divider {
      color: rgba(255, 255, 255, 0.15);
    }
