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

/* Hero Section */
.services-hero {
    background: var(--brand-gradient);
    padding: 80px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 194, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 194, 255, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

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

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.services-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #ff0000;
}

.services-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 0;
    color: #d9c9c9;
}

/* Services Grid */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(27, 14, 84, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00C2FF 0%, #1B0E54 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(27, 14, 84, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #00C2FF 0%, #1B0E54 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 194, 255, 0.4);
}

/* Service Content */
.service-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #1B0E54;
}

.service-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 10px 0;
    color: #475569;
    position: relative;
    padding-left: 30px;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Service CTA Button */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--brand);
    color: var(--brand);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--brand);
    color: white;
    transform: translateX(5px);
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(5px);
}

/* Special Service Highlight */
.service-card.featured {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 10px 40px rgba(0, 194, 255, 0.3);
}

.service-card.featured .service-icon {
    background: rgba(0, 194, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 194, 255, 0.4);
}

.service-card.featured .service-content h3 {
    color: white;
}

.service-card.featured .service-content p {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.95);
}

.service-card.featured .service-features li::before {
    color: #00C2FF;
}

.service-card.featured .service-cta {
    background: white;
    color: var(--brand);
    border-color: white;
}

.service-card.featured .service-cta:hover {
    background: white;
    color: #1B0E54;
    border-color: white;
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.why-choose-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.why-choose-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B0E54;
    margin-bottom: 20px;
}

.why-choose-content p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: linear-gradient(135deg, #00C2FF 0%, #1B0E54 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 194, 255, 0.3);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00C2FF 0%, #1B0E54 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: white;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-icon i {
    color: #1B0E54;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a202c;
    transition: color 0.3s ease;
}

.benefit-item:hover h4 {
    color: white;
}

.benefit-item p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    transition: color 0.3s ease;
}

.benefit-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.services-cta-section {
    padding: 80px 0;
    background: var(--brand-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 194, 255, 0.1) 0%, transparent 70%);
}

.services-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.services-cta-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #ff0000;
}

.services-cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 30px;
    color: #d9c9c9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #00C2FF 0%, #1B0E54 100%);
    color: white;
    border: 2px solid transparent;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 194, 255, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #1B0E54;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        padding: 80px 0 60px;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-hero p {
        font-size: 1.125rem;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-content h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta-section {
        padding: 60px 0;
    }
    
    .services-cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
