.why-homeowners-section {
    width: 100%;
    background: linear-gradient(90deg, #7B1F26 0%, #B11E24 50%, #7B1F26 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.why-homeowners-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-californian, 'Californian FB', Georgia, serif);
}

.why-homeowners-subheading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    line-height: 1.2;
}

.why-homeowners-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin: 4px 0;
}

.why-homeowners-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
}

.why-homeowners-tagline {
    color: #ffffff;
    font-family: var(--font-californian, 'Cormorant Garamond', 'Californian FB', Georgia, serif);
    font-size: 24px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 6px;
    line-height: 1.2;
}

.leaf-icon {
    width: 65px;
    height: auto;
    display: block;
    object-fit: contain;
}

.leaf-left {
    animation: floatLeafLeft 4s ease-in-out infinite;
}

.leaf-right {
    transform: scaleX(-1);
    animation: floatLeafRight 4s ease-in-out 2s infinite;
}

/* Content Row & Grid Layout */
.why-homeowners-content-row {
    margin-top: 48px;
}

.why-homeowners-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
    gap: 16px;
    width: 100%;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 20px;
    box-sizing: border-box;
}

/* Card 1: Warm Cognac */
.stat-card-1 {
    grid-column: 1 / span 6;
    grid-row: 1;
    background-color: #A66542;
    border-radius: 28px;
}

/* Card 2: Light Warm Tan */
.stat-card-2 {
    grid-column: 1 / span 6;
    grid-row: 2;
    background-color: #D4A085;
    border-radius: 28px;
}

/* Card 3: Golden Sand (Spans rows 1 & 2) */
.stat-card-3 {
    grid-column: 7 / span 6;
    grid-row: 1 / span 2;
    background-color: #E2B381;
    border-radius: 32px;
    padding: 36px 20px;
}

/* Card 4: Dusty Rose Pill (7/12 ratio width) */
.stat-card-4 {
    grid-column: 1 / span 7;
    grid-row: 3;
    background-color: #DB8F89;
    border-radius: 50px;
    padding: 24px 20px;
}

/* Card 5: Explore Beige (5/12 ratio width) */
.stat-card-5 {
    grid-column: 8 / span 5;
    grid-row: 3;
    background-color: #E1AF86;
    border-radius: 24px;
    padding: 24px 20px;
}

/* Titles */
.stat-card-title {
    font-family: var(--font-hyundai, 'Hyundai Sans', 'Hyundai Sans Text Office', sans-serif);
    color: #5C1B20;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.stat-card-title-lg {
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Subtitles */
.stat-card-subtitle {
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

/* Card 5 Link */
.stat-card-explore-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.stat-card-explore-link:hover {
    color: #ffffff;
}

.stat-card-explore-text {
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.stat-card-explore-icon {
    font-size: 32px;
    line-height: 1;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.stat-card-explore-link:hover .stat-card-explore-icon {
    transform: scale(1.12);
}

/* ==========================================
   RIGHT COLUMN: FORM CARD STYLES
   ========================================== */

.why-homeowners-form-card {
    background: rgb(200 171 171 / 15%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 36px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-card-subheading {
    display: block;
    color: rgb(255 255 255 / 48%);
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.3;
}

.form-card-heading {
    color: #ffffff;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Form Pill Inputs & Submit */
.why-homeowners-form {
    margin-bottom: 24px;
}

.form-pill-input {
    width: 100%;
    height: 48px;
    background-color: #F49E9E;
    border: none;
    border-radius: 50px;
    padding: 0 16px;
    text-align: center;
    color: #ffffff;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    outline: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-pill-input::placeholder {
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.form-pill-input:focus {
    background-color: #f18c8c;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-pill-submit {
    width: 100%;
    height: 48px;
    background-color: #ffffff;
    border: none;
    border-radius: 50px;
    color: #5C1B20;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.form-pill-submit:hover {
    background-color: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Quick Reach Out Section */
.form-card-reachout {
    text-align: center;
    padding-top: 10px;
}

.reachout-heading {
    color: #5C1B20;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.reachout-contacts {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

.reachout-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reachout-icon {
    font-size: 55px;
    color: #ffffff;
    line-height: 1;
}

.reachout-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.reachout-info a {
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
}

.reachout-info a:hover {
    opacity: 0.85;
}

@keyframes floatLeafLeft {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(-3deg);
    }
}

@keyframes floatLeafRight {

    0%,
    100% {
        transform: scaleX(-1) translateY(0px) rotate(0deg);
    }

    50% {
        transform: scaleX(-1) translateY(-5px) rotate(-3deg);
    }
}

@media (max-width: 991px) {
    .why-homeowners-section {
        padding: 48px 0;
    }

    .why-homeowners-subheading {
        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .why-homeowners-title {
        font-size: 38px;
        letter-spacing: 2px;
    }

    .why-homeowners-tagline {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .why-homeowners-title-row {
        gap: 16px;
    }

    .leaf-icon {
        width: 36px;
    }

    .why-homeowners-content-row {
        margin-top: 36px;
    }

    .why-homeowners-grid {
        gap: 12px;
    }

    .stat-card {
        padding: 20px 14px;
    }

    .stat-card-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .stat-card-title-lg {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .stat-card-subtitle {
        font-size: 11px;
    }

    .stat-card-explore-text {
        font-size: 14px;
    }

    .stat-card-explore-icon {
        font-size: 26px;
    }

    .why-homeowners-form-card {
        padding: 28px 24px;
        border-radius: 28px;
    }

    .form-card-heading {
        font-size: 18px;
    }

    .form-card-subheading {
        font-size: 12px;
    }

    .reachout-contacts {
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 575px) {
    .why-homeowners-section {
        padding: 36px 0;
    }

    .why-homeowners-subheading {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .why-homeowners-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .why-homeowners-tagline {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .why-homeowners-title-row {
        gap: 10px;
    }

    .leaf-icon {
        width: 26px;
    }

    .why-homeowners-content-row {
        margin-top: 28px;
    }

    .why-homeowners-grid {
        gap: 10px;
    }

    .stat-card {
        padding: 16px 10px;
    }

    .stat-card-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .stat-card-title-lg {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .stat-card-subtitle {
        font-size: 10px;
        line-height: 1.25;
    }

    .stat-card-explore-text {
        font-size: 12px;
    }

    .stat-card-explore-icon {
        font-size: 22px;
    }

    .why-homeowners-form-card {
        padding: 24px 16px;
        border-radius: 24px;
    }

    .form-pill-input,
    .form-pill-submit {
        height: 42px;
        font-size: 11px;
    }

    .form-pill-input::placeholder {
        font-size: 10px;
    }

    .form-card-heading {
        font-size: 16px;
    }

    .reachout-heading {
        font-size: 14px;
    }

    .reachout-icon {
        font-size: 30px;
    }

    .reachout-info a {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .leaf-left,
    .leaf-right {
        animation: none;
    }
}