/* Değişim27 Evden Eve Nakliyat - Hizmetler Sayfası CSS */

@import url('./index.css');

/* Service Cards Enhanced */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(19, 127, 236, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(19, 127, 236, 0.3);
}

/* Service Icons Animation */
.service-card .material-symbols-outlined {
    transition: all 0.3s ease;
}

.service-card:hover .material-symbols-outlined {
    transform: scale(1.1) rotate(5deg);
}

/* Price Animation */
.service-card .text-primary {
    position: relative;
}

.service-card .text-primary::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.service-card:hover .text-primary::after {
    width: 100%;
}

/* CTA Section Enhancements */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0f6bc7 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }

    .service-card:hover {
        transform: translateY(-6px) scale(1.01);
    }
}