/* Jade County — full brochure theme (forest green + gold, site-wide) */

:root {
    --jade-deep: #0a1510;
    --jade-forest: #12261c;
    --jade-mid: #1a3328;
    --jade-light: #2a4538;
    --jade-mist: rgba(18, 38, 28, 0.16);
    --jade-gold-glow: rgba(201, 169, 98, 0.14);
    /* UI primaries — green family (not slate blue) */
    --primary-color: #0f1f18;
    --primary-dark: #050a08;
    --secondary-color: #1a2e26;
    --gold: #c9a962;
    --gold-light: #e8d9a8;
    --gold-dark: #a68b45;
    --accent-color: #c9a962;
    --cream: #f4f1ea;
    --cream-jade: #eef3ef;
    --light-bg: var(--cream-jade);
    --white: #ffffff;
    --text-dark: #1c2822;
    --text-light: #5a6860;
    --border-color: rgba(26, 51, 40, 0.14);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-soft: 0 4px 28px rgba(10, 21, 16, 0.07);
    --shadow-luxury: 0 14px 48px rgba(10, 21, 16, 0.11);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #e8e3d9;
    background-image:
        radial-gradient(ellipse 110% 55% at 50% -15%, var(--jade-mist) 0%, transparent 52%),
        radial-gradient(ellipse 65% 45% at 0% 95%, rgba(10, 21, 16, 0.07) 0%, transparent 48%),
        radial-gradient(ellipse 55% 40% at 100% 75%, var(--jade-gold-glow) 0%, transparent 42%),
        linear-gradient(178deg, #f7f4ee 0%, #ebe6dc 38%, #e3ded3 72%, #dbd5c8 100%);
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: 0.01em;
}

/* Brochure tagline — PDF theme wash (text only; no image blur) */
body::before {
    content: "A TIMELESS LUXURY";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.35em;
    line-height: 1.2;
    color: var(--jade-forest);
    opacity: 0.045;
    pointer-events: none;
    max-width: 100%;
    margin: 0 auto;
}

/* Soft marble / depth layer behind content */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 120px,
            rgba(201, 169, 98, 0.02) 120px,
            rgba(201, 169, 98, 0.02) 121px
        ),
        radial-gradient(ellipse 90% 60% at 30% 40%, rgba(18, 38, 28, 0.04) 0%, transparent 55%);
    opacity: 1;
}

/* Keep page content above brochure background layers */
body > nav,
body > section,
body > footer {
    position: relative;
    z-index: 1;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.28;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

.blur-image {
    filter: blur(2px);
}

/* Navigation — Jade dark glass */
.navbar {
    background: rgba(10, 21, 16, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.22);
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled {
    background: rgba(10, 21, 16, 0.96);
    border-bottom-color: rgba(201, 169, 98, 0.3);
}

.theme-jade .navbar .navbar-toggler {
    border-color: rgba(201, 169, 98, 0.35);
}

.navbar-brand img,
.navbar-brand-logo {
    height: 48px;
    width: auto;
    max-width: min(220px, 62vw);
    object-fit: contain;
    display: block;
}

/* Transparent PNG — readable on dark jade bar (no white box) */
.navbar-brand-logo {
    padding: 4px 0;
    background: transparent;
    border-radius: 6px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 18px rgba(201, 169, 98, 0.18));
}

/* County Group — navbar logo: white tray so grey artwork stays visible on dark bar */
.navbar-county-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    max-width: min(300px, 85vw);
    padding: 6px 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    line-height: 0;
}

.navbar-brand .navbar-county-logo-wrap img {
    display: block;
    height: auto;
    width: auto;
    max-height: 44px;
    max-width: 100%;
    object-fit: contain;
    filter: none;
    padding: 0;
    background: transparent;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    margin: 0 5px;
    padding: 0.5rem 0.65rem !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: var(--gold-light) !important;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-contact .btn {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.navbar-contact .btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* Hero Section — Premium Front */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}

.hero-section .carousel-item {
    height: 100vh;
    min-height: 560px;
    position: relative;
}

.hero-bg-wrap {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.68) saturate(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(10, 21, 16, 0.75) 0%,
        rgba(18, 38, 28, 0.4) 42%,
        rgba(10, 21, 16, 0.82) 100%);
    pointer-events: none;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 100%;
    padding: 0 1rem;
}

