/* ==========================================================================
   LUXURY REAL ESTATE TYPOGRAPHY SYSTEM
   Design System Tokens for Premium Developer Aesthetic
   Typography Pairing: Playfair Display (Luxury Serif) + Inter (Modern Sans-Serif)
   ========================================================================== */

:root {
    /* ----------------------------------------------------------------------
       1. FONT FAMILIES
       ---------------------------------------------------------------------- */
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* ----------------------------------------------------------------------
       2. COLOR PALETTE (Matched to Header Logo)
       ---------------------------------------------------------------------- */
    --color-primary: #f36421;
    --color-primary-dark: #d95213;
    --color-primary-light: #ff7e42;
    --color-gold-gradient: linear-gradient(135deg, #ff7e42 0%, #f36421 100%);
    --color-dark: #000000;
    --color-dark-muted: #1f2937;
    --color-body-text: #000000;
    --color-light-bg: #ffffff;
    --color-warm-gray: #fdf5ef;
    --color-section-gray: #fdf5ef;
    --color-border: #e2e8f0;
    --color-border-gold: rgba(243, 100, 33, 0.35);

    /* ----------------------------------------------------------------------
       3. RESPONSIVE TYPOGRAPHY SCALE (Fluid clamp() values)
       ---------------------------------------------------------------------- */
    /* H1 – Main Hero Heading: Desktop 56-68px | Mobile 34-42px */
    --font-size-h1: clamp(2.15rem, 4.5vw + 0.8rem, 4.15rem);
    --line-height-h1: 1.1;
    --letter-spacing-h1: -0.025em;
    --font-weight-h1: 600;

    /* H2 – Major Section Heading: Desktop 40-48px | Mobile 28-34px */
    --font-size-h2: clamp(1.75rem, 3vw + 0.6rem, 2.75rem);
    --line-height-h2: 1.18;
    --letter-spacing-h2: -0.015em;
    --font-weight-h2: 600;

    /* H3 – Section / Subsection Heading: Desktop 28-34px | Mobile 22-26px */
    --font-size-h3: clamp(1.35rem, 1.8vw + 0.5rem, 2rem);
    --line-height-h3: 1.25;
    --letter-spacing-h3: -0.01em;
    --font-weight-h3: 600;

    /* H4 – Feature / Subheading: Desktop 22-26px | Mobile 18-20px */
    --font-size-h4: clamp(1.15rem, 1.2vw + 0.4rem, 1.5rem);
    --line-height-h4: 1.35;
    --letter-spacing-h4: 0;
    --font-weight-h4: 600;

    /* Body Large – Lead Paragraphs / Highlights: 18px */
    --font-size-body-large: clamp(1.05rem, 0.4vw + 0.9rem, 1.125rem);
    --line-height-body-large: 1.7;
    --font-weight-body-large: 400;

    /* Body Regular – Standard Reading Content: 16px */
    --font-size-body: 1rem;
    --line-height-body: 1.65;
    --font-weight-body: 400;

    /* Small Text / Secondary Information: 14px */
    --font-size-small: 0.875rem;
    --line-height-small: 1.5;
    --font-weight-small: 400;

    /* Caption / Badges / Tags: 12-13px */
    --font-size-caption: 0.8125rem;
    --line-height-caption: 1.4;
    --font-weight-caption: 600;
    --letter-spacing-caption: 0.08em;

    /* Navigation: 14-15px */
    --font-size-nav: 0.9375rem;
    --line-height-nav: 1;
    --font-weight-nav: 500;
    --letter-spacing-nav: 0.03em;

    /* Buttons & CTAs: 15-16px */
    --font-size-btn: 0.9375rem;
    --line-height-btn: 1;
    --font-weight-btn: 600;
    --letter-spacing-btn: 0.04em;

    /* Property Numeric Highlights (Prices, BHKs, Key Numbers): 28-36px */
    --font-size-prop-val: clamp(1.6rem, 2.5vw + 0.8rem, 2.25rem);
    --line-height-prop-val: 1.1;
    --font-weight-prop-val: 700;
    --letter-spacing-prop-val: -0.02em;

    /* Property Supporting Label: 13-14px */
    --font-size-prop-label: 0.875rem;
    --line-height-prop-label: 1.4;
    --font-weight-prop-label: 500;
    --letter-spacing-prop-label: 0.02em;

    /* Form Labels: 14px */
    --font-size-form-label: 0.875rem;
    --font-weight-form-label: 600;

    /* Form Inputs: 15px */
    --font-size-form-input: 0.9375rem;
    --font-weight-form-input: 400;

    /* Footer Text: 13px */
    --font-size-footer: 0.8125rem;
    --line-height-footer: 1.6;
}

/* ==========================================================================
   GLOBAL RESETS & TYPOGRAPHY FOUNDATIONS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    font-weight: var(--font-weight-body);
    color: var(--color-body-text);
    background-color: var(--color-light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease, opacity 0.25s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Headings Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-primary);
    margin-top: 0;
    font-feature-settings: "kern" 1, "liga" 1;
}

h1 {
    font-size: var(--font-size-h1);
    line-height: var(--line-height-h1);
    letter-spacing: var(--letter-spacing-h1);
    font-weight: var(--font-weight-h1);
    margin-bottom: 20px;
}

h2 {
    font-size: var(--font-size-h2);
    line-height: var(--line-height-h2);
    letter-spacing: var(--letter-spacing-h2);
    font-weight: var(--font-weight-h2);
    margin-bottom: 18px;
}

h3 {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-h3);
    letter-spacing: var(--letter-spacing-h3);
    font-weight: var(--font-weight-h3);
    margin-bottom: 14px;
}

h4 {
    font-family: var(--font-sans);
    font-size: var(--font-size-h4);
    line-height: var(--line-height-h4);
    letter-spacing: var(--letter-spacing-h4);
    font-weight: var(--font-weight-h4);
    margin-bottom: 10px;
}

p {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--color-body-text);
}

strong, b {
    font-weight: 600;
    color: var(--color-dark);
}

.lead-text, .brxe-text.lead {
    font-size: var(--font-size-body-large);
    line-height: var(--line-height-body-large);
}

.text-small {
    font-size: var(--font-size-small);
    line-height: var(--line-height-small);
}

.caption {
    font-size: var(--font-size-caption);
    letter-spacing: var(--letter-spacing-caption);
    text-transform: uppercase;
    font-weight: var(--font-weight-caption);
}

/* Structural Containers */
.brxe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.brxe-section {
    padding: 70px 0;
}

.brxe-heading {
    font-family: var(--font-serif);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 18px;
    font-size: var(--font-size-h2);
    line-height: var(--line-height-h2);
    letter-spacing: var(--letter-spacing-h2);
}

.brxe-text {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 25px;
    line-height: var(--line-height-body);
    font-size: var(--font-size-body);
    color: var(--color-body-text);
}

.brx-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Helper Utilities */
.bg-white { background-color: var(--color-light-bg) !important; }
.bg-primary { background-color: var(--color-primary) !important; }
.bg-gray { background-color: var(--color-section-gray) !important; }
.bg-green { background-color: #25D366 !important; }

.text-dark { color: var(--color-dark) !important; }
.text-primary { color: var(--color-primary) !important; }
.text-white { color: #ffffff !important; }

.fw-bold { font-weight: 700 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-medium { font-weight: 500 !important; }
.fw-regular { font-weight: 400 !important; }
.text-center { text-align: center !important; }

.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.list-unstyled { list-style: none; margin: 0; padding: 0; }

.w-100 { width: 100%; }
.border-0 { border: 0; }
.radius-5 { border-radius: 5px; }
.radius-8 { border-radius: 8px; }
.radius-10 { border-radius: 10px; }
.radius-50 { border-radius: 50px; }

/* ==========================================================================
   HEADER & NAVIGATION TYPOGRAPHY
   ========================================================================== */
#brx-header { 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    background-color: #ffffff; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.06); 
    transition: all 0.3s ease;
}

#brx-header .brxe-section { 
    padding: 12px 0; 
}

#brx-header .brxe-container { 
    max-width: 1360px; 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 25px; 
    padding: 0 24px;
    box-sizing: border-box;
}

.header-logo { 
    display: block; 
    transition: transform 0.3s ease; 
}
.header-logo:hover { 
    transform: scale(1.02); 
}

/* Header Navigation Menu */
#main-nav-menu ul { 
    display: flex; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    align-items: center; 
    gap: 24px; 
}

