/* Services Page Styles */

.page-hero {
    background: linear-gradient(rgba(19, 70, 134, 0.9), rgba(19, 70, 134, 0.9)),
                url('../images/services/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.page-hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* Detailed Services Section */
.detailed-services {
    padding: 60px 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
}

.service-content h2 {
    color: #134686;
    font-size: 2em;
    margin-bottom: 20px;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.feature-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    color: #134686;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #333;
    margin-bottom: 15px;
}

.feature-item ul {
    list-style: none;
    padding: 0;
}

.feature-item ul li {
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.feature-item ul li:last-child {
    border-bottom: none;
}

.service-cta {
    display: flex;
    gap: 20px;
}

.cta-button {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:not(.outline) {
    background: #134686;
    color: white;
}

.cta-button.outline {
    border: 2px solid #134686;
    color: #134686;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Service Features Section */
.service-features {
    background: #f9f9f9;
    padding: 60px 0;
}

.service-features h2 {
    text-align: center;
    color: #134686;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    color: #134686;
    font-size: 2em;
    margin-bottom: 20px;
}

.feature h3 {
    color: #333;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail:nth-child(even) .service-image {
        order: -1;
    }

    .service-features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2em;
    }

    .service-content h2 {
        font-size: 1.8em;
    }

    .service-cta {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 60px 0;
    }

    .service-content {
        padding: 10px;
    }

    .feature-item {
        padding: 15px;
    }
}
