/* Services Styles */

/* ── Page Container ──────────────────────────────── */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.content-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    background: var(--bg-body);

}

/* ── Services Section ────────────────────────────────── */

.section-padding {
    padding: 60px 0 80px;
}

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

/* ── Core Services (Home Page) ───────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-top: 4px solid var(--accent-color);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* ── Icon Box ────────────────────────────────── */
.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #ff8c1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
    color: white;
}

.icon-box svg {
    width: 32px;
    height: 32px;
    stroke: white;
    color: white;
}

.icon-box i {
    font-size: 2rem;
    color: white;
}

/* ── Services Section (Page) ─────────────────────────────── */
.services-section {
    background: var(--bg-body);
    padding: 60px 0 80px;
    margin-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-heading {
    text-align: center;
    margin-bottom: 60px;
}

.services-heading h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.services-heading p {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #ff8c1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-content p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
}

/* ── Empty State ─────────────────────────────── */
.services-empty {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1/-1;
    color: var(--text-dark);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .services-heading h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 60px 20px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-heading h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .content-section {
        padding: 40px 15px;
    }
}
