﻿:root {
    --lfm-charcoal: #151515;
    --lfm-black: #080808;
    --lfm-gold: #c8a85a;
    --lfm-gold-dark: #a9873d;
    --lfm-muted: #6f6f6f;
    --lfm-light: #f7f5f1;
    --lfm-border: #ece8df;
}

/* Global */

.section-padding {
    padding: 90px 0;
}

.section-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #111;
    margin-bottom: 14px;
}

    .section-title.text-white {
        color: #fff;
    }

.section-subtitle {
    color: var(--lfm-muted);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1rem;
}

.section-eyebrow,
.hero-eyebrow {
    display: inline-block;
    color: var(--lfm-gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* Buttons */

.btn {
    border-radius: 12px;
    padding: 14px 28px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.btn-lfm-primary {
    background: var(--lfm-gold);
    color: #111;
    border: 1px solid var(--lfm-gold);
    box-shadow: 0 16px 35px rgba(200, 168, 90, .22);
    transition: all .25s ease;
}

    .btn-lfm-primary:hover {
        background: var(--lfm-gold-dark);
        border-color: var(--lfm-gold-dark);
        color: #111;
        transform: translateY(-2px);
        box-shadow: 0 20px 45px rgba(200, 168, 90, .28);
    }

.btn-lfm-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .65);
    transition: all .25s ease;
}

    .btn-lfm-outline:hover {
        background: #fff;
        color: #111;
        border-color: #fff;
        transform: translateY(-2px);
    }

/* Hero */

.hero-section {
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    background: linear-gradient(90deg, rgba(8, 8, 8, .88) 0%, rgba(8, 8, 8, .62) 45%, rgba(8, 8, 8, .28) 100%), url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=85") center/cover no-repeat;
}

.hero-content {
    max-width: 820px;
}

.hero-copy h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5.8vw, 5.6rem);
    line-height: .98;
    letter-spacing: -0.045em;
    margin-bottom: 1.35rem;
}

.hero-copy p {
    max-width: 690px;
    font-size: 1.12rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .88);
}

/* Search */

.search-box {
    max-width: 850px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

    .search-box .form-control {
        height: 56px;
        border-radius: 13px;
        border: none;
        padding: 0 18px;
        font-size: .95rem;
        box-shadow: none;
    }

        .search-box .form-control:focus {
            box-shadow: 0 0 0 3px rgba(200, 168, 90, .28);
        }

    .search-box .btn {
        height: 56px;
        padding: 0 20px;
    }

/* Trust Strip */

.trust-strip {
    background: #111;
    color: #fff;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

    .trust-grid strong {
        display: block;
        color: var(--lfm-gold);
        font-size: 1.35rem;
        font-weight: 700;
        letter-spacing: .03em;
    }

    .trust-grid span {
        display: block;
        margin-top: 4px;
        font-size: .85rem;
        color: rgba(255, 255, 255, .68);
    }

/* Property Cards */

.property-card {
    border: 1px solid var(--lfm-border);
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .075);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .property-card:hover {
        transform: translateY(-8px);
        border-color: rgba(200, 168, 90, .42);
        box-shadow: 0 28px 75px rgba(0, 0, 0, .14);
    }

    .property-card img {
        height: 260px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .property-card .btn,
    .property-card .btn-lfm-primary {
        width: 100%;
    }

/* About */

.about-section {
    background: var(--lfm-light);
}

.about-copy {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
}

.about-image-wrap {
    position: relative;
}

    .about-image-wrap::before {
        content: "";
        position: absolute;
        inset: 24px -18px -18px 24px;
        border: 1px solid rgba(200, 168, 90, .55);
        border-radius: 28px;
        z-index: 0;
    }

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
}

/* Services */

.service-card {
    padding: 40px 28px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
    transition: all .25s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
        border-color: rgba(200, 168, 90, .45);
        box-shadow: 0 26px 70px rgba(0, 0, 0, .1);
    }

.services-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #151515;
    color: var(--lfm-gold);
    margin-bottom: 22px;
    font-size: 1.35rem;
}

.service-card h5 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #111;
}

.service-card p {
    color: var(--lfm-muted);
    font-size: .94rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Testimonials */

.testimonials-section {
    background: radial-gradient(circle at top center, rgba(200, 168, 90, .11), transparent 36%), var(--lfm-charcoal);
    color: #fff;
}

.testimonial-card {
    position: relative;
    height: 100%;
    min-height: 230px;
    padding: 42px;
    border-radius: 24px;
    background: #fff;
    color: #1a1a1a;
    border-left: 4px solid var(--lfm-gold);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
    overflow: hidden;
}

.quote-mark {
    position: absolute;
    top: 14px;
    right: 30px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5.5rem;
    color: rgba(200, 168, 90, .18);
    line-height: 1;
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 0;
}

.testimonial-author {
    position: relative;
    z-index: 1;
    margin-top: 26px;
}

    .testimonial-author strong {
        display: block;
        color: #111;
    }

    .testimonial-author span {
        display: block;
        margin-top: 3px;
        color: #777;
        font-size: .9rem;
    }

/* News */

.news-card {
    height: 100%;
    padding: 34px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .06);
    transition: all .25s ease;
}

    .news-card:hover {
        transform: translateY(-6px);
        border-color: rgba(200, 168, 90, .42);
        box-shadow: 0 26px 70px rgba(0, 0, 0, .1);
    }

    .news-card .badge {
        border-radius: 999px;
        padding: 7px 12px;
        background: #151515 !important;
        font-size: .72rem;
    }

    .news-card h5 {
        font-size: 1.3rem;
        line-height: 1.25;
        margin-bottom: 12px;
        color: #111;
    }

    .news-card p {
        color: var(--lfm-muted);
        font-size: .94rem;
        line-height: 1.65;
    }

