/* ============================================================
   SPARK SKOON — whychooseus.css
   Covers: why-choose-us preview (homepage) + whychooseus.html
   ============================================================ */


/* ============================================================
   HOMEPAGE: Why Choose Us Preview
   ============================================================ */
.why-choose-us {
    padding: 5rem 1.5rem;
    background-color: #F5F8FF;
}

/* 4-column grid on desktop — wraps gracefully */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0 3rem;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    border: 1px solid #E8EEF8;
    box-shadow: 0 2px 12px rgba(13, 40, 99, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(13, 40, 99, 0.11);
    border-color: #29B6F6;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background-color: #E3F2FD;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E88E5;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.feature-card:hover .feature-icon {
    background-color: #1E88E5;
    color: #ffffff;
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0D2863;
    margin: 0;
    line-height: 1.35;
}

.feature-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}

/* CTA row under grid */
.why-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}


/* ============================================================
   FULL PAGE: Page Hero
   ============================================================ */
.whychooseus-hero {
    background: linear-gradient(135deg, #0D2863 0%, #1565C0 60%, #1E88E5 100%);
    min-height: 400px;
    text-align: center;
}

/* Light outlined secondary button for dark hero backgrounds */
.btn-secondary-light {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.btn-secondary-light:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}


/* ============================================================
   FULL PAGE: Intro Statement
   ============================================================ */
.wcu-intro {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.wcu-intro-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.wcu-intro-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wcu-intro-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0D2863;
    line-height: 1.2;
    margin: 0;
}

.wcu-intro-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin: 0;
}

/* Stat pills stacked on the right */
.wcu-intro-stat-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.stat-pill {
    background-color: #0D2863;
    border-radius: 12px;
    padding: 1.1rem 1.75rem;
    text-align: center;
    min-width: 170px;
}

.stat-pill strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #29B6F6;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-pill span {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(232, 238, 248, 0.8);
    line-height: 1.3;
}


/* ============================================================
   FULL PAGE: 8 Reasons Grid
   ============================================================ */
.wcu-reasons {
    padding: 5rem 1.5rem;
    background-color: #F5F8FF;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.reason-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    border: 1px solid #E8EEF8;
    box-shadow: 0 2px 12px rgba(13, 40, 99, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    overflow: hidden;
}

.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(13, 40, 99, 0.11);
    border-color: #29B6F6;
}

/* Large faded number in the background */
.reason-number {
    position: absolute;
    top: -0.5rem;
    right: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(13, 40, 99, 0.055);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.reason-icon {
    width: 52px;
    height: 52px;
    background-color: #E3F2FD;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E88E5;
    font-size: 1.25rem;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.reason-card:hover .reason-icon {
    background-color: #1E88E5;
    color: #ffffff;
}

.reason-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0D2863;
    margin: 0;
    line-height: 1.35;
}

.reason-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}


/* ============================================================
   FULL PAGE: Comparison Table
   ============================================================ */
.wcu-comparison {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(13, 40, 99, 0.08);
    margin-top: 2.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    min-width: 520px;
}

.comparison-table thead tr {
    background-color: #0D2863;
}

.comparison-table th {
    padding: 1.1rem 1.5rem;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
    width: 55%;
}

/* Highlight our column header */
.comparison-table th.col-us {
    background-color: #1E88E5;
    color: #ffffff;
}

.comparison-table th.col-us i {
    margin-right: 0.4rem;
    color: #29B6F6;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #E8EEF8;
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: #F5F8FF;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #FAFCFF;
}

.comparison-table tbody tr:nth-child(even):hover {
    background-color: #F5F8FF;
}

.comparison-table td {
    padding: 1rem 1.5rem;
    color: #333;
    text-align: center;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #1A1A2E;
}

/* Our column cells — subtle highlight */
.comparison-table td.col-us {
    background-color: rgba(30, 136, 229, 0.05);
}

/* Icons inside table */
.col-us .fa-check {
    color: #1E88E5;
    font-size: 1rem;
}

.col-them .fa-xmark {
    color: #e53935;
    font-size: 1rem;
}

.col-them .fa-question {
    color: #bbb;
    font-size: 0.9rem;
}


/* ============================================================
   FULL PAGE: Guarantee Highlight
   ============================================================ */
.wcu-guarantee {
    padding: 5rem 1.5rem;
    background-color: #F5F8FF;
}

.guarantee-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3.5rem;
    align-items: center;
    background-color: #0D2863;
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 12px 48px rgba(13, 40, 99, 0.18);
}

.guarantee-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #1E88E5, #29B6F6);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 8px 28px rgba(30, 136, 229, 0.4);
}

.guarantee-badge i {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.guarantee-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.guarantee-badge small {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.guarantee-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.guarantee-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.975rem;
    color: rgba(232, 238, 248, 0.85);
    line-height: 1.8;
    margin: 0 0 0.85rem;
}

.guarantee-content em {
    color: #29B6F6;
    font-style: italic;
    font-weight: 600;
}

.guarantee-content .btn-primary {
    margin-top: 0.5rem;
    display: inline-flex;
}


/* ============================================================
   FULL PAGE: CTA Banner
   ============================================================ */
.wcu-cta-banner {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #E3F2FD 0%, #E8EEF8 100%);
    text-align: center;
}


/* ============================================================
   MOBILE RESPONSIVENESS
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wcu-intro-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .wcu-intro-stat-stack {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-pill {
        min-width: 130px;
        flex: 1;
    }

    .guarantee-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem;
    }

    .guarantee-badge {
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 580px) {

    .why-choose-us,
    .wcu-intro,
    .wcu-reasons,
    .wcu-comparison,
    .wcu-guarantee,
    .wcu-cta-banner {
        padding: 3.5rem 1rem;
    }

    .features-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .why-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .why-cta a {
        text-align: center;
        justify-content: center;
    }

    .wcu-intro-stat-stack {
        flex-direction: column;
    }

    .stat-pill {
        min-width: unset;
    }

    .guarantee-inner {
        padding: 2rem 1.5rem;
    }

    .cta-banner-btns {
        flex-direction: column;
        align-items: stretch;
    }
}