/* Services Section Styles */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%2340A2D8" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #40A2D8 0%, #F0EDCF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #40A2D8 0%, #F0EDCF 100%);
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(64, 162, 216, 0.1);
    border: 1px solid rgba(64, 162, 216, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #40A2D8 0%, #F0EDCF 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(64, 162, 216, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(64, 162, 216, 0.1) 0%, rgba(240, 237, 207, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #40A2D8 0%, #F0EDCF 100%);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(64, 162, 216, 0.3);
}

.service-card:hover .service-icon svg {
    filter: brightness(0) invert(1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #40A2D8;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin: 0 0 25px 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.service-features li {
    padding: 8px 0;
    color: #cccccc;
    font-size: 0.95rem;
    position: relative;
    padding-right: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 8px;
    color: #40A2D8;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .service-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
} 