.text-link {
    color: #111;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

    .text-link:hover {
        color: var(--lfm-gold);
    }

/* Final CTA */

.final-cta {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(200, 168, 90, .2), transparent 38%), linear-gradient(135deg, #171717, #050505);
    color: #fff;
}

    .final-cta h2 {
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(2.2rem, 4vw, 3.6rem);
        line-height: 1.1;
    }

.display-font {
    font-family: Georgia, "Times New Roman", serif;
}

/* Animations */

.fade-in {
    animation: fadeInUp .8s ease both;
}

.fade-in-stagger {
    animation: fadeInUp .8s ease both;
}

    .fade-in-stagger:nth-child(2) {
        animation-delay: .1s;
    }

    .fade-in-stagger:nth-child(3) {
        animation-delay: .2s;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 140px 0 90px;
    }

    .about-image-wrap::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 64px 0;
    }

    .hero-copy h1 {
        font-size: clamp(2.6rem, 13vw, 4rem);
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .search-box {
        padding: 14px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .testimonial-card,
    .news-card,
    .service-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .hero-content .d-flex {
        width: 100%;
    }
}

/* About Page */

.about-page-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, rgba(8, 8, 8, .9) 0%, rgba(8, 8, 8, .68) 48%, rgba(8, 8, 8, .28) 100%), url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1800&q=85") center/cover no-repeat;
    padding: 130px 0 90px;
}

    .about-page-hero h1 {
        font-size: clamp(2.8rem, 6vw, 5.75rem);
        line-height: .95;
        letter-spacing: -0.055em;
        max-width: 900px;
    }

