@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0}
img{display:block;max-width:100%}
button,input,textarea,select{font:inherit}
a{text-decoration:none}
section[id]{scroll-margin-top:80px}


/* SOURCE: app/app.css */
@import "tailwindcss";

@theme {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

html,
body {
  @apply bg-white dark:bg-gray-950;

  @media (prefers-color-scheme: dark) {
    color-scheme: dark;
  }
}


/* SOURCE: app/components/homepage/privacypolicy/PrivacyPolicy.css */
body {
    line-height: 1.6;
    background-color: #f8fafc;
}

.privacy-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 20px 50px 10px;
    color: #333;
    font-family: "Poppins", sans-serif;
    line-height: 2.6;
}

.privacy-title {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.privacy-subtitle {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.privacy-container a {
    color: #e63946;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 15px;
    }
    .privacy-container h2 {
        font-size: 1.5rem;
    }
    .privacy-container h3 {
        font-size: 1.2rem;
    }
    .privacy-container p {
        font-size: 0.95rem;
    }
}

/* SOURCE: app/components/homepage/navbar/Navbar.css */
/* =========================================================
   NAVBAR BASE STYLING (WHITE THEME WITH GOLD GRADIENT)
   ========================================================= */

.navbar {
    width: 100%;
    height: 76px;
    position: relative;
    z-index: 1000;
    background: #ffffff;
    /* Clean white background */
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #e5e5e5;
    /* Clean light gray divider */
}

.navbar *,
.navbar *::before,
.navbar *::after {
    box-sizing: border-box;
}


/* NAVBAR CONTAINER */

.navbar-container {
    width: 100%;
    max-width: 1540px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}


/* BRAND GROUP */

.navbar-brand-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-shrink: 0;
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
}


/* PROJECT LOGO (FIXED SIZE) */

.navbar-main-logo-image {
    display: block;
    height: 50px !important;
    /* Fixed height to fit navbar neatly */
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    background-color: transparent;
}


/* LOGO DIVIDER */

.navbar-logo-divider {
    width: 1px;
    height: 42px;
    flex-shrink: 0;
    background: #e0e0e0;
    /* Light gray divider */
}


/* PARTNER BRAND */

.navbar-partner-brand {
    min-width: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
}

.navbar-partner-logo-image {
    display: block;
    width: 66px;
    height: 32px;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.navbar-partner-text {
    display: block;
    margin-top: 2px;
    color: #555555;
    /* Dark gray text for light background */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 6px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.35px;
    text-align: center;
    white-space: nowrap;
}


/* DESKTOP NAVIGATION */

.navbar-menu {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex: 1;
    white-space: nowrap;
}


/* BOLD NAVIGATION LINKS */

.navbar-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 0;
    color: #333333;
    /* Dark gray links for readability */
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: color 0.25s ease;
}

.navbar-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #b08856;
    /* Gold underline */
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-link:hover {
    color: #b08856;
    /* Gold color on hover */
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-link.active {
    color: #b08856;
    /* Active link is Gold */
}

.navbar-link.active::after {
    width: 100%;
}


/* DESKTOP BROCHURE BUTTON (GOLD GRADIENT) */

.brochure-button {
    min-width: 140px;
    height: 42px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(194, 155, 104, 0.8), #b08856);
    /* Gold gradient background */
    color: #ffffff;
    /* White text */
    border: none;
    border-radius: 24px;
    /* Fully rounded pill shape */
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(176, 136, 86, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.brochure-button:hover {
    background: #856338;
    /* Darker solid Gold on hover */
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(156, 119, 70, 0.3);
}

.brochure-button:active {
    transform: scale(0.97);
}


/* BASE MOBILE MENU (HIDDEN ON DESKTOP BY DEFAULT) */

.navbar-mobile-menu {
    display: none;
}

.navbar-mobile-backdrop {
    display: none;
}


/* MOBILE MENU TOGGLE BUTTON */

.navbar-toggle {
    display: none;
}


/* =========================================================
   RESPONSIVE TABLET & MOBILE LAYOUTS
   ========================================================= */

@media (max-width: 1250px) {
    .navbar {
        height: 72px;
    }
    .navbar-container {
        padding: 0 16px;
        gap: 15px;
    }
    .navbar-main-logo-image {
        height: 45px !important;
        max-width: 140px !important;
    }
    .navbar-menu {
        gap: 16px;
    }
    .navbar-link {
        font-size: 14px;
    }
    .brochure-button {
        min-width: 120px;
        height: 38px;
        padding: 0 16px;
        font-size: 13.5px;
    }
}

@media (max-width: 900px) {
    .navbar {
        height: 64px;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    .navbar-container {
        height: 64px;
        padding: 0 12px 0 14px;
        background: #ffffff;
    }
    .navbar-brand-group {
        height: 100%;
        gap: 8px;
    }
    .navbar-main-logo-image {
        height: 40px !important;
        /* Properly fixed mobile height */
        max-width: 130px !important;
    }
    .navbar-logo-divider {
        height: 31px;
    }
    /* HIDE DESKTOP MENU & BUTTON */
    .navbar-menu {
        display: none;
    }
    .brochure-button {
        display: none;
    }
    /* MOBILE TOGGLE HAMBURGER */
    .navbar-toggle {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: transparent;
        color: #b08856;
        /* Gold hamburger icon */
        border: none;
        font-size: 24px;
        cursor: pointer;
        transition: color 0.25s ease;
    }
    .navbar-toggle:hover {
        color: #856338;
    }
    /* MOBILE DRAWER CONTAINER */
    .navbar-mobile-menu {
        display: block;
        width: 100%;
        max-height: 0;
        position: absolute;
        top: 64px;
        left: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        background: #ffffff;
        /* White drawer background */
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        transform: translateY(-10px);
        transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease, transform 0.35s ease;
    }
    .navbar-mobile-menu-open {
        max-height: calc(100vh - 64px);
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
        transform: translateY(0);
    }
    .navbar-mobile-navigation {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        background: #ffffff;
    }

    .navbar-mobile-link {
        width: 100%;
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 8px 10px;
        color: #333333; /* Dark links inside drawer */
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        border-radius: 6px;
        transition: color 0.25s, background-color 0.25s;
    }

    .navbar-mobile-link-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #b08856; /* Gold icon */
        font-size: 16px;
    }

    .navbar-mobile-link:hover, 
    .navbar-mobile-link.active {
        color: #b08856;
        background: rgba(176, 136, 86, 0.05);
    }

    /* MOBILE BROCHURE BUTTON */
    .navbar-mobile-brochure {
        width: fit-content;
        height: 42px;
        margin-top: 16px;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        align-self: flex-start;
        background: linear-gradient(to bottom, rgba(194, 155, 104, 0.8), #b08856);
        color: #ffffff;
        border: none;
        border-radius: 24px;
        font-size: 14.5px;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(176, 136, 86, 0.2);
    }  
    /* MOBILE BACKDROP */
    .navbar-mobile-backdrop {
        display: block;
        width: 100%;
        height: calc(100vh - 64px);
        position: fixed;
        top: 64px;
        left: 0;
        z-index: 990; /* Stack below header (z-index: 1000) */
        background: rgba(0, 0, 0, 0.3);
        border: none;
    }
}

@media (max-width: 400px) {
    .navbar-container {
        padding: 0 10px;
    }
    .navbar-main-logo-image {
        height: 40px !important;
        max-width: 100px !important;
    }
}


/* =========================================================
   HERO SECTION FOR GODREJ BLUE
========================================================= */

.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 76px);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 1;
}

.hero-section *,
.hero-section *::before,
.hero-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   BACKGROUND SLIDESHOW
   ========================================================= */

.hero-bg-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.08) translateX(2%);
    transition: opacity 2.0s cubic-bezier(0.4, 0, 0.2, 1), transform 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 2;
}

.hero-bg-slide.exit {
    opacity: 0;
    transform: scale(1.04) translateX(-2%);
    z-index: 1;
}


/* =========================================================
   DARK READABILITY OVERLAY
   ========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 3;
}


/* =========================================================
   CONTAINER
========================================================= */

.hero-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 24px 0 80px;
    /* More left padding */
    position: relative;
    z-index: 5;
}

