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

@import 'style.css';

/* Services Hero */
.services-hero-enhanced {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.services-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    color: white;
}

.services-hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.services-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Services Section */
.services-section {
    padding: var(--space-3xl) 0;
    background: var(--gradient-light);
}

/* Categories Filter */
.services-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--neutral-600);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-btn i {
    font-size: 1rem;
}

.category-btn:hover {
    border-color: var(--primary-400);
    color: var(--primary-600);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* Services Grid */
.services-grid-container {
    margin-top: var(--space-xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
}

/* Service Card */
.service-card {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.service-card-inner {
    padding: var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-600);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(360deg) scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--neutral-800);
    text-align: center;
}

.service-description {
    color: var(--neutral-600);
    margin-bottom: var(--space-lg);
    text-align: center;
    line-height: 1.6;
}

.service-features-list {
    list-style: none;
    margin-bottom: var(--space-lg);
    flex: 1;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--neutral-600);
    border-bottom: 1px solid var(--neutral-100);
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list li i {
    color: var(--primary-500);
    font-size: 1rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--neutral-200);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-600);
}

.service-price small {
    font-size: 0.9rem;
    color: var(--neutral-500);
    font-weight: 400;
}

.service-actions {
    display: flex;
    gap: 0.5rem;
}

/* Process Section */
.process-section {
    padding: var(--space-3xl) 0;
    background: white;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.process-step-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid var(--neutral-200);
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    background: var(--primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-600);
    transition: all var(--transition-base);
}

.process-step-card:hover .process-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.process-step-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--neutral-800);
}

.process-step-card p {
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary-900), var(--secondary-900));
    color: white;
}

.benefits-section .section-header h2,
.benefits-section .section-header p {
    color: white;
}

.benefits-section .section-header h2::after {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.benefit-card h3 {
    color: white;
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-hero-buttons {
        flex-direction: column;
    }
    
    .category-btn {
        width: 100%;
    }
}