.about-hero-subtitle {
    max-width: 700px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.about-intro-section {
    background: #fff;
    padding: 0 0 35px;
}

.about-intro-card {
    position: relative;
    margin-top: -70px;
    padding: 42px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .12);
    z-index: 2;
}

    .about-intro-card h2 {
        font-size: clamp(1.8rem, 3vw, 2.55rem);
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

.about-intro-text {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-section {
    padding: 90px 0;
}

.about-section-mission {
    background: linear-gradient(180deg, #fff 0%, #f8f6f1 100%);
}

.about-section-alt {
    background: #f7f5f1;
}

.about-section-header {
    display: flex;
    align-items: center;
    gap: 22px;
}

    .about-section-header.text-center {
        justify-content: center;
        flex-direction: column;
        gap: 14px;
        max-width: 760px;
    }

    .about-section-header h2 {
        font-size: clamp(2rem, 4vw, 3.25rem);
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

.about-section-num {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #151515;
    color: var(--lfm-gold);
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .06em;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
}

.about-mvv-card {
    position: relative;
    padding: 46px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 22px 65px rgba(0, 0, 0, .07);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .about-mvv-card::after {
        content: "";
        position: absolute;
        right: -70px;
        bottom: -70px;
        width: 190px;
        height: 190px;
        border-radius: 50%;
        background: rgba(200, 168, 90, .12);
    }

    .about-mvv-card:hover {
        transform: translateY(-7px);
        border-color: rgba(200, 168, 90, .45);
        box-shadow: 0 30px 85px rgba(0, 0, 0, .12);
    }

.about-card-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #151515;
    color: var(--lfm-gold);
    font-size: 1.35rem;
    margin-bottom: 26px;
}

.about-mvv-card h3 {
    position: relative;
    z-index: 1;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 1.1;
}

.about-card-copy {
    position: relative;
    z-index: 1;
}

    .about-card-copy p {
        color: #4a4a4a;
        line-height: 1.85;
        margin-bottom: 0;
    }

.about-values-section {
    padding: 90px 0;
    background: #fff;
}

.about-value-card {
    padding: 34px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .055);
    transition: all .25s ease;
}

    .about-value-card:hover {
        transform: translateY(-6px);
        border-color: rgba(200, 168, 90, .42);
        box-shadow: 0 26px 70px rgba(0, 0, 0, .1);
    }

    .about-value-card span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(200, 168, 90, .14);
        color: var(--lfm-gold-dark);
        font-weight: 800;
        font-size: .82rem;
        margin-bottom: 22px;
    }

    .about-value-card h5 {
        color: #111;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .about-value-card p {
        color: var(--lfm-muted);
        font-size: .94rem;
        line-height: 1.65;
        margin-bottom: 0;
    }

.about-org-wrap {
    margin-top: 36px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 26px 80px rgba(0, 0, 0, .1);
    overflow: hidden;
}

.about-org-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    border-bottom: 1px solid var(--lfm-border);
    background: #fff;
}

    .about-org-toolbar h5 {
        color: #111;
        font-weight: 700;
    }

    .about-org-toolbar .btn-sm {
        padding: 10px 18px;
        font-size: .76rem;
    }

.about-org-image-panel {
    padding: 26px;
    background: linear-gradient(135deg, rgba(200, 168, 90, .08), transparent 40%), #faf9f6;
    overflow-x: auto;
}

.lfm-org-chart-image {
    display: block;
    width: 100%;
    max-width: 1200px;
    min-width: 760px;
    height: auto;
    margin: 0 auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.scroll-mt {
    scroll-margin-top: 110px;
}

/* About Responsive */

@media (max-width: 991px) {
    .about-page-hero {
        min-height: auto;
        padding: 135px 0 100px;
    }

    .about-intro-card {
        margin-top: -55px;
        padding: 34px;
    }

    .about-section-header {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .about-page-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-section,
    .about-values-section {
        padding: 64px 0;
    }

    .about-intro-card,
    .about-mvv-card,
    .about-value-card {
        padding: 30px;
        border-radius: 22px;
    }

    .about-section-header {
        gap: 16px;
    }

    .about-section-num {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: .78rem;
    }

    .about-org-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

        .about-org-toolbar .btn {
            width: 100%;
        }

    .about-org-image-panel {
        padding: 18px;
    }

    .lfm-org-chart-image {
        min-width: 680px;
    }
}

/* Organizational Chart Modal */

.modal-open-lock {
    overflow: hidden;
}

.org-chart-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    background: rgba(8, 8, 8, .94);
    color: #fff;
}

    .org-chart-modal.is-open {
        display: flex;
        flex-direction: column;
    }

.org-chart-modal-header {
    min-height: 82px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(15, 15, 15, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

    .org-chart-modal-header h5 {
        color: #fff;
        font-weight: 700;
    }

.org-chart-close-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease;
}

    .org-chart-close-btn span {
        font-size: 1.35rem;
        line-height: 1;
    }

    .org-chart-close-btn:hover {
        background: var(--lfm-gold);
        border-color: var(--lfm-gold);
        color: #111;
    }

.org-chart-modal-body {
    flex: 1;
    padding: 36px;
    overflow: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.org-chart-modal-image {
    display: block;
    max-width: none;
    width: auto;
    height: auto;
    min-width: 1100px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

@media (max-width: 768px) {
    .org-chart-modal-header {
        padding: 16px 18px;
        align-items: flex-start;
        flex-direction: column;
    }

    .org-chart-close-btn {
        width: 100%;
        justify-content: center;
    }

    .org-chart-modal-body {
        padding: 18px;
        justify-content: flex-start;
    }

    .org-chart-modal-image {
        min-width: 900px;
    }
}

/* Properties Index Page */

.properties-page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, rgba(8, 8, 8, .9) 0%, rgba(8, 8, 8, .7) 48%, rgba(8, 8, 8, .3) 100%), url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=85") center/cover no-repeat;
    padding: 130px 0 90px;
}

    .properties-page-hero h1 {
        font-size: clamp(3rem, 6vw, 5.8rem);
        line-height: .95;
        letter-spacing: -0.055em;
    }

.properties-hero-subtitle {
    max-width: 680px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    line-height: 1.7;
}

.properties-listing-section {
    background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
}

.property-filter-card {
    position: relative;
    margin-top: -55px;
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .12);
    z-index: 3;
}

.property-filter-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--lfm-border);
}

    .property-filter-heading h5 {
        color: #111;
        font-weight: 800;
    }

.property-filter-reset {
    color: #111;
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: color .2s ease;
}

    .property-filter-reset:hover {
        color: var(--lfm-gold);
    }

.property-filter-card .form-label,
.property-inquiry-card .form-label {
    color: #333;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.property-filter-card .form-control,
.property-filter-card .form-select,
.property-inquiry-card .form-control {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid var(--lfm-border);
    color: #111;
    box-shadow: none;
}

    .property-filter-card .form-control:focus,
    .property-filter-card .form-select:focus,
    .property-inquiry-card .form-control:focus {
        border-color: rgba(200, 168, 90, .75);
        box-shadow: 0 0 0 3px rgba(200, 168, 90, .18);
    }

.property-filter-card .btn {
    min-height: 52px;
    padding-left: 16px;
    padding-right: 16px;
}

.properties-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
    padding: 0 4px;
}

    .properties-results-bar h5 {
        color: #111;
        font-weight: 800;
    }

.empty-properties-state {
    padding: 70px 30px;
    border-radius: 28px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .055);
}

