:root {
    --primary-dark: #0b0f19;
    /* Dark premium tone matched to image backdrop */
    --accent-gold: #e5c483;
    /* Solid luxury gold from Figma design buttons */
    --btn-gold-hover: #d2b06e;
    --text-white: #ffffff;
    --glass-badge: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ==========================================================================
   CLEAN TRANSPARENT LOGO HEADER (FIXED FOR CORNER ALIGNMENT & HD PURE LOOK)
   ========================================================================== */

.main-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    padding: 25px 0;
    background: transparent !important;
    /* Vartun sarv black daddp patti poorna kadhli */
    box-sizing: border-box;
    pointer-events: none;
    /* पारदर्शक हेडरला क्लिक्स ब्लॉक करण्यापासून थांबवते */
}

.header-container {
    max-width: 100% !important;
    /* 100% kelya mule container desktop var block bighdwanar nahi */
    width: 100%;
    margin: 0;
    padding: 0 60px !important;
    /* Hya padding mule desktop la edge pasun ekdam proper left side la set hoil */
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    /* Pure left alignment */
    box-sizing: border-box;
}

.logo-wrapper {
    display: inline-block !important;
    text-decoration: none;
    pointer-events: auto;
    /* फक्त लोगोवर क्लिक्स चालू ठेवते */
}

.site-logo {
    width: 170px !important;
    /* Premium Desktop HD View Size */
    height: auto !important;
    display: block !important;

    /* Transparent background var logo gold ughdun disnya sathi pure HD stroke drop-shadow effect */
    filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.9)) drop-shadow(-1px -1px 0px rgba(0, 0, 0, 0.9)) drop-shadow(2px 4px 12px rgba(0, 0, 0, 0.85)) !important;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.03);
}

/* ==========================================================================
   📱 MOBILE VIEW FIXES (iPhone 14 / Mobile Center View)
   ========================================================================== */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 0;
    }

    .header-container {
        justify-content: center !important;
        /* Mobile view madhye barobar madhomadh center hotil */
        padding: 0 20px !important;
        /* Mobile edges padding standard dynamic reset */
    }

    .site-logo {
        width: 130px !important;
        /* Mobile var proper clear disnyasathi pixel width */
    }

    /* Text dynamic overlap remove karnyasaathi simple base padding gap */
    .hero-section {
        padding-top: 130px !important;
    }
}

/* ==========================================================================
   📱 MOBILE VIEW FORM FIXES (Prevents auto-zooming & overflowing outside)
   ========================================================================== */
/* Update line number 111 inside @media (max-width: 768px) */
.form-group select,
.visit-form-right select {
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    appearance: auto !important;
    /* Mobile browser cha native dropdown standard active kela */
    -webkit-appearance: select !important;
    -moz-appearance: select !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Form group padding structure logic for clear drop space */
.form-group {
    position: relative;
    margin-bottom: 8px;
}

/* Background Image Layer Optimization to achieve exactly identical structure layout */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 6%;
    /* Layer overlay match to make the white card form popup elegantly */
    background: linear-gradient(rgba(11, 15, 25, 0.65), rgba(11, 15, 25, 0.75)),
        url('images/home-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    max-width: 1240px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

/* Left Typography Segment Style Elements */
.content-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

/* Gold decorative horizontal line matching the top of header */
.gold-line {
    width: 45px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-bottom: 20px;
}

.title-area h1 {
    font-size: 3rem;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.title-area .project-name {
    font-weight: 700;
    color: var(--text-white);
}

.subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    /* Muted tone precisely as displayed on screen graphic layout */
    margin-top: 15px;
    font-weight: 400;
}

/* Horizontal alignment of property parameters */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stat-badge {
    background: var(--glass-badge);
    border: 1px solid var(--glass-border);
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-badge .icon {
    display: none;
    /* Keep cleaner typography framework look from image */
}

/* Precise Horizontal arrangement for main action items */
.cta-group {
    display: flex;
    gap: 14px;
}

.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s linear;
    text-align: center;
}

.btn-gold-filled {
    background-color: var(--accent-gold);
    color: #0b0f19;
}

.btn-gold-filled:hover {
    background-color: var(--btn-gold-hover);
}

.btn-glass-border {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}

.btn-glass-border:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-white);
}

/* Solid White Crisp Form Card Layout matching screen exactly */
.form-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 35px 30px;
    color: #1e293b;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    width: 100%;
}

.form-card h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.form-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 22px;
}

.form-group {
    margin-bottom: 8px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 6px;
    text-align: left;
}

.req {
    color: #dc2626;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #0f172a;
    background-color: #ffffff;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #a1824a;
}

