/* --- 1. GLOBAL AYARLAR VE TAŞMA ENGELLEYİCİ --- */
:root {
    --primary-gradient: linear-gradient(135deg, #4F46E5 0%, #3B82F6 100%);
    --navbar-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --transition-base: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    background-color: #f0f2f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}

.fw-black {
    font-weight: 900;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.uppercase-xs {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- 2. NAVBAR VE MOBİL MENÜ --- */
.navbar-custom {
    background: var(--navbar-gradient);
}

@media (max-width: 991.98px) {
    #navbarNav {
        background: rgba(30, 41, 59, 0.98) !important;
        backdrop-filter: blur(10px);
        border-radius: 0 0 25px 25px;
        padding: 20px;
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .navbar-collapse {
        position: relative;
        z-index: 9999;
    }

    .nav-item {
        position: relative;
        z-index: 10000;
    }
}

/* --- 3. KARTLAR VE EFEKTLER --- */
.hover-lift {
    transition: var(--transition-base);
}

    .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    }

.pricing-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.03) !important;
    transition: var(--transition-base);
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.1) !important;
    }

/* --- 4. İKON VE RENK PALETLERİ --- */
.icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.bg-soft-moto {
    background: #fff4e6;
    color: #fd7e14;
    border: 1px solid #ffe8cc;
}

.bg-soft-car {
    background: #e7f5ff;
    color: #228be6;
    border: 1px solid #d0ebff;
}

.bg-soft-truck {
    background: #f3f0ff;
    color: #7950f2;
    border: 1px solid #e5dbff;
}

.icon-circle-lg {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-top: -45px;
    border: 4px solid #fff;
    margin-left: auto;
    margin-right: auto;
}

/* --- 5. ÖZEL BUTON DÜZENLEMESİ (ARADIĞIN MAVİ KUTU) --- */
/* Giriş yap sayfasındaki butonları bozmamak için spesifik sınıflarla hedefliyoruz */
.btn-outline-primary.rounded-pill.border-2 {
    border: 2px solid #0d6efd !important;
    color: #0d6efd !important;
    background-color: transparent !important;
    font-weight: 700 !important;
    transition: all 0.3s ease-in-out !important;
}

    .btn-outline-primary.rounded-pill.border-2:hover {
        background-color: #0d6efd !important;
        color: #ffffff !important;
        box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4) !important;
        transform: translateY(-2px) !important;
    }

/* --- 6. MODAL VE BACKDROP AYARLARI --- */
.modal {
    z-index: 1080 !important;
}

.modal-backdrop {
    z-index: 1075 !important;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* --- 7. YARDIMCI SINIFLAR --- */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shadow-soft {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
}

/* --- 8. SOSYAL MEDYA --- */
.social-icon-box {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #9ca3af;
    transition: all 0.3s ease;
}

    .social-icon-box:hover {
        background: #ffc107;
        color: #111827 !important;
        transform: translateY(-3px);
    }
