/* Services Page Specific Styles */
.services-hero {
    height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-top: 0;
    position: relative;
    overflow: hidden;
    border-bottom: none;
    padding-top: 80px;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 30%),
        linear-gradient(135deg, transparent 70%, rgba(14, 165, 233, 0.1) 100%);
    z-index: 1;
}

.services-hero .hero-overlay {
    display: none;
}

.services-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    height: calc(100vh - 80px);
    margin: 0 auto;
}

.hero-text-content {
    text-align: left;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-hero .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--white);
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services-hero .hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.services-hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 95%;
}

.hero-cta-container {
    display: flex;
    gap: 20px;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}

.hero-statistics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.2rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-item:hover {
    background: rgba(37, 99, 235, 0.15);
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.visual-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    width: 100%;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.card-features {
    list-style: none;
}

.card-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.card-features li:hover {
    color: var(--white);
    transform: translateX(3px);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li i {
    color: var(--accent-color);
    font-size: 0.8rem;
    min-width: 15px;
}

.card-features li span {
    font-size: 0.95rem;
    font-weight: 400;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .services-hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }
    
    .services-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        height: auto;
        padding: 0 3%;
    }
    
    .services-hero .hero-title {
        font-size: 2.4rem;
    }
    
    .services-hero .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-statistics {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .visual-container {
        max-width: 100%;
    }
    
    .visual-card {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .services-hero {
        padding: 90px 0 40px;
    }
    
    .services-hero .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-text-content {
        text-align: center;
        padding: 0;
    }
    
    .services-hero .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .services-hero .hero-subtitle {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-cta-container {
        justify-content: center;
    }
    
    .hero-statistics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 576px) {
    .services-hero {
        padding: 80px 0 30px;
    }
    
    .services-hero .hero-title {
        font-size: 1.9rem;
    }
    
    .services-hero .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-cta-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-statistics {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 0.8rem 0.4rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .visual-card {
        padding: 1.2rem;
    }
    
    .card-features li {
        padding: 0.6rem 0;
        font-size: 0.85rem;
    }
    
    .card-features li span {
        font-size: 0.85rem;
    }
}