/* Services Page - Clean List UI */

/* Services Hero */
.services-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #048bba 0%, #0aa5d9 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 6rem;
    text-align: center;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.services-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.services-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
}

/* Services List Section - Numbered Cards (Homepage Style) */
.services-showcase {
    padding: 8rem 2rem;
    background: var(--bg-color);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-modern {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-gradient);
    transition: height 0.4s ease;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card-modern:hover::before {
    height: 100%;
}

.service-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    margin-bottom: 1.5rem;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.service-number-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-number-link:hover {
    transform: scale(1.1);
}

.service-number-link:hover .service-number {
    opacity: 0.5;
}

.service-card-modern:hover .service-number {
    opacity: 0.3;
}

.service-card-modern h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card-modern:hover h3 {
    color: var(--primary-color);
}

.service-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--secondary-text);
}

.service-content p {
    margin: 0 0 1rem 0;
}

.service-content p:last-child {
    margin-bottom: 0;
}

/* Process Section */
.services-process {
    padding: 8rem 2rem;
    background: var(--bg-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 3rem auto 0;
}

.process-step-modern {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-color);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.step-number-modern {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(4, 139, 186, 0.3);
}

.process-step-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.process-step-modern p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-text);
}

/* CTA Section */
.services-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #048bba 0%, #0aa5d9 100%);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(100px);
}

.services-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-cta h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-cta p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.services-cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white-large {
    padding: 1.4rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-hero {
        padding: 6rem 1.5rem 4rem;
        min-height: 50vh;
    }

    .service-card-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }

    .service-icon-modern {
        width: 60px;
        height: 60px;
    }

    .service-card-modern h3 {
        font-size: 1.8rem;
    }

    .services-showcase,
    .services-process,
    .services-cta {
        padding: 5rem 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-cta-buttons {
        flex-direction: column;
    }

    .btn-white-large {
        width: 100%;
    }
}