.hero-content {
    max-width: 750px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* =========================================================
   TYPOGRAPHY & TITLE
========================================================= */

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin: 0 0 10px;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.3vw, 19px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-location-icon {
    font-size: 22px;
    color: #ffffff;
}


/* =========================================================
   SLANTED APARTMENT BADGE
========================================================= */

.hero-badge-wrapper {
    display: block;
    margin-bottom: 32px;
}

.hero-badge {
    background: #ffffff;
    padding: 12px 32px;
    transform: skewX(-12deg);
    /* Skews the box */
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.hero-badge-text {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 800;
    color: #2b2b2b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: skewX(12deg);
    /* Un-skews the text so it stays straight */
}


/* =========================================================
   PRICING BANNER (TRANSLUCENT GOLD)
========================================================= */

.hero-price-banner-wrapper {
    display: inline-block;
    cursor: pointer;
}

.hero-price-banner {
    background: rgba(194, 155, 104, 0.82);
    /* Gold translucency matching image */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-price-banner:hover {
    background: rgba(194, 155, 104, 0.95);
    transform: translateY(-2px);
}


/* =========================================================
   2D CIRCULAR ROTATING RUPEE ICON
========================================================= */

.hero-rupee-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    padding-right: 20px;
}

.hero-rupee-icon {
    font-size: 34px;
    color: #ffffff;
    display: block;
    animation: rotateHorizontal 8s linear infinite;
}

@keyframes rotateHorizontal {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}


/* =========================================================
   PRICE DETAIL INFO
========================================================= */

.hero-price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Inter', sans-serif;
}

.hero-price-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
}

.hero-price-value {
    font-size: clamp(26px, 2.5vw, 34px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-mobile-enquire-btn {
    display: none;
}


/* =========================================================
   RESPONSIVENESS
========================================================= */

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: calc(100vh - 64px);
        padding: 60px 0;
    }
    .hero-container {
        padding: 0 16px;
    }
    .hero-content {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .hero-location {
        justify-content: center;
        margin-bottom: 24px;
    }
    .hero-badge-wrapper {
        margin-bottom: 28px;
    }
    .hero-price-banner-wrapper {
        align-self: center;
    }
    .hero-price-banner {
        flex-direction: row;
        padding: 16px 24px;
        gap: 16px;
        width: fit-content;
        max-width: 100%;
    }
    .hero-rupee-icon-wrapper {
        border-right: 1px solid rgba(255, 255, 255, 0.25);
        border-bottom: none;
        padding-right: 16px;
        padding-bottom: 0;
        width: auto;
        justify-content: center;
    }
    .hero-price-info {
        align-items: flex-start;
        /* Keep text inside the banner left-aligned relative to the icon */
    }
    .hero-mobile-enquire-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 204px;
        padding: 15px 32px;
        background: #c29b68;
        /* Premium Gold matching the logo/theme */
        color: #ffffff;
        border: 1.5px solid rgba(255, 255, 255, 0.15);
        border-radius: 30px;
        /* Fully rounded pill shape */
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
        transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
        width: 100%;
        max-width: 280px;
        align-self: center;
    }
    .hero-mobile-enquire-btn:active {
        transform: scale(0.97);
    }
    /* Diagonal Gliss hover effect */
    .hero-mobile-enquire-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 200%;
        height: 100%;
        background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
        transform: skewX(-25deg) translateX(-100%);
        transition: none;
        pointer-events: none;
    }
    .hero-mobile-enquire-btn:hover::after {
        transform: skewX(-25deg) translateX(100%);
        transition: transform 0.75s ease-in-out;
    }
}
/* =========================================================
   GALLERY SECTION STYLING (BEIGE THEME)
========================================================= */

.gallery-section {
    width: 100%;
    padding: 10px 0;
    background: #ebeae5;
    /* Beige background matching mockup */
    overflow: hidden;
    box-sizing: border-box;
}

.gallery-section *,
.gallery-section *::before,
.gallery-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.gallery-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 80px;
    /* Matching Overview and Amenities padding */
    display: flex;
    flex-direction: column;
}


/* =========================================================
   HEADER BLOCK (SLIDES DOWNWARDS FROM TOP)
========================================================= */

.gallery-header {
    text-align: center;
    margin-bottom: 3px;
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-header.animate-up {
    opacity: 1;
    transform: translateY(0);
}

.gallery-tag {
    display: block;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 26px);
    color: #c29b68;
    /* Gold theme */
    margin-bottom: 0px;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    color: #2b2b2b;
    margin: 0;
    letter-spacing: -0.5px;
}


/* =========================================================
   CAROUSEL VIEWPORT & SCROLL TRACK
========================================================= */

.gallery-carousel-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-scroll-track {
    display: flex;
    width: 100%;
    will-change: transform;
}


/* CARD LAYOUT & ENTRANCE ANIMATIONS */

.gallery-card {
    flex: 0 0 25%;
    /* Exactly 4 cards visible at a time on desktop */
    padding: 0 10px;
    /* Horizontal gap space */
    box-sizing: border-box;
    opacity: 1 !important;
    transform: none !important;
}

.gallery-card-inner {
    width: 100%;
    aspect-ratio: 4/3;
    /* Enforces a perfect aspect ratio */
    overflow: hidden;
    border: 3.5px solid #b5b3ad;
    /* Metallic grey border from mockup */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    background: #dcdad4;
    transition: border-color 0.3s ease;
}

.gallery-card-inner:hover {
    border-color: #c29b68;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover crop ensures NO image cracking/squishing */
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card-inner:hover .gallery-img {
    transform: scale(1.05);
}


/* =========================================================
   CAROUSEL NAVIGATION ARROWS (BELOW THE IMAGES)
========================================================= */

.gallery-arrows-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 6px;
}

.gallery-arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid #c29b68;
    background: transparent;
    color: #c29b68;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.1s;
}

.gallery-arrow-btn:hover {
    background: #c29b68;
    color: #ffffff;
}

.gallery-arrow-btn:active {
    transform: scale(0.95);
}


/* =========================================================
   RESPONSIVENESS (MOBILE & TABLET SLIDER)
========================================================= */

@media (max-width: 1024px) {
    .gallery-section {
        padding: 10px 0;
    }
    .gallery-container {
        padding: 0 40px;
    }
    .gallery-card {
        flex: 0 0 33.333%;
        /* 3 cards visible */
    }
}

@media (max-width: 768px) {
    .gallery-container {
        padding: 0 20px;
    }
    .gallery-title {
        font-size: clamp(16px, 4.8vw, 22px);
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        width: 100%;
    }
    .gallery-card {
        flex: 0 0 100%;
        /* 1 card visible on mobile view for one-by-one sliding */
        padding: 0 8px;
        /* Slightly smaller mobile padding gap */
        opacity: 1 !important;
        /* Disable fade-in slide on mobile for better performance */
        transform: none !important;
    }
    .gallery-card-inner {
        border-width: 3px;
        /* Slightly thinner border for mobile screen */
    }
    .gallery-arrows-container {
        display: none !important;
        /* Hide arrow navigation on mobile autoplay */
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 10px 0;
    }
}

/* SOURCE: app/components/homepage/termsconditions/TermsCondition.css */
body {
    line-height: 1.6;
    background-color: #f8fafc;
}

.condition-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 20px 50px 10px;
    color: #333;
    font-family: "Poppins", sans-serif;
    line-height: 2.6;
}

.condition-title {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.condition-subtitle {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.condition-container a {
    color: #e63946;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .condition-container {
        padding: 15px;
    }
    .condition-container h2 {
        font-size: 1.5rem;
    }
    .condition-container h3 {
        font-size: 1.2rem;
    }
    .condition-container p {
        font-size: 0.95rem;
    }
}

/* SOURCE: app/components/homepage/footer/Footer.css */
/* =========================================================
   FOOTER
========================================================= */

.footer {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f8f5f1;
    color: #202020;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.footer *,
.footer *::before,
.footer *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.footer-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 10px 40px 10px;
}


/* =========================================================
   MAIN 4-COLUMN LAYOUT
========================================================= */

.footer-content {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(180px, 0.8fr) minmax(320px, 1.4fr) minmax(320px, 1.2fr);
    align-items: start;
    gap: 35px;
}


/* =========================================================
   GENERAL COLUMN
========================================================= */

.footer-column {
    width: 100%;
    min-width: 0;
}


/* =========================================================
   LOGO (DESKTOP)
========================================================= */

.footer-logo-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 10px;
}