/* Inline Embedded Mathematical Check block styling */
.captcha-math-wrapper {
    margin: 12px 0;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.captcha-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 4px;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.math-question {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}

.captcha-input {
    width: 60px;
    padding: 6px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
    color: #0f172a;
}

.btn-refresh-captcha {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Validation warnings outputs */
.error-msg {
    color: #dc2626;
    font-size: 0.78rem;
    margin-top: 3px;
    display: none;
}

/* Checkbox fields format */
.checkbox-container,
.privacy-checkbox-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

/* Secure Data Text Styling Patch */
.data-info {
    font-size: 13px;
    color: #718096;
    /* Muted slate/gray color screenshot sarka */
    text-align: center;
    margin-top: 15px;
    /* Button aani text madhye space denyasathi */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 400;
    width: 100%;
}

.data-info i {
    color: #718096;
    /* Icon cha color pan match kela */
    font-size: 13px;
}

.checkbox-container input[type="checkbox"],
.privacy-checkbox-row input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: #a1824a;
    margin: 0;
    flex: 0 0 14px;
    min-width: 14px;
    min-height: 14px;
}

.checkbox-container label,
.privacy-checkbox-row label {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1 auto;
    min-width: 0;
}

/* Full card width gold submit layout button */
.btn-submit {
    width: 100%;
    background-color: var(--accent-gold);
    color: #0b0f19;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--btn-gold-hover);
}

.maharera-info {
    text-align: center;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 12px;
    letter-spacing: 0.2px;
}

/* Responsive Adaptive Screen Breakpoints layout controls */
@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .content-left {
        align-items: center;
        text-align: center;
    }

    .stats-row,
    .cta-group {
        justify-content: center;
    }

    .title-area h1 {
        font-size: 2.5rem;
    }

    .gold-line {
        margin: 0 auto 20px auto;
    }

    .form-card {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Figma About Section - Exact Matching to image_f077e3.jpg
   ========================================================================== */

.luxury-about-section {
    background-color: #ffffff;
    /* Clean Solid White canvas background */
    padding: 90px 6% 120px 6%;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Precise spatial split */
    gap: 50px;
    align-items: center;
}

/* Left Typography Elements */
.about-content-left {
    display: flex;
    flex-direction: column;
}

.decorative-gold-dash {
    width: 40px;
    height: 2px;
    background-color: #cbd5e1;
    /* Subtle divider light layout accent */
    margin-bottom: 25px;
}

.about-title {
    font-size: 2.3rem;
    font-weight: 500;
    color: #0f172a;
    /* Premium Corporate Deep Dark Navy/Black */
    line-height: 1.25;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.about-title .gold-text {
    color: #cca45c;
    /* Flat Gold hue extracted precisely from layout text colors */
    font-weight: 400;
}

.about-desc-main {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #334155;
    /* Medium grey body text definition */
    margin-bottom: 20px;
    font-weight: 400;
}

.about-desc-sub {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 35px;
    font-weight: 400;
}

/* 2x2 Grid Architecture for Badges */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    /* Big horizontal gap exactly like Figma screenshot spacing */
    max-width: 460px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 500;
    color: #cca45c;
    /* Mapped to gold scheme */
    letter-spacing: -0.3px;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    /* Lighter slate metadata label tag text color */
}

/* Right Media Block - Match height, width and float card curves */
.about-media-right {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.premium-image-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    /* Width proportion to contain section scaling correctly */
    height: 380px;
    /* Set fixed height precisely aligned to image_f077e3.jpg */
    border-radius: 12px;
    /* Smooth elegant canvas border rounding radius */
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
    /* Soft premium ambient shadow */
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Floating Gold Badge Layout Element */
.floating-luxury-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ebd197, #bca166);
    /* Smooth satin real-estate gold pill background */
    padding: 10px 18px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.tag-sub {
    font-size: 0.55rem;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.tag-main {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    margin-top: 1px;
}

/* Responsive Adaptive Controls for Mobile Viewports */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        /* Top-bottom stack arrangement layout */
        gap: 50px;
        text-align: center;
    }

    .about-content-left {
        align-items: center;
    }

    .decorative-gold-dash {
        margin: 0 auto 25px auto;
    }

    .about-media-right {
        justify-content: center;
    }

    .premium-image-card {
        max-width: 100%;
        height: 340px;
    }

    .about-stats-grid {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.85rem;
    }

    .about-stats-grid {
        gap: 20px;
        justify-items: center;
    }

    .premium-image-card {
        height: 250px;
    }
}

/* ==========================================================================
   Figma Key Highlights Section - Clean White/Off-White Background Theme
   ========================================================================== */

.highlights-section {
    background-color: #f7f5f0;
    /* Warm off-white backdrop visible in screenshot */
    padding: 100px 6%;
}

.highlights-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Text Centering & Styles */
.highlights-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-title .gold-text {
    color: #cca45c;
    /* Figma signature gold tint */
    font-weight: 600;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* 3-Column Balanced Card Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

/* Grid Card Details matching exact proportions */
.highlight-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    /* Soft subtle blend shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.07);
}

/* Muted Golden Icon Container Base Frame */
.icon-box {
    width: 46px;
    height: 46px;
    background-color: #ebdcb9;
    /* Light flat background mask for icons */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a1824a;
    /* Icon color dark sharp gold */
    margin-bottom: 28px;
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.card-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #64748b;
    /* Clean reading contrast level description text */
}

/* Responsive Structural Breakpoints for Devices */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns grid for smaller screens */
        gap: 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .highlights-section {
        padding: 70px 4%;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        /* Pure stacked list for mobile devices viewports */
    }

    .highlights-header {
        margin-bottom: 40px;
    }

    .highlight-card {
        padding: 30px 24px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .highlight-card .icon-box {
        margin: 0 auto 28px auto;
    }
}

/* ==========================================================================
   Figma Configuration Section - Exact Layout Split Theme with Disclaimer
   ========================================================================== */

.pricing-section {
    background-color: #ffffff;
    /* Smooth standard background white base grid */
    padding: 100px 6% 80px 6%;
}

.pricing-container {
    max-width: 1140px;
    /* Aligned crisp container width mapping */
    margin: 0 auto;
}

/* Header Grid Styling */
.pricing-header {
    text-align: center;
    margin-bottom: 70px;
}

.pricing-header .section-title {
    font-size: 2.6rem;
    font-weight: 500;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.pricing-header .gold-text {
    color: #cca45c;
    /* Core branding luxury gold tone */
    font-weight: 600;
}

.pricing-header .section-subtitle {
    font-size: 0.95rem;
    color: #64748b;
}

/* Spatial Core Cards Balancing Array */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto 50px auto;
    /* Margin bottom added to create balance before disclaimer */
    align-items: stretch;
}

/* Base Card Elements Layout Structural Architecture */
.price-card {
    border-radius: 16px;
    padding: 50px 40px 40px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
    /* Soft premium perimeter shadows */
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card:hover {
    transform: translateY(-6px);
}

/* Card Variation Variant A: 2 BHK Light Profile Block styling */
.card-light {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
}

/* Card Variation Variant B: 3 BHK Dark Premium Profile Block styling */
.card-dark {
    background-color: #0e1726;
    /* Dark slate navy color extracted from the card element */
    color: #ffffff;
    border: 1px solid #1e293b;
    box-shadow: 0 30px 60px rgba(14, 23, 38, 0.25);
}

/* Top Floating Pill Badge Component Layout */
.popular-ribbon-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ebd197, #bca166);
    color: #0f172a;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(188, 161, 102, 0.3);
}

/* Configurations Texts Headings */
.card-header-info {
    text-align: center;
    margin-bottom: 25px;
}

.config-type {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.card-light .config-type {
    color: #0f172a;
}

.card-dark .config-type {
    color: #ffffff;
}

.config-tagline {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 400;
}

/* Carpet Area Dimension Panel Highlight Box */
.carpet-area-box {
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 30px;
}

.card-light .carpet-area-box {
    background-color: #f7f5f0;
}

/* Soft bone-tinted tone */
.card-dark .carpet-area-box {
    background-color: rgba(255, 255, 255, 0.06);
}

.area-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.8px;
}

.area-value {
    font-size: 1.35rem;
    font-weight: 600;
}

.card-light .area-value {
    color: #334155;
}

.card-dark .area-value {
    color: #ffffff;
}

.area-value .unit {
    font-size: 0.95rem;
    font-weight: 400;
    color: #94a3b8;
}

/* Price Valuation Layout Structures */
.price-box {
    text-align: center;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 600;
    color: #cca45c;
    /* Core layout gold text pricing */
}

.price-onwards {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 2px;
}

/* Property Spec Checklist Features Lists Rows */
.spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
    flex-grow: 1;
    /* Pushes button element cleanly down to layout baseline */
}

.spec-list li {
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
}

.card-light .spec-list li {
    color: #475569;
}

.card-dark .spec-list li {
    color: #cbd5e1;
}

.check-icon {
    font-weight: 700;
    color: #cca45c;
    /* Elegant crisp checkbox styling tint */
}

/* Custom Base Action Buttons Layout Triggers */
.btn-price-cta {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s linear;
}

.btn-dark-filled {
    background-color: #0e1726;
    color: #ffffff;
}

.btn-dark-filled:hover {
    background-color: #1a2638;
}

.pricing-section .btn-gold-filled {
    background-color: #ebd197;
    color: #0e1726;
}

.pricing-section .btn-gold-filled:hover {
    background-color: #bca166;
}

/* Precise Disclaimer Formatting Block matching Figma screenshot */
.pricing-disclaimer {
    text-align: center;
    font-size: 0.82rem;
    color: #64748b;
    /* Soft slate grey matching layout text precisely */
    font-weight: 400;
    width: 100%;
    margin-top: 20px;
}

/* Mobile Adaptive Layout Screen Responsive Wrappers */
@media (max-width: 768px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        /* Cascades directly into linear column stream blocks */
        gap: 45px;
        max-width: 440px;
        margin-bottom: 35px;
    }

    .pricing-header .section-title {
        font-size: 2.1rem;
    }

    .price-card {
        padding: 45px 30px 30px 30px;
    }

    .spec-list li {
        justify-content: center;
        text-align: center;
    }

    .pricing-disclaimer {
        font-size: 0.75rem;
        padding: 0 10px;
    }
}

/* ==========================================================================
   Figma World-Class Amenities Section - Dynamic Mobile Dual-Line Slider
   ========================================================================== */

/* --- World-Class Amenities - Pure Solid Gold Screenshot Matching --- */
/* मुख्य सेक्शन */
.amenities-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* कंटेनरची रुंदी वाढवली आहे जेणेकरून आयकॉन्स पसरतील */
.amenities-section .container {
    max-width: 1350px;
    /* रुंदी वाढवली आहे */
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    display: block;
}

/* वरील बॅनर इमेज सेटिंग */
.amenities-banner {
    background-image: url('https://static.wixstatic.com/media/acc226_77fafcef3a56484996b2ee3e0bc66380~mv2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 300px 0 60px 0;
    text-align: center;
}

.section-header h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 500;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.header-divider img {
    max-width: 160px;
    height: auto;
}

/* खालील पांढरा अ‍ॅमेनिटीज भाग */
.amenities-content {
    padding: 60px 0;
    background-color: #ffffff;
}

/* ग्रीड लेआउट: आयकॉन्स समानरित्या वितरित करण्यासाठी */
.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 16px;
    max-width: 980px;
    margin: 0 auto;
}

/* वैयक्तिक कार्ड */
.amenity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100px;
    width: 120px;
    padding: 6px 0;
    justify-content: flex-start;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

/* आयकॉन इमेज साईझ */
.amenity-card .icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.amenity-card .icon img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: 50% 50%;
    display: block;
}