.empty-properties-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #151515;
    color: var(--lfm-gold);
    font-size: 1.6rem;
}

.empty-properties-state h4 {
    color: #111;
    font-weight: 800;
    margin-bottom: 10px;
}

.empty-properties-state p {
    max-width: 500px;
    margin: 0 auto 24px;
    color: var(--lfm-muted);
}

.lfm-pagination .page-link {
    margin: 0 4px;
    border: 1px solid var(--lfm-border);
    border-radius: 12px;
    color: #111;
    font-weight: 700;
    min-width: 42px;
    text-align: center;
    box-shadow: none;
}

    .lfm-pagination .page-link:hover {
        color: #111;
        background: rgba(200, 168, 90, .14);
        border-color: rgba(200, 168, 90, .45);
    }

.lfm-pagination .page-item.active .page-link {
    background: var(--lfm-gold);
    border-color: var(--lfm-gold);
    color: #111;
}

/* Property Details Page */

.property-details-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, rgba(8, 8, 8, .92) 0%, rgba(8, 8, 8, .68) 50%, rgba(8, 8, 8, .28) 100%), url("https://images.unsplash.com/photo-1494526585095-c41746248156?w=1800&q=85") center/cover no-repeat;
    padding: 130px 0 90px;
}

    .property-details-hero h1 {
        font-size: clamp(2.8rem, 5.5vw, 5.4rem);
        line-height: .98;
        letter-spacing: -0.055em;
        max-width: 980px;
        margin: 0 auto;
    }

.property-details-location {
    margin-top: 16px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
}

    .property-details-location i {
        color: var(--lfm-gold);
        margin-right: 6px;
    }

.property-details-section {
    background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
}

.property-details-top-card {
    position: relative;
    margin-top: -55px;
    margin-bottom: 40px;
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .12);
    z-index: 3;
}

    .property-details-top-card h2 {
        font-size: clamp(1.9rem, 3vw, 3rem);
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

.property-details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

    .property-details-meta span {
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        padding: 8px 13px;
        background: rgba(200, 168, 90, .13);
        color: #6f5520;
        font-size: .78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .05em;
    }

.property-details-price {
    color: var(--lfm-gold-dark);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.property-gallery-card {
    padding: 14px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 22px 65px rgba(0, 0, 0, .075);
}

.property-gallery-main-btn,
.property-thumb-btn {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
}

.property-gallery-main-btn {
    border-radius: 22px;
}

    .property-gallery-main-btn::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, .45) 100%);
        opacity: .85;
        transition: opacity .25s ease;
    }

    .property-gallery-main-btn:hover::after {
        opacity: 1;
    }

.property-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.property-gallery-main-btn:hover .property-main-image {
    transform: scale(1.035);
}

.property-image-view-label {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    border-radius: 999px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, .92);
    color: #111;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

    .property-image-view-label i {
        margin-right: 6px;
        color: var(--lfm-gold-dark);
    }

.property-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.property-thumb-btn {
    border-radius: 16px;
}

    .property-thumb-btn img {
        width: 100%;
        height: 115px;
        object-fit: cover;
        display: block;
        transition: transform .3s ease, opacity .3s ease;
    }

    .property-thumb-btn:hover img {
        transform: scale(1.05);
        opacity: .9;
    }

.property-content-card {
    padding: 38px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .055);
}

.property-card-section-heading {
    margin-bottom: 22px;
}

    .property-card-section-heading h3 {
        color: #111;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        line-height: 1.1;
        letter-spacing: -0.03em;
        margin-bottom: 0;
    }

.property-description {
    color: #444;
    line-height: 1.85;
}

    .property-description p:last-child {
        margin-bottom: 0;
    }

.property-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .property-chip-list span {
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        padding: 10px 14px;
        background: rgba(200, 168, 90, .13);
        color: #5f4a1d;
        font-size: .88rem;
        font-weight: 700;
    }

.property-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.property-amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    padding: 14px;
    border-radius: 16px;
    background: #faf9f6;
    border: 1px solid var(--lfm-border);
}

    .property-amenity-item i {
        color: var(--lfm-gold-dark);
    }

.property-documents-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .property-documents-list li + li {
        margin-top: 10px;
    }

    .property-documents-list a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 16px;
        color: #111;
        text-decoration: none;
        background: #faf9f6;
        border: 1px solid var(--lfm-border);
        transition: all .2s ease;
    }

        .property-documents-list a:hover {
            border-color: rgba(200, 168, 90, .5);
            background: rgba(200, 168, 90, .1);
        }

    .property-documents-list i {
        color: var(--lfm-gold-dark);
        font-size: 1.2rem;
    }

.property-inquiry-card {
    top: 110px;
    padding: 32px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .12);
}

.property-inquiry-header {
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--lfm-border);
}

    .property-inquiry-header h4 {
        color: #111;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .property-inquiry-header p {
        color: var(--lfm-muted);
        line-height: 1.65;
        margin-bottom: 0;
    }