.footer-logo {
    display: block;
    width: 200px !important;
    height: 65px !important;
    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   PROJECT TITLE
========================================================= */

.footer-project-title {
    margin: 0 0 18px;
    color: #111111;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.4px;
}


/* =========================================================
   PROJECT DESCRIPTION
========================================================= */

.footer-project-description {
    width: 100%;
    max-width: 410px;
    margin: 0;
    color: #5f5f5f;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 400;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social-links {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social-link {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #d9c9bb;
    border-radius: 5px;
    color: #6a6a6a;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social-link:hover {
    background: #a96038;
    border-color: #a96038;
    color: #ffffff;
    transform: translateY(-3px);
}


/* =========================================================
   COLUMN HEADINGS
========================================================= */

.footer-column-title {
    margin: 0 0 12px;
    color: #111111;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================================
   EXPLORE / RESOURCE NAVIGATION
========================================================= */

.footer-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
}

.footer-navigation a,
.footer-resource-button {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    color: #5e5e5e;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-navigation a:hover,
.footer-resource-button:hover {
    color: #a96038;
    transform: translateX(4px);
}


/* =========================================================
   ABOUT BRICKFOLIO
========================================================= */

.footer-about-description {
    width: 100%;
    max-width: 440px;
    margin: 0;
    color: #5e5e5e;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 400;
}


/* =========================================================
   FEATURE LIST
========================================================= */

.footer-feature-list {
    width: 100%;
    margin: 15px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.footer-feature-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #4f4f4f;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}

.footer-check-icon {
    flex-shrink: 0;
    color: #ad623a;
    font-size: 21px;
}


/* =========================================================
   BOTTOM COPYRIGHT
========================================================= */


/* =========================================================
   CONTACT GRID SECTION
========================================================= */

.footer-contact-info-section {
    width: 100%;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #e1d9d1;
}

.footer-contact-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 30px;
    margin-bottom: 15px;
}

.footer-contact-column {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact-title {
    margin: 0 0 8px;
    color: #111111;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.footer-contact-text {
    margin: 0;
    color: #444444;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: color 0.25s ease;
}

.footer-contact-text:hover {
    color: #a96038;
}

.footer-contact-address {
    margin: 0;
    color: #444444;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    font-style: normal;
}


/* =========================================================
   POLICY LINKS
========================================================= */

.footer-policy-links {
    width: 100%;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.footer-policy-link {
    color: #222222;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-policy-link:hover {
    color: #a96038;
}

.footer-policy-divider {
    color: #b58a55;
    font-size: 15px;
}


/* =========================================================
   BOTTOM COPYRIGHT BAR (DARK BG)
========================================================= */

.footer-bottom {
    width: 100%;
    min-height: 28px;
    margin-top: 24px;
    padding: 14px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111a1c;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff !important;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1450px) {
    .footer-container {
        padding: 25px 45px 15px;
    }
    .footer-content {
        grid-template-columns: minmax(200px, 1fr) minmax(300px, 1.4fr) minmax(300px, 1.2fr);
        gap: 45px;
    }
    .footer-project-description,
    .footer-about-description,
    .footer-feature-list li {
        font-size: 15px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
    .footer-container {
        padding: 35px 30px 18px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }
    .footer-logo-wrapper {
        justify-content: center;
    }
    .footer-social-links {
        justify-content: center;
    }
    .footer-project-description,
    .footer-about-description {
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-feature-list {
        width: fit-content;
        margin: 20px auto 0;
    }
    .footer-bottom {
        margin-top: 45px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
    .footer-container {
        padding: 25px 18px 0px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    .footer-project-column {
        text-align: center;
    }
    .footer-logo-wrapper {
        display: flex !important;
        justify-content: center;
        margin: 0 0 15px;
    }
    .footer-logo {
        display: block !important;
        width: 170px !important;
        height: 55px !important;
        object-position: center;
    }
    .footer-project-description {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        font-size: 14px;
        line-height: 1.7;
        text-align: center;
    }
    .footer-social-links {
        display: none !important;
    }
    .footer-about-column {
        display: none !important;
    }
    .footer-bottom {
        margin-top: 32px;
        padding-top: 18px;
        justify-content: center;
        text-align: center;
    }
    .footer-bottom p {
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {
    .footer-container {
        padding: 22px 14px 0px;
    }
    .footer-content {
        gap: 0px;
    }
    .footer-logo {
        width: 150px !important;
        height: 50px !important;
    }
    .footer-project-description {
        font-size: 13px;
    }
    .footer-social-link {
        width: 41px;
        height: 41px;
    }
    .footer-feature-list li {
        font-size: 13px;
    }
}


/* =========================================================
   RERA & DISCLAIMER INFO SECTION
========================================================= */

.footer-rera-info {
    width: 100%;
    margin: 20px 0 15px;
    text-align: justify;
}

.footer-rera-text {
    margin: 0 0 10px;
    color: #333333;
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px dashed #e1d9d1;
    padding-bottom: 10px;
}

.footer-disclaimer-text {
    margin: 0;
    color: #666666;
    font-size: 12.5px;
    line-height: 1.7;
    font-weight: 400;
}


/* =========================================================
   RESPONSIVE OVERRIDES FOR CONTACT GRID
========================================================= */

@media (max-width: 650px) {
    .footer-contact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin-bottom: 12px;
    }
    .footer-contact-title {
        font-size: 13px;
        margin-bottom: 6px;
        white-space: nowrap;
    }
    .footer-contact-text {
        font-size: 11px;
        line-height: 1.5;
    }
    .footer-contact-address {
        font-size: 10px;
        line-height: 1.5;
    }
    .footer-policy-links {
        margin-top: 10px;
        gap: 8px;
    }
    .footer-policy-link {
        color: #222222 !important;
        font-size: 12px;
        font-weight: 600;
    }
    .footer-bottom {
        margin-top: 15px;
        padding: 10px 10px 40px;
    }
    .footer-bottom p {
        color: #ffffff !important;
        font-size: 12px;
        font-weight: 600;
    }
}

@media (max-width: 400px) {
    .footer-contact-grid {
        gap: 6px;
    }
    .footer-contact-title {
        font-size: 12px;
    }
    .footer-contact-text {
        font-size: 9.5px;
    }
    .footer-contact-address {
        font-size: 9px;
        line-height: 1.4;
    }
}

/* SOURCE: app/components/homepage/floorplan/Floorplan.css */
/* =========================================================
   FLOOR PLAN SECTION STYLING (SPLIT BEIGE & GOLD)
========================================================= */

.floorplan-section {
    position: relative;
    width: 100%;
    padding: 10px 0 10px;
    background-color: #ebeae5;
    /* Gallery beige background */
    overflow: hidden;
    box-sizing: border-box;
}


/* Blueprint drawing overlay */

.floorplan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 72%;
    background-image: url('../../../assets/homepage/bluebg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
    /* Faint line drawing overlay */
    z-index: 1;
    pointer-events: none;
}


/* Split Gold Bottom */

.floorplan-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 28%;
    background-color: #c29b68;
    /* Gold background */
    z-index: 1;
    pointer-events: none;
}

.floorplan-section *,
.floorplan-section *::before,
.floorplan-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.floorplan-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 80px;
    /* Matching other section layouts */
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
    /* Sit above pseudo backgrounds */
}


/* =========================================================
   HEADER BLOCK (SLIDES DOWNWARDS, REDUCED BOTTOM MARGIN)
========================================================= */

.floorplan-header {
    text-align: center;
    margin-bottom: 0px;
    /* Less to less space below underline */
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.floorplan-header.animate-up {
    opacity: 1;
    transform: translateY(0);
}

.floorplan-tag {
    display: block;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 26px);
    color: #c29b68;
    /* Gold */
    margin-bottom: 0px;
}

.floorplan-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    color: #2b2b2b;
    margin: 0;
    letter-spacing: -0.5px;
}

.floorplan-underline {
    width: 120px;
    height: 2px;
    background: #dcdad4;
    margin: 2px auto 0;
}


/* =========================================================
   DESKTOP GRID (2 CARDS SIDE-BY-SIDE)
========================================================= */

.floorplan-desktop-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    width: 100%;
}

.floorplan-card {
    flex: 1;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(80px);
    /* Slides up from bottom */
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.floorplan-card.animate-down {
    opacity: 1;
    transform: translateY(0);
}


/* Blueprint card body with blur */

.floorplan-card-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5;
    /* Proper blueprint format ratio */
    overflow: hidden;
    border-radius: 12px;
    /* Rounded card corners */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floorplan-image-wrapper {
    width: 100%;
    height: 100%;
}

.floorplan-img-blurred {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(5px) brightness(0.95);
    /* Blurred blueprint mockup effect */
    transform: scale(1.05);
}


/* Sharp button overlay */

.floorplan-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.02);
}


/* Gold card button with diagonal gliss */

.floorplan-card-btn {
    position: relative;
    overflow: hidden;
    padding: 14px 28px;
    background: #c29b68;
    /* Gold background */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    /* Rounded button */
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.2s, transform 0.1s;
}

.floorplan-card-btn:hover {
    background: #9c7746;
}

.floorplan-card-btn:active {
    transform: scale(0.98);
}


/* Diagonal Gliss Effect */

.floorplan-card-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg) translateX(-100%);
    transition: none;
    pointer-events: none;
}

.floorplan-card-btn:hover::after {
    transform: skewX(-25deg) translateX(100%);
    transition: transform 0.75s ease-in-out;
}


/* Typology label tab at bottom */

.floorplan-card-label {
    margin-top: -1px;
    background: #eae8e3;
    /* Light beige tab */
    padding: 12px 42px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 12px 12px;
    /* Rounded bottom corners to match card */
    z-index: 2;
}

.floorplan-card-label span {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #2b2b2b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* =========================================================
   MOBILE SLIDER VIEWPORT (1 CARD AT A TIME)
========================================================= */

.floorplan-mobile-viewport {
    display: none;
}


/* =========================================================
   RESPONSIVENESS
========================================================= */

@media (max-width: 1024px) {
    .floorplan-section {
        padding: 70px 0 90px;
        background: linear-gradient(to bottom, #ebeae5 70%, #c29b68 70%);
    }
    .floorplan-container {
        padding: 0 40px;
    }
    .floorplan-desktop-row {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .floorplan-section {
        padding: 60px 0 80px;
        background: linear-gradient(to bottom, #ebeae5 65%, #c29b68 65%);
    }
    .floorplan-container {
        padding: 0 20px;
    }
    .floorplan-title {
        font-size: clamp(16px, 4.8vw, 22px);
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        width: 100%;
    }
    /* HIDE DESKTOP ROW */
    .floorplan-desktop-row {
        display: none !important;
    }
    /* SHOW MOBILE AUTOPLAY TRACK */
    .floorplan-mobile-viewport {
        display: block;
        width: 100%;
        overflow: hidden;
    }
    .floorplan-mobile-track {
        display: flex;
        width: 100%;
        will-change: transform;
    }
    .floorplan-mobile-slide {
        flex: 0 0 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        padding: 0 16px;
    }
    .mobile-card {
        width: 100%;
        max-width: 340px;
        box-sizing: border-box;
        opacity: 1 !important;
        transform: none !important;
    }
    .mobile-card .floorplan-card-label {
        display: none !important;
    }
    .floorplan-card-inner {
        aspect-ratio: 1.4;
    }
}

@media (max-width: 480px) {
    .floorplan-section {
        padding: 10px 0 10px;
    }
}

/* SOURCE: app/components/homepage/overview/Overview.css */
/* =========================================================
   OVERVIEW SECTION STYLING
========================================================= */

.overview-section {
    position: relative;
    width: 100%;
    padding: 10px 0;
    background-color: #ebeae5;
    /* Beige background matching mockup */
    overflow: hidden;
    box-sizing: border-box;
    z-index: 1;
}


/* Blueprint drawing overlay background */

.overview-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../../../assets/homepage/bluebg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.08;
    /* Faint line drawing overlay */
    z-index: -1;
    pointer-events: none;
}

.overview-section *,
.overview-section *::before,
.overview-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.overview-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 40px;
    /* Increased left and right padding */
    display: flex;
    align-items: stretch;
    /* Stretch columns to equal height */
    justify-content: space-between;
    gap: 104px;
}


/* =========================================================
   LEFT CONTENT (ANIMATED FROM LEFT)
========================================================= */

.overview-left {
    flex: 1.25;
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center content */
}

.overview-left.animate-left {
    opacity: 1;
    transform: translateX(0);
}

.overview-tag {
    display: block;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 26px);
    color: #c29b68;
    /* Gold theme */
    margin-bottom: 0px;
}

.overview-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 3.8vw, 46px);
    font-weight: 700;
    color: #2b2b2b;
    margin: 0 0 0px;
    letter-spacing: -1px;
}

.overview-location {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
    color: #444444;
    margin: 0 0 3px;
}

.overview-underline {
    width: 120px;
    height: 2px;
    background: #dcdad4;
    margin: 0 0 2px 0;
}

.overview-description {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.8;
    color: #555555;
    margin: 0 0 10px;
    text-align: justify;
}


/* BUTTONS WITH BORDER RADIUS */

.overview-buttons {
    display: flex;
    gap: 18px;
}

.overview-btn-brochure {
    padding: 14px 32px;
    background: #c29b68;
    /* Solid Gold */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    /* Smooth border radius */
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(194, 155, 104, 0.15);
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.overview-btn-brochure:hover {
    background: #9c7746;
    box-shadow: 0 6px 16px rgba(194, 155, 104, 0.25);
}

.overview-btn-brochure:active,
.overview-btn-visit:active {
    transform: translateY(1px);
}

.overview-btn-visit {
    padding: 14px 32px;
    background: transparent;
    color: #c29b68;
    border: 1.5px solid #c29b68;
    /* Border matching primary theme */
    border-radius: 8px;
    /* Smooth border radius */
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.1s;
    position: relative;
    overflow: hidden;
}

.overview-btn-visit:hover {
    background: #c29b68;
    color: #ffffff;
}


/* Horizontal Gliss/Shine Effect on Hover */

.overview-btn-brochure::after,
.overview-btn-visit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg) translateX(-100%);
    transition: none;
    pointer-events: none;
}


/* On hover, slide the gliss shine horizontally */

.overview-btn-brochure:hover::after,
.overview-btn-visit:hover::after {
    transform: skewX(-25deg) translateX(100%);
    transition: transform 0.8s ease-in-out;
}


/* =========================================================
   RIGHT IMAGE (ANIMATED FROM RIGHT)
========================================================= */

.overview-right {
    flex: 0.68;
    /* Reduced width by 15% (from 0.8) */
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
}

.overview-right.animate-right {
    opacity: 1;
    transform: translateX(0);
}

.overview-image-wrapper {
    width: 100%;
    height: 100%;
    /* Stretch to fill equal height column */
    overflow: hidden;
    border-radius: 12px;
    /* Smooth border radius for image */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.overview-image {
    width: 100%;
    height: 100%;
    /* Fill the wrapper height */
    object-fit: cover;
    /* Cover crop to match left content height exactly */
    display: block;
}

.name-field-error,
.phone-field-error {
    display: none;
    color: #d93025;
    font-size: 13px;
    margin-top: 7px;
    line-height: 1.4;
}

.input-error {
    border-color: #d93025 !important;
}

.iti + .phone-field-error {
    margin-top: 7px;
}
/* =========================================================
   RESPONSIVENESS
========================================================= */

@media (max-width: 1024px) {
    .overview-section {
        padding: 60px 0;
    }
    .overview-container {
        flex-direction: column;
        gap: 0;
        padding: 0 24px;
    }
    .overview-left {
        align-items: center;
        text-align: center;
        width: 100%;
        transform: translateY(30px);
    }
    .overview-left.animate-left {
        transform: translateY(0);
    }
    .overview-right {
        display: none !important;
        /* Hide image on mobile/tablet viewports */
    }
    .overview-underline {
        margin: 0 auto 16px auto;
        /* Center-aligned horizontal line */
    }
    .overview-description {
        text-align: center;
    }
    .overview-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        justify-content: center;
    }
    .overview-btn-brochure,
    .overview-btn-visit {
        width: 100%;
        text-align: center;
    }
}

.overview-read-more-btn {
    background: none;
    border: none;
    color: #c29b68;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    text-decoration: underline;
    display: inline;
    margin-left: 4px;
}

.overview-read-more-btn:hover {
    color: #9c7746;
}

@media (max-width: 480px) {
    .overview-section {
        padding: 5px 0;
    }
    .overview-container {
        padding: 10px 24px;
    }
}

/* ContactIcons.css */

.contact-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.contact-icon-item {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* WhatsApp Icon Styles */

.contact-icon-item.whatsapp {
    background-color: #25D366;
    color: white;
}

.contact-icon-item.whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}


/* Call Icon Styles */

.contact-icon-item.call {
    background-color: #c29b68;
    color: white;
}

.contact-icon-item.call:hover {
    background-color: #c29b68;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(194, 155, 104, 0.3);
}


/* Icon SVG Styling */

.icon {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease;
}

.contact-icon-item:hover .icon {
    transform: scale(1.05);
}


/* Tooltip Styling - Desktop only */

.tooltip {
    position: absolute;
    right: 70px;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    letter-spacing: 0.3px;
}

.tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.85);
}

.contact-icon-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}


/* Animation for icons - Desktop only */

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.contact-icon-item.whatsapp {
    animation: pulse 2s infinite;
}

.contact-icon-item.call {
    animation: pulse 2s infinite 0.3s;
}


/* Tablet Responsive */

@media (max-width: 768px) {
    .contact-icons {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }
    .contact-icon-item {
        width: 50px;
        height: 50px;
    }
    .icon {
        width: 25px;
        height: 25px;
    }
    .tooltip {
        font-size: 11px;
        padding: 5px 10px;
        right: 60px;
    }
    .contact-icon-item:hover .tooltip {
        right: 65px;
    }
}


/* =========================================================
   LOCATION SECTION STYLING (SPLIT WHITE & GOLD)
========================================================= */

