/* ===================================
   Services Page Specific Styles
   =================================== */

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

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.85), rgba(227, 30, 36, 0.75));
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
    padding: 80px 20px;
}

.hero-title-xl {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title-xl.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFE0E0 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-features-quick {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.quick-feature i {
    color: var(--white);
    font-size: 20px;
}

/* Services Detailed Grid */
.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-detail-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15);
}

.service-detail-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.7), rgba(107, 70, 193, 0.7));
}

.service-icon-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.service-detail-content {
    padding: 35px 30px;
}

.service-detail-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--charcoal);
    border-bottom: 1px solid var(--light-gray);
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list i {
    color: var(--primary-red);
    font-size: 16px;
}

/* Our Process Section */
.process-steps {
    max-width: 900px;
    margin: 60px auto 0;
}

.process-step {
    display: flex;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 45px;
    top: 100px;
    width: 2px;
    height: calc(100% + 50px);
    background: linear-gradient(to bottom, var(--primary-blue), var(--accent-purple));
}

.step-number {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 51, 102, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.step-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }

    .hero-title-xl {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .services-hero-content {
        padding: 60px 20px;
    }

    .hero-title-xl {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features-quick {
        flex-direction: column;
        gap: 15px;
    }

    .service-detail-image {
        height: 220px;
    }

    .service-icon-large {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-title-xl {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .service-detail-content {
        padding: 25px 20px;
    }

    .service-detail-title {
        font-size: 22px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }

    .step-content {
        padding: 25px 20px;
    }

    .step-title {
        font-size: 20px;
    }
}