/* Import Modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* Design Variables */
:root {
    --primary: #00275E;
    /* Deep Elegant Navy Blue */
    --primary-dark: #001533;
    /* Extremely Dark Navy */
    --primary-light: #003682;
    /* Semi Dark Navy */
    --accent: #004FBF;
    /* Bright Vibrant Royal Blue */
    --accent-hover: #003fa0;
    /* Slightly darker blue for hover states */
    --accent-light: #e6efff;
    /* Ultra soft blue wash background */
    --bg-white: #ffffff;
    /* Pure white */
    --bg-light: #f8fafc;
    /* Elegant cool light gray/blue background */
    --text-main: #0a1b33;
    /* Dark navy-tinted body text */
    --text-muted: #5c6f8a;
    /* Soft blue-gray body copy */
    --border-color: #e2e8f0;
    /* Modern clean border line */
    --shadow-sm: 0 4px 6px -1px rgba(0, 39, 94, 0.05), 0 2px 4px -1px rgba(0, 39, 94, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 39, 94, 0.08), 0 4px 6px -2px rgba(0, 39, 94, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 39, 94, 0.12), 0 10px 10px -5px rgba(0, 39, 94, 0.06);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* General Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.25;
    font-weight: 700;
}

/* Common Layout Elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 7.5rem 0;
}

.section-padding-large {
    padding: 9rem 0;
}

.bg-light-section {
    background-color: var(--bg-light);
}

.bg-dark-section {
    background-color: var(--primary);
    color: var(--bg-white);
}

/* Reusable Typography & Headers */
.section-meta {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
}

.bg-dark-section .section-meta {
    color: #38bdf8;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.bg-dark-section .section-title {
    color: var(--bg-white);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
}

.bg-dark-section .section-subtitle {
    color: #cbd5e1;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    gap: 0.75rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(0, 79, 191, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 79, 191, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-outline-white:hover {
    background-color: var(--bg-white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ========================================================
   SECTION 1: HERO
   ======================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--primary-dark);
    color: var(--bg-white);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/homepage.webp');
    background-size: cover;
    background-position-y: 35%;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 79, 191, 0.15) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1.15;
    max-width: 50vw;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #cbd5e1;
    max-width: 35vw;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-buttons-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

/* ========================================================
   SECTION 2: JASSIN RESIDENCE INTRO
   ======================================================== */
.intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.brand-hashtag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    border: 1px solid var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    background-color: var(--accent-light);
}

.intro-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    color: var(--primary);
}

.intro-desc {
    font-size: 1.25rem;
    color: var(--text-main);
    line-height: 1.85;
    font-weight: 400;
}

/* ========================================================
   SECTION 3: PROBLEM & SOLUTION
   ======================================================== */
.anxiety-solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 4rem;
}

.anxiety-solution-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.anxiety-solution-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 79, 191, 0.15);
}

.anxiety-block {
    background-color: #fef2f2;
    padding: 2.25rem 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.anxiety-block:hover {
    background-color: #fee2e2;
}

.anxiety-header-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
}

.anxiety-toggle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fee2e2;
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.anxiety-solution-item:hover .anxiety-toggle-icon {
    transform: scale(1.08);
}

.anxiety-solution-item.active-toggle .anxiety-toggle-icon {
    transform: rotate(180deg);
    background-color: var(--accent-light);
    color: var(--accent);
}

.anxiety-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ef4444;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.anxiety-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #991b1b;
}

.solution-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--bg-white);
    border-top: 0 solid var(--border-color);
}

.anxiety-solution-item.active-toggle .solution-wrapper {
    border-top: 1px solid var(--border-color);
}

.solution-block {
    padding: 2.5rem;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.solution-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}



/* ========================================================
   SECTION 4: COMPARISON CARDS
   ======================================================== */
.comparison-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3.5rem;
}

.comparison-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.comparison-card.jassin-card {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-md);
}

.comparison-card.jassin-card:hover {
    box-shadow: var(--shadow-lg);
}

.comp-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-light);
}

.comp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    object-position: 0% 80%;
}

.comparison-card:hover .comp-card-img img {
    transform: scale(1.06);
}

.comp-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent);
    color: var(--bg-white);
    padding: 0.35rem 1rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.comp-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.comp-card-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.comparison-card.other-card .comp-card-title {
    color: var(--text-muted);
}

.comp-card-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comp-card-points li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comp-card-points li i,
.comp-card-points li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.jassin-card .comp-card-points li i,
.jassin-card .comp-card-points li svg {
    color: var(--accent);
}

.other-card .comp-card-points li i,
.other-card .comp-card-points li svg {
    color: #94a3b8;
}

.other-card .comp-card-points li span {
    color: var(--text-muted);
}

/* ========================================================
   SECTION 5: VALIDATION GALLERY
   ======================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}

.gallery-card-box {
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 39, 94, 0.1);
}

.gallery-card-box img {
    width: 100%;
}

.gallery-card-box:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-content-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    text-align: center;
    color: var(--bg-white);
    background-color: rgba(0, 39, 94, 0.2);
    backdrop-filter: blur(0px);
    transition: var(--transition);
}

.gallery-card-box:hover .gallery-content-placeholder {
    background-color: rgba(0, 39, 94, 0.45);
    backdrop-filter: blur(4px);
}


.gallery-card-box:hover .gallery-icon {
    background-color: var(--bg-white);
    color: var(--accent);
    transform: rotate(15deg);
}

.gallery-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0rem;
    color: var(--bg-white);
}

.gallery-card-desc {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ========================================================
   SECTION 6: UNIT COLLECTIONS
   ======================================================== */
.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.5rem;
}

.unit-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.unit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 79, 191, 0.15);
}

