:root {
    --bs-primary: #2563eb;
    --bs-primary-rgb: 37, 99, 235;
}

body {
    font-family: 'Inter', sans-serif;
    color: #334155;
    background-color: #f8fafc;
    overflow-x: hidden;
}

.outfit-font {
    font-family: 'Outfit', sans-serif;
}

.inter-font {
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-outline-primary {
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outline-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1.2rem 0;
}

.navbar.scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.nav-link {
    font-weight: 500;
    color: #475569;
    position: relative;
    padding: 0.5rem 1.2rem !important;
}

.nav-link:hover, .nav-link.active {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 2px;
    background-color: #2563eb;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 750px;
    background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 100%);
}

.letter-spacing-1 {
    letter-spacing: 2px;
}

/* Stats Widget (Replaces Booking Widget) */
.stats-widget-wrapper {
    margin-top: -100px;
}

.stats-card {
    background: white;
    border-radius: 2rem !important;
}

.divide-lg > [class*="col-"]:not(:last-child) {
    border-right: 1px solid #e2e8f0;
}

@media (max-width: 991.98px) {
    .divide-lg > [class*="col-"]:not(:last-child) {
        border-right: none;
    }
    .divide-lg > [class*="col-"]:nth-child(odd) {
        border-right: 1px solid #e2e8f0;
    }
}

/* Utilities */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
}

/* Feature Boxes */
.feature-box {
    border: 1px solid #f1f5f9;
}

.feature-box:hover {
    background-color: white;
    border-color: #2563eb;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-8px);
}

.transition-all {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Car Cards */
.car-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.car-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3) !important;
}

.car-card img {
    transition: transform 0.8s ease;
}

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

/* CTA Section */
.cta-section {
    background-image: url('https://images.unsplash.com/photo-1563720223185-11003d516935?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%);
}

.hover-white:hover {
    color: white !important;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 80px; /* Biraz daha yukarı çekildi */
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 35px;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite; /* Hareket efekti eklendi */
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-whatsapp:hover {
    transform: scale(1.15) rotate(10deg);
    color: white;
    animation: none; /* Hover'da animasyonu durdur */
}

@media (max-width: 991.98px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 650px;
        height: auto;
        padding-bottom: 120px;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.98) 100%);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .stats-widget-wrapper {
        margin-top: -60px;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1.5rem;
        border-radius: 1.5rem;
        margin-top: 1rem;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

    .floating-whatsapp {
        bottom: 40px; /* Mobilde de biraz yukarıda */
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
}

/* Scroll Reveal States */
.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