.hero-content {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: var(--white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-location {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.hero-divider {
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto 1.25rem;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0.95;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}
.hero-price {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    color: var(--primary-dark);
    background: var(--white);
    border-color: var(--white);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 14px rgba(201, 169, 98, 0.55);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Carousel indicators — premium */
.hero-indicators {
    bottom: 4.5rem;
}

.hero-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    transition: var(--transition);
}

.hero-indicators [data-bs-target].active {
    background: var(--gold);
    box-shadow: 0 0 12px rgba(201, 169, 98, 0.55);
}

.carousel-control-prev,
.carousel-control-next {
    width: 4%;
    max-width: 48px;
    opacity: 0.85;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    width: 1.5rem;
    height: 1.5rem;
}

/* Legacy hero classes for compatibility */
.carousel-caption h1 { font-family: var(--font-heading); }
.carousel-caption .lead { font-size: 1rem; }
.rera-text { font-size: 1rem; color: var(--gold-light); }
.possession-text { font-size: 1rem; opacity: 0.9; }
.price-text { font-family: var(--font-heading); font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 600; color: var(--gold-light); }
.carousel-caption h3 { font-family: var(--font-heading); }

/* Contact Modal */
.contact-modal {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 400px;
}

.contact-form-card {
    background: linear-gradient(180deg, #ffffff 0%, #faf9f6 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(201, 169, 98, 0.28);
}

.contact-form-card h3,
.contact-form-card h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

/* Section Styles — Premium */
.section-padding {
    padding: 5rem 0;
}

.section-padding.bg-light {
    background: linear-gradient(180deg, var(--cream-jade) 0%, #e4ebe4 55%, #dde6df 100%) !important;
}

.section-padding:not(.bg-light):not(#floorplan) {
    background: linear-gradient(180deg, #fcfaf7 0%, #f5f2ec 45%, #efeae1 100%);
}

/* Floor plan block keeps its own full jade panel (see #floorplan.floorplan-theme-jade) */

.section-padding .lead {
    font-size: 1rem;
    color: var(--text-dark);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.28;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
}

/* Highlights Section — Luxury cards */
.highlight-card {
    background: linear-gradient(180deg, #ffffff 0%, #faf9f6 100%);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(201, 169, 98, 0.22);
    border-top: 3px solid var(--gold);
    transition: var(--transition);
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-luxury);
    border-top-color: var(--gold-dark);
}

.highlight-card i {
    font-size: 2rem;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.highlight-card h5 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 600;
}

/* Price Cards — Premium */
.price-card {
    background: linear-gradient(165deg, #ffffff 0%, #f8f6f1 100%);
    padding: 2.25rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(201, 169, 98, 0.45);
}

.price-card h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-card .size {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.price-card .price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
}

/* Amenity Cards — Luxury */
.amenity-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9f8f5 100%);
    padding: 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(26, 51, 40, 0.1);
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(201, 169, 98, 0.35);
}

.amenity-card i {
    font-size: 2.25rem;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.amenity-card h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 600;
}

/* Floor Plan — four cards (reference layout) */
.floor-plan-row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.floor-plan-card--reference {
    background: var(--white);
    padding: 1.25rem 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floor-plan-card--reference:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(201, 169, 98, 0.35);
}

.floor-plan-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

/* Brochure PDF floor plans — sharp diagrams (no filter blur); PDF green-gold panel fill */
.floor-plan-thumb--pdf {
    object-fit: contain;
    background:
        linear-gradient(145deg, rgba(18, 38, 28, 0.06) 0%, transparent 45%),
        linear-gradient(180deg, #f2f6f3 0%, #e8f0eb 45%, #dfe9e3 100%);
    border: 1px solid rgba(201, 169, 98, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    height: 200px;
}

/* Floor Plan section — PDF dark green + gold fill (full-bleed mood) */
#floorplan.floorplan-theme-jade {
    position: relative;
    overflow: hidden;
    background: linear-gradient(168deg, var(--jade-deep) 0%, var(--jade-forest) 42%, #0e1c16 100%);
}

#floorplan.floorplan-theme-jade::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 15% 25%, rgba(201, 169, 98, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse 55% 45% at 85% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 48%),
        linear-gradient(105deg, transparent 0%, rgba(10, 21, 16, 0.35) 100%);
    opacity: 1;
}

#floorplan.floorplan-theme-jade .container {
    position: relative;
    z-index: 1;
}

#floorplan.floorplan-theme-jade .section-title {
    color: #f0ebe3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#floorplan.floorplan-theme-jade .section-subtitle {
    color: var(--gold-light);
}

#floorplan.floorplan-theme-jade .section-subtitle::after {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    width: 48px;
}

#floorplan.floorplan-theme-jade .floor-plan-card--reference {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(201, 169, 98, 0.28);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
    .floor-plan-thumb {
        height: 180px;
    }
    .floor-plan-thumb--pdf {
        height: 228px;
    }
}

.floor-plan-card-title {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.floor-plan-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    padding: 0.65rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(165deg, var(--jade-mid) 0%, var(--jade-deep) 100%);
    border: 1px solid rgba(201, 169, 98, 0.45);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(10, 21, 16, 0.25);
    transition: var(--transition);
}

.floor-plan-view-btn:hover {
    color: var(--white);
    background: linear-gradient(165deg, var(--jade-forest) 0%, #0a1510 100%);
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(10, 21, 16, 0.35);
}

.floor-plan-view-btn:focus-visible {
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 98, 0.45);
    outline: none;
}

/* Location Section — Premium */
.location-map {
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.location-row-horizontal {
    display: flex;
    flex-wrap: wrap;
}
.location-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    background: linear-gradient(180deg, #ffffff 0%, #faf9f6 100%);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(201, 169, 98, 0.18);
    margin-bottom: 0;
    height: 100%;
    transition: var(--transition);
}

.location-item:hover {
    border-color: rgba(201, 169, 98, 0.4);
}

.location-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.location-text h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    font-size: 1.05rem;
}

/* Gallery — Luxury */
/* Gallery — Slideshow (big photos + animation) */
.gallery-slideshow {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--border-color);
    background: var(--primary-dark);
}

.gallery-carousel-inner {
    border-radius: 12px;
}

.gallery-slideshow .carousel-item {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.gallery-slide-img {
    width: 100%;
    height: 65vh;
    min-height: 380px;
    object-fit: cover;
    object-position: center;
}

.gallery-indicators {
    bottom: 1rem;
}

.gallery-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    transition: var(--transition);
}

.gallery-indicators [data-bs-target].active {
    background: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(201, 169, 98, 0.5);
}

.gallery-control {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 21, 16, 0.75);
    border-radius: 50%;
    opacity: 0.9;
    border: 1px solid rgba(201, 169, 98, 0.35);
}