.location-section {
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(to right, #ffffff 70%, #c29b68 70%);
    /* Sharp horizontal split */
    overflow: hidden;
    box-sizing: border-box;
}

.location-section *,
.location-section *::before,
.location-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.location-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 80px;
    /* Matching all section paddings */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}


/* =========================================================
   LEFT SIDE TEXT CONTENT (ANIMATES FROM LEFT)
========================================================= */

.location-left {
    flex: 1.1;
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-left.animate-left {
    opacity: 1;
    transform: translateX(0);
}

.location-header-block {
    border-left: 5px solid #c29b68;
    /* Dark vertical line accent */
    padding-left: 20px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.location-header-tag {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 26px);
    color: #c29b68;
    /* Gold */
    margin-bottom: 6px;
}

.location-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    color: #2b2b2b;
    margin: 0;
    letter-spacing: -0.5px;
}

.location-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-point-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-circle {
    font-size: 20px;
    color: #c29b68;
    /* Gold hollow circle bullet */
    line-height: 1;
    flex-shrink: 0;
}

.point-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #444444;
    line-height: 1.5;
    font-weight: 600;
}


/* =========================================================
   RIGHT SIDE MAP CONTENT (ANIMATES FROM RIGHT)
========================================================= */

.location-right {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-right.animate-right {
    opacity: 1;
    transform: translateX(0);
}


/* Double-bordered map window overlaying the green section */

.location-map-frame-wrapper {
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    /* Metallic white outer border */
    border-radius: 2px;
    background: transparent;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.location-map-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1.45;
    overflow: hidden;
    border-radius: 2px;
    background: #ffffff;
}

.location-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(4px) brightness(0.96);
    /* Blurred map background drawing */
    transform: scale(1.05);
}


/* Enquire Now CTA Button Overlay */

.location-map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.02);
}


/* Button with custom border radius & diagonal gliss */

.location-enquire-btn {
    position: relative;
    overflow: hidden;
    padding: 14px 30px;
    background: #c29b68;
    /* Gold background */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    /* Rounded button corners */
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.2s, transform 0.1s;
}

.location-enquire-btn:hover {
    background: #9c7746;
}

.location-enquire-btn:active {
    transform: scale(0.98);
}


/* Diagonal Gliss Effect */

.location-enquire-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg) translateX(-100%);
    transition: none;
    pointer-events: none;
}

.location-enquire-btn:hover::after {
    transform: skewX(-25deg) translateX(100%);
    transition: transform 0.75s ease-in-out;
}


/* =========================================================
   RESPONSIVENESS
========================================================= */

@media (max-width: 1024px) {
    .location-section {
        padding: 70px 0;
        background: linear-gradient(to bottom, #ffffff 65%, #c29b68 65%);
        /* Shift to vertical split */
    }
    .location-container {
        padding: 0 40px;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .location-left,
    .location-right {
        width: 100%;
        flex: none;
    }
    .location-right {
        justify-content: center;
    }
    .location-map-frame-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 10px 0;
        background: linear-gradient(to bottom, #ffffff 60%, #c29b68 60%);
    }
    .location-container {
        padding: 0 20px;
    }
    .location-header-title {
        font-size: clamp(16px, 4.8vw, 22px);
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 10px 0;
    }
}

/* SOURCE: app/components/homepage/price/Price.css */
/* =========================================================
   AMENITIES/PRICE SECTION STYLING (DARK WITH OVERLAY)
========================================================= */

.price-section {
    /* height: 440px; */
    position: relative;
    width: 100%;
    padding: 10px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    box-sizing: border-box;
}

.price-section *,
.price-section *::before,
.price-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   DARK CONTRAST OVERLAY
========================================================= */

.price-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.76);
    /* Dark translucent overlay */
    z-index: 1;
}


/* =========================================================
   CONTAINER
========================================================= */

.price-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 80px;
    /* Matching Overview, Amenities and Gallery padding */
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
}


/* =========================================================
   HEADER BLOCK (SLIDES DOWNWARDS FROM TOP)
========================================================= */

.price-header {
    text-align: center;
    margin-bottom: 0px;
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-header.animate-up {
    opacity: 1;
    transform: translateY(0);
}

.price-tag {
    display: block;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 26px);
    color: #e8d5bc;
    /* Light Gold for dark background */
    margin-bottom: 0px;
}

.price-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
    white-space: nowrap;
}


/* =========================================================
   DESKTOP VIEWPORT (6 CARDS IN SINGLE ROW)
========================================================= */

.price-desktop-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.price-card {
    flex: 1;
    background: #ffffff;
    border-radius: 16px;
    /* Rounded corners */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card:hover {
    transform: translateY(-6px) !important;
}


/* Left 3 cards initial states */

.price-card:nth-child(1),
.price-card:nth-child(2),
.price-card:nth-child(3) {
    opacity: 0;
    transform: translateX(-100px);
}


/* Right 3 cards initial states */

.price-card:nth-child(4),
.price-card:nth-child(5),
.price-card:nth-child(6) {
    opacity: 0;
    transform: translateX(100px);
}


/* Trigger classes */

.price-card.animate-left {
    opacity: 1;
    transform: translateX(0);
}

.price-card.animate-right {
    opacity: 1;
    transform: translateX(0);
}


/* Typology Header Tab */

.price-card-header {
    width: 100%;
    background: #f0f0f0;
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid #e2e2e2;
}

.price-card-header span {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    color: #333333;
    letter-spacing: 0.5px;
}


/* Body / Price Value */

.price-card-body {
    width: 100%;
    padding: 24px 10px;
    text-align: center;
    background: #ffffff;
}

.price-card-value {
    font-family: 'Inter', sans-serif;
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 800;
    color: #c29b68;
    /* Gold price text */
    margin: 0;
}


/* Slanted Footer Details */

.price-card-footer {
    width: 100%;
    background: #d4af7a;
    /* Gold background */
    padding: 38px 16px 24px;
    /* More top padding for slant space */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
    /* Perfect slanted slope */
}

.price-card-size-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.5px;
}