/* फॉन्ट साईझ आणि रंग */
.amenity-card h3 {
    font-size: 11px;
    color: #444444;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 0.3px;
    min-height: 3.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
}

/* टॅब्लेट आणि मोबाईल व्ह्यूसाठी रचना */
@media (max-width: 1100px) {
    .amenities-grid {
        justify-content: center;
        gap: 30px 18px;
    }
}

@media (max-width: 768px) {
    .amenities-banner {
        padding: 70px 0 40px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .amenities-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 18px;
        padding: 10px 0 12px 0;
        justify-content: flex-start;
    }

    .amenities-grid::-webkit-scrollbar {
        display: none;
    }

    .amenity-card {
        min-width: 84%;
        max-width: 320px;
        flex: 0 0 auto;
        scroll-snap-align: center;
        border-radius: 18px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        background-color: #ffffff;
    }

    .amenity-card h3 {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .amenity-card {
        min-width: 90%;
        max-width: 280px;
    }
}

/* ==========================================================================
   Figma Prime Location Section - Pure Spatial Grid Proportions Mapping
   ========================================================================== */

.location-section {
    background-color: #ffffff;
    /* Fresh solid dynamic presentation base background */
    padding: 100px 6%;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Text Alignments */
.location-header {
    text-align: center;
    margin-bottom: 70px;
}

.location-header .section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.location-header .gold-text {
    color: #cca45c;
    font-weight: 600;
}

.location-header .section-subtitle {
    font-size: 0.95rem;
    color: #64748b;
}

/* Main Split Configuration Components Array */
.location-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50/50 balanced grid map split */
    gap: 50px;
    align-items: flex-start;
}

/* Left Map Frame Visualizer Components */
.map-visualizer-left {
    width: 100%;
}

.map-inner-card {
    position: relative;
    width: 100%;
    height: 460px;
    /* High functional proportion layout height setup */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

.map-backdrop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
}

/* Floating Pulsing Pointer Pin Layouts */
.map-pin-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.pin-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(204, 164, 92, 0.4);
    border-radius: 50%;
    animation: pinGlow 2s infinite ease-out;
}

