/* Isparta Merkez Taksi - Özel CSS Stilleri */

/* Temel Resetler ve Genel Stiller */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Özel Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Navbar Özel Stiller */
.navbar-brand:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Mobil Hızlı Arama Butonu */
#mobile-call-button {
    animation: bounceIn 1s ease-out;
}

#mobile-call-button a {
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

#mobile-call-button a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

/* Mobil buton tooltip hover efekti */
#mobile-call-button:hover .absolute {
    opacity: 1;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobil cihazlar için ek stiller */
@media (max-width: 480px) {
    #mobile-call-button {
        top: 16px;
        right: 12px;
    }
    
    #mobile-call-button a {
        width: 52px;
        height: 52px;
    }
    
    #mobile-call-button .absolute {
        left: -28px;
        font-size: 12px;
        padding: 6px 8px;
    }
}

/* Hero bölümündeki mobil telefon butonu */
.hero-mobile-phone-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    animation: heroButtonPulse 2s infinite;
}

.hero-mobile-phone-btn:hover {
    background: #ffffff;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes heroButtonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
    }
}

/* Hero Section Özel Efektler */
#hero {
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(251, 191, 36, 0.1) 0%, 
        rgba(249, 115, 22, 0.1) 100%);
    animation: pulse 6s ease-in-out infinite;
}
.bottom-50 {
    bottom: 50px !important;
}
/* Rezervasyon Formu Özel Stiller */
.rezervasyon-form {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rezervasyon-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    border-color: white;
}

/* Hizmet Kartları Hover Efektleri */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #fbbf24;
}

.service-card .icon {
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    transform: scale(1.1);
    animation: bounce 0.6s ease;
}

/* Hakkımızda Bölümü Özel Stiller */
.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item:hover .feature-icon {
    background-color: #fbbf24;
    color: white;
    transform: rotate(5deg);
}

/* İletişim Formu Stiller */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3);
}

/* İstatistik Sayaçları */
.stat-counter {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Sabit Telefon Butonu Animasyonları */
.fixed-call-btn {
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.fixed-call-btn:hover {
    animation: none;
    transform: scale(1.1);
}

/* Gradient Text Efektleri */
.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b  100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading Animasyonları */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff30;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobil Responsive Ayarları */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.25rem !important;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        margin-bottom: 1rem;
    }
    
    .fixed-call-btn {
        bottom: 20px !important;
        right: 20px !important;
        padding: 12px !important;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .rezervasyon-form {
        padding: 1.5rem !important;
    }
    
    .stat-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Özel Hover Efektleri */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Buton Özel Stiller */
.btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

/* Kart Gölge Efektleri */
.card-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease;
}

.card-shadow:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* İkon Animasyonları */
.icon-bounce:hover {
    animation: bounce 0.6s ease;
}

.icon-rotate:hover {
    transform: rotate(360deg);
    transition: transform 0.6s ease;
}

/* Scroll Indicators */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 9999;
}

/* Text Selection Özelleştirmesi */
::selection {
    background-color: #fbbf24;
    color: white;
}

::-moz-selection {
    background-color: #fbbf24;
    color: white;
}

/* Focus States Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}

/* Scrollbar Özelleştirmesi */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Print Styles */
@media print {
    .fixed-call-btn,
    #mobile-menu-btn,
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Hazırlığı */
@media (prefers-color-scheme: dark) {
    /* Gelecekte dark mode desteği için hazırlık */
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .service-card,
    .contact-form input,
    .contact-form textarea {
        border: 2px solid #000;
    }
}