/* Service Areas Section */
.service-areas {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0.1;
    animation: pulse 15s ease-in-out infinite;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.area-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: var(--white);
}

.area-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    background-size: 400% 400%;
    animation: gradientRotate 15s linear infinite;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.area-card:hover::before {
    opacity: 1;
}

.area-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(142, 78, 198, 0.2);
}

.area-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.area-card:hover .area-image img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.area-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(142, 78, 198, 0.9), 
        rgba(169, 104, 212, 0.8),
        rgba(193, 154, 224, 0.7));
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.area-card:hover .area-overlay {
    opacity: 1;
}

.area-info {
    text-align: center;
    color: var(--white);
    transform: translateY(30px);
    transition: all 0.6s ease 0.1s;
}

.area-card:hover .area-info {
    transform: translateY(0);
}

.area-info h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.area-info p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.95;
}

.area-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.area-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.area-features i {
    margin-right: 5px;
}

.area-cta {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.area-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
    transform: scale(1.05);
}

.area-cta i {
    margin-right: 8px;
}

/* Areas Summary */
.areas-summary {
    margin-top: 80px;
    background: var(--white);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(142, 78, 198, 0.1);
    position: relative;
    overflow: hidden;
}

.areas-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    opacity: 0.05;
    z-index: 0;
}

.summary-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.summary-content h3 {
    color: var(--dark-purple);
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 6s ease infinite;
}

.summary-content > p {
    color: var(--dark-gray);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(142, 78, 198, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(142, 78, 198, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradientPulse 4s ease infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(142, 78, 198, 0.3);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-content .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-purple);
    line-height: 1;
}

.stat-content .stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Service Areas Responsive */
@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .areas-summary {
        padding: 40px 30px;
        margin-top: 60px;
    }
    
    .summary-content h3 {
        font-size: 1.8rem;
    }
    
    .summary-content > p {
        font-size: 1.1rem;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .area-info h3 {
        font-size: 1.5rem;
    }
    
    .area-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
        margin: 40px 0;
    }
    
    .area-image {
        height: 150px;
    }
    
    .areas-summary {
        padding: 30px 20px;
    }
    
    .summary-content h3 {
        font-size: 1.5rem;
    }
}
