/* ========== GENERAL LAYOUT ========== */
.ef-section {
    padding: 50px 0;
}

.ef-section-grey {
    background: #f7f7f9;
}

.ef-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.ef-section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ef-section-header p {
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/* Reusable buttons */
.ef-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.ef-btn-light {
    background: #ffffff;
    color: #c8102e;
}

.ef-btn-light:hover {
    background: #f2f2f2;
}

.ef-btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.ef-btn-outline:hover {
    background: #ffffff;
    color: #c8102e;
}

.ef-btn-gold {
    background: #ffc857;
    border-color: #ffc857;
    color: #222;
}

.ef-btn-gold:hover {
    background: #ffb52b;
    border-color: #ffb52b;
}

.ef-btn-outline-light {
    background: transparent;
    color: #ffc857;
    border-color: #ffc857;
}

.ef-btn-outline-light:hover {
    background: #ffc857;
    color: #222;
}

/* ========== SALE STRIP ========== */
.ef-sale-strip {
    background: #c8102e;
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
}

.ef-sale-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ef-sale-strip-buttons .ef-btn {
    margin-left: 8px;
}

/* ========== MAIN CTA PANEL ========== */
.ef-cta-panel {
    padding: 40px 0;
    background: #f0f2f8;
}

.ef-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.ef-cta-text {
    background: #14213d;
    color: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.ef-cta-text h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.ef-cta-text p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.ef-cta-buttons {
    margin-top: 10px;
    margin-bottom: 10px;
}

.ef-cta-buttons .ef-btn {
    margin-right: 10px;
}

.ef-cta-phone {
    font-size: 14px;
    opacity: 0.9;
}

.ef-cta-phone a {
    color: #ffc857;
    text-decoration: none;
    font-weight: 600;
}

/* ========== WHY CHOOSE CARDS ========== */
.ef-why-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ef-why-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.ef-why-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.ef-why-card p {
    font-size: 14px;
    color: #555;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .ef-sale-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ef-cta-text {
        padding: 22px 18px;
    }

    .ef-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .ef-why-grid {
        grid-template-columns: 1fr;
    }

    .ef-section {
        padding: 35px 0;
    }

    .ef-section-header h2 {
        font-size: 22px;
    }

    .ef-cta-text h2 {
        font-size: 22px;
    }

    .ef-sale-strip-inner {
        padding: 0 10px;
    }
}