/* Services Page Styles */
.services-hero {
    height: 60vh;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,166,255,0.1) 0%, rgba(0,0,0,0) 50%);
    animation: rotate 30s linear infinite;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.section-tag {
    color: var(--accent-blue);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.services-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.services-hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.services-container {
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-section {
    padding: 80px;
    margin-bottom: 100px;
    background: rgba(11, 27, 72, 0.3);
    border-radius: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-section:hover {
    transform: translateY(-15px);
    background: rgba(11, 27, 72, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,166,255,0.1) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-section:hover::before {
    opacity: 1;
}

.service-number {
    font-size: 200px;
    font-weight: 700;
    color: rgba(0,166,255,0.1);
    line-height: 1;
    margin-bottom: 40px;
    transition: all 0.4s ease;
}

.service-section:hover .service-number {
    color: rgba(0,166,255,0.2);
    transform: scale(1.1) translateY(-10px);
}

.service-content {
    max-width: 800px;
}

.service-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.service-section:hover .service-content h2 {
    transform: translateY(-5px);
    color: var(--accent-blue);
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 1.2rem;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.service-section:hover .service-content p {
    color: var(--text-white);
}

.service-features {
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
}

.service-features li {
    color: var(--text-gray);
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    opacity: 0.8;
}

.service-section:hover .service-features li {
    color: var(--text-white);
    transform: translateX(10px);
    opacity: 1;
}

.service-features li:nth-child(2) {
    transition-delay: 0.1s;
}

.service-features li:nth-child(3) {
    transition-delay: 0.2s;
}

.service-features li:nth-child(4) {
    transition-delay: 0.3s;
}

.service-features li:nth-child(5) {
    transition-delay: 0.4s;
}

.service-features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    transition: all 0.4s ease;
    opacity: 0.8;
}

.service-section:hover .service-features li:before {
    transform: translateX(5px);
    opacity: 1;
    color: #fff;
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    height: 150px;
    margin-bottom: 40px;
}

.service-icon-bg {
    width: 150px;
    height: 150px;
    background: rgba(0,166,255,0.1);
    border-radius: 50%;
    position: absolute;
    transition: all 0.4s ease;
}

.service-section:hover .service-icon-bg {
    transform: scale(1.2);
    background: rgba(0,166,255,0.2);
}

.service-image i {
    font-size: 4rem;
    color: var(--accent-blue);
    position: relative;
    z-index: 2;
    margin-left: 45px;
    margin-top: 15px;
    transition: all 0.4s ease;
}

.service-section:hover .service-image i {
    transform: scale(1.2) rotate(360deg);
    color: #fff;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(0, 166, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    z-index: 10;
    width: fit-content;
}

.learn-more:hover {
    color: var(--text-white);
    gap: 16px;
    background: rgba(0, 166, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .services-hero {
        height: 50vh;
    }

    .services-hero h1 {
        font-size: 3rem;
    }

    .services-container {
        padding: 50px 20px;
    }

    .service-section {
        padding: 40px 20px;
        margin-bottom: 60px;
    }

    .service-number {
        font-size: 120px;
    }

    .service-content h2 {
        font-size: 2.5rem;
    }

    .service-image {
        height: 120px;
    }

    .service-icon-bg {
        width: 120px;
        height: 120px;
    }

    .service-image i {
        font-size: 3rem;
        margin-left: 35px;
    }

    .service-features li {
        font-size: 1rem;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