@keyframes pinGlow {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Address Map Badge overlay layout */
.map-address-pill {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: #ffffff;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 4;
}

.pill-brand-logo {
    font-size: 1.5rem;
    color: #cca45c;
}

.pill-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 2px;
}

.pill-sub {
    font-size: 0.82rem;
    color: #64748b;
}

/* Right Connectivity Panel Blocks list layouts */
.connectivity-tracker-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Proximity tracking strips row blocks formatting */
.connect-row-item {
    background-color: #f7f5f0;
    /* Bone tinted soft warm gray background item card */
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background-color 0.2s ease;
}

.connect-row-item:hover {
    background-color: #f1ede4;
}

.connect-icon-mask {
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    flex-shrink: 0;
}

.connect-info-details {
    flex-grow: 1;
}

.connect-category-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.connect-hubs-list {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

.connect-distance-tag {
    font-size: 0.82rem;
    font-weight: 500;
    color: #cca45c;
    /* Flat core signature gold distance markup text */
    background-color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    border: 1px solid rgba(204, 164, 92, 0.15);
}

/* Bottom Matrix Time badges arrays wrappers styles */
.time-matrix-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 10px;
}

.time-badge-box {
    background-color: #ffffff;
    border: 1px solid #ebdcb9;
    /* Lightweight golden structure perimeter lines mapping */
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.time-value {
    font-size: 1.35rem;
    font-weight: 600;
    color: #cca45c;
}

.time-destination {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Mobile Responsive Matrix Overrides Breakpoints */
@media (max-width: 992px) {
    .location-content-split {
        grid-template-columns: 1fr;
        /* Fallback direct stack architecture layout list */
        gap: 40px;
    }

    .map-inner-card {
        height: 360px;
    }

    .map-address-pill {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .location-header .section-title {
        font-size: 2.1rem;
    }

    .connect-row-item {
        padding: 16px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .connect-distance-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .time-matrix-row {
        grid-template-columns: 1fr;
        /* Linear array collapse for ultra thin screen dimensions */
    }
}

/* ==========================================================================
   Figma Smart Investment Section - Luxury Theme Mapping
   ========================================================================== */

/* Missing CSS for centered gold line used in Investment & Floor Plans HTML */
.gold-line-center {
    width: 45px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 0 auto 20px auto;
}

/* --- Smart Investment Section - Full Premium Look --- */
.investment-section {
    position: relative;
    width: 100%;
    padding: 100px 6%;
    font-family: 'Inter', sans-serif;

    /* Local Background image path with elegant linear overlay */
    background: linear-gradient(rgba(11, 17, 30, 0.88), rgba(11, 17, 30, 0.92)),
        url('images/smart-investment-background.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Smooth parallax effect when scrolling */
}

.investment-container {
    max-width: 1200px;
    margin: 0 auto;
}

.investment-header {
    text-align: center;
    margin-bottom: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.investment-header .section-title {
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.investment-header .section-subtitle {
    color: #94a3b8;
}

/* 4 Column Grid for Pillars */
.investment-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 65px;
    width: 100%;
}

/* Glassmorphic Cards Hover Transition Effects */
.pillar-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px 20px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(229, 196, 131, 0.2);
}

.pillar-icon-box {
    width: 48px;
    height: 48px;
    background-color: #ebdcb9;
    color: #a1824a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pillar-icon-box svg {
    width: 24px;
    height: 24px;
}

.pillar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.pillar-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* Centralized Glassmorphism Statistics Bar */
.investment-stats-bar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bar-metric-item {
    text-align: center;
    flex: 1;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #cca45c;
    letter-spacing: -0.5px;
}

.metric-label {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: 400;
    margin-top: 4px;
}

.bar-divider {
    width: 1px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
}

.investment-footer-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-notice-text {
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* Responsive Handling Overrides */
@media (max-width: 1024px) {
    .investment-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .investment-pillars-grid {
        grid-template-columns: 1fr;
    }

    .investment-stats-bar {
        flex-direction: column;
        gap: 25px;
    }

    .bar-divider {
        width: 50px;
        height: 1px;
    }

    .investment-header .section-title {
        font-size: 2.1rem;
    }
}

/* ==========================================================================
   Figma Explore Floor Plans Section - Warm Off-White Grid Theme
   ========================================================================== */

/* --- Floor Plans Section - Premium Layer Adjustments --- */
.floorplans-section {
    background-color: #f7f5f0;
    /* Bone luxury light theme base backdrop */
    padding: 100px 6%;
    width: 100%;
}

.floorplans-container {
    max-width: 1200px;
    margin: 0 auto;
}

.floorplans-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floorplans-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto 60px auto;
}

/* Card layout elevation alignment adjustments */
.plan-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.01);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
}

/* Blueprint Blueprint Grid Framework overlay box layer */
.plan-preview-box {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #0b0f19;
    /* Technical architecture blueprint standard background */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.blueprint-img-layer {
    width: 100%;
    height: 100%;
    opacity: 0.85;
    transition: transform 0.5s ease;
}

.plan-card:hover .blueprint-img-layer {
    transform: scale(1.04);
}

/* Frosty glass overlay tracking layer on blueprint */
.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.plan-card:hover .blur-overlay {
    opacity: 0.25;
    /* On hover, clear visibility of blueprint image increases */
}

.view-overlay-cta {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ebd197;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.view-icon {
    font-size: 1.6rem;
}

.view-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.plan-meta-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.plan-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.plan-type-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
}

.plan-area-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: #bca166;
    background: #f7f5f0;
    padding: 4px 10px;
    border-radius: 4px;
}

.plan-description-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-download-plan {
    width: 100%;
    background-color: #ebd197;
    color: #0f172a;
    border: none;
    padding: 13px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s linear;
}

.btn-download-plan:hover {
    background-color: #dcb365;
}

/* Bottom Brochure Master layout banner element */
.brochure-download-banner {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 40px;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.brochure-icon-mask {
    font-size: 1.8rem;
    color: #cca45c;
    margin-right: 25px;
}

.brochure-text-details {
    flex-grow: 1;
    padding-right: 20px;
}

.brochure-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.brochure-sub {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.4;
}

.btn-download-brochure {
    background-color: #0f172a;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s linear;
}

.btn-download-brochure:hover {
    background-color: #1e293b;
}

/* Responsive adjustments rules */
@media (max-width: 768px) {
    .floorplans-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .brochure-download-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .brochure-icon-mask {
        margin-right: 0;
    }

    .brochure-text-details {
        padding-right: 0;
    }

    .btn-download-brochure {
        width: 100%;
    }
}

/* ==========================================================================
   Figma Schedule Site Visit Section - Exact Image Match (image_e6781a.png)
   ========================================================================== */

.site-visit-section {
    background-color: #ffffff;
    /* Crisp white base surface template layout background */
    padding: 110px 6%;
}

.visit-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    /* Spatial mapping side-by-side splits proportions */
    gap: 70px;
    align-items: center;
}

/* Left Metadata Layout Components Column */
.visit-info-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gold-dash-line {
    width: 45px;
    height: 2.5px;
    background-color: #e5c483;
    margin-bottom: 22px;
}

.visit-main-title {
    font-size: 2.8rem;
    font-weight: 500;
    color: #0f172a;
    /* Deep layout brand contrast text heading color */
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.visit-main-title .gold-highlight {
    color: #cca45c;
    /* Figma flat signature metallic gold typography hue color token */
    font-weight: 600;
}

.visit-paragraph {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 30px;
}

/* Flat light matte golden info alert label badge layout token element */
.limited-units-badge {
    background-color: #ebdcb9;
    color: #a1824a;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 40px;
}

/* Contact Information Profiles List Rows Grid Layout mapping fields */
.contact-directory-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.directory-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.directory-icon-wrapper {
    width: 38px;
    height: 38px;
    background-color: #f7f5f0;
    /* Creamy light mask circle matching figma container backgrounds */
    color: #cca45c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.directory-meta {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 2px;
}

.meta-value {
    font-size: 0.92rem;
    font-weight: 500;
    color: #0f172a;
    text-decoration: none;
}

/* Right Side Contact Card Column Component - Solid Deep Dark Navy box */
.visit-form-right {
    background-color: #111a2e;
    /* Mapped from screen card vector precisely */
    border-radius: 12px;
    padding: 45px 35px;
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(17, 26, 46, 0.25);
    width: 100%;
}

.visit-form-right .form-title {
    font-size: 1.45rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.form-tagline {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 28px;
}

.input-field-group {
    margin-bottom: 14px;
}

.input-field-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 6px;
}

/* Form input element layout properties styling components */
.visit-form-right input[type="text"],
.visit-form-right input[type="tel"],
.visit-form-right input[type="email"],
.visit-form-right select {
    width: 100%;
    padding: 13px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    /* Transparent input base layer design match */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s linear;
}

.visit-form-right input::placeholder {
    color: #64748b;
}

.visit-form-right select option {
    background-color: #111a2e;
    /* Matches dark dropdown options overlay */
    color: #ffffff;
}

.visit-form-right input:focus,
.visit-form-right select:focus {
    border-color: #cca45c;
}

/* Inline Mathematical Security Layer configuration element */
.visit-captcha-wrapper {
    margin: 16px 0;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.captcha-question-lbl {
    display: block;
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 6px;
}

.captcha-flex-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.math-problem-text {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.visit-captcha-wrapper input {
    width: 65px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    outline: none;
}

.captcha-refresh-trigger {
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Checkbox alignment details formatting rules */
.privacy-checkbox-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 16px 0 24px 0;
}

.privacy-checkbox-row input[type="checkbox"] {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    accent-color: #cca45c;
    order: 1;
}

.privacy-checkbox-row label {
    flex: 1 1 0;
    min-width: 0;
    font-size: 0.8rem;
    color: #94a3b8;
    order: 2;
    white-space: normal;
    word-break: break-word;
}

/* Field Validation Error message strings */
.field-error-log {
    color: #f87171;
    font-size: 0.75rem;
    margin-top: 4px;
    display: none;
}

/* Solid Gold filled submit layout trigger button */
.btn-submit-visit {
    width: 100%;
    background: linear-gradient(135deg, #ebd197, #bca166);
    color: #111a2e;
    border: none;
    padding: 15px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(188, 161, 102, 0.15);
    transition: opacity 0.2s linear;
}

.btn-submit-visit:hover {
    opacity: 0.95;
}

.form-bottom-note {
    text-align: center;
    font-size: 0.72rem;
    color: #64748b;
    margin-top: 18px;
    letter-spacing: 0.2px;
}

/* Responsive Adaptive Viewports Media Breaks layout configurations rules */
@media (max-width: 992px) {
    .visit-container {
        grid-template-columns: 1fr;
        /* Fallback direct stacking row stream components layout arrays */
        gap: 50px;
    }

    .visit-info-left {
        align-items: center;
        text-align: center;
    }

    .gold-dash-line {
        margin: 0 auto 22px auto;
    }

    .contact-directory-list {
        align-items: center;
    }

    .directory-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        align-items: center;
    }

    .visit-form-right {
        max-width: 480px;
        margin: 0 auto;
    }

    .visit-form-right .form-title,
    .visit-form-right .form-tagline {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .visit-main-title {
        font-size: 2.1rem;
    }

    .visit-form-right {
        padding: 35px 20px;
    }
}


/* ==========================================================================
   Figma Footer Section - Exact Color Scheme & Alignment (image_e66d2f.png)
   ========================================================================== */

.luxury-footer {
    background-color: #0b111e;
    /* Exactly extracted deep premium dark navy blue background color */
    padding: 90px 6% 30px 6%;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Master 4 Column Navigation Grid setup */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    /* Balanced spatial map grid columns alignment */
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Brand Identifiers Typography styles */
.footer-logo {
    font-size: 1.35rem;
    font-weight: 600;
    color: #cca45c;
    /* Figma flat signature premium gold color token */
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
    /* Soft grayish body text */
    margin-bottom: 12px;
}

/* Circle Social links masks */
.social-links-row {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.2s linear, border-color 0.2s linear;
}

.social-icon:hover {
    background-color: rgba(204, 164, 92, 0.15);
    border-color: #cca45c;
}

/* Grid Column Headings */
.column-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #cca45c;
    margin-bottom: 24px;
    text-transform: none;
    letter-spacing: 0.2px;
}

/* List Arrays configurations rules */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s linear;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Pricing configuration block custom metadata rows specs list */
.pricing-meta-links li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 4px;
}

.config-lbl {
    font-size: 0.88rem;
    color: #cbd5e1;
    font-weight: 500;
}

.config-val {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Contact information listing rules matching layout symbols blocks */
.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    color: #cca45c;
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-txt {
    font-size: 0.85rem;
    line-height: 1.45;
    color: #94a3b8;
    text-decoration: none;
}

a.contact-txt:hover {
    color: #ffffff;
}

/* MahaRERA Embedded Highlight Panel Card Layer Container matching image screenshot box */
.maharera-card-banner {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 24px 30px;
    margin: 0 auto 40px auto;
    max-width: 600px;
    text-align: center;
}

.rera-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #cca45c;
    margin-bottom: 8px;
}

.rera-card-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.rera-avail {
    color: #64748b;
}

.maharera-card-banner a {
    color: #cca45c;
    text-decoration: none;
}

.maharera-card-banner a:hover {
    text-decoration: underline;
}

/* Corporate Informative Legal Disclaimer Box elements formatting styles */
.footer-disclaimer-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-bottom: 40px;
}

.disclaimer-text {
    font-size: 0.76rem;
    line-height: 1.6;
    color: #51637b;
    /* Exactly matches dark gray legal text color layout tone opacity from image */
    text-align: justify;
}

/* Bottom Baseline Footer Row & Creator Hyperlinks formatting */
.footer-baseline-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-txt {
    font-size: 0.78rem;
    color: #64748b;
}

.dev-credit-txt {
    font-size: 0.78rem;
    color: #64748b;
}

.agency-hyperlink {
    color: #cca45c;
    /* Agencies trademark highlights token */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s linear;
}

.agency-hyperlink:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Adaptive Viewports Media Overrides Breakpoints rules layout */
@media (max-width: 992px) {
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Forms 2x2 grid layout flow for standard tablets widths */
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .luxury-footer {
        padding: 60px 4% 30px 4%;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        /* Pure cascading linear rows strip on phone form screens dimensions */
        gap: 30px;
    }

    .column-title {
        margin-bottom: 16px;
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links,
    .footer-contact-info,
    .pricing-meta-links {
        align-items: center;
    }

    .footer-contact-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .maharera-card-banner,
    .disclaimer-text {
        text-align: center;
    }

    .footer-baseline-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ==========================================================================
   Modal Popup Form Styles
   ========================================================================== */
body.modal-open {
    overflow: hidden !important;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    z-index: 1000000 !important;
    transition: color 0.2s ease;
    pointer-events: auto;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #0f172a;
}

.floor-plan-wrapper {
    position: relative;
    width: 100%;
    background-color: #f3f3f3;
    /* इमेजमधील ग्रे बॅकग्राउंड सारखा */
}

/* दोन्ही सेक्शन्सना Sticky बनवणे जेणेकरून ते एकमेकांच्या वर स्टॅक होतील */
.floor-section {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    /* पूर्ण स्क्रीन व्यापेल */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    /* सेक्शन्सच्या मध्ये हलकी बॉर्डर शेडो */
}

/* पहिल्या आणि दुसऱ्या सेक्शनचा बॅकग्राउंड */
.bhk-1 {
    background-color: #e5e5e5;
    z-index: 1;
}

.bhk-2 {
    background-color: #f0f0f0;
    z-index: 2;
    /* हा २ BHK चा भाग १ BHK च्या वर येईल */
}

/* लेआउट स्ट्रक्चर (डावीकडे टेक्स्ट, उजवीकडे इमेज) */
.floor-content {
    display: flex;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    align-items: center;
    justify-content: space-between;
}

/* टेक्स्ट स्टायलिंग */
.floor-text {
    flex: 1;
    padding-right: 50px;
    font-family: sans-serif;
}

.floor-text h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.floor-text p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 0;
}

/* स्क्रोल बाण (Arrows) आणि टेक्स्ट */
.scroll-arrow-box {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.scroll-arrow-box span {
    font-size: 1.8rem;
    color: #666;
}

.scroll-text {
    font-size: 0.9rem !important;
    color: #888 !important;
    margin-top: 5px !important;
}

/* इमेज स्टायलिंग जशी स्क्रीनशॉट (image_c7fb77.jpg) मध्ये आहे */
.floor-image {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floor-image img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    /* 3D लुक किंवा प्रीमियम फिनिशसाठी थोडी सॉफ्ट शॅडो */
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.08));
}

/* मोबाईल व्ह्यूसाठी रिस्पॉन्सिव्ह डिझाईन */
@media (max-width: 768px) {
    .floor-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }

    .floor-text {
        padding-right: 0;
    }

    .scroll-arrow-box {
        align-items: center;
        width: 100%;
    }
}

/* Main Layout Container wrapper */
.premium-gallery-section {
    padding: 60px 20px;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Explicit Dynamic Grid Framework */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 150px);
    /* explicit height allocation for rows */
    gap: 15px;
    width: 100%;
}

/* Stable Grid Items block */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background-color: #f5f5f5;
    /* fallback block design loading color */
    width: 100%;
    height: 100%;
}

/* Image behavior configuration */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Exact Structural Alignments */
.gallery-item.tall {
    grid-column: 1 / span 3;
    /* Positions 1 to 3 */
    grid-row: 1 / span 4;
    /* Full Height span */
}

.gallery-item.small-wide {
    grid-column: 4 / span 4;
    /* Center Top */
    grid-row: 1 / span 1;
}

.gallery-item.main-lounge {
    grid-column: 4 / span 4;
    /* Center Main */
    grid-row: 2 / span 3;
}

.gallery-item.right-main {
    grid-column: 8 / span 5;
    /* Right Top */
    grid-row: 1 / span 3;
}

.gallery-item.small-square-1 {
    grid-column: 8 / span 2;
    /* Right Bottom Left */
    grid-row: 4 / span 1;
}

.gallery-item.small-square-2 {
    grid-column: 10 / span 3;
    /* Right Bottom Right */
    grid-row: 4 / span 1;
}

/* Premium Text Overlay System */
.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item .overlay span {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transform: translateY(8px);
    transition: transform 0.4s ease;
}

/* Premium Hover Control states */
.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover .overlay span {
    transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .gallery-container {
        grid-template-rows: auto;
        display: flex;
        flex-direction: column;
    }

    .gallery-item {
        height: 250px;
    }
}

/* Main Section Font Configuration */
#floor-plan-parallax-container {
    font-family: 'Inter', sans-serif;
}

/* Sticky Section Core Wrapper */
.wix-style-row {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    /* Screen var full freeze rahnari height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 40px;
}

/* Grid Framework Matching Wix Layout */
.wix-style-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

/* Left Column Text Container */
.wix-text-panel {
    color: #1a202c;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wix-text-panel h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1a202c;
    margin: 0 0 5px 0;
    font-weight: 700;
    line-height: 1.2;
}

.wix-cut-tag {
    font-size: 24px;
    color: #4a5568;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.wix-premium-details {
    font-size: 16px;
    color: #718096;
    margin: 0 0 25px 0;
    line-height: 1.6;
    max-width: 400px;
}

.wix-area-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.08);
    color: #b58d16;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    width: fit-content;
    margin-bottom: 25px;
}

