/* Page Specific Styles for B2B */

/* --- Layout Utilities --- */
.section-header {
    margin-bottom: 4rem;
}

.section-header .subtitle {
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-header .title {
    font-size: 3rem;
    color: var(--text-dark);
    line-height: 1.1;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* --- Hero Section --- */
#b2b-hero {
    min-height: 80vh;
    background-color: var(--bg-light);
    /* Uses Global Variable for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

#b2b-hero .hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

#b2b-hero .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--text-dark);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

#b2b-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-dark);
}

#b2b-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    padding: 0 2rem;
}

#b2b-hero .btn-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* --- About Section --- */
#about-us {
    background-color: var(--white);
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.text-side {
    flex: 1.5;
}

.text-side h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.text-side p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.stat-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* --- Services Grid --- */
#services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Contact Area --- */
#contact-area {
    background-color: var(--white);
}

.contact-box {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
}

.contact-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-box p {
    color: #aaa;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.detail span {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail h3 {
    font-size: 1.3rem;
}

/* --- Mobile --- */
@media (max-width: 900px) {
    #b2b-hero h1 {
        font-size: 2.8rem;
    }

    #b2b-hero .btn-row {
        flex-direction: column;
    }

    .split-layout {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        flex-direction: column;
        gap: 2.5rem;
    }

    .contact-box {
        padding: 3rem 1.5rem;
    }
}