.unit-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-light);
}

.unit-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.unit-card:hover .unit-img-container img {
    transform: scale(1.08);
}

.unit-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 0.35rem 1rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.unit-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.unit-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.unit-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.unit-specs-mini {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.spec-mini-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.unit-price-box {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.unit-price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.unit-price-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    white-space: nowrap;
}

/* ========================================================
   SECTION 7: MASTER PLAN
   ======================================================== */
.master-plan-container {
    max-width: 100%;
    /* margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white); */
    padding: 1.5rem;
    transition: var(--transition);
}

.master-plan-container:hover {
    box-shadow: 0 30px 50px rgba(0, 39, 94, 0.15);
}

.master-plan-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ========================================================
   SECTION 8: MAP LOCATION
   ======================================================== */
.map-outer-container {
    max-width: 100%;
    margin: 0 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    height: 450px;
}

.map-outer-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================================
   SECTION 9: CALL TO ACTION
   ======================================================== */
.cta-section {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 79, 191, 0.12) 0%, transparent 60%);
    bottom: -20%;
    left: 10%;
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Scroll Fade Animation utility */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================
   RESPONSIVE LAYOUTS (MOBILE POLISH)
   ======================================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 2.25rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .section-padding-large {
        padding: 5rem 0;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
        max-width: 85% !important;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
        max-width: 80% !important;
    }

    .intro-title {
        font-size: 3.25rem;
    }

    .brand-hashtag {
        font-size: 0.7rem;
        margin-bottom: 15px;
    }

    .intro-desc {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .anxiety-solution-list {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .anxiety-block {
        padding: 1.5rem;
    }

    .solution-block {
        padding: 1.5rem;
    }

    .comparison-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comp-card-img {
        height: 185px;
    }

    .comp-card-content {
        padding: 1.5rem;
    }

    .comp-card-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.25rem;
    }

    .units-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    .unit-info {
        padding: 1.5rem;
    }

    .unit-title {
        font-size: 1.5rem;
    }

    .unit-specs-mini {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .master-plan-container {
        padding: 0.75rem;
    }

    .map-outer-container {
        height: 300px;
    }

    .cta-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2.25rem;
    }
}

@media (max-width: 425px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-section {
        min-height: 85vh;
        height: auto;
        padding: 5rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-container {
        align-items: flex-start;
        text-align: left;
        max-width: 90%;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 1rem;
        max-width: 100% !important;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 100% !important;
    }

    .hero-buttons-group {
        gap: 0.75rem;
        width: 70%;
    }

    .hero-section .btn {
        padding: 0.35rem 0.85rem;
        font-size: 0.7rem;
    }

    .intro-title {
        font-size: 2rem;
    }

    .brand-hashtag {
        font-size: 0.5rem;
        margin-bottom: 15px;
        padding: 0.5rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.25rem;
    }

    .anxiety-title {
        font-size: 1.05rem;
    }

    .solution-title {
        font-size: 1.15rem;
    }

    .unit-price-box .btn-inquire {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .unit-price-value {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
}

/* ===========================
   LEAD CAPTURE MODAL
   =========================== */
.lead-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 21, 51, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lead-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lead-modal-card {
    background: var(--bg-white);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 420px;
    position: relative;
    text-align: center;
    box-shadow: 0 32px 64px rgba(0, 21, 51, 0.25);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-modal-overlay.active .lead-modal-card {
    transform: translateY(0) scale(1);
}

.lead-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lead-modal-close:hover {
    background: var(--border-color);
    color: var(--primary);
}

.lead-modal-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--accent);
}

.lead-modal-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.lead-modal-title {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.lead-modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.lead-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.lead-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.lead-form-group input {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 0.625rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    background: var(--bg-light);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    width: 100%;
}

.lead-form-group input:focus {
    border-color: var(--accent);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(0, 79, 191, 0.12);
}

.lead-form-group input::placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.lead-submit-btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    justify-content: center;
}

.lead-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.lead-modal-privacy {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

@media (max-width: 480px) {
    .lead-modal-card {
        padding: 2rem 1.5rem;
    }

    .lead-modal-title {
        font-size: 1.2rem;
    }
}

/* ========================================================
   SOLD OUT STYLES & NOTIFICATION MODAL
   ======================================================== */
.unit-card-soldout {
    position: relative;
    border-color: #fca5a5;
    background-color: #fef8f8;
}

.unit-card-soldout .unit-img-container img {
    filter: grayscale(85%) contrast(0.9);
    opacity: 0.75;
}

.unit-badge-soldout {
    background-color: #dc2626 !important;
    color: #ffffff !important;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.35);
}

.soldout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(1.5px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.soldout-stamp {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.unit-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.soldout-tag-inline {
    background-color: #fee2e2;
    color: #dc2626;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    border: 1px solid #fca5a5;
    white-space: nowrap;
}

.price-soldout {
    color: #94a3b8 !important;
    text-decoration: line-through;
    font-size: 1.25rem !important;
}

.btn-soldout {
    border-color: #fca5a5 !important;
    color: #dc2626 !important;
    background-color: #fff5f5 !important;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-soldout:hover {
    background-color: #dc2626 !important;
    color: #ffffff !important;
    border-color: #dc2626 !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Sold Out Modal Notification Styling */
.soldout-modal-card {
    text-align: center;
    border-top: 4px solid #dc2626;
}

.soldout-modal-icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fee2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid #fca5a5;
}

.soldout-notice-box {
    background-color: #fef2f2;
    border: 1.5px dashed #fca5a5;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0 1rem 0;
}

.soldout-notice-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #dc2626;
    margin: 0;
    text-transform: lowercase;
}