.property-inquiry-card textarea.form-control {
    min-height: 130px;
}

.property-location-section,
.related-properties-section {
    margin-top: 80px;
}

.property-map-card {
    padding: 14px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 22px 65px rgba(0, 0, 0, .075);
    overflow: hidden;
}

    .property-map-card .ratio {
        border-radius: 20px;
        overflow: hidden;
    }

/* Property Image Full Size Modal */

.modal-open-lock {
    overflow: hidden;
}

.property-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    background: rgba(8, 8, 8, .94);
    color: #fff;
}

    .property-gallery-modal.is-open {
        display: flex;
        flex-direction: column;
    }

.property-gallery-modal-header {
    min-height: 82px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(15, 15, 15, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

    .property-gallery-modal-header h5 {
        color: #fff;
        font-weight: 700;
    }

.property-gallery-close-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease;
}

    .property-gallery-close-btn span {
        font-size: 1.35rem;
        line-height: 1;
    }

    .property-gallery-close-btn:hover {
        background: var(--lfm-gold);
        border-color: var(--lfm-gold);
        color: #111;
    }

.property-gallery-modal-body {
    flex: 1;
    padding: 36px;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-gallery-modal-image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 160px);
    width: auto;
    height: auto;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

/* Responsive Properties */

@media (max-width: 991px) {
    .properties-page-hero,
    .property-details-hero {
        min-height: auto;
        padding: 135px 0 100px;
    }

    .property-filter-card,
    .property-details-top-card {
        margin-top: -50px;
    }

    .properties-results-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .property-inquiry-card {
        position: static !important;
    }
}

@media (max-width: 768px) {
    .properties-page-hero h1,
    .property-details-hero h1 {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .property-filter-card,
    .property-details-top-card,
    .property-content-card,
    .property-inquiry-card {
        padding: 28px;
        border-radius: 22px;
    }

    .property-filter-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .property-main-image {
        height: 340px;
    }

    .property-thumbs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-thumb-btn img {
        height: 115px;
    }

    .property-amenities-grid {
        grid-template-columns: 1fr;
    }

    .property-gallery-modal-header {
        padding: 16px 18px;
        align-items: flex-start;
        flex-direction: column;
    }

    .property-gallery-close-btn {
        width: 100%;
        justify-content: center;
    }

    .property-gallery-modal-body {
        padding: 18px;
    }

    .property-gallery-modal-image {
        max-height: none;
        max-width: 100%;
    }

    .property-location-section,
    .related-properties-section {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .property-details-meta {
        gap: 8px;
    }

        .property-details-meta span {
            font-size: .72rem;
        }

    .property-details-price {
        font-size: 2rem;
    }

    .property-main-image {
        height: 280px;
    }
}

/* Services Page */

.services-page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, rgba(8, 8, 8, .9) 0%, rgba(8, 8, 8, .68) 48%, rgba(8, 8, 8, .28) 100%), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1800&q=85") center/cover no-repeat;
    padding: 130px 0 90px;
}

    .services-page-hero h1 {
        font-size: clamp(3rem, 6vw, 5.8rem);
        line-height: .95;
        letter-spacing: -0.055em;
    }

.services-hero-subtitle {
    max-width: 720px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    line-height: 1.7;
}

.services-page-section {
    background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
}

.services-content-list {
    display: grid;
    gap: 28px;
}

.service-detail-card {
    padding: 42px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 22px 65px rgba(0, 0, 0, .075);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .service-detail-card:hover {
        transform: translateY(-6px);
        border-color: rgba(200, 168, 90, .45);
        box-shadow: 0 30px 85px rgba(0, 0, 0, .12);
    }

.service-detail-card-header {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--lfm-border);
}

    .service-detail-card-header h2 {
        font-size: clamp(1.9rem, 3vw, 3rem);
        line-height: 1.08;
        letter-spacing: -0.04em;
        margin-bottom: 0;
    }

.service-detail-content {
    color: #444;
    line-height: 1.85;
}

    .service-detail-content p:last-child {
        margin-bottom: 0;
    }

.service-page-card {
    position: relative;
    padding: 42px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 22px 65px rgba(0, 0, 0, .07);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .service-page-card::after {
        content: "";
        position: absolute;
        right: -70px;
        bottom: -70px;
        width: 190px;
        height: 190px;
        border-radius: 50%;
        background: rgba(200, 168, 90, .12);
    }

    .service-page-card:hover {
        transform: translateY(-7px);
        border-color: rgba(200, 168, 90, .45);
        box-shadow: 0 30px 85px rgba(0, 0, 0, .12);
    }

    .service-page-card .services-icon {
        position: relative;
        z-index: 1;
        margin-bottom: 26px;
    }

.service-card-number {
    position: absolute;
    top: 34px;
    right: 36px;
    color: rgba(17, 17, 17, .08);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.service-page-card h4 {
    position: relative;
    z-index: 1;
    color: #111;
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.service-page-card p {
    position: relative;
    z-index: 1;
    color: var(--lfm-muted);
    font-size: .98rem;
    line-height: 1.7;
    margin-bottom: 26px;
}

.service-card-link {
    position: relative;
    z-index: 1;
    color: #111;
    font-weight: 800;
    text-decoration: none;
    transition: color .2s ease;
}

    .service-card-link:hover {
        color: var(--lfm-gold);
    }

.services-process-section {
    padding: 90px 0;
    background: #fff;
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-process-item {
    padding: 34px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .055);
    text-align: center;
}

    .services-process-item span {
        width: 48px;
        height: 48px;
        margin: 0 auto 22px;
        border-radius: 50%;
        background: #151515;
        color: var(--lfm-gold);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .82rem;
        font-weight: 800;
    }

    .services-process-item h5 {
        color: #111;
        font-size: 1.1rem;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .services-process-item p {
        color: var(--lfm-muted);
        font-size: .94rem;
        line-height: 1.65;
        margin-bottom: 0;
    }

/* Services Responsive */

@media (max-width: 991px) {
    .services-page-hero {
        min-height: auto;
        padding: 135px 0 100px;
    }

    .services-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-page-hero h1 {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .service-detail-card,
    .service-page-card,
    .services-process-item {
        padding: 30px;
        border-radius: 22px;
    }

    .service-card-number {
        top: 28px;
        right: 28px;
        font-size: 2.5rem;
    }

    .services-process-section {
        padding: 64px 0;
    }
}

/* Contact Page */

.contact-page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, rgba(8, 8, 8, .9) 0%, rgba(8, 8, 8, .68) 48%, rgba(8, 8, 8, .28) 100%), url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1800&q=85") center/cover no-repeat;
    padding: 130px 0 90px;
}

    .contact-page-hero h1 {
        font-size: clamp(3rem, 6vw, 5.8rem);
        line-height: .95;
        letter-spacing: -0.055em;
    }

.contact-hero-subtitle {
    max-width: 720px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    line-height: 1.7;
}

.contact-page-section {
    background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
}

.contact-main-card {
    position: relative;
    margin-top: -55px;
    padding: 34px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .12);
    z-index: 3;
}

.contact-info-panel {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 26px;
    background: radial-gradient(circle at top right, rgba(200, 168, 90, .16), transparent 34%), #151515;
    color: #fff;
}

    .contact-info-panel h2 {
        font-size: clamp(2rem, 4vw, 3.1rem);
        line-height: 1.05;
        letter-spacing: -0.045em;
        margin-bottom: 24px;
    }

.contact-dynamic-content {
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
}

    .contact-dynamic-content p:last-child {
        margin-bottom: 0;
    }

.contact-detail-list {
    display: grid;
    gap: 22px;
    margin-top: 28px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lfm-gold);
    color: #111;
}

.contact-detail-item h6 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 6px;
}

.contact-detail-item p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.65;
    margin-bottom: 0;
}

