/* Services Page Specific Styles */

.services-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/services-back.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(10, 38, 71, 0.564) 0%,
        rgba(30, 76, 150, 0.463) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 4rem 0;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.services-hero p {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.service-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.service-highlights span {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .services-hero {
        min-height: 50vh;
    }

    .hero-background {
        background-attachment: scroll;
    }

    .services-hero h1 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .services-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .service-highlights {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
        padding: 0 1rem;
    }

    .service-highlights span:nth-child(even) {
        display: none;
    }
}

.services-main {
    background-color: var(--white);
}

.service-item {
    margin-bottom: 4rem;
    padding: 2rem;
    border-radius: 8px;
    background: linear-gradient(to right, rgba(30, 76, 150, 0.05), rgba(212, 175, 55, 0.05));
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-description h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-description ul {
    list-style: none;
    padding-left: 1.5rem;
}

.service-description ul li {
    margin-bottom: 0.8rem;
    position: relative;
}

.service-description ul li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

/* Clients Section */
.clients {
    background-color: var(--light-gold);
    padding: 4rem 0;
}

.client-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.client h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Call to Action Section */
.cta {
    background: linear-gradient(to right, var(--secondary-color), var(--dark-blue));
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
}

.cta .btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta .btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .service-item {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-item h2 {
        font-size: 1.5rem;
    }

    .service-content {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 3rem 1rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }
}