#main-nav-menu ul li { 
    margin: 0; 
    padding: 0; 
}

#main-nav-menu ul li a { 
    font-family: var(--font-sans);
    color: var(--color-dark); 
    font-weight: var(--font-weight-nav); 
    font-size: var(--font-size-nav); 
    letter-spacing: var(--letter-spacing-nav);
    text-decoration: none; 
    position: relative; 
    padding: 6px 2px; 
    transition: color 0.25s ease; 
    white-space: nowrap; 
}

#main-nav-menu ul li a:hover { 
    color: var(--color-primary); 
}

#main-nav-menu ul li a::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 0; 
    height: 2px; 
    background: var(--color-primary); 
    transition: width 0.25s ease; 
    border-radius: 2px; 
}

#main-nav-menu ul li a:hover::after { 
    width: 100%; 
}

/* Header Contact Us Button (CTA) */
#brxe-jxuzzf { 
    font-family: var(--font-sans);
    font-size: var(--font-size-btn); 
    font-weight: var(--font-weight-btn); 
    letter-spacing: var(--letter-spacing-btn); 
    text-transform: uppercase; 
    white-space: nowrap; 
    margin-left: 20px; 
    padding: 10px 24px; 
    min-height: 44px;
    border-radius: 50px; 
    background: var(--color-gold-gradient); 
    color: #ffffff !important; 
    border: 1px solid var(--color-primary); 
    box-shadow: 0 4px 14px rgba(166, 141, 43, 0.35); 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    gap: 8px; 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
    text-decoration: none;
    flex-shrink: 0;
}