.contact-mini-cta {
    margin-top: 34px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

    .contact-mini-cta strong {
        display: block;
        color: #fff;
        margin-bottom: 6px;
    }

    .contact-mini-cta span {
        display: block;
        color: rgba(255, 255, 255, .72);
        font-size: .94rem;
        line-height: 1.6;
    }

.contact-form-card {
    height: 100%;
    padding: 38px;
    border-radius: 26px;
    background: #fff;
}

.contact-form-header {
    padding-bottom: 22px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--lfm-border);
}

    .contact-form-header h3 {
        color: #111;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        line-height: 1.1;
        letter-spacing: -0.035em;
        margin-bottom: 10px;
    }

    .contact-form-header p {
        color: var(--lfm-muted);
        line-height: 1.65;
        margin-bottom: 0;
    }

.contact-form-card .form-label {
    color: #333;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.contact-form-card .form-control {
    min-height: 54px;
    border-radius: 14px;
    border: 1px solid var(--lfm-border);
    color: #111;
    box-shadow: none;
}

.contact-form-card textarea.form-control {
    min-height: 145px;
    resize: vertical;
}

.contact-form-card .form-control:focus {
    border-color: rgba(200, 168, 90, .75);
    box-shadow: 0 0 0 3px rgba(200, 168, 90, .18);
}

.contact-submit-btn {
    min-width: 190px;
}

.contact-map-section {
    margin-top: 80px;
}

.contact-map-card {
    padding: 14px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 22px 65px rgba(0, 0, 0, .075);
    overflow: hidden;
}

    .contact-map-card .ratio {
        border-radius: 20px;
        overflow: hidden;
    }

/* Contact Responsive */

@media (max-width: 991px) {
    .contact-page-hero {
        min-height: auto;
        padding: 135px 0 100px;
    }

    .contact-main-card {
        margin-top: -50px;
    }
}

