/* Amenities page specific styles — extracted from Amenities.php */
    
        /* ============================================================
   Parking, EV Charging & Everyday Convenience Section
   ============================================================ */
.parking-convenience-section {
    background: linear-gradient(180deg, #faf6ef 0%, #f4ead9 100%);
    padding: 60px 0;
}

.pc-row {
    display: flex;
    flex-wrap: wrap;
    gap: 46px;
    align-items: center;
}

.pc-left {
    flex: 1 1 380px;
}

.pc-left .pf-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.pc-left .line {
    width: 36px;
    height: 2px;
    background: #c9973f;
    display: inline-block;
}

.pc-left .pf-eyebrow-text {
    color: #b8862e;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

.pc-left h2 {
    color: #2b2620;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.32;
    margin-bottom: 16px;
}

.pc-left h2 b {
    color: #b8862e;
    font-style: italic;
    font-weight: 500;
}

.pc-left p {
    color: #6b6155;
    font-size: 14.5px;
    line-height: 1.8;
    text-align: justify;
    text-align-last: left;
    margin-bottom: 22px;
}

.pc-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #faf1de, #fff);
    border: 1px solid rgba(201, 151, 63, 0.35);
    border-radius: 14px;
    padding: 18px 24px;
    box-shadow: 0 14px 30px rgba(120, 90, 40, 0.1);
}

.pc-badge svg {
    flex-shrink: 0;
    color: #b8862e;
}

.pc-badge-text strong {
    display: block;
    font-size: 16px;
    color: #2b2620;
}

.pc-badge-text span {
    font-size: 12px;
    color: #6b6155;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.pc-right {
    flex: 1 1 460px;
}

.pc-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pc-grid li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #faf6ef;
    border: 1px solid rgba(201, 151, 63, 0.3);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13.5px;
    font-weight: 500;
    color: #2b2620;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pc-grid li:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(120, 90, 40, 0.12);
}

.pc-grid li svg {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d3a256, #b8862e);
    color: #fff;
    padding: 8px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .parking-convenience-section {
        padding: 40px 0;
    }

    .pc-left h2 {
        font-size: 22px;
    }

    .pc-left p {
        text-align: left;
    }

    .pc-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Safety & Building Infrastructure Section
   ============================================================ */
.safety-infra-section {
    background: #ffffff;
    padding: 60px 0;
}

.safety-infra-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.safety-infra-left {
    flex: 1 1 380px;
    max-width: 400px;
}

.safety-infra-left .pf-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.safety-infra-left .line {
    width: 36px;
    height: 2px;
    background: #c9973f;
    display: inline-block;
}

.safety-infra-left .pf-eyebrow-text {
    color: #b8862e;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

.safety-infra-left h2 {
    color: #2b2620;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.32;
    margin-bottom: 18px;
}

.safety-infra-left h2 b {
    color: #b8862e;
    font-weight: 700;
}

.safety-infra-desc {
    color: #6b6155;
    font-size: 14.5px;
    line-height: 1.8;
    text-align: justify;
    text-align-last: left;
    margin-bottom: 28px;
}

.safety-infra-badge {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #faf1de, #fff);
    border: 1px solid rgba(201, 151, 63, 0.35);
    border-radius: 14px;
    padding: 20px 26px;
    box-shadow: 0 14px 30px rgba(120, 90, 40, 0.1);
}

.safety-infra-badge-num {
    font-size: 42px;
    font-weight: 700;
    color: #b8862e;
    line-height: 1;
}

.safety-infra-badge-label {
    font-size: 13px;
    font-weight: 600;
    color: #2b2620;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.safety-infra-right {
    flex: 1 1 500px;
}

.safety-infra-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
}

.safety-infra-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(201, 151, 63, 0.2);
}

.safety-infra-list li svg {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #faf1de;
    color: #b8862e;
    padding: 9px;
    box-sizing: border-box;
    transition: background 0.3s ease, color 0.3s ease;
}

.safety-infra-list li:hover svg {
    background: linear-gradient(135deg, #d3a256, #b8862e);
    color: #fff;
}

.safety-infra-list li span {
    font-size: 14px;
    font-weight: 500;
    color: #2b2620;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .safety-infra-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .safety-infra-section {
        padding: 40px 0;
    }

    .safety-infra-left h2 {
        font-size: 24px;
    }
}
        /* ===== AMENITIES PAGE: Uniform section spacing (Desktop + Mobile) ===== */
