/*
 * Service Center CSS File for Bulma jQuery Website
 * Version: 1.0
 */

/* ===== Service Hero ===== */
.service-hero {
    background-image: url('../images/service-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 300px;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.service-hero-content .title {
    margin-bottom: 1rem;
}

.breadcrumb-container {
    color: #fff;
    font-size: 0.9rem;
}

.breadcrumb-container a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-container a:hover {
    text-decoration: underline;
}

/* ===== Service Cards ===== */
.service-cards {
    padding: 4rem 0;
}

.service-card {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    border-bottom: 3px solid #0099ff;
}

.service-icon {
    font-size: 2.5rem;
    color: #0099ff;
    margin-bottom: 1.5rem;
}

.service-title {
    color: #0099ff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.service-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact Form Section styles moved to components.css */

/* ===== Responsive Styles ===== */
@media screen and (max-width: 768px) {
    .service-hero {
        height: 200px;
    }

    .service-hero-content {
        padding: 2rem 0;
    }

    .service-hero-content .title {
        font-size: 2rem;
    }

    .service-cards {
        padding: 2rem 0;
    }

    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .service-hero {
        height: 150px;
    }

    .service-hero-content {
        padding: 1.5rem 0;
    }

    .service-hero-content .title {
        font-size: 1.5rem;
    }

    .service-icon {
        font-size: 1.75rem;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-desc {
        font-size: 0.85rem;
    }
}