#brxe-jxuzzf i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

#brxe-jxuzzf:hover { 
    background: #000000; 
    color: #ffffff !important; 
    border-color: #000000; 
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25); 
    transform: translateY(-2px); 
}

#brxe-jxuzzf:hover i {
    transform: rotate(15deg);
}

@media (min-width: 992px) {
    .mobile-nav-contact { display: none !important; }
}

#hamburger-menu { 
    display: none; 
    background: none; 
    border: none; 
    font-size: 26px; 
    cursor: pointer; 
    color: var(--color-primary); 
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
}

/* ==========================================================================
   BUTTONS & CTAs TYPOGRAPHY
   ========================================================================== */
.btn-theme { 
    font-family: var(--font-sans);
    font-size: var(--font-size-btn);
    font-weight: var(--font-weight-btn);
    letter-spacing: var(--letter-spacing-btn);
    line-height: var(--line-height-btn);
    background: var(--color-primary); 
    color: #ffffff; 
    padding: 12px 28px; 
    min-height: 44px;
    border-radius: 6px; 
    border: 1px solid var(--color-primary); 
    cursor: pointer; 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase; 
    transition: all 0.3s ease; 
}

.btn-theme:hover { 
    background: #000000; 
    color: var(--color-primary-light); 
    border-color: #000000; 
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ==========================================================================
   HERO / BANNER & OFFER STRIP
   ========================================================================== */
.home-section .swiper-slide img { 
    width: 100%; 
    height: 85vh; 
    object-fit: cover; 
}

.mobile-banner { 
    display: none; 
}

.offer-strip { 
    font-family: var(--font-sans);
    font-size: 1.05rem; 
    font-weight: 600; 
    letter-spacing: 0.4px; 
    background-color: var(--color-primary); 
    color: #ffffff; 
    text-align: center; 
    padding: 14px 20px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); 
}

.breadcrumb-nav { 
    list-style: none; 
    padding: 0; 
    display: flex; 
    font-size: var(--font-size-small); 
    font-weight: 500;
}

/* ==========================================================================
   PRICING TABLE TYPOGRAPHY
   ========================================================================== */
.pricing-wrapper { 
    padding: 50px 15px; 
    background-color: #ffffff; 
}

.pricing-container { 
    border: 2px solid var(--color-primary); 
    border-radius: 12px; 
    overflow: hidden; 
    background: #ffffff; 
    max-width: 1020px; 
    margin: 0 auto; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.04); 
}

.pricing-header { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr; 
    background-color: var(--color-primary); 
    color: #ffffff; 
    font-family: var(--font-sans);
    font-weight: 600; 
    font-size: 1.05rem; 
    letter-spacing: 0.3px;
    padding: 16px 20px; 
    text-align: center; 
}

.pricing-row { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr; 
    align-items: center; 
    padding: 18px 20px; 
    text-align: center; 
    border-bottom: 1px solid #eeeeee; 
}