.gallery-control:hover {
    background: rgba(26, 51, 40, 0.85);
    opacity: 1;
}

.gallery-control .carousel-control-prev-icon,
.gallery-control .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* Gallery fade for slideshow */
#gallerySlideshow.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

#gallerySlideshow.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Contact Section — Premium */
.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.75rem;
    color: var(--gold-dark);
    margin-right: 1.25rem;
}

.contact-item h5 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

/* Footer — Luxury */
.footer {
    background: linear-gradient(180deg, var(--jade-forest) 0%, var(--jade-deep) 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: 3.5rem 0 2rem;
    text-align: center;
    border-top: 2px solid rgba(201, 169, 98, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-partner-logo {
    max-width: min(440px, 94vw);
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.footer p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.rera-footer {
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--gold-light);
    text-decoration: none;
    margin: 0 1rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.enquire-now {
    margin-top: 2rem;
}

/* Sticky Book Now — vertical bar right edge */
.sticky-eoi-middle {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sticky-eoi-middle.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.sticky-eoi-bar-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    min-height: 200px;
    background: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
    box-shadow: -2px 0 16px rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(201, 169, 98, 0.3);
    transition: background 0.25s ease, width 0.25s ease;
}
.sticky-eoi-bar-link:hover {
    background: var(--primary-color);
    color: var(--white);
}
.sticky-eoi-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(-180deg);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    white-space: nowrap;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sticky-eoi-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    font-size: 0.95rem;
}
.sticky-eoi-bar-link:hover .sticky-eoi-icon-wrap {
    background: rgba(255, 255, 255, 0.35);
}
@media (max-width: 768px) {
    .sticky-eoi-bar-link {
        width: 46px;
        min-height: 180px;
    }
    .sticky-eoi-vertical-text {
        font-size: 0.7rem;
        letter-spacing: 0.12em;
    }
    .sticky-eoi-icon-wrap {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

/* WhatsApp Button — Refined */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 1000;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    background: #128c7e;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* Hero responsive */
@media (max-width: 768px) {
    .hero-tagline {
        letter-spacing: 0.06em;
        font-size: clamp(1.75rem, 5vw, 3rem);
    }
    .hero-scroll-indicator {
        bottom: 1.5rem;
    }
    .hero-indicators {
        bottom: 3.5rem;
    }
}

/* Carousel fade */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}
.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption h3 {
        font-size: 1.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .contact-modal {
        position: static;
        width: 100%;
        margin: 2rem 0;
    }

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

    .location-number {
        margin-right: 0.75rem;
        margin-bottom: 0;
    }

    .gallery-slide-img {
        height: 55vh;
        min-height: 280px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 70vh;
    }

    .hero-section .carousel-item {
        height: 70vh;
    }

    .carousel-caption {
        padding: 1rem;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .price-text {
        font-size: 1.5rem;
    }

    .highlight-card,
    .amenity-card {
        margin-bottom: 1rem;
    }
}

/* Form Styles — Premium */
.form-control {
    border-radius: 6px;
    border: 1px solid var(--border-color);
    padding: 0.85rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.22);
}

.btn-primary,
.btn-luxury {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
    color: var(--primary-dark);
    padding: 0.9rem 2.25rem;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.btn-primary:hover,
.btn-luxury:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.4);
}

.btn-outline-primary {
    color: var(--gold-dark);
    border: 2px solid var(--gold);
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ========== LUXURY ANIMATIONS ========== */

/* Hero entrance animations */
.animate-fade-in {
    animation: heroFadeIn 1s ease-out forwards;
    opacity: 0;
}
.animate-slide-up {
    animation: heroSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.55s; }
.delay-4 { animation-delay: 0.7s; }
.delay-5 { animation-delay: 0.9s; }
.animate-scale-in {
    animation: heroScaleIn 0.8s ease-out 0.35s forwards;
    opacity: 0;
}
@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroScaleIn {
    from { opacity: 0; transform: scaleX(0); }
    to { opacity: 1; transform: scaleX(1); }
}

/* Scroll reveal — initial state */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal .reveal-up.revealed,
.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children when parent is revealed */
.reveal.revealed .reveal-up {
    transition-delay: calc(var(--i, 0) * 0.08s);
}

/* Experience cards (AQUALIS) */
.experience-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7f5f0 100%);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-top: 3px solid var(--gold);
    transition: var(--transition);
    height: 100%;
}
.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-luxury);
    border-top-color: var(--gold-dark);
}
.experience-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(18, 38, 28, 0.18), rgba(201, 169, 98, 0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.experience-icon i {
    font-size: 1.5rem;
    color: var(--gold-dark);
}
.experience-card h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.experience-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}
.aqualis-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.15rem;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-jade) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(201, 169, 98, 0.2);
    border-top: 5px solid var(--gold-dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Gallery grid item aspect ratio */

/* ========== Full theme: modals + map (Jade + gold) ========== */
.theme-jade .modal-content {
    border: 1px solid rgba(201, 169, 98, 0.35);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(10, 21, 16, 0.22);
}

.theme-jade .modal-header {
    background: linear-gradient(180deg, #f8f6f1 0%, #efeae1 100%);
    border-bottom: 1px solid rgba(201, 169, 98, 0.25);
}

.theme-jade .modal-title {
    color: var(--primary-color);
}

.theme-jade #contact iframe[title*="Google Maps"],
.theme-jade #contact iframe[title*="Maps"] {
    border-radius: 10px !important;
    border: 1px solid rgba(201, 169, 98, 0.3) !important;
    box-shadow: var(--shadow-soft);
}

.theme-jade .sticky-eoi-bar-link {
    background: linear-gradient(180deg, var(--jade-forest) 0%, var(--jade-deep) 100%);
    border-left: 1px solid rgba(201, 169, 98, 0.4);
}

.theme-jade .sticky-eoi-bar-link:hover {
    background: var(--jade-mid);
}