/* --- Header Image Section --- */
.service-header {
    width: 100%;
    height: 50vh;
    min-height: 350px;
    background-image: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent), var(--color-accent-pink));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    
}

.header-content {
    max-width: 800px;
}

.header-content h1 {
    font-size: clamp(1rem, 6vw, 3rem);
    font-weight: 700;
    line-height: 1.2;

    margin: 0 0 1rem 0;
}

.header-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Main Content Wrapper --- */
.service-main-content {
    padding: 5rem 1.5rem;
}

/* --- Service Section Styling --- */
.service-category-section {
    max-width: 1200px;
    margin: 0 auto 5rem auto;
}

.service-category-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 2rem 0;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card-img {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.service-card-content {
    padding: 1.5rem;
}

.service-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.service-card-content p {
    font-size: 1rem;
    color: var(--muted);
    margin: 0;
}

/* --- Responsive Layout --- */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
    }
}