@media (max-width: 768px) {
    .contact-page-hero h1 {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .contact-main-card {
        padding: 20px;
        border-radius: 24px;
    }

    .contact-info-panel,
    .contact-form-card {
        padding: 30px;
        border-radius: 22px;
    }

    .contact-submit-btn {
        width: 100%;
    }

    .contact-map-section {
        margin-top: 60px;
    }
}

/* Carousel */
.about-carousel,
.about-carousel .carousel-inner,
.about-carousel .carousel-item {
    border-radius: 28px;
    overflow: hidden;
}

.about-carousel {
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
}

    .about-carousel .about-image {
        width: 100%;
        height: 540px;
        object-fit: cover;
        border-radius: 0;
        box-shadow: none;
    }

    .about-carousel .carousel-control-prev,
    .about-carousel .carousel-control-next {
        width: 10%;
    }

    .about-carousel .carousel-control-prev-icon,
    .about-carousel .carousel-control-next-icon {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, .45);
        background-size: 50%;
    }

    .about-carousel .carousel-indicators {
        margin-bottom: 1rem;
    }

        .about-carousel .carousel-indicators [data-bs-target] {
            width: 9px;
            height: 9px;
            border-radius: 50%;
        }

        .about-carousel .carousel-indicators .active {
            width: 28px;
            border-radius: 999px;
        }

@media (max-width: 991px) {
    .about-carousel .about-image {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .about-carousel .about-image {
        height: 320px;
    }
}

/* =========================================================
   Professional About Page Redesign
   These classes match the updated About.cshtml version.
========================================================= */

.about-pro-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 150px 0 110px;
    color: #fff;
    overflow: hidden;
    background: linear-gradient( 90deg, rgba(8, 8, 8, .90) 0%, rgba(8, 8, 8, .70) 45%, rgba(8, 8, 8, .32) 100% ), linear-gradient( 180deg, rgba(8, 8, 8, .18) 0%, rgba(8, 8, 8, .42) 100% ), url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=85") center/cover no-repeat;
}

    .about-pro-hero::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 140px;
        background: linear-gradient(180deg, transparent, rgba(247, 245, 241, 1));
        pointer-events: none;
    }

    .about-pro-hero .container {
        position: relative;
        z-index: 2;
    }

    .about-pro-hero h1 {
        max-width: 900px;
        font-size: clamp(3rem, 6vw, 6rem);
        line-height: .95;
        letter-spacing: -0.055em;
    }

