/* ===========================
   SERVICES PAGE SPECIFIC STYLES
   =========================== */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: white;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Main Services Grid */
.main-services {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0 0 0 100px;
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
    color: #667eea;
    background: #f8f9ff;
    padding: 0.5rem;
    border-radius: 10px;
}

.service-title {
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.service-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #666;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.service-pricing {
    background: #f8f9ff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-text {
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
}

.service-cta {
    text-align: center;
}

.service-btn {
    background: #667eea;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

/* Featured Services */
.featured-services {
    padding: 5rem 0;
    background: white;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.featured-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.featured-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 50%;
    display: inline-block;
}

.featured-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.featured-description {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-btn {
    background: white;
    color: #667eea;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.featured-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.process-steps,
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin: 1rem 0;
}

.step-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

.step-content {
    text-align: center;
}

/* Benefits Grid Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.benefit-icon {
    font-size: 24px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.benefit-description {
    font-size: 14px;
    opacity: 0.9;
    color: white;
    line-height: 1.4;
}

/* Platform Section */
.platform-section {
    background: white;
    padding: 4rem 0;
}

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

.platform-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.platform-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.platform-tagline {
    font-size: 1.3rem;
    color: #667eea;
    margin-bottom: 2rem;
}

.platform-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* WhatsApp Section */
.whatsapp-section {
    background: #25D366;
    color: white;
    padding: 3rem 0;
}

.whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.whatsapp-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.whatsapp-description {
    opacity: 0.9;
}

.whatsapp-button {
    background: white;
    color: #25D366;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #25D366;
}

.button-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.main-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.sub-text {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question.active {
    background: #667eea;
    color: white;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Support Section */
.support-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.support-content {
    max-width: 600px;
    margin: 0 auto;
}

.support-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.support-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.support-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .featured-grid,
    .process-steps,
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .platform-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .support-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .featured-icon {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .benefit-title {
        font-size: 16px;
    }
    
    .benefit-description {
        font-size: 13px;
    }
    
    .support-title {
        font-size: 1.8rem;
    }
}