.intro-content-area,
.amenities-showcase,
.amenity-detail-tabs,
.wellness-section,
.location-value-section,
.lifestyle-spaces-section,
.faq-area,
.schedule-visit-area {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
    margin: 0 !important;
}

.property-details {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    margin: 0 !important;
}

@media (max-width: 767px) {

    .intro-content-area,
    .amenities-showcase,
    .amenity-detail-tabs,
    .wellness-section,
    .location-value-section,
    .lifestyle-spaces-section,
    .faq-area,
    .schedule-visit-area {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .property-details {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }
}
        .intro-content-area {
            position: relative;
            background: linear-gradient(180deg, #faf6ef 0%, #f4ead9 100%);
            padding: 100px 0 90px;
            overflow: hidden;
        }

        .intro-content-area .intro-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
        }

        .intro-content-area .intro-left {
            flex: 1 1 460px;
        }

        .intro-content-area .intro-eyebrow {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .intro-content-area .intro-eyebrow-line {
            width: 40px;
            height: 2px;
            background: #c9973f;
            display: inline-block;
        }

        .intro-content-area .intro-eyebrow-text {
            color: #b8862e;
            letter-spacing: 3px;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
        }

        .intro-content-area h1 {
            color: #2b2620;
            font-size: 44px;
            font-weight: 600;
            line-height: 1.28;
            margin-bottom: 22px;
        }

        .intro-content-area h1 i {
            color: #c9973f;
            font-style: italic;
            font-weight: 500;
        }

        .intro-content-area p.intro-desc {
            color: #6b6155;
            font-size: 16px;
            line-height: 1.85;
            max-width: 5000px;
        }

        .intro-content-area .intro-right {
            flex: 1 1 460px;
            position: relative;
        }

        .intro-content-area .intro-img-wrap {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(120, 90, 40, 0.18);
        }

        .intro-content-area .intro-img-wrap img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .intro-content-area .intro-img-wrap:hover img {
            transform: scale(1.05);
        }

        @media (max-width: 767px) {
            .intro-content-area {
                padding: 60px 0;
            }

            .intro-content-area h1 {
                font-size: 30px;
            }
        }

        .property-hero {
            background-image: url("../img/banner/11.png");
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            /* aspect-ratio + responsive sizing comes from the global
               .inner-banner rule in assets/css/style.css. */
        }

        .inner-banner.property-hero::before,
        .inner-banner.property-hero::after {
            display: none !important;
            content: none !important;
        }

        /* ============================================================
   FAQ Area (property.php) — Restyle to match numbered-card design
   Content and Bootstrap accordion logic untouched — visual only.
   ============================================================ */
        .faq-area {
            background: linear-gradient(180deg, #f8f0e0 0%, #f1e2c4 100%) !important;
        }

        .faq-area .section-title-two .section-span-bg2 {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: none;
            color: #b8862e;
            letter-spacing: 3px;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
        }

        .faq-area .section-title-two .section-span-bg2::before {
            content: "";
            width: 32px;
            height: 2px;
            background: #c9973f;
            display: inline-block;
        }

        .faq-area .section-title-two h2.margin-auto {
            color: #2b2620;
            font-size: 32px;
            font-weight: 600;
            margin: 14px auto 0;
        }

        .faq-area .section-title-two h2.margin-auto b.section-color2 {
            color: #b8862e !important;
            font-style: italic;
            font-weight: 500;
        }

        .faq-area .row.pt-45 {
            counter-reset: propfaqcounter;
        }

        .faq-area .accordion-item {
            counter-increment: propfaqcounter;
            border: 1px solid rgba(201, 151, 63, 0.28) !important;
            border-radius: 14px !important;
            box-shadow: 0 10px 26px rgba(120, 90, 40, 0.07) !important;
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        }

        .faq-area .accordion-item:hover {
            box-shadow: 0 16px 36px rgba(120, 90, 40, 0.13) !important;
            transform: translateY(-2px);
            border-color: rgba(201, 151, 63, 0.5) !important;
        }

        .faq-area .accordion-button {
            background-color: #ffffff !important;
            color: #2b2620 !important;
            font-family: 'Cormorant', serif !important;
            font-size: 16px !important;
            font-weight: 700 !important;
            padding: 18px 22px !important;
            border-left: 4px solid transparent;
            transition: border-color 0.3s ease, background 0.3s ease;
        }

        .faq-area .accordion-button:not(.collapsed) {
            border-left-color: #b8862e;
            background: linear-gradient(90deg, #faf1de 0%, #fff 60%) !important;
            color: #2b2620 !important;
            box-shadow: none !important;
        }

        .faq-area .accordion-button::before {
            content: counter(propfaqcounter, decimal-leading-zero);
            color: #d3a256;
            font-size: 13px;
            font-weight: 700;
            margin-right: 12px;
            flex-shrink: 0;
        }

        .faq-area .accordion-button i {
            color: #b8862e !important;
            font-size: 19px !important;
            margin-right: 10px !important;
        }

        .faq-area .accordion-button::after {
            width: 32px !important;
            height: 32px !important;
            border-radius: 50% !important;
            border: 1px solid rgba(201, 151, 63, 0.4) !important;
            background-size: 14px !important;
            background-position: center !important;
            margin-left: auto;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .faq-area .accordion-button:not(.collapsed)::after {
            background-color: #b8862e !important;
            transform: rotate(-180deg);
        }

        .faq-area .accordion-body {
            background: #ffffff !important;
            color: #6b6155 !important;
            font-size: 13.5px !important;
            line-height: 1.7 !important;
            text-align: justify;
            text-align-last: left;
            padding: 4px 22px 20px 54px !important;
        }

        @media (max-width: 767px) {
            .faq-area .section-title-two h2.margin-auto {
                font-size: 24px;
            }

            .faq-area .accordion-body {
                padding-left: 22px !important;
            }
        }

        /* ============================================================
   FINAL: Equal spacing normalizer — whole property page
   Placed last so it wins over every earlier padding override.
   ============================================================ */
        .property-details,
        .intro-content-area,
        .faq-area {
            margin: 0 !important;
            /* removes any collapsing-margin gaps */
            padding-top: 60px !important;
            padding-bottom: 60px !important;
        }

        /* Property Details is a slim info strip, not a full section —
   it gets its own smaller matching rhythm instead of 60px */
        .property-details {
            padding-top: 22px !important;
            padding-bottom: 22px !important;
        }

        @media (max-width: 767px) {

            .property-details,
            .intro-content-area,
            .faq-area {
                padding-top: 40px !important;
                padding-bottom: 40px !important;
            }

            .property-details {
                padding-top: 16px !important;
                padding-bottom: 16px !important;
            }
        }

        /* ============================================================
   Amenities Section — Compact icon-grid, white background
   ============================================================ */
        .amenities-showcase {
            background: #ffffff;
            padding: 60px 0;
        }

        .amenities-showcase .amenities-intro {
            max-width: 100% !important;
            width: 100% !important;
            display: block;
            margin: 0 auto 10px !important;
            padding-top: 0 !important;
            color: #6b6155;
            font-size: 14.5px;
            line-height: 1.75;
            text-align: center;
        }

        .amenities-showcase .amenities-intro:last-of-type {
            margin-bottom: 0 !important;
        }

        .amenities-heading {
            margin-bottom: 30px;
        }

        .amenities-showcase .section-span-bg2 {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: none;
            color: #b8862e;
            letter-spacing: 3px;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
        }

        .amenities-showcase .section-span-bg2::before {
            content: "";
            width: 32px;
            height: 2px;
            background: #c9973f;
            display: inline-block;
        }

        .amenities-showcase h2.margin-auto {
            color: #2b2620;
            font-size: 32px;
            font-weight: 600;
            line-height: 1.3;
            max-width: 700px;
            margin: 14px auto 6px;
        }

        .amenities-showcase h2.margin-auto b.section-color2 {
            color: #b8862e;
            font-style: italic;
            font-weight: 500;
        }

        .amenities-intro {
            max-width: 100%;
            width: 100%;
            margin: 0 auto 10px;
            color: #6b6155;
            font-size: 14.5px;
            line-height: 1.75;
            text-align: center;
        }

        .amenities-intro:last-of-type {
            margin-bottom: 0;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px 16px;
            margin-top: 30px;
        }

        .amenities-card {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            border: 1px solid rgba(201, 151, 63, 0.28);
            border-radius: 10px;
            padding: 13px 15px;
            box-shadow: 0 8px 18px rgba(120, 90, 40, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .amenities-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 28px rgba(120, 90, 40, 0.12);
            border-color: rgba(184, 134, 46, 0.5);
        }

        .amenities-icon {
            flex-shrink: 0;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, #d3a256, #b8862e);
            color: #fff;
            font-size: 17px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 14px rgba(184, 134, 46, 0.3);
        }

        .amenities-card p {
            margin: 0;
            color: #2b2620;
            font-size: 13px;
            font-weight: 500;
            line-height: 1.4;
            text-align: left;
            text-align-last: left;
        }

        .amenities-note {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            max-width: 850px;
            margin: 26px auto 0;
            background: rgba(211, 162, 86, 0.12);
            border-left: 3px solid #b8862e;
            border-radius: 8px;
            padding: 14px 18px;
        }

        .amenities-note i {
            flex-shrink: 0;
            color: #b8862e;
            font-size: 19px;
            margin-top: 1px;
        }

        .amenities-note p {
            margin: 0;
            color: #6b6155;
            font-size: 13px;
            line-height: 1.65;
            font-style: italic;
            text-align: left;
            text-align-last: left;
        }

        @media (max-width: 991px) {
            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 575px) {
            .amenities-grid {
                grid-template-columns: 1fr;
            }

            .amenities-showcase {
                padding: 40px 0;
            }

            .amenities-intro {
                text-align: justify;
                text-align-last: left;
            }
        }

        .amenities-heading.section-title-two {
            max-width: 100% !important;
            width: 100% !important;
            padding: 0 !important;
        }

        /* ============================================================
   Amenity Detail Tabs — compact, theme-matched, white background
   ============================================================ */
        .amenity-detail-tabs {
            background: linear-gradient(180deg, #faf6ef 0%, #f4ead9 100%);
            padding: 60px 0;
        }

        .adt-heading {
            margin-bottom: 28px;
        }

        .amenity-detail-tabs .section-span-bg2 {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: none;
            color: #b8862e;
            letter-spacing: 3px;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
        }

        .amenity-detail-tabs .section-span-bg2::before {
            content: "";
            width: 32px;
            height: 2px;
            background: #c9973f;
            display: inline-block;
        }

        .amenity-detail-tabs h2.margin-auto {
            color: #2b2620;
            font-size: 30px;
            font-weight: 600;
            line-height: 1.32;
            max-width: 780px;
            margin: 14px auto 0;
        }

        .amenity-detail-tabs h2.margin-auto b.section-color2 {
            color: #b8862e;
            font-style: italic;
            font-weight: 500;
        }

        /* Tab nav buttons */
        .adt-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 6px;
        }

        .adt-tab-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #faf1de;
            border: 1px solid rgba(201, 151, 63, 0.35);
            color: #6b6155;
            font-size: 13.5px;
            font-weight: 600;
            padding: 11px 18px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .adt-tab-btn i {
            font-size: 16px;
            color: #b8862e;
        }

        .adt-tab-btn:hover {
            background: #fff;
            border-color: rgba(184, 134, 46, 0.6);
        }

        .adt-tab-btn.active {
            background: linear-gradient(135deg, #d3a256, #b8862e);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 10px 22px rgba(184, 134, 46, 0.3);
        }

        .adt-tab-btn.active i {
            color: #fff;
        }

        /* Panels */
        .adt-panels {
            max-width: 1100px;
            margin: 30px auto 0;
            background: #ffffff;
            border: 1px solid rgba(201, 151, 63, 0.3);
            border-radius: 16px;
            padding: 42px 56px;
            min-height: 260px;
            box-shadow: 0 20px 45px rgba(120, 90, 40, 0.09);
        }

        .adt-panel {
            display: none;
            animation: adtFade 0.35s ease;
        }

        .adt-panel.active {
            display: block;
        }

        @keyframes adtFade {
            from {
                opacity: 0;
                transform: translateY(6px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .adt-panel h3 {
            color: #2b2620;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .adt-panel p {
            color: #6b6155;
            font-size: 14px;
            line-height: 1.75;
            text-align: justify;
            text-align-last: left;
            margin-bottom: 12px;
        }

        .adt-panel p.adt-lead {
            font-weight: 700;
            color: #2b2620;
            text-align-last: left;
            margin-bottom: 10px;
        }

        .adt-list {
            list-style: none;
            margin: 0 0 16px;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 20px;
        }

        .adt-list li {
            position: relative;
            padding-left: 22px;
            font-size: 13.5px;
            line-height: 1.5;
            color: #6b6155;
        }

        .adt-list li::before {
            content: "\2713";
            position: absolute;
            left: 0;
            top: 1px;
            color: #b8862e;
            font-weight: 700;
            font-size: 12px;
        }

        @media (max-width: 767px) {
            .amenity-detail-tabs h2.margin-auto {
                font-size: 22px;
            }

            .adt-panels {
                padding: 26px 20px;
            }

            .adt-tab-btn {
                font-size: 12.5px;
                padding: 9px 14px;
            }

            .adt-list {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================================
   Yoga, Meditation & Senior-Citizen Amenities — White bg, split layout
   ============================================================ */
        .wellness-section {
            background: #ffffff;
            padding: 60px 0;
        }

        .wellness-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }

        .wellness-left {
            flex: 1 1 420px;
        }

        .wellness-section .pf-eyebrow {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .wellness-section .line {
            width: 36px;
            height: 2px;
            background: #c9973f;
            display: inline-block;
        }

        .wellness-section .pf-eyebrow-text {
            color: #b8862e;
            letter-spacing: 3px;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
        }

        .wellness-left h2 {
            color: #2b2620;
            font-size: 30px;
            font-weight: 600;
            line-height: 1.32;
            margin-bottom: 18px;
        }

        .wellness-left h2 b {
            color: #b8862e;
            font-weight: 700;
        }

        .wellness-desc {
            color: #6b6155;
            font-size: 14.5px;
            line-height: 1.8;
            text-align: justify;
            text-align-last: left;
            margin-bottom: 14px;
        }

        .wellness-desc:last-of-type {
            margin-bottom: 0;
        }

        /* Right card */
        .wellness-right {
            flex: 1 1 460px;
        }

        .wellness-card {
            background: linear-gradient(160deg, #faf6ef 0%, #f4ead9 100%);
            border: 1px solid rgba(201, 151, 63, 0.3);
            border-radius: 16px;
            padding: 32px 34px;
            box-shadow: 0 18px 40px rgba(120, 90, 40, 0.1);
        }

        .wellness-card h3 {
            color: #2b2620;
            font-size: 16.5px;
            font-weight: 700;
            margin-bottom: 18px;
            padding-bottom: 14px;
            border-bottom: 1px dashed rgba(201, 151, 63, 0.4);
        }

        .wellness-list {
            list-style: none;
            margin: 0 0 20px;
            padding: 0;
        }

        .wellness-list li {
            display: flex;
            align-items: center;
            gap: 13px;
            padding: 11px 0;
            border-bottom: 1px dashed rgba(201, 151, 63, 0.25);
            font-size: 14px;
            font-weight: 500;
            color: #2b2620;
        }

        .wellness-list li:last-child {
            border-bottom: none;
        }

        .wellness-list li i {
            flex-shrink: 0;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid rgba(201, 151, 63, 0.4);
            color: #b8862e;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wellness-note {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            background: rgba(211, 162, 86, 0.12);
            border-left: 3px solid #b8862e;
            border-radius: 8px;
            padding: 12px 16px;
        }

        .wellness-note i {
            flex-shrink: 0;
            color: #b8862e;
            font-size: 17px;
            margin-top: 1px;
        }

        .wellness-note p {
            margin: 0;
            color: #6b6155;
            font-size: 12.5px;
            line-height: 1.6;
            font-style: italic;
            text-align: left;
            text-align-last: left;
        }

        @media (max-width: 991px) {
            .wellness-right {
                margin-top: 10px;
            }
        }

        @media (max-width: 767px) {
            .wellness-section {
                padding: 40px 0;
            }

            .wellness-left h2 {
                font-size: 24px;
            }

            .wellness-desc {
                text-align: left;
            }
        }

        /* ============================================================
   Guest Room & Landscaped Spaces — Twin Card Section
   ============================================================ */
        .lifestyle-spaces-section {
            background: #ffffff;
            padding: 60px 0;
        }

        .lifestyle-spaces-section .ls-heading {
            margin-bottom: 34px;
        }

        .lifestyle-spaces-section .section-span-bg2 {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: none;
            color: #b8862e;
            letter-spacing: 3px;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
        }

        .lifestyle-spaces-section .section-span-bg2::before {
            content: "";
            width: 32px;
            height: 2px;
            background: #c9973f;
            display: inline-block;
        }

        .lifestyle-spaces-section h2.margin-auto {
            color: #2b2620;
            font-size: 30px;
            font-weight: 600;
            line-height: 1.3;
            max-width: 720px;
            margin: 14px auto 0;
        }

        .lifestyle-spaces-section h2.margin-auto b.section-color2 {
            color: #b8862e;
            font-style: italic;
            font-weight: 500;
        }

        .ls-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px;
            align-items: stretch;
        }

        .ls-card {
            position: relative;
            background: linear-gradient(165deg, #ffffff 0%, #fdf8ee 100%);
            border: 1px solid rgba(201, 151, 63, 0.28);
            border-radius: 14px;
            padding: 28px 26px;
            box-shadow: 0 10px 26px rgba(120, 90, 40, 0.07);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        }

        .ls-card:hover {
            box-shadow: 0 16px 36px rgba(120, 90, 40, 0.13);
            transform: translateY(-3px);
            border-color: rgba(201, 151, 63, 0.5);
        }

        .ls-card-head {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
        }

        .ls-card-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #d3a256, #b8862e);
            color: #fff;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 18px rgba(184, 134, 46, 0.3);
        }

        .ls-card h3 {
            color: #2b2620;
            font-family: 'Cormorant', serif;
            font-size: 19px;
            font-weight: 700;
            line-height: 1.3;
            margin: 0;
        }

        .ls-card p {
            color: #6b6155;
            font-size: 13.5px;
            line-height: 1.7;
            text-align: justify;
            text-align-last: left;
            margin-bottom: 14px;
        }

        .ls-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 14px;
        }

        .ls-list li {
            position: relative;
            padding-left: 20px;
            font-size: 13px;
            line-height: 1.5;
            color: #444;
            font-weight: 500;
        }

        .ls-list li::before {
            content: "\2713";
            position: absolute;
            left: 0;
            top: 1px;
            color: #b8862e;
            font-weight: 700;
            font-size: 11px;
        }

        .ls-closing-note {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            max-width: 880px;
            margin: 26px auto 0;
            background: rgba(211, 162, 86, 0.12);
            border-left: 3px solid #b8862e;
            border-radius: 8px;
            padding: 14px 18px;
        }

        .ls-closing-note i {
            flex-shrink: 0;
            color: #b8862e;
            font-size: 19px;
            margin-top: 1px;
        }

        .ls-closing-note p {
            margin: 0;
            color: #6b6155;
            font-size: 13px;
            line-height: 1.65;
            font-style: italic;
            text-align: left;
        }

        @media (max-width: 767px) {
            .lifestyle-spaces-section {
                padding: 40px 0;
            }

            .lifestyle-spaces-section h2.margin-auto {
                font-size: 24px;
            }

            .ls-grid {
                grid-template-columns: 1fr;
            }

            .ls-list {
                grid-template-columns: 1fr;
            }

            .ls-card p {
                text-align: justify;
                text-align-last: left;
            }
        }

        /* ============================================================
   Location & Amenity Value Section — Cream Theme
   ============================================================ */
        .location-value-section {
            position: relative;
            background: linear-gradient(180deg, #faf6ef 0%, #f4ead9 100%);
            padding: 70px 0;
            overflow: hidden;
        }

        .location-value-section::before {
            content: "";
            position: absolute;
            top: -100px;
            right: -100px;
            width: 340px;
            height: 340px;
            border: 1px solid rgba(184, 134, 46, 0.2);
            border-radius: 50%;
            pointer-events: none;
        }

        .location-value-section::after {
            content: "";
            position: absolute;
            bottom: -140px;
            left: -80px;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(211, 162, 86, 0.14), transparent 70%);
            pointer-events: none;
        }

        .lv-row {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .lv-col {
            flex: 1 1 440px;
        }

        .lv-eyebrow {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .lv-eyebrow .line {
            width: 36px;
            height: 2px;
            background: #c9973f;
            display: inline-block;
        }

        .lv-eyebrow-text {
            color: #b8862e;
            letter-spacing: 3px;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            font-family: 'Poppins', sans-serif;
        }

        .lv-col h2 {
            font-family: 'Cormorant', serif;
            color: #2b2620;
            font-size: 27px;
            font-weight: 600;
            line-height: 1.32;
            margin-bottom: 16px;
        }

        .lv-col h2 b {
            color: #b8862e;
            font-weight: 700;
            font-style: italic;
        }

        .lv-col p {
            color: #6b6155;
            font-size: 14px;
            line-height: 1.85;
            text-align: justify;
            text-align-last: left;
            margin-bottom: 14px;
        }

        .lv-col p:last-of-type {
            margin-bottom: 0;
        }

        /* Landmarks chips */
        .lv-landmarks {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 22px 0 4px;
        }

        .lv-landmarks span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #ffffff;
            border: 1px solid rgba(201, 151, 63, 0.35);
            border-radius: 20px;
            padding: 7px 14px;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 500;
            color: #2b2620;
            box-shadow: 0 4px 12px rgba(120, 90, 40, 0.06);
        }

        .lv-landmarks span i {
            color: #b8862e;
            font-size: 13px;
        }

        .lv-note {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 18px;
        }

        .lv-note i {
            flex-shrink: 0;
            color: #b8862e;
            font-size: 15px;
            margin-top: 2px;
        }

        .lv-note p {
            margin: 0;
            color: #837a6d;
            font-size: 12px;
            line-height: 1.6;
            font-style: italic;
        }

        /* Right: benefits card */
        .lv-benefits-card {
            background: #ffffff;
            border: 1px solid rgba(201, 151, 63, 0.3);
            border-radius: 16px;
            padding: 32px 34px;
            box-shadow: 0 15px 40px rgba(120, 90, 40, 0.08);
        }

        .lv-benefits-card h3 {
            font-family: 'Cormorant', serif;
            color: #2b2620;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .lv-benefits-card>p {
            color: #6b6155;
            font-size: 13.5px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .lv-benefits-list {
            list-style: none;
            margin: 0 0 22px;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 16px;
        }

        .lv-benefits-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 500;
            color: #2b2620;
            line-height: 1.4;
        }

        .lv-benefits-list li i {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: linear-gradient(135deg, #d3a256, #b8862e);
            color: #fff;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(184, 134, 46, 0.3);
        }

        .lv-benefits-card .lv-closing {
            color: #837a6d;
            font-size: 12.5px;
            line-height: 1.7;
            font-style: italic;
            border-top: 1px dashed rgba(201, 151, 63, 0.35);
            padding-top: 16px;
            margin: 0;
        }

        @media (max-width: 991px) {
            .lv-benefits-card {
                margin-top: 10px;
            }
        }

        @media (max-width: 767px) {
            .location-value-section {
                padding: 50px 0;
            }

            .lv-col h2 {
                font-size: 22px;
            }

            .lv-col p,
            .lv-benefits-card>p {
                text-align: justify;
                text-align-last: left;
            }

            .lv-benefits-list {
                grid-template-columns: 1fr;
            }
        }

        /* =====================================================
   Schedule Visit CTA Section (Golden Theme)
   Placed just before footer
   ===================================================== */
        .schedule-visit-area {
            position: relative;
            background: linear-gradient(180deg, #faf6ef 0%, #f4ead9 100%);
            padding: 60px 0;
            border-top: 1px solid rgba(201, 151, 63, 0.2);
        }

        .sv-card {
            max-width: 980px;
            margin: 0 auto;
            background: #ffffff;
            border: 1px solid rgba(201, 151, 63, 0.32);
            border-radius: 18px;
            padding: 50px 55px;
            box-shadow: 0 22px 50px rgba(120, 90, 40, 0.12);
            text-align: center;
        }

        .schedule-visit-area .sv-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .schedule-visit-area .sv-eyebrow .line {
            width: 36px;
            height: 2px;
            background: #c9973f;
            display: inline-block;
        }

        .schedule-visit-area .sv-eyebrow-text {
            color: #b8862e;
            letter-spacing: 3px;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
        }

        .sv-card h2 {
            color: #2b2620;
            font-size: 30px;
            font-weight: 600;
            line-height: 1.32;
            margin: 0 auto 18px;
            max-width: 700px;
        }

        .sv-card h2 b {
            color: #b8862e;
            font-style: italic;
            font-weight: 500;
        }

        .sv-card p.sv-desc {
            color: #6b6155;
            font-size: 14.5px;
            line-height: 1.8;
            max-width: 720px;
            margin: 0 auto 12px;
            text-align: justify;
            text-align-last: center;
        }

        .sv-card p.sv-desc:last-of-type {
            margin-bottom: 30px;
        }

        /* ---- Primary actions (top 2, filled gold) ---- */
        .sv-primary-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 18px;
        }

        .sv-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #d3a256, #b8862e);
            color: #fff;
            font-size: 14.5px;
            font-weight: 600;
            letter-spacing: 0.3px;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 12px 25px rgba(184, 134, 46, 0.28);
            transition: all 0.35s ease;
            border: none;
        }

        .sv-btn-primary i {
            font-size: 18px;
            transition: transform 0.35s ease;
        }

        .sv-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 32px rgba(184, 134, 46, 0.38);
            color: #fff;
        }

        .sv-btn-primary:hover i {
            transform: translateX(4px);
        }

        /* ---- Secondary actions (grid of 4, outlined) ---- */
        .sv-secondary-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .sv-btn-secondary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            background: #fbf3e2;
            border: 1px solid rgba(201, 151, 63, 0.4);
            color: #2b2620;
            font-size: 13px;
            font-weight: 600;
            padding: 13px 14px;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .sv-btn-secondary i {
            font-size: 17px;
            color: #b8862e;
            flex-shrink: 0;
            transition: color 0.3s ease;
        }

        .sv-btn-secondary:hover {
            background: linear-gradient(135deg, #d3a256, #b8862e);
            color: #fff;
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(184, 134, 46, 0.25);
        }

        .sv-btn-secondary:hover i {
            color: #fff;
        }

        @media (max-width: 767px) {
            .schedule-visit-area {
                padding: 40px 0;
            }

            .sv-card {
                padding: 34px 22px;
                border-radius: 14px;
            }

            .sv-card h2 {
                font-size: 22px;
            }

            .sv-card p.sv-desc {
                text-align: left;
                text-align-last: left;
            }

            .sv-primary-row {
                flex-direction: column;
            }

            .sv-btn-primary {
                width: 100%;
                justify-content: center;
            }

            .sv-secondary-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 420px) {
            .sv-secondary-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================================
   GLOBAL OVERRIDE: Justify all multi-line paragraph content
   Placed last so it wins over every earlier text-align rule.
   Short single-line notes/badges are intentionally excluded.
   ============================================================ */
        .intro-content-area p.intro-desc,
        .amenities-showcase .amenities-intro,
        .amenity-detail-tabs .adt-panel p,
        .safety-infra-section .safety-infra-desc,
        .wellness-section .wellness-desc,
        .location-value-section .lv-col p,
        .location-value-section .lv-benefits-card>p,
        .lifestyle-spaces-section .ls-card p,
        .lifestyle-spaces-section .ls-closing-note p,
        .faq-area .accordion-body,
        .schedule-visit-area .sv-card p.sv-desc {
            text-align: justify !important;
            text-align-last: left !important;
        }

        /* Mobile: keep paragraph text justified on narrow screens too. */
        @media (max-width: 767px) {

            .intro-content-area p.intro-desc,
            .amenities-showcase .amenities-intro,
            .amenity-detail-tabs .adt-panel p,
            .safety-infra-section .safety-infra-desc,
            .wellness-section .wellness-desc,
            .location-value-section .lv-col p,
            .location-value-section .lv-benefits-card>p,
            .lifestyle-spaces-section .ls-card p,
            .lifestyle-spaces-section .ls-closing-note p,
            .faq-area .accordion-body,
            .schedule-visit-area .sv-card p.sv-desc {
                text-align: justify !important;
                text-align-last: left !important;
            }
        }
    

/* ===== Inline-style conversions (formerly style="..." in Amenities.php) ===== */

/* FAQ section gradient background (was style="background: linear-gradient(...);") */
.amenities-faq-gradient {
    background: linear-gradient(180deg, #faf6ef 0%, #f4ead9 100%) !important;
}

/* FAQ accordion item card (was style="border: 1px solid #e8e0d4; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04);") */
.amenities-faq-item {
    border: 1px solid #e8e0d4;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* FAQ accordion button (was style="font-family: 'Cormorant', serif; font-size: 18px; font-weight: 600; color: #ffffff; background-color: #c9973f; box-shadow: none;") */
.amenities-faq-button {
    font-family: 'Cormorant', serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #c9973f;
    box-shadow: none;
}

/* FAQ accordion icon SVG (was style="margin-right:8px;vertical-align:-4px;") */
.amenities-faq-icon {
    margin-right: 8px;
    vertical-align: -4px;
}

/* FAQ accordion body (was style="color: #555; line-height: 1.8; background: #fffdf9; padding: 20px 25px;") */
.amenities-faq-body {
    color: #555;
    line-height: 1.8;
    background: #fffdf9;
    padding: 20px 25px;
}