/* Premium CTA Button Layout */
.wix-btn-premium {
    background: #d4af37;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.wix-btn-premium:hover {
    background: #1a202c;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Directional Animated Indicator Arrows */
.wix-scroll-indicator {
    display: flex;
    flex-direction: column;
    margin-top: 35px;
    color: #718096;
    font-size: 13px;
}

.wix-scroll-indicator span {
    font-size: 24px;
    color: #d4af37;
    line-height: 0.8;
    font-weight: bold;
}

/* Right Column Image Layer */
.wix-image-panel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.wix-image-panel img {
    max-width: 100%;
    max-height: 75vh;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

/* Responsive Flow Overrides for Tablet/Mobile Viewports */
@media (max-width: 991px) {
    .wix-style-row {
        position: -webkit-sticky;
        position: sticky;
        height: 100vh;
        padding: 20px 20px;
    }

    .wix-style-content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .wix-text-panel {
        align-items: center;
        text-align: center;
    }

    .wix-text-panel h2 {
        font-size: 28px;
    }

    .wix-cut-tag {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .wix-area-badge {
        margin-bottom: 15px;
    }

    .wix-premium-details {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .wix-image-panel img {
        max-height: 45vh;
    }

    .wix-scroll-indicator {
        display: none;
        /* Mobile var indicator hide kela responsive clean look sathi */
    }
}

/* ==========================================================================
   📱 FINAL MOBILE VIEW FORM FIXES (No Zoom, No Overflow)
   ========================================================================== */
@media (max-width: 768px) {

    /* Prevent iOS Auto-Zoom by setting font-size to 16px */
    .form-card input,
    .form-card select,
    .visit-form-right input,
    .visit-form-right select,
    .modal-content input,
    .modal-content select,
    .captcha-input {
        font-size: 16px !important;
    }

    /* Maintain form design - don't force 100% width aggressively */
    .form-card,
    .visit-form-right,
    .modal-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        position: relative !important;
    }

    /* Form fields stay full width within their container */
    .form-group,
    .input-field-group,
    .captcha-box,
    .checkbox-container,
    .privacy-checkbox-row {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin-bottom: 8px !important;
    }

    .form-group input,
    .form-group select,
    .input-field-group input,
    .input-field-group select,
    .form-card input,
    .form-card select,
    .visit-form-right input,
    .visit-form-right select,
    .modal-content input,
    .modal-content select {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .form-group label,
    .input-field-group label {
        word-break: break-word !important;
    }

    /* Captcha row wraps on mobile */
    .captcha-box {
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .captcha-input {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Select dropdowns stay clean */
    .form-group select,
    .input-field-group select,
    .visit-form-right select,
    .modal-content select,
    .form-card select {
        text-overflow: ellipsis !important;
        white-space: normal !important;
        overflow: hidden !important;
    }

    .form-group select option,
    .input-field-group select option,
    .visit-form-right select option,
    .modal-content select option,
    .form-card select option {
        white-space: normal !important;
    }

    /* Maintain padding for readability */
    .form-card,
    .visit-form-right,
    .modal-content {
        padding: 25px 20px !important;
    }
}
/* Container alignment */
.investment-footer-cta {
    text-align: center;
    margin: 40px auto;
}

/* Simple Clean Text */
.cta-notice-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666666;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Clean & Professional Premium Button */
.btn-schedule-visit {
    font-family: 'Poppins', sans-serif;
    background-color: #aa7c11; /* Direct Solid Gold/Bronze - No Gradient */
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 35px;
    border: none;
    border-radius: 4px; /* Classic Professional Slight Round Corners */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Very Simple Transition */
}

/* Subtle Hover Effect (Only color changes slightly) */
.btn-schedule-visit:hover {
    background-color: #8c650e; /* Slightly darker shade on hover */
}
/* Main Section Font Configuration */
#floor-plan-parallax-container {
    font-family: 'Inter', sans-serif;
}

/* Sticky Section Core Wrapper */
.wix-style-row {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    /* Screen var full freeze rahnari height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 40px;
}

/* Grid Framework Matching Wix Layout */
.wix-style-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

/* Left Column Text Container */
.wix-text-panel {
    color: #1a202c;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wix-text-panel h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1a202c;
    margin: 0 0 5px 0;
    font-weight: 700;
    line-height: 1.2;
}

.wix-cut-tag {
    font-size: 24px;
    color: #4a5568;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.wix-premium-details {
    font-size: 16px;
    color: #718096;
    margin: 0 0 25px 0;
    line-height: 1.6;
    max-width: 400px;
}

.wix-area-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.08);
    color: #b58d16;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    width: fit-content;
    margin-bottom: 25px;
}

/* Premium CTA Button Layout */
.wix-btn-premium {
    background: #d4af37;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.wix-btn-premium:hover {
    background: #1a202c;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Directional Animated Indicator Arrows */
.wix-scroll-indicator {
    display: flex;
    flex-direction: column;
    margin-top: 35px;
    color: #718096;
    font-size: 13px;
}

.wix-scroll-indicator span {
    font-size: 24px;
    color: #d4af37;
    line-height: 0.8;
    font-weight: bold;
}

/* Right Column Image Layer */
.wix-image-panel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.wix-image-panel img {
    max-width: 100%;
    max-height: 75vh;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

/* Responsive Flow Overrides for Tablet/Mobile Viewports */
@media (max-width: 991px) {
    .wix-style-row {
        /* The sticky effect was disabled for mobile; this re-enables it. */
        padding: 20px;
    }

    .wix-style-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .wix-text-panel {
        align-items: center;
        text-align: center;
    }

    .wix-text-panel h2 {
        font-size: 32px;
    }

    .wix-cut-tag {
        font-size: 20px;
    }

    .wix-premium-details {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .wix-image-panel img {
        max-height: 45vh;
        /* Reduced image height for mobile */
    }

    .wix-scroll-indicator {
        display: none;
        /* Mobile var indicator hide kela responsive clean look sathi */
    }

    /* Center the Download Brochure container & Buttons on mobile */
    .wix-btn-premium {
        margin: 0 auto;
    }

    .wix-brochure-content {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .wix-brochure-text {
        text-align: center !important;
        min-width: 100% !important;
    }

    .wix-brochure-icon {
        justify-content: center !important;
        width: 100% !important;
    }
}
/* Main Banner Container */
.maharera-card-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.02); /* Premium Dark Theme Match */
    padding: 20px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* Image Wrapper and Image Styling */
.rera-image-wrapper {
    flex-shrink: 0;
}

.rera-logo-img {
    width: 65px;
    height: auto;
    display: block;
}

/* Text Content Wrapper */
.rera-text-wrapper {
    text-align: left;
}

/* Typography Styling */
.rera-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #cca45c;
    margin: 0 0 4px 0;
}

.rera-card-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
}

.rera-card-text a {
    color: #cca45c;
    text-decoration: none;
}

.rera-card-text a:hover {
    text-decoration: underline;
}

/* Logo Styling */
.footer-logo-img {
    max-width: 170px;
    height: 170px;
    display: block;
    margin-bottom: 0; /* Removed extra margin to align with columns perfectly */
}

/* Social Links Row Layout */
.social-links-row {
    display: flex;
    gap: 12px;
}

/* Base Social Icon Styling */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05); /* Dark theme match */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;        
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Facebook Hover Effect */
.social-icon.facebook-icon:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
}

/* Instagram Hover Effect */
.social-icon.instagram-icon:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #ffffff;
}

@media (max-width: 480px) {
    .maharera-card-banner {
        flex-direction: column;
        text-align: center;
    }
    .rera-text-wrapper {
        text-align: center;
    }
}
.social-icon {
    color: #d4af37; /* your gold color */
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}