.pricing-row:nth-child(odd) { background-color: #fcfcfc; }
.pricing-row:nth-child(even) { background-color: #ffffff; }
.pricing-row:last-child { border-bottom: none; }

.p-type { 
    text-align: left; 
    font-family: var(--font-sans);
    font-weight: 600; 
    color: var(--color-dark); 
    font-size: 1.1rem; 
}

.p-area { 
    font-family: var(--font-sans);
    color: var(--color-dark-muted); 
    font-size: 1.05rem; 
    font-weight: 500;
}

.p-price { 
    font-family: var(--font-sans);
    color: var(--color-primary); 
    font-size: 1.2rem; 
    font-weight: 700;
    letter-spacing: -0.01em;
}

.pricing-btn { 
    font-family: var(--font-sans);
    font-size: var(--font-size-small); 
    font-weight: 600; 
    letter-spacing: 0.3px;
    text-transform: uppercase;
    background-color: var(--color-primary); 
    color: #ffffff; 
    border: 1px solid var(--color-primary); 
    padding: 11px 18px; 
    min-height: 44px;
    border-radius: 6px; 
    cursor: pointer; 
    width: 100%; 
    max-width: 220px; 
    margin: 0 auto; 
    box-shadow: 0 2px 8px rgba(166, 141, 43, 0.2); 
    transition: all 0.3s ease; 
}

.pricing-btn:hover { 
    background-color: #000000; 
    color: #ffffff; 
    border-color: #000000; 
    transform: translateY(-2px); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.mobile-offer-wrapper { display: none; }

/* ==========================================================================
   AMENITIES & CARDS TYPOGRAPHY
   ========================================================================== */
.amenity-card { 
    background: #ffffff; 
    color: var(--color-dark); 
    border-radius: 12px; 
    padding: 24px; 
    box-shadow: 0 4px 16px rgba(0,0,0,0.06); 
    border: 1px solid var(--color-border-gold); 
}

.amenity-card img { 
    width: 100%; 
    border-radius: 8px; 
    margin-bottom: 20px; 
}

.amenity-card h4 { 
    font-family: var(--font-serif);
    color: var(--color-primary); 
    font-weight: 600; 
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.amenity-list-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 12px; 
}

.amenity-list-grid ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.amenity-list-grid li { 
    position: relative; 
    padding-left: 26px; 
    margin-bottom: 10px; 
    color: var(--color-body-text);
    font-size: var(--font-size-small);
    line-height: 1.5;
}

.amenity-list-grid li::before { 
    content: '›'; 
    font-size: 18px;
    font-weight: bold; 
    position: absolute; 
    left: 0; 
    top: -2px; 
    background: var(--color-primary); 
    color: #ffffff; 
    width: 18px; 
    height: 18px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    line-height: 1; 
}

/* ==========================================================================
   FLOOR PLANS TYPOGRAPHY
   ========================================================================== */
.floor-plan-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    margin-top: 30px; 
}

.floor-plan-card { 
    background: #ffffff; 
    padding: 12px; 
    border: 1px solid var(--color-border-gold); 
    border-radius: 10px; 
    cursor: pointer; 
    text-align: center; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floor-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.floor-plan-card img { 
    width: 100%; 
    height: auto; 
    display: block; 
    filter: blur(1px); 
    border-radius: 6px;
    transition: filter 0.3s; 
}

.floor-plan-card:hover img { 
    filter: blur(0); 
}

.floor-plan-card p { 
    font-family: var(--font-sans);
    color: var(--color-dark) !important; 
    margin-top: 10px; 
    margin-bottom: 0;
    font-weight: 600; 
    font-size: 0.95rem;
}

/* ==========================================================================
   LOCATION ADVANTAGE TYPOGRAPHY
   ========================================================================== */
.loc-wrapper { 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: 40px; 
    align-items: center; 
    background: #ffffff; 
    padding: 35px; 
    border-radius: 12px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
    border: 1px solid var(--color-border-gold); 
}

.loc-image img { 
    width: 100%; 
    height: auto; 
    border-radius: 8px; 
    border: 1px solid var(--color-border-gold); 
}

.loc-content h2, .loc-content h3 { 
    color: var(--color-primary); 
    font-family: var(--font-serif); 
    margin-top: 0; 
    margin-bottom: 18px; 
    text-align: left;
}

.loc-intro { 
    margin-bottom: 22px; 
    color: var(--color-body-text); 
    line-height: var(--line-height-body); 
    font-size: var(--font-size-body);
}

.loc-category { 
    margin-bottom: 20px; 
}

.loc-category h4 { 
    font-family: var(--font-sans);
    color: var(--color-primary); 
    margin-bottom: 12px; 
    font-size: 1.1rem; 
    border-left: 3px solid var(--color-primary); 
    padding-left: 10px; 
    font-weight: 600;
}

.loc-category ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 10px; 
}

.loc-category li { 
    position: relative; 
    padding-left: 20px; 
    font-size: var(--font-size-small); 
    color: var(--color-body-text); 
    line-height: 1.5;
}

.loc-category li::before { 
    content: '•'; 
    color: var(--color-primary); 
    font-weight: bold; 
    font-size: 18px; 
    position: absolute; 
    left: 0; 
    top: -2px; 
}

/* ==========================================================================
   BLOG GRID TYPOGRAPHY
   ========================================================================== */
.blog-grid-home { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

.blog-card-home { 
    background: #ffffff; 
    border-radius: 10px; 
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.06); 
    text-decoration: none; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    display: flex; 
    flex-direction: column; 
    border: 1px solid var(--color-border-gold);
}

.blog-card-home:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-img-home { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
}

.blog-content-home { 
    padding: 22px; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
}

.blog-cat-home { 
    font-family: var(--font-sans);
    font-size: var(--font-size-caption); 
    color: var(--color-primary); 
    font-weight: var(--font-weight-caption); 
    letter-spacing: var(--letter-spacing-caption);
    text-transform: uppercase; 
    margin-bottom: 8px; 
    display: block; 
}

.blog-title-home { 
    font-family: var(--font-serif);
    font-size: 1.25rem; 
    font-weight: 600;
    color: var(--color-dark); 
    margin-top: 0;
    margin-bottom: 10px; 
    line-height: 1.35; 
}

.blog-excerpt-home { 
    font-family: var(--font-sans);
    font-size: var(--font-size-small); 
    color: var(--color-dark-muted); 
    line-height: var(--line-height-small); 
    margin-bottom: 16px; 
    flex-grow: 1; 
}

.blog-link-home { 
    font-family: var(--font-sans);
    font-size: var(--font-size-small); 
    color: var(--color-primary); 
    font-weight: 600; 
    text-decoration: none; 
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.blog-card-home:hover .blog-link-home {
    gap: 8px;
    color: var(--color-primary-dark);
}

/* ==========================================================================
   FAQS TYPOGRAPHY
   ========================================================================== */
details { 
    background: #ffffff; 
    margin-bottom: 12px; 
    border-radius: 8px; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.04); 
    overflow: hidden; 
    border: 1px solid var(--color-border-gold); 
}

details summary { 
    padding: 16px 20px; 
    cursor: pointer; 
    font-family: var(--font-sans);
    font-weight: 600; 
    font-size: 1rem;
    color: var(--color-dark); 
    list-style: none; 
    position: relative; 
    user-select: none;
}

details summary::-webkit-details-marker { display: none; }

details summary::after { 
    content: '+'; 
    position: absolute; 
    right: 20px; 
    font-weight: 600; 
    font-size: 1.25rem; 
    color: var(--color-primary); 
}

details[open] summary::after { 
    content: '−'; 
}

details p { 
    padding: 0 20px 18px 20px; 
    margin: 0; 
    color: var(--color-body-text); 
    line-height: var(--line-height-body); 
    font-size: var(--font-size-body);
}

/* ==========================================================================
   CONTACT SECTION & FORM TYPOGRAPHY
   ========================================================================== */
.contact-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 1fr 1.3fr; 
    box-shadow: 0 6px 25px rgba(0,0,0,0.06); 
    border-radius: 12px; 
    overflow: hidden; 
    background: #ffffff; 
    border: 1px solid var(--color-border-gold); 
    width: 100%; 
    margin: 0 auto;
}

.c-map {
    background: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.c-info { 
    background: var(--color-primary); 
    color: #ffffff; 
    padding: 35px 28px; 
    box-sizing: border-box; 
}

.c-info h3 { 
    color: #ffffff; 
    margin-top: 0; 
    margin-bottom: 25px; 
    font-size: 1.8rem; 
    font-family: var(--font-serif); 
}

.c-item { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 22px; 
    width: 100%; 
}

.c-icon { 
    background: #ffffff; 
    color: var(--color-primary); 
    width: 38px; 
    height: 38px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-right: 14px; 
    flex-shrink: 0; 
    font-size: 16px; 
}

.c-text h4 { 
    margin: 0 0 4px 0; 
    font-size: var(--font-size-caption); 
    color: #ffffff; 
    text-transform: uppercase; 
    letter-spacing: var(--letter-spacing-caption);
    font-weight: 600;
}

.c-text p { 
    margin: 0; 
    font-size: var(--font-size-small); 
    line-height: 1.45; 
    color: #ffffff; 
}

.c-form-box { 
    background: #ffffff; 
    padding: 35px 28px; 
    box-sizing: border-box; 
}

.c-form-box h3 { 
    margin-top: 0; 
    color: var(--color-primary); 
    margin-bottom: 18px; 
    font-size: 1.8rem; 
    font-family: var(--font-serif); 
}

.c-form-box label { 
    font-family: var(--font-sans);
    color: var(--color-dark); 
    font-weight: var(--font-weight-form-label); 
    display: block; 
    margin-bottom: 6px; 
    font-size: var(--font-size-form-label); 
}

.c-form-box input { 
    width: 100%; 
    border: 1px solid #d1d5db; 
    margin-bottom: 14px; 
    background: #ffffff; 
    padding: 12px 14px; 
    border-radius: 6px; 
    font-family: var(--font-sans); 
    font-size: var(--font-size-form-input); 
    color: var(--color-dark); 
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.c-form-box input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(166, 141, 43, 0.15);
}

.c-form-box button[type="submit"] {
    font-family: var(--font-sans);
    font-size: var(--font-size-btn);
    font-weight: var(--font-weight-btn);
    letter-spacing: var(--letter-spacing-btn);
    min-height: 46px;
    padding: 12px 20px;
    background: var(--color-primary);
    color: #ffffff;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.c-form-box button[type="submit"]:hover {
    background: #000000;
    transform: translateY(-1px);
}

/* ==========================================================================
   FOOTER & LEGAL TYPOGRAPHY
   ========================================================================== */
.footer-links-bar { 
    text-align: center; 
    padding: 20px 0; 
    font-size: var(--font-size-small); 
    font-weight: 500;
    color: var(--color-dark-muted); 
    border-top: 1px solid var(--color-border-gold); 
    background-color: var(--color-section-gray);
}

.footer-links-bar a { 
    margin: 0 10px; 
    transition: color 0.25s ease; 
}

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

.footer-links-bar span { 
    color: var(--color-primary); 
    opacity: 0.5;
}

footer {
    background-color: var(--color-primary);
    color: #ffffff;
    text-align: center;
    padding: 30px 15px;
    font-size: var(--font-size-footer);
    line-height: var(--line-height-footer);
}

footer p {
    color: #ffffff;
    font-size: var(--font-size-footer);
    line-height: var(--line-height-footer);
}

.footer-socials { 
    margin-top: 10px; 
    margin-bottom: 20px; 
}

.footer-socials a { 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 6px; 
    font-size: 1.1rem; 
    color: #ffffff; 
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    text-decoration: none; 
    transition: all 0.3s ease; 
}

.footer-socials a:hover { 
    background: #000000; 
    color: var(--color-primary-light);
    transform: translateY(-2px);
}

.info-disclaimer { 
    background: rgba(0, 0, 0, 0.18); 
    padding: 12px 16px; 
    border-radius: 6px; 
    font-size: 0.8rem; 
    line-height: 1.5;
    margin-bottom: 15px;
}

/* ==========================================================================
   POPUP MODAL (MATCHING REFERENCE DESIGN)
   ========================================================================== */
.popup-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.75); 
    z-index: 9999; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.3s ease, visibility 0.3s ease; 
    backdrop-filter: blur(4px); 
    padding: 15px;
    box-sizing: border-box;
}

.popup-overlay.show { 
    opacity: 1; 
    visibility: visible; 
}

.offer-popup { 
    background: #ffffff; 
    border-radius: 18px; 
    width: 100%; 
    max-width: 410px; 
    position: relative; 
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35); 
    text-align: left; 
    transform: translateY(-20px); 
    transition: transform 0.3s ease; 
    overflow: hidden; 
    max-height: 94vh; 
    overflow-y: auto; 
    box-sizing: border-box;
    border: none;
}

.popup-overlay.show .offer-popup { 
    transform: translateY(0); 
}

/* Top Banner with Floating Close Button */
.popup-top-banner {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #1a2e22;
}

.popup-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.popup-close-circle {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4d6d37;
    color: #ffffff;
    border: none;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.popup-close-circle:hover {
    background: #395228;
    transform: scale(1.08);
}

/* Popup Body Content */
.popup-body-content {
    padding: 20px 24px 26px;
}

.popup-enquire-title {
    font-family: var(--font-serif);
    font-size: 2.15rem;
    font-weight: 700;
    color: #e06842;
    text-align: center;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
}

.popup-form-group {
    margin-bottom: 13px;
}

.popup-field-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: #0d2b22;
    margin-bottom: 5px;
}

.popup-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 7px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #111827;
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.popup-input::placeholder {
    color: #9ca3af;
    font-size: 0.92rem;
}