.price-card-size-val {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.price-card-btn {
    width: 100%;
    padding: 11px 16px;
    border-radius: 24px;
    /* Pill button */
    border: none;
    background: #ffffff;
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.2s, color 0.2s;
}

.price-card-btn:hover {
    background: #ebeae5;
    color: #c29b68;
}


/* =========================================================
   MOBILE SLIDER VIEWPORT (1 CARD AT A TIME)
========================================================= */

.price-mobile-viewport {
    display: none;
}


/* =========================================================
   RESPONSIVENESS
========================================================= */

@media (max-width: 1024px) {
    .price-section {
        padding: 70px 0;
    }
    .price-container {
        padding: 0 40px;
    }
    .price-desktop-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .price-card {
        transform: none !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    .price-section {
        padding: 60px 0;
    }
    .price-container {
        padding: 0 20px;
    }
    .price-header {
        margin-bottom: 5px;
    }
    .price-title {
        font-size: clamp(16px, 4.8vw, 22px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }
    /* Hide Desktop Layout */
    .price-desktop-row {
        display: none !important;
    }
    /* Mobile Slider */
    .price-mobile-viewport {
        display: block;
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    .price-mobile-track {
        display: flex;
        width: 100%;
        will-change: transform;
    }
    /* One slide occupies full viewport */
    .price-mobile-slide {
        flex: 0 0 100%;
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: stretch;
        box-sizing: border-box;
    }
    /* Actual Card */
    .price-mobile-card {
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
        opacity: 1 !important;
        transform: none !important;
    }
    .price-mobile-card .price-card-header {
        padding: 12px 10px;
    }
    .price-mobile-card .price-card-body {
        padding: 22px 12px;
    }
    .price-mobile-card .price-card-footer {
        padding: 34px 16px 22px;
    }
    .price-mobile-card .price-card-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .price-section {
        padding: 10px 0;
    }
    .price-container {
        padding: 0 16px;
    }
    .price-mobile-card {
        width: 94%;
        max-width: 300px;
    }
}

/* SOURCE: app/components/homepage/amenities/Amenities.css */
/* =========================================================
   AMENITIES SECTION STYLING
========================================================= */

.amenities-section {
    width: 100%;
    padding: 10px 0;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.amenities-section *,
.amenities-section *::before,
.amenities-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER (STRETCHES COLUMNS TO EQUAL HEIGHT)
========================================================= */

.amenities-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 80px;
    /* Matching Overview container padding */
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 64px;
}


/* =========================================================
   LEFT IMAGE (ANIMATED FROM LEFT, HIDDEN ON MOBILE)
========================================================= */

.amenities-left {
    flex: 0.8;
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
}

.amenities-left.animate-left {
    opacity: 1;
    transform: translateX(0);
}

.amenities-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    /* Border radius for image wrapper */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.amenities-left-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================================================
   RIGHT CONTENT (ANIMATED FROM RIGHT)
========================================================= */

.amenities-right {
    flex: 1.2;
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.amenities-right.animate-right {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   HEADER BLOCK (DESIGN FROM 2ND IMAGE)
========================================================= */

.amenities-header-block {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.amenities-header-tag {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 24px);
    color: #c29b68;
    /* Gold */
    margin-bottom: 0px;
}

.amenities-header-title {
    font-family: 'Playfair Display', serif;
    /* Matched to popupform title font family */
    font-size: clamp(28px, 3.2vw, 34px);
    /* Matched to popupform title font size */
    font-weight: 700;
    color: #2b2b2b;
    margin: 0;
    letter-spacing: -0.5px;
}


/* =========================================================
   DESKTOP GRID (DESIGN FROM 1ST IMAGE)
========================================================= */

.amenities-desktop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.amenity-card {
    background-color: #c29b68;
    border-radius: 16px;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(156, 119, 70, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(156, 119, 70, 0.25);
}

.amenity-icon-wrapper {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(194, 155, 104, 0.8), #b08856);
    border-radius: 50%;
    padding: 16px;
    box-shadow: 0 4px 10px rgba(176, 136, 86, 0.25);
}

.amenity-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.amenity-card-title {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    /* White text */
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
}


/* =========================================================
   MOBILE CAROUSEL VIEWPORT (HIDDEN ON DESKTOP)
========================================================= */

.amenities-mobile-viewport {
    display: none;
}


/* =========================================================
   RESPONSIVENESS & MOBILE IMPLEMENTATION
========================================================= */

@media (max-width: 1024px) {
    .amenities-section {
        padding: 60px 0;
    }
    /* HIDE LEFT SIDE IMAGE ON TABLET & MOBILE */
    .amenities-left {
        display: none !important;
    }
    .amenities-right {
        flex: 1;
        width: 100%;
        transform: translateY(30px);
    }
    .amenities-right.animate-right {
        transform: translateY(0);
    }
    .amenities-container {
        padding: 0 24px;
        gap: 0;
    }
    .amenities-header-block {
        align-items: center;
        text-align: center;
        margin-bottom: 2px;
    }
    /* HIDE DESKTOP GRID */
    .amenities-desktop-grid {
        display: none !important;
    }
    /* ACTIVATE MOBILE SLIDER (SHOWS 4 CARDS AS 2 COLUMNS x 2 ROWS) */
    .amenities-mobile-viewport {
        display: block;
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 10px 0;
    }
    .amenities-mobile-track {
        display: flex;
        width: 100%;
        will-change: transform;
    }
    .amenities-mobile-slide {
        flex: 0 0 50%;
        /* Exactly 2 slides fit in viewport side-by-side */
        padding: 0 6px;
        /* Safe space between slide margins */
        box-sizing: border-box;
    }
    .amenity-card.mobile-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100%;
        height: 130px;
        /* Comfortably taller to accommodate larger icon wrapper */
        box-sizing: border-box;
        padding: 16px 10px;
        margin: 0;
        gap: 10px;
        /* Spacing inside card */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }
    .amenity-card.mobile-card .amenity-icon-wrapper {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        width: 64px;
        /* Larger mobile icon circle */
        height: 64px;
        padding: 14px;
    }
    .amenity-card.mobile-card .amenity-card-title {
        font-size: 14px;
        /* Sleeker font size */
        line-height: 1.2;
    }
    /* Gold Pill Pagination Indicators */
    .amenities-mobile-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 24px;
        flex-wrap: wrap;
        /* Wrap dots if screen is very narrow */
    }
    .amenities-dot {
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(194, 155, 104, 0.25);
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.3s ease, background-color 0.3s ease;
    }
    .amenities-dot.active {
        width: 20px;
        /* Slanted/horizontal gold pill shape */
        height: 8px;
        border-radius: 4px;
        background-color: #c29b68;
        /* Gold color matching screenshot active indicator */
    }
}

@media (max-width: 480px) {
    .amenities-section {
        padding: 10px 0;
    }
    .amenities-container {
        padding: 0 16px;
    }
    .amenities-mobile-slide {
        padding: 0 4px;
    }
}

/* =========================================================
   CONTACT SECTION STYLING (BEIGE BACKGROUND)
========================================================= */

.contact-section {
    width: 100%;
    padding: 10px 0;
    background-color: #ebeae5;
    /* Beige background matching gallery */
    overflow: hidden;
    box-sizing: border-box;
}

.contact-section *,
.contact-section *::before,
.contact-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.contact-container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 80px;
    /* Matching other section layouts */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


/* =========================================================
   LEFT SIDE IMAGE COLUMN
========================================================= */

.contact-left {
    flex: 1;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-left.animate-left {
    opacity: 1;
    transform: translateX(0);
}

.contact-image-wrapper {
    width: 100%;
    height: 51%;
    /* 15% smaller than 60% */
    max-width: 450px;
    /* 15% smaller than 520px */
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    /* Rounded corners for image wrapper */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-left-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}


/* =========================================================
   RIGHT SIDE FORM COLUMN
========================================================= */

.contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-right.animate-right {
    opacity: 1;
    transform: translateX(0);
}

.contact-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    font-size: clamp(30px, 3vw, 40px);
    color: #c29b68;
    /* Gold theme */
    margin: 0 0 6px;
    text-align: center;
}

.contact-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.contact-form-logo {
    max-width: 80px;
    height: auto;
    object-fit: contain;
}


/* Form Fields */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.contact-field-group {
    width: 100%;
}

.contact-input-wrapper {
    width: 100%;
}

.contact-input {
    width: 100%;
    padding: 16px 24px;
    border: 1.5px solid #c29b68;
    /* Gold border */
    background: #ffffff;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #333333;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-input:focus {
    border-color: #9c7746;
    outline: none;
    box-shadow: 0 0 0 3px rgba(194, 155, 104, 0.15);
}

.contact-input::placeholder {
    color: #777777;
}


/* Phone Input Custom Styles */

.contact-phone-wrapper {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #c29b68;
    /* Gold border */
    border-radius: 20px;
    padding: 8px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-phone-wrapper:focus-within {
    border-color: #9c7746;
    box-shadow: 0 0 0 3px rgba(194, 155, 104, 0.15);
}
/* =========================================================
   PHONE INPUT - INTL TEL INPUT
   SINGLE BORDER ONLY
========================================================= */

.contact-phone-wrapper {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #c29b68;
    border-radius: 20px;
    padding: 8px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

/* Focus only the outer container */
.contact-phone-wrapper:focus-within {
    border-color: #9c7746;
    box-shadow: 0 0 0 3px rgba(194, 155, 104, 0.15);
}

/* =========================================================
   INTL TEL INPUT GENERATED CONTAINER
========================================================= */

.contact-phone-wrapper .iti {
    width: 100%;
    display: block;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* =========================================================
   ACTUAL PHONE INPUT
   REMOVE ITS OWN BORDER
========================================================= */

.contact-phone-wrapper .iti input.contact-phone-input,
.contact-phone-wrapper .iti input[type="tel"] {
    width: 100%;
    height: 42px;

    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    background: transparent !important;

    padding-top: 8px !important;
    padding-bottom: 8px !important;

    /* Leave space for flag + country code */
    padding-left: 90px !important;

    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #333333;

    box-sizing: border-box;
}

/* Remove input focus border */
.contact-phone-wrapper .iti input.contact-phone-input:focus,
.contact-phone-wrapper .iti input[type="tel"]:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* =========================================================
   COUNTRY SELECTOR
========================================================= */

.contact-phone-wrapper .iti__country-container {
    border: none !important;
}

.contact-phone-wrapper .iti__selected-country {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Flag */
.contact-phone-wrapper .iti__flag {
    border: none !important;
}

/* Country code */
.contact-phone-wrapper .iti__selected-dial-code {
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

/* Dropdown arrow */
.contact-phone-wrapper .iti__arrow {
    margin-left: 5px;
}

/* Placeholder */
.contact-phone-wrapper .iti input::placeholder {
    color: #777777;
    opacity: 1;
}


/* Error States */

.contact-field-error {
    border-color: #d32f2f !important;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15) !important;
}


/* Consent Text */

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 8px 0;
}

.contact-consent input[type="checkbox"] {
    margin-top: 4px;
    accent-color: #c29b68;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contact-consent span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #555555;
    line-height: 1.6;
}

.contact-consent a {
    color: #c29b68;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.2s;
}

.contact-consent a:hover {
    color: #9c7746;
}


/* Submit Button (Solid Gold) */

.contact-submit-btn {
    width: 100%;
    max-width: 160px;
    margin: 0px auto 0;
    padding: 14px 28px;
    background: #c29b68;
    /* Gold background */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    /* Rounded corners */
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: background 0.2s, transform 0.1s;
    text-align: center;
}

.contact-submit-btn:hover {
    background: #9c7746;
}

.contact-submit-btn:active {
    transform: scale(0.97);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


/* Validation Messages */

.contact-message {
    margin: 10px 0 0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-weight: 600;
}

.contact-success {
    color: #2e7d32;
}

.contact-error {
    color: #d32f2f;
}


/* =========================================================
   RESPONSIVENESS
========================================================= */

@media (max-width: 1024px) {
    .contact-section {
        padding: 10px 0;
    }
    .contact-container {
        padding: 0 40px;
        flex-direction: column;
        gap: 8px;
    }
    .contact-left,
    .contact-right {
        width: 100%;
        flex: none;
    }
    .contact-form {
        max-width: 100%;
        gap: 10px;
    }
    .contact-submit-btn {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 10px 0;
    }
}


/* =========================================================
   OVERLAY
========================================================= */

.popupform-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999;
}

.popupform-overlay *,
.popupform-overlay *::before,
.popupform-overlay *::after {
    box-sizing: border-box;
}


/* =========================================================
   MODAL CONTAINER
========================================================= */

.popupform-modal {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    animation: popupformFadeIn 0.3s ease;
    overflow: hidden;
}

@keyframes popupformFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* =========================================================
   CLOSE BUTTON (TOP RIGHT BLACK SQUARE)
========================================================= */

.popupform-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #2b2b2b;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

.popupform-close:hover {
    background: #111111;
}

.popupform-close:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* =========================================================
   BODY / CONTENT
========================================================= */

.popupform-body {
    width: 100%;
    padding: 12px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
}


/* =========================================================
   HEADER TEXT
========================================================= */

.popupform-title {
    margin: 10px 0 5px;
    text-align: center;
    color: #2b2b2b;
    font-size: 34px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    /* Aesthetic serif title */
    letter-spacing: -0.5px;
}

.popupform-subtitle {
    margin: 0 0 20px;
    text-align: center;
    color: #555555;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    /* Aesthetic subtitle */
}


/* =========================================================
   GOLD PRICE BANNER
========================================================= */

.popupform-banner {
    width: 100%;
    background-color: #c29b68;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    font-size: 15px;
    /* Smaller, cleaner font size */
    font-weight: 700;
    letter-spacing: 1px;
    /* Sleeker spacing */
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
    /* Aesthetic font family */
    border-radius: 8px;
    /* Rounded corners */
}


/* =========================================================
   FORM & FIELDS
========================================================= */

.popupform-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popupform-field-group {
    width: 100%;
    margin-bottom: 16px;
}


/* INPUT CONTAINER STYLES */

.popupform-input-wrapper,
.popupform-phone-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 52px;
    background: #ffffff;
    border: 1px solid #c0c0c0;
    border-radius: 8px;
    /* Rounded corners for input fields */
    transition: border-color 0.2s, box-shadow 0.2s;
}

.popupform-input-wrapper:focus-within,
.popupform-phone-wrapper:focus-within {
    border-color: #c29b68;
    box-shadow: 0 0 0 3px rgba(194, 155, 104, 0.1);
}

.popupform-input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 16px;
    color: #2b2b2b;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    /* Aesthetic input font */
}

.popupform-input::placeholder {
    color: #8c8c8c;
}


/* =========================================================
   PHONE INPUT CUSTOMIZATION
========================================================= */

.popupform-phone-input {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.popupform-phone-input .PhoneInputCountry {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px 0 16px;
    height: 100%;
    border-right: 1px solid #e0e0e0;
    margin: 0;
    background: #f7f7f7;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.popupform-phone-input .PhoneInputCountryIcon {
    width: 24px;
    height: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.popupform-phone-input .PhoneInputCountrySelect {
    cursor: pointer;
    outline: none;
}

.popupform-phone-input .PhoneInputCountrySelectArrow {
    margin-left: 6px;
    color: #555;
}

.popupform-phone-input .PhoneInputInput {
    flex: 1;
    height: 100%;
    border: none !important;
    outline: none !important;
    background: transparent;
    padding: 0 16px;
    color: #2b2b2b;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    /* Aesthetic input font */
}

.popupform-phone-input .PhoneInputInput::placeholder {
    color: #8c8c8c;
}


/* REMOVE DEFAULT INTERFACES FOCUS OUTLINE */

.popupform-phone-input .PhoneInputCountrySelect:focus,
.popupform-phone-input .PhoneInputInput:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}


/* ERROR STATE */

.popupform-field-error {
    border-color: #d32f2f !important;
}


/* =========================================================
   SUBMIT BUTTON (CENTERED & NOT FULL WIDTH)
========================================================= */

.popupform-submit-button {
    position: relative;
    overflow: hidden;
    width: 160px;
    height: 48px;
    border: none;
    background: #c29b68;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin: 1px 0 2px;
    font-family: 'Outfit', sans-serif;
    /* Aesthetic submit button font */
    text-transform: uppercase;
    border-radius: 8px;
    /* Rounded submit button */
}


/* Diagonal Gliss Effect for Submit Button */

.popupform-submit-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg) translateX(-100%);
    transition: none;
    pointer-events: none;
}

.popupform-submit-button:hover:not(:disabled)::after {
    transform: skewX(-25deg) translateX(100%);
    transition: transform 0.75s ease-in-out;
}

.popupform-submit-button:hover:not(:disabled) {
    background: #9c7746;
}

.popupform-submit-button:active:not(:disabled) {
    transform: translateY(1px);
}

.popupform-submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}


/* =========================================================
   CONSENT CHECKBOX
========================================================= */

.popupform-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    color: #2b2b2b;
    font-size: 11.5px;
    line-height: 1.5;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    user-select: none;
    text-align: left;
}

.popupform-consent input {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: #c29b68;
    cursor: pointer;
}

.popupform-consent span {
    flex: 1;
}

.popupform-consent a {
    color: #c29b68;
    text-decoration: underline;
    font-weight: 600;
}

.popupform-consent a:hover {
    color: #9c7746;
}


/* =========================================================
   MESSAGES
========================================================= */

.popupform-message {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.popupform-success {
    color: #2e7d32;
}

.popupform-error {
    color: #c62828;
}


/* =========================================================
   RESPONSIVENESS
========================================================= */

@media (max-width: 480px) {
    .popupform-modal {
        max-width: 100%;
        border-radius: 0;
    }
    .popupform-body {
        padding: 10px 15px;
    }
    .popupform-title {
        font-size: 28px;
    }
    .popupform-subtitle {
        font-size: 14px;
    }
    .popupform-banner {
        font-size: 17px;
        padding: 10px;
    }
    .popupform-submit-button {
        width: 100%;
    }
}

/* =========================================================
   STATIC PHP CONVERSION HELPERS
========================================================= */
.navbar-mobile-backdrop{display:none}
.popupform-overlay{display:none}
.popupform-overlay.show{display:flex}
.ajax-form .form-message{min-height:10px;margin:10px 0;font-size:14px}
.ajax-form .form-message.success{color:#218838}
.ajax-form .form-message.error{color:#c62828}
.reveal-section{opacity:1}
.reveal-section .reveal-left,.reveal-section .reveal-right{transition:opacity .7s ease,transform .7s ease}
.reveal-section:not(.in-view) .reveal-left{opacity:0;transform:translateX(-30px)}
.reveal-section:not(.in-view) .reveal-right{opacity:0;transform:translateX(30px)}
.reveal-section.in-view .reveal-left,.reveal-section.in-view .reveal-right{opacity:1;transform:none}

.hero-bg-slider{position:absolute;inset:0;overflow:hidden}
.hero-bg-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transform:scale(1.04);transition:opacity 1s ease,transform 5s ease}
.hero-bg-slide.active{opacity:1;transform:scale(1)}
.hero-overlay{position:absolute;inset:0;z-index:1}
.hero-container{position:relative;z-index:2}

.policy-page{padding:120px 8% 70px;min-height:70vh;line-height:1.8;background:#faf8f3;color:#444}
.policy-page h1{font-family:'Playfair Display',serif;font-size:42px;color:#222}
.policy-page h2{color:#222;margin-top:30px}

@media(max-width:768px){
  .navbar-mobile-backdrop.show{display:block;position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:9998}
  .popupform-overlay.show{display:flex}
  .hero-bg-slide{background-position:center center}
}

/* =========================================================
   MOBILE AUTO SLIDER FIX
========================================================= */
@media (max-width: 768px) {
  .amenities-mobile-viewport,
  .floorplan-mobile-viewport,
  .price-mobile-viewport,
  .gallery-carousel-viewport {
    overflow: hidden !important;
    width: 100% !important;
  }

  .amenities-mobile-track,
  .floorplan-mobile-track,
  .price-mobile-track,
  .gallery-scroll-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    will-change: transform;
  }

  .amenities-mobile-slide {
    flex: 0 0 50% !important;
    min-width: 50% !important;
  }

  .floorplan-mobile-slide,
  .price-mobile-slide,
  .gallery-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
  }

  .gallery-card {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

/* =========================================================
   VIEWPORT REVEAL ANIMATIONS
   Sections animate when entering the viewport and can replay
   when the user scrolls away and back.
========================================================= */
.reveal-section {
  opacity: 1 !important;
}

.reveal-section .reveal-left,
.reveal-section .reveal-right,
.reveal-section .gallery-header,
.reveal-section .gallery-card,
.reveal-section .floorplan-header,
.reveal-section .floorplan-card,
.reveal-section .price-header,
.reveal-section .price-card {
  opacity: 0 !important;
  will-change: opacity, transform;
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.22,1,.36,1) !important;
}

.reveal-section .reveal-left {
  transform: translate3d(-45px, 0, 0) !important;
}

.reveal-section .reveal-right {
  transform: translate3d(45px, 0, 0) !important;
}

.reveal-section .gallery-header,
.reveal-section .floorplan-header,
.reveal-section .price-header {
  transform: translate3d(0, 35px, 0) !important;
}

.reveal-section .gallery-card,
.reveal-section .floorplan-card,
.reveal-section .price-card {
  transform: translate3d(0, 45px, 0) !important;
}

.reveal-section.in-view .reveal-left,
.reveal-section.in-view .reveal-right,
.reveal-section.in-view .gallery-header,
.reveal-section.in-view .gallery-card,
.reveal-section.in-view .floorplan-header,
.reveal-section.in-view .floorplan-card,
.reveal-section.in-view .price-header,
.reveal-section.in-view .price-card {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

/* Stagger cards for a smoother reveal */
.reveal-section.in-view .gallery-card:nth-child(2),
.reveal-section.in-view .floorplan-card:nth-child(2),
.reveal-section.in-view .price-card:nth-child(2) {
  transition-delay: .10s !important;
}
.reveal-section.in-view .gallery-card:nth-child(3),
.reveal-section.in-view .floorplan-card:nth-child(3),
.reveal-section.in-view .price-card:nth-child(3) {
  transition-delay: .20s !important;
}
.reveal-section.in-view .gallery-card:nth-child(4),
.reveal-section.in-view .floorplan-card:nth-child(4),
.reveal-section.in-view .price-card:nth-child(4) {
  transition-delay: .30s !important;
}
.reveal-section.in-view .gallery-card:nth-child(5),
.reveal-section.in-view .floorplan-card:nth-child(5),
.reveal-section.in-view .price-card:nth-child(5) {
  transition-delay: .40s !important;
}
.reveal-section.in-view .gallery-card:nth-child(6),
.reveal-section.in-view .floorplan-card:nth-child(6),
.reveal-section.in-view .price-card:nth-child(6) {
  transition-delay: .50s !important;
}

/* Mobile: slightly shorter movement */
@media (max-width: 768px) {
  .reveal-section .reveal-left {
    transform: translate3d(-28px, 0, 0) !important;
  }
  .reveal-section .reveal-right {
    transform: translate3d(28px, 0, 0) !important;
  }
  .reveal-section .gallery-header,
  .reveal-section .floorplan-header,
  .reveal-section .price-header,
  .reveal-section .gallery-card,
  .reveal-section .floorplan-card,
  .reveal-section .price-card {
    transform: translate3d(0, 25px, 0) !important;
  }
}


/* =========================================================
   FINAL CONTENT VISIBILITY + SAFE VIEWPORT REVEAL
   All real page content is always rendered. Reveal animation
   is applied when the section enters the viewport, but a failed
   observer/script can never leave the site blank.
========================================================= */
/* Remove source React hidden states from the PHP conversion. */
#overview .overview-left,
#overview .overview-right,
#amenities .amenities-left,
#amenities .amenities-right,
#gallery .gallery-header,
#gallery .gallery-card,
#floor-plan .floorplan-header,
#floor-plan .floorplan-card,
#price .price-header,
#price .price-card,
#location .location-left,
#location .location-right,
#contact .contact-left,
#contact .contact-right {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Animate only transform when the section becomes active. */
#overview .overview-left,
#overview .overview-right,
#amenities .amenities-left,
#amenities .amenities-right,
#location .location-left,
#location .location-right,
#contact .contact-left,
#contact .contact-right {
  transition: transform .8s cubic-bezier(.22,1,.36,1) !important;
}

#gallery .gallery-header,
#floor-plan .floorplan-header,
#price .price-header,
#gallery .gallery-card,
#floor-plan .floorplan-card,
#price .price-card {
  transition: transform .8s cubic-bezier(.22,1,.36,1) !important;
}

/* Initial movement, but keep opacity visible so content is never lost. */
#overview:not(.in-view) .overview-left,
#amenities:not(.in-view) .amenities-left,
#location:not(.in-view) .location-left,
#contact:not(.in-view) .contact-left { transform: translate3d(-28px,0,0) !important; }

#overview:not(.in-view) .overview-right,
#amenities:not(.in-view) .amenities-right,
#location:not(.in-view) .location-right,
#contact:not(.in-view) .contact-right { transform: translate3d(28px,0,0) !important; }

#gallery:not(.in-view) .gallery-header,
#floor-plan:not(.in-view) .floorplan-header,
#price:not(.in-view) .price-header { transform: translate3d(0,25px,0) !important; }

#gallery:not(.in-view) .gallery-card,
#floor-plan:not(.in-view) .floorplan-card,
#price:not(.in-view) .price-card { transform: translate3d(0,25px,0) !important; }

#overview.in-view .overview-left,
#overview.in-view .overview-right,
#amenities.in-view .amenities-left,
#amenities.in-view .amenities-right,
#location.in-view .location-left,
#location.in-view .location-right,
#contact.in-view .contact-left,
#contact.in-view .contact-right,
#gallery.in-view .gallery-header,
#gallery.in-view .gallery-card,
#floor-plan.in-view .floorplan-header,
#floor-plan.in-view .floorplan-card,
#price.in-view .price-header,
#price.in-view .price-card {
  transform: translate3d(0,0,0) !important;
}

/* Respect reduced-motion preferences without hiding content. */
@media (prefers-reduced-motion: reduce) {
  #overview .overview-left,
  #overview .overview-right,
  #amenities .amenities-left,
  #amenities .amenities-right,
  #gallery .gallery-header,
  #gallery .gallery-card,
  #floor-plan .floorplan-header,
  #floor-plan .floorplan-card,
  #price .price-header,
  #price .price-card,
  #location .location-left,
  #location .location-right,
  #contact .contact-left,
  #contact .contact-right {
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   FLOATING CONTACT BUTTONS - DESKTOP
========================================================= */

.contact-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-icon-item {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-icon-item:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.30);
}

.contact-icon-item .icon {
    font-size: 28px;
}

.contact-icon-item.whatsapp {
    background: #25D366;
    color: #ffffff;
}

.contact-icon-item.call {
    background: #c29b68;
    color: #ffffff;
}

/* Hide tooltip by default */
.contact-icon-item .tooltip {
    display: none;
}


.footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    display: block;
    object-fit: contain;
    margin-left: 120px;
}

.authorized-partner-text {
    margin: 8px 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    color: #c29b68;
    text-align: center;
}


/* =========================================================
   MOBILE VIEW
========================================================= */

@media (max-width: 768px) {

    .footer-logo-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-logo {
        width: 180px;
        height: auto;
        margin-left: 0;
        display: block;
    }

    .authorized-partner-text {
        margin: 6px 0 0;
        max-width: 150px;
        font-size: 12px;
        line-height: 1.4;
        font-weight: 600;
        text-align: center;
    }
}
/* =========================================================
   LOCATION MAP - MOBILE FIX
========================================================= */

@media (max-width: 768px) {

    .location-section {
        width: 100%;
        overflow: hidden;
    }

    .location-container {
        width: 100%;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
    }

    .location-right {
        width: 100%;
        padding: 0;
    }

    .location-map-frame-wrapper {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }

    .location-map-inner {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        overflow: hidden;
    }

    .location-map-img {
        display: block;
        width: 100%;
        height: auto;
        min-height: 0;
        object-fit: contain;
        object-position: center;
    }

    .location-map-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .location-enquire-btn {
        position: relative;
        z-index: 2;
    }
}