/* 
 * Services Page Styles - Design cu carduri mari portocalii
 * Template: services-page.php
 */

/* ============================================
   1. HERO SECTION
   ============================================ */
.services-hero-section {
    padding: 120px 0 60px;
    background: #ffffff;
    text-align: center;
}

.services-hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(142, 42, 254, 0.1);
    border: 1px solid rgba(142, 42, 254, 0.2);
    border-radius: 50px;
    color: #8E2AFE;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.services-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 60px;
    line-height: 1.2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   2. SERVICES CARDS SECTION
   ============================================ */
.services-cards-section {
    padding: 60px 0 100px;
    background: #f8fafc;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-large {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-icon {
    width: 120px;
    height: 120px;
    background: rgba(237, 233, 254, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    padding: 25px;
}

.service-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card-large:hover .service-card-icon {
    transform: scale(1.1);
    background: rgba(221, 214, 254, 1);
}

.service-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px;
    line-height: 1.3;
}

.service-card-description {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 35px;
    min-height: 100px;
}

.service-card-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #481581 0%, #8E2AFE 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(142, 42, 254, 0.3);
}

.service-card-button:hover {
    background: linear-gradient(135deg, #3a1266 0%, #7624d6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 42, 254, 0.4);
    color: #ffffff;
}

.service-card-button svg {
    transition: transform 0.3s ease;
}

.service-card-button:hover svg {
    transform: translateX(4px);
}

/* ============================================
   3. CONTENT SECTION
   ============================================ */
.services-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.services-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
}

.services-content-wrapper h2,
.services-content-wrapper h3,
.services-content-wrapper h4 {
    color: #1e293b;
    margin: 40px 0 20px;
    font-weight: 700;
}

.services-content-wrapper p {
    margin-bottom: 20px;
}

/* ============================================
   4. CTA SECTION
   ============================================ */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #481581 0%, #8E2AFE 100%);
}

.services-cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta-section .cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
}

.services-cta-section .cta-text {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
}

.services-cta-section .btn-cta-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #ffffff;
    color: #8E2AFE;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.services-cta-section .btn-cta-contact:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    color: #8E2AFE;
}

.services-cta-section .btn-cta-contact svg {
    transition: transform 0.3s ease;
}

.services-cta-section .btn-cta-contact:hover svg {
    transform: translateX(5px);
}

/* ============================================
   5. RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .services-cards-grid {
        gap: 30px;
        padding: 0 20px;
    }
    
    .service-card-large {
        padding: 50px 30px;
    }
}

@media (max-width: 991px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-hero-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 80px 0 40px;
    }
    
    .services-hero-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card-large {
        padding: 40px 30px;
    }
    
    .service-card-icon {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
    
    .service-card-title {
        font-size: 24px;
    }
    
    .service-card-description {
        min-height: auto;
    }
    
    .service-card-button {
        width: 100%;
        justify-content: center;
    }
    
    .services-cta-section .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 28px;
    }
    
    .services-hero-badge {
        font-size: 12px;
        padding: 8px 18px;
    }
    
    .service-card-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .service-card-title {
        font-size: 22px;
    }
    
    .services-cta-section .cta-title {
        font-size: 28px;
    }
}