.about-pro-hero-subtitle {
    max-width: 700px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.about-pro-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.about-pro-hero-card {
    position: relative;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

    .about-pro-hero-card > span {
        display: inline-block;
        color: var(--lfm-gold);
        font-size: .76rem;
        font-weight: 800;
        letter-spacing: .16em;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .about-pro-hero-card h3 {
        color: #fff;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.75rem;
        line-height: 1.15;
        letter-spacing: -0.035em;
        margin-bottom: 28px;
    }

.about-pro-hero-meta {
    display: grid;
    gap: 14px;
}

    .about-pro-hero-meta div {
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, .14);
    }

    .about-pro-hero-meta strong {
        display: block;
        color: #fff;
        font-size: 1rem;
    }

    .about-pro-hero-meta small {
        display: block;
        margin-top: 4px;
        color: rgba(255, 255, 255, .62);
    }

.about-pro-intro-section {
    position: relative;
    padding: 0 0 80px;
    background: var(--lfm-light);
}

.about-pro-intro-card {
    position: relative;
    z-index: 3;
    margin-top: -80px;
    padding: 44px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 32px 90px rgba(0, 0, 0, .13);
}

    .about-pro-intro-card h2 {
        font-size: clamp(1.9rem, 3vw, 2.75rem);
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

.about-pro-intro-text {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-pro-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 38px;
    padding-top: 34px;
    border-top: 1px solid var(--lfm-border);
}

    .about-pro-intro-grid div {
        padding: 22px;
        border-radius: 22px;
        background: #faf9f6;
        border: 1px solid var(--lfm-border);
    }

    .about-pro-intro-grid i {
        color: var(--lfm-gold-dark);
        font-size: 1.25rem;
        margin-bottom: 16px;
    }

    .about-pro-intro-grid strong {
        display: block;
        color: #111;
        margin-bottom: 8px;
    }

    .about-pro-intro-grid span {
        display: block;
        color: var(--lfm-muted);
        font-size: .92rem;
        line-height: 1.6;
    }

.about-pro-section {
    padding: 96px 0;
}

.about-pro-mission-section {
    background: radial-gradient(circle at top left, rgba(200, 168, 90, .11), transparent 34%), linear-gradient(180deg, var(--lfm-light) 0%, #fff 100%);
}

.about-pro-org-section {
    background: radial-gradient(circle at top right, rgba(200, 168, 90, .10), transparent 34%), #f7f5f1;
}

.about-pro-section-heading {
    display: flex;
    align-items: center;
    gap: 22px;
}

    .about-pro-section-heading.text-center {
        justify-content: center;
        flex-direction: column;
        gap: 14px;
        max-width: 760px;
    }

    .about-pro-section-heading h2 {
        font-size: clamp(2.2rem, 4vw, 3.45rem);
        line-height: 1.08;
        letter-spacing: -0.045em;
    }

.about-pro-section-num {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #151515;
    color: var(--lfm-gold);
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .06em;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.about-pro-mvv-card {
    position: relative;
    padding: 44px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 24px 72px rgba(0, 0, 0, .075);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .about-pro-mvv-card::after {
        content: "";
        position: absolute;
        right: -80px;
        bottom: -80px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(200, 168, 90, .12);
    }

    .about-pro-mvv-card:hover {
        transform: translateY(-7px);
        border-color: rgba(200, 168, 90, .45);
        box-shadow: 0 34px 90px rgba(0, 0, 0, .13);
    }

.about-pro-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

    .about-pro-card-top > span {
        color: var(--lfm-gold-dark);
        font-size: .78rem;
        font-weight: 800;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

.about-pro-card-icon {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #151515;
    color: var(--lfm-gold);
    font-size: 1.35rem;
}

.about-pro-mvv-card h3 {
    position: relative;
    z-index: 2;
    color: #111;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.about-pro-card-copy {
    position: relative;
    z-index: 2;
}

    .about-pro-card-copy p {
        color: #444;
        font-size: 1rem;
        line-height: 1.85;
        margin-bottom: 0;
    }

.about-pro-values-section {
    padding: 96px 0;
    background: #fff;
}

    .about-pro-values-section h2 {
        font-size: clamp(2.2rem, 4vw, 3.45rem);
        line-height: 1.08;
        letter-spacing: -0.045em;
    }

.about-pro-value-card {
    position: relative;
    padding: 32px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .about-pro-value-card:hover {
        transform: translateY(-7px);
        border-color: rgba(200, 168, 90, .45);
        box-shadow: 0 30px 82px rgba(0, 0, 0, .11);
    }

.about-pro-value-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #151515;
    color: var(--lfm-gold);
    font-size: 1.18rem;
    margin-bottom: 24px;
}

.about-pro-value-card > span {
    position: absolute;
    top: 30px;
    right: 32px;
    color: rgba(17, 17, 17, .08);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.about-pro-value-card h5 {
    color: #111;
    font-size: 1.14rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-pro-value-card p {
    color: var(--lfm-muted);
    font-size: .94rem;
    line-height: 1.68;
    margin-bottom: 0;
}

.about-pro-org-wrap {
    border-radius: 32px;
    background: #fff;
    border: 1px solid var(--lfm-border);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .12);
    overflow: hidden;
}

.about-pro-org-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    border-bottom: 1px solid var(--lfm-border);
    background: #fff;
}

    .about-pro-org-toolbar h5 {
        color: #111;
        font-weight: 800;
    }

    .about-pro-org-toolbar .btn-sm {
        padding: 11px 20px;
        font-size: .76rem;
    }

.about-pro-org-image-panel {
    padding: 30px;
    background: linear-gradient(135deg, rgba(200, 168, 90, .10), transparent 40%), #faf9f6;
    overflow-x: auto;
}

.about-pro-org-chart-image {
    display: block;
    width: 100%;
    max-width: 1200px;
    min-width: 760px;
    height: auto;
    margin: 0 auto;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .10);
}

@media (max-width: 991px) {
    .about-pro-hero {
        min-height: auto;
        padding: 145px 0 120px;
    }

    .about-pro-hero-card {
        margin-top: 10px;
    }

    .about-pro-intro-card {
        margin-top: -70px;
    }

    .about-pro-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-pro-section-heading {
        align-items: flex-start;
    }

    .about-pro-org-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

        .about-pro-org-toolbar .btn {
            width: 100%;
        }
}

@media (max-width: 768px) {
    .about-pro-hero {
        padding: 135px 0 105px;
    }

        .about-pro-hero h1 {
            font-size: clamp(2.55rem, 12vw, 4rem);
        }

    .about-pro-hero-subtitle {
        font-size: 1rem;
    }

    .about-pro-hero-actions .btn {
        width: 100%;
    }

    .about-pro-intro-card {
        padding: 30px;
        border-radius: 24px;
    }

    .about-pro-section,
    .about-pro-values-section {
        padding: 68px 0;
    }

    .about-pro-mvv-card,
    .about-pro-value-card {
        padding: 30px;
        border-radius: 24px;
    }

    .about-pro-section-heading {
        gap: 16px;
    }

    .about-pro-section-num {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: .78rem;
    }

    .about-pro-org-image-panel {
        padding: 18px;
    }

    .about-pro-org-chart-image {
        min-width: 680px;
    }

    .org-chart-modal-header {
        padding: 16px 18px;
        align-items: flex-start;
        flex-direction: column;
    }

    .org-chart-close-btn {
        width: 100%;
        justify-content: center;
    }

    .org-chart-modal-body {
        padding: 18px;
        justify-content: flex-start;
    }

    .org-chart-modal-image {
        min-width: 900px;
    }
}
