/* ========================================
   Services Section
   ======================================== */

.services-section {
    padding: 60px 0;
    background-color: var(--white);
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-medium);
    max-width: 800px;
    margin: 0 auto 40px;
}

.service-card {
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-image {
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-family: 'Russo One', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
    flex: 1;
}

/* Color variations */
.service-card-blue {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
}

.service-card-orange {
    background: linear-gradient(135deg, #ff8800 0%, #cc6600 100%);
}

.service-card-red {
    background: linear-gradient(135deg, #c20000 0%, #990000 100%);
}

.service-card-green {
    background: linear-gradient(135deg, #00aa44 0%, #008833 100%);
}

/* Responsive */
@media (max-width: 991px) {
    .service-image {
        height: 220px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .service-text {
        font-size: 14px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .service-image {
        height: 180px;
    }
}

/* Pulsing button animation */
@keyframes buttonPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.btn-pulse {
    animation: buttonPulse 2s ease-in-out infinite;
}

.btn-pulse:hover {
    animation: none;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(106, 184, 238, 0.4);
}


