/* Service Page Specific Styles */

.service-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem 2rem;
    background-image: linear-gradient(rgba(10, 25, 47, 0.8), var(--primary-color)), url('hero-background.png');
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--secondary-color);
}

.service-hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-in-out forwards;
}

.service-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    animation: fadeInAndFloat 4s ease-in-out infinite;
}

.service-hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1rem;
}

.service-hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-color);
}

.service-details {
    padding: 5rem 2rem;
}

.service-details-content {
    text-align: right;
}

.service-details-content h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.service-details-content p {
    color: var(--light-text-color);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 650px;
}

.service-details-content h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

.service-details-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.service-details-content ul li {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.service-details-content ul li .fa-check-circle {
    color: var(--accent-color);
    margin-left: 0.75rem; 
    font-size: 1.2rem;
}

.service-details-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-details-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px -15px rgba(2,12,27,0.7);
    max-width: 450px;
    width: 100%;
}

@media (min-width: 992px) {
    .service-details.content-section {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .service-details-image {
        margin-top: 3rem;
    }
}