.popup-input:focus {
    border-color: #4d6d37;
    outline: none;
    box-shadow: 0 0 0 3px rgba(77, 109, 55, 0.15);
}

/* Captcha Row */
.popup-captcha-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.captcha-display-box {
    background: #e3efcd;
    border: 1px solid #c4de9f;
    border-radius: 7px;
    padding: 0 12px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #1f3614;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(160, 200, 120, 0.2) 8px, rgba(160, 200, 120, 0.2) 16px);
    user-select: none;
    flex-shrink: 0;
    min-width: 95px;
}

.captcha-refresh-btn {
    background: #4d6d37;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.3s ease;
}

.captcha-refresh-btn:hover {
    background: #395228;
    transform: rotate(90deg);
}

.captcha-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 44px;
    margin-bottom: 0;
}

/* Submit Button */
.popup-submit-btn {
    width: 100%;
    background: #0f241d;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px;
    min-height: 46px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    margin-top: 14px;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(15, 36, 29, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-submit-btn:hover {
    background: #1e3f34;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 36, 29, 0.35);
}

/* Intl-tel-input override in popup */
.popup-form-group .iti {
    width: 100%;
    margin-bottom: 0;
}
.popup-form-group .iti input {
    margin-bottom: 0;
}

.iti__country-list { 
    z-index: 10000 !important; 
    font-family: var(--font-sans); 
    font-size: 13px; 
}

/* Swiper custom styling */
.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev { 
    background-color: rgba(0, 0, 0, 0.55); 
    color: #ffffff !important; 
    width: 38px !important; 
    height: 38px !important; 
    border-radius: 50%; 
}
.banner-swiper .swiper-button-next::after,
.banner-swiper .swiper-button-prev::after { 
    font-size: 14px !important; 
    font-weight: 700; 
}
.banner-swiper .swiper-pagination-bullet { 
    width: 28px !important; 
    height: 3px !important; 
    border-radius: 0 !important; 
    background: #ffffff !important; 
    opacity: 0.6; 
}
.banner-swiper .swiper-pagination-bullet-active { 
    opacity: 1 !important; 
    background: var(--color-primary) !important; 
    width: 38px !important; 
}

#brxe-wylpbs { display: none !important; }

/* ==========================================================================
   RESPONSIVE / MOBILE OPTIMIZED TYPOGRAPHY
   ========================================================================== */
@media (max-width: 991px) {
    .brxe-nav-menu { display: none; }
    #hamburger-menu { display: block; }
    #brxe-jxuzzf { display: none; }
    
    #main-nav-menu { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background-color: #ffffff; 
        flex-direction: column; 
        box-shadow: 0 8px 20px rgba(0,0,0,0.1); 
        border-bottom: 2px solid var(--color-primary);
    }
    
    #main-nav-menu.active { display: flex; }
    #main-nav-menu ul { flex-direction: column; width: 100%; gap: 0; }
    #main-nav-menu li { 
        padding: 14px 20px; 
        text-align: center; 
        border-bottom: 1px solid rgba(166, 141, 43, 0.2); 
        width: 100%; 
    }
    #main-nav-menu a { 
        color: var(--color-dark); 
        display: block; 
        width: 100%; 
        font-size: 1rem;
    }
    .mobile-nav-contact { display: block !important; }

    .loc-wrapper { grid-template-columns: 1fr; }
    .loc-category ul { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .brxe-section { padding: 45px 15px; }
    .brx-grid { grid-template-columns: 1fr; }
    .amenity-list-grid { grid-template-columns: 1fr; }
    .floor-plan-grid { grid-template-columns: repeat(2, 1fr); }
    
    .offer-strip { font-size: 0.95rem; padding: 12px 10px; }

    /* Sticky Mobile Bottom CTA Bar */
    #brxe-wylpbs { 
        display: flex !important; 
        position: fixed; 
        bottom: 0; 
        left: 0; 
        width: 100%; 
        z-index: 1000; 
        box-shadow: 0 -3px 12px rgba(0,0,0,0.15); 
    }
    #brxe-wylpbs a { 
        flex: 1 1 0; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        justify-content: center; 
        text-decoration: none; 
        padding: 10px 5px; 
        min-height: 52px;
        font-family: var(--font-sans);
        font-size: 13px; 
        font-weight: 600; 
        border-right: 1px solid rgba(0,0,0,0.1); 
    }
    #brxe-wylpbs a i { font-size: 18px; margin-bottom: 4px; }
    #brxe-wylpbs a:nth-child(1) { background-color: var(--color-primary); color: #ffffff; }
    #brxe-wylpbs a:nth-child(2) { background-color: var(--color-primary); color: #ffffff; }
    #brxe-wylpbs a:nth-child(3) { background-color: var(--color-primary); color: #ffffff; border-right: none; }
    
    body { padding-bottom: 56px; }

    /* Mobile Pricing Table */
    .desktop-only { display: none; }
    .pricing-row { 
        grid-template-columns: 1fr; 
        padding: 22px 16px; 
        gap: 6px; 
        border-bottom: 1px solid #eeeeee; 
    }
    .p-type { text-align: center; font-size: 1.25rem; color: var(--color-primary); font-weight: 600; }
    .p-area { font-size: 1rem; }
    .p-price { font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; }

    /* Mobile Offer Card */
    .mobile-offer-wrapper { 
        display: block; 
        background-color: #ffffff; 
        padding: 18px 15px; 
    }
    .mo-card { 
        background: #ffffff; 
        border-radius: 10px; 
        overflow: hidden; 
        box-shadow: 0 4px 15px rgba(0,0,0,0.08); 
        border: 1px solid var(--color-border-gold); 
        text-align: center; 
    }
    .mo-header { 
        background-color: #000000; 
        color: var(--color-primary); 
        font-size: 0.95rem; 
        font-weight: 600; 
        padding: 10px; 
        text-transform: uppercase; 
        letter-spacing: 0.5px; 
    }
    .mo-details { padding: 18px 12px 12px 12px; }
    .mo-title { 
        font-family: var(--font-serif);
        font-size: 1.5rem; 
        font-weight: 700; 
        color: var(--color-primary); 
        margin: 0 0 4px 0; 
    }
    .mo-subtitle { font-size: 0.95rem; font-weight: 600; color: var(--color-dark); margin: 0 0 2px 0; }
    .mo-location { font-size: 0.85rem; color: var(--color-dark-muted); margin: 0; }
    
    .mo-highlight { 
        background-color: var(--color-primary); 
        color: #ffffff; 
        font-weight: 600; 
        padding: 10px; 
        font-size: 0.9rem; 
    }
    .mo-usps { 
        background-color: var(--color-primary); 
        color: #ffffff; 
        padding: 5px 15px; 
    }
    .mo-usps p { 
        margin: 0; 
        padding: 8px 0; 
        font-size: 0.9rem; 
        font-weight: 400; 
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25); 
    }
    .mo-usps p:last-child { border-bottom: none; }
    
    .mo-pricing { padding: 15px 10px 5px; }
    .mo-pricing-title { font-size: 0.95rem; color: var(--color-dark-muted); margin: 0 0 4px 0; font-weight: 500; }
    .mo-price-val { 
        font-family: var(--font-sans);
        font-size: 1.75rem; 
        font-weight: 800; 
        color: var(--color-primary); 
        margin: 0; 
    }
    
    .mo-btn { 
        font-family: var(--font-sans);
        background: var(--color-primary); 
        color: #ffffff; 
        border: 1px solid var(--color-primary); 
        padding: 12px 30px; 
        min-height: 44px;
        border-radius: 50px; 
        font-size: 1rem; 
        font-weight: 600; 
        cursor: pointer; 
        margin-bottom: 18px; 
        box-shadow: 0 4px 12px rgba(166, 141, 43, 0.3); 
        text-transform: uppercase; 
    }
    
    .footer-links-bar a { display: block; margin: 8px 0; }
    .footer-links-bar span { display: none; }
}