/* =========================================================
   CUSTOM UPDATES — add this file AFTER style.css & responsive.css
   (Palette colors now live directly in style.css — this file only
   holds layout/markup additions not present in the original theme.)
   Covers:
   1. About Legacy Lifespaces — 2 column layout (same theme)
   2. Footer — black divider line + RERA QR / privacy links block
   Uses existing theme variables/classes (.section-title, .desc,
   .high_box, .dwnld_btn) so it matches the rest of the site.
   ========================================================= */

/* ---------- 1. ABOUT LEGACY LIFESPACES — 2 COLUMN ---------- */

.section__about-legacy {
    overflow: hidden;
}

.section__about-legacy .about-legacy-row {
    row-gap: 30px;
}

.section__about-legacy .section-title {
    text-align: left;
}
section#sectionAbout {
    padding-bottom: 90px;
}
.section__about-legacy .about-legacy-tagline {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: inherit;
    opacity: 0.85;
    margin: 0;
}

.section__about-legacy .desc p {
    margin-bottom: 14px;
}

.section__about-legacy .about-legacy-cta {
    display: inline-flex;
    margin-top: 10px;
    cursor: pointer;
}

/* Stat cards column — icon-led cards, arranged 2x2 */
.section__about-legacy .about-legacy-stats {
    row-gap: 0;
}

.section__about-legacy .about-legacy-stat-box {
    height: 100%;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding: 30px 18px;
    border-radius: 14px;
    background: rgba(77, 47, 56, 0.05);
    border: 1px solid rgba(77, 47, 56, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.section__about-legacy .about-legacy-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(77, 47, 56, 0.12);
    border-color: rgba(217, 192, 143, 0.5);
}

.section__about-legacy .about-legacy-stat-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
    background: #4D2F38;
    flex-shrink: 0;
}

.section__about-legacy .about-legacy-stat-icon svg {
    display: block !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px;
    min-height: 28px;
    flex-shrink: 0;
}

.section__about-legacy .about-legacy-stat-icon svg path,
.section__about-legacy .about-legacy-stat-icon svg circle {
    stroke: #D9C08F !important;
    fill: none !important;
}

.section__about-legacy .about-legacy-stat-box p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--maroon) !important;
}

@media (max-width: 991px) {
    .section__about-legacy .section-title,
    .section__about-legacy .desc p,
    .section__about-legacy .about-legacy-tagline {
        text-align: center;
    }

    .section__about-legacy .about-legacy-cta {
        display: flex;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .section__about-legacy .about-legacy-stat-box {
        min-height: 140px;
        padding: 20px 12px;
        gap: 10px;
    }

    .section__about-legacy .about-legacy-stat-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        min-height: 46px;
    }

    .section__about-legacy .about-legacy-stat-icon svg {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px;
        min-height: 22px;
    }

    .section__about-legacy .about-legacy-stat-box p {
        font-size: 13px;
    }
}

/* ---------- 2. FOOTER — BLACK LINE + RERA / QR / LEGAL LINKS ---------- */

footer .footer-line-black {
    border: none;
    border-top: 1px solid rgba(247, 243, 236, 0.25);
    opacity: 1;
    margin: 24px 0;
}

/* 4-column footer info: brand / address / RERA / QR */
.footer-info-row {
    padding: 10px 0 20px;
    text-align: center;
    row-gap: 24px;
}

.footer-info-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
}

.footer-info-heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0 0 8px;
    opacity: 0.9;
}

.footer-info-col p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.85;
    max-width: 220px;
}

.footer-rera-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 0 20px;
    text-align: center;
}

.footer-rera-qr img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 6px;
}

.footer-rera-qr p {
    margin: 8px 0 0 !important;
    font-size: 12px;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .footer-info-col {
        border-bottom: 1px solid rgba(247, 243, 236, 0.15);
        padding-bottom: 16px;
    }

    .footer-info-col:last-child {
        border-bottom: none;
    }
}

.footer-rera-links {
    max-width: 480px;
}

.footer-rera-note {
    font-size: 13px;
    margin: 0 0 10px;
    opacity: 0.85;
}

.footer-rera-note a {
    color: inherit;
    text-decoration: underline;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
}

.footer-legal-links a {
    color: inherit;
    text-decoration: none;
    opacity: 0.85;
}

.footer-legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-link-sep {
    opacity: 0.5;
}

@media (max-width: 575px) {
    .footer-rera-row {
        flex-direction: column;
        gap: 14px;
    }
}


/* =========================================================
   RESIDENCE CONFIGURATION SECTION — config-section.css
   Add this file AFTER style.css / responsive.css / custom-updates.css
   Uses the same brand variables already defined in style.css:
   --maroon (#4D2F38), --gold (#D9C08F), --offwhite (#F7F3EC)
   ========================================================= */

.config-section {
    background-color: var(--offwhite, #F7F3EC);
}

.config-cards-row {
    align-items: stretch;
}

.config-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(77, 47, 56, 0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.config-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(77, 47, 56, 0.12);
    border-color: rgba(217, 192, 143, 0.6);
}

/* Slight distinction for the larger / featured configuration */
.config-card-featured {
    border-color: rgba(217, 192, 143, 0.5);
    background: linear-gradient(180deg, rgba(217, 192, 143, 0.08) 0%, #ffffff 22%);
}

.config-card-head {
    background: var(--maroon, #4D2F38);
    padding: 28px 30px 24px;
    text-align: center;
}

.config-card-tag {
    display: inline-block;
    font-family: var(--metro);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--maroon, #4D2F38);
    background: var(--gold, #D9C08F);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.config-card-title {
    font-family: var(--beautiq);
    font-size: 28px;
    color: var(--gold, #D9C08F);
    margin: 0 0 6px;
    letter-spacing: 0.5px;
}

.config-card-area {
    font-family: var(--metro);
    font-size: 16px;
    font-weight: 500;
    color: var(--offwhite, #F7F3EC);
    opacity: 0.9;
    margin: 0;
}

.config-card-body {
    padding: 28px 30px 10px;
    flex-grow: 1;
}

.config-card-label {
    font-family: var(--metro);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold, #D9C08F);
    margin-bottom: 16px;
}

.config-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.config-card-list li {
    position: relative;
    padding-left: 28px;
    font-family: var(--metro);
    font-size: 16px;
    line-height: 1.4;
    color: var(--maroon, #4D2F38);
}

.config-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(217, 192, 143, 0.25);
}

.config-card-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold, #D9C08F);
}

.config-card-footer {
    padding: 26px 30px 30px;
    text-align: center;
}

.config-card-cta {
    margin: 0 auto;
    justify-content: center;
}

.config-section-cta-wrap {
    margin-top: 10px;
}

.config-section-cta {
    display: inline-flex;
    margin: 0 auto;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
    .config-card-head {
        padding: 24px 22px 20px;
    }

    .config-card-title {
        font-size: 24px;
    }

    .config-card-body {
        padding: 24px 22px 6px;
    }

    .config-card-footer {
        padding: 22px 22px 26px;
    }
}

@media (max-width: 575px) {
    .config-card-list li {
        font-size: 14px;
    }

    .config-card-title {
        font-size: 21px;
    }

    .config-card-area {
        font-size: 14px;
    }
}