/* Custom styles for Turkcell İletişim Merkezi */

/* Button hover effects */
.btn-hover-effect {
    transition: all 0.3s ease;
}

.btn-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card hover effects */
.card-hover-effect {
    transition: all 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mobile-flex-column {
        flex-direction: column;
    }
    
    .mobile-text-center {
        text-align: center;
    }
    
    .mobile-mb-4 {
        margin-bottom: 1rem;
    }
}

/* Custom gradients */
.gradient-blue {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, #7e22ce 0%, #6b21a8 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

/* Animation delays */
.delay-100ms {
    animation-delay: 100ms;
}

.delay-200ms {
    animation-delay: 200ms;
}

.delay-300ms {
    animation-delay: 300ms;
}

/* Custom shadows */
.shadow-lg-hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-lg-hover:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Technology showcase section */
.tech-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

/* Stats section */
.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .stats-number {
        font-size: 3rem;
    }
}

/* Service cards */
.service-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

/* Fixed contact buttons */
.fixed-contact-button {
    position: fixed;
    right: 1rem;
    z-index: 30;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fixed-contact-button:hover {
    transform: scale(1.1);
}

/* Mobile menu */
.mobile-menu-item {
    transition: all 0.2s ease;
}

.mobile-menu-item:hover {
    transform: translateY(-2px);
}

/* Main content spacing */
.main-content {
    padding-top: 4rem;
}

@media (min-width: 768px) {
    .main-content {
        padding-top: 4rem;
    }
}

/* Logo styling */
.header-logo {
    max-height: 2.5rem;
    width: auto;
}

/* Slider navigation buttons */
.slider-nav-button {
    transition: all 0.3s ease;
}

.slider-nav-button:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

/* Slider indicators */
.slider-indicator {
    transition: all 0.3s ease;
}

.slider-indicator:hover {
    transform: scale(1.2);
}

/* Enhanced slider styles */
#slider {
    height: 500px;
    overflow: visible;
}

@media (min-width: 768px) {
    #slider {
        height: 600px;
    }
}

.hero-slider {
    border-radius: 0 0 2rem 2rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Slide styles */
.slide {
    display: none;
}

.slide:first-child {
    display: block;
}