/* ========================================
   EXLWEB SERVICES PAGE STYLES
   ======================================== */

/* HERO SECTION */
.services-hero {
    background: #0c0f1c;
    padding: 120px 6% 80px;
    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 50% 50%, rgba(0, 194, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.services-hero .description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* SERVICES GRID SECTION */
.services-grid-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 80px 6% 60px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* SERVICE CATEGORIES */
.service-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 25px;
    padding-left: 20px;
    position: relative;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #00C2FF, #0099CC);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.service-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00C2FF, #0099CC);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 194, 255, 0.15);
    border-color: rgba(0, 194, 255, 0.2);
}

.service-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* BASE PRICING SECTION */
.base-pricing-section {
    background: #0c0f1c;
    padding: 80px 6% 60px;
}

.base-pricing-section .section-header h2 {
    color: white;
}

.base-pricing-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(22, 27, 34, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00C2FF, #0099CC);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 194, 255, 0.15);
    border-color: rgba(0, 194, 255, 0.3);
}

.pricing-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #00C2FF;
    margin-bottom: 20px;
}

.pricing-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.pricing-note {
    text-align: center;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CARE PLANS SECTION */
.care-plans-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 80px 6% 60px;
}

.care-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.care-plan-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.care-plan-card.featured {
    border-color: #00C2FF;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 194, 255, 0.15);
}

.care-plan-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00C2FF, #0099CC);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.care-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 194, 255, 0.2);
    border-color: #00C2FF;
}

.care-plan-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.care-plan-card .plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00C2FF;
    margin-bottom: 25px;
}

.care-plan-card .plan-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-features li {
    color: #64748b;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00C2FF;
    font-weight: bold;
    font-size: 1.1rem;
}

.care-plans-note {
    text-align: center;
    font-style: italic;
    color: #64748b;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* DISCLAIMER SECTION */
.disclaimer-section {
    background: rgba(22, 27, 34, 0.3);
    padding: 40px 6%;
    text-align: center;
}

.disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.disclaimer strong {
    color: rgba(255, 255, 255, 0.8);
}

/* CTA SECTION */
.cta-section {
    background: #0c0f1c;
    padding: 80px 6%;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00C2FF, #0099CC);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 194, 255, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* SECTION DIVIDERS */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.3), transparent);
    margin: 0;
    border: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .services-hero {
        padding: 100px 4% 60px;
    }
    
    .services-grid-section,
    .base-pricing-section,
    .care-plans-section {
        padding: 60px 4% 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .care-plans-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .care-plan-card.featured {
        transform: none;
    }
    
    .service-item {
        padding: 20px;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .care-plan-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .category-title {
        font-size: 1.3rem;
    }
    
    .service-item h3 {
        font-size: 1.1rem;
    }
    
    .pricing-card .price {
        font-size: 1.8rem;
    }
    
    .care-plan-card .plan-price {
        font-size: 2.2rem;
    }
}

/* SCROLL ANIMATIONS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }