/* =========================================================================
   HOMEPAGE SPECIFIC STYLES (front-page.php)
   Architecture: High-Performance Isolated Layout & Teaser Component Styles
   ========================================================================= */

/* =========================================================================
   1. POPULAR TRANSFERS SECTION WRAPPER
   ========================================================================= */
.home-popular-transfers-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.home-popular-transfers-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* =========================================================================
   2. HOMEPAGE ABOUT TEASER SECTION
   ========================================================================= */
.home-about-section {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid var(--border-color, #f1f5f9);
    border-bottom: 1px solid var(--border-color, #f1f5f9);
}

.home-about-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.home-about-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark, #0f172a);
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.home-title-divider {
    width: 50px;
    height: 3px;
    background-color: var(--fogya-red, #dc2626);
    margin-bottom: 25px;
    border-radius: 2px;
}

.home-about-content p {
    font-size: 15px;
    color: var(--text-muted, #475569);
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.home-about-content p:last-child {
    margin-bottom: 30px;
}

/* CTA & CONTACT BOX LAYOUT */
.home-about-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.btn-about-more {
    background-color: var(--fogya-red, #dc2626);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    will-change: transform;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.btn-about-more:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

.about-phone-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 20px;
    border-left: 1px solid var(--border-color, #e2e8f0);
}

.phone-icon-wrapper {
    color: var(--text-dark, #0f172a);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 🎯 DASHICON ALIGNMENT FIX: Vertical offset & line-height normalization */
.phone-icon-wrapper .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-details {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark, #0f172a);
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.phone-number:hover {
    color: var(--fogya-red, #dc2626);
}

/* =========================================================================
   3. RESPONSIVE BREAKPOINTS
   ========================================================================= */
@media (max-width: 640px) {
    .home-about-section {
        padding: 40px 0;
    }

    .home-about-title {
        font-size: 22px;
    }

    .home-about-cta-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .btn-about-more {
        width: 100%;
        box-sizing: border-box;
    }

    .about-phone-box {
        padding-left: 0;
        border-left: none;
        width: 100%;
        justify-content: flex-start;
    }
}