/**
 * ============================================
 * YUKLENIYOO WEB - ANA STİL DOSYASI
 * ============================================
 * Modern, şık, yuvarlatılmış köşeler
 * Tema renkleri: #FF6B00 (Primary Orange)
 * ============================================
 */

/* ============================================
   CSS DEĞİŞKENLERİ
   ============================================ */
:root {
    /* Ana Renkler */
    --primary: #FFD900;
    --primary-dark: #FFD900;
    --primary-light: #FFD900;
    --primary-rgb: 255, 107, 0;
    
    /* İkincil Renkler */
    --secondary: #1a1a2e;
    --secondary-light: #2d2d44;
    
    /* Durum Renkleri */
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    
    /* Nötr Renkler */
    --white: #ffffff;
    --light: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --dark: #1a1a2e;
    
    /* Tipografi */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 24px rgba(255, 107, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Navbar */
    --navbar-height: 70px;
}

/* ============================================
   GENEL STILLER
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   NAVBAR - UÇAN HEADER
   ============================================ */
#mainNavbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    transition: var(--transition-base);
    z-index: 1000;
}

#mainNavbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand img {
    transition: var(--transition-base);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar .nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.navbar .nav-link:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
}

.navbar .nav-link.active {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
}

.navbar .nav-link i {
    font-size: 14px;
}

/* User Avatar */
.user-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 200px;
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
}

.dropdown-item.text-danger:hover {
    background: rgba(220, 53, 69, 0.08);
    color: var(--danger);
}

/* ============================================
   BUTONLAR
   ============================================ */
.btn {
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 12px 32px rgba(255, 107, 0, 0.4);
}

/* Outline Primary */
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Secondary Button */
.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-light);
}

/* Light Button */
.btn-light {
    background: var(--white);
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background: var(--gray-100);
}

/* Success Button */
.btn-success {
    background: linear-gradient(135deg, var(--success), #34ce57);
    color: var(--white);
}

/* Danger Button */
.btn-danger {
    background: linear-gradient(135deg, var(--danger), #e74c5e);
    color: var(--white);
}

/* Rounded Pill */
.rounded-pill {
    border-radius: var(--radius-full) !important;
}

/* Button Sizes */
.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* ============================================
   KARTLAR
   ============================================ */
.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 24px;
    font-weight: 600;
}

.card-body {
    padding: 24px;
}

.card-footer {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    padding: 16px 24px;
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary);
}

.feature-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d44 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('/img/hero-pattern.svg') no-repeat right center;
    opacity: 0.1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

/* Hero Search Form */
.hero-search-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-xl);
}

.hero-search-form .form-label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 8px;
}

.hero-search-form .form-control,
.hero-search-form .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 15px;
    transition: var(--transition-base);
}

.hero-search-form .form-control:focus,
.hero-search-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.hero-search-form .btn-search {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
}

/* ============================================
   FORM ELEMANLARI
   ============================================ */
.form-control,
.form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 15px;
    transition: var(--transition-base);
    background-color: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--gray-500);
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-text {
    color: var(--gray-600);
    font-size: 13px;
}

/* Input Group */
.input-group .form-control {
    border-right: none;
}

.input-group .input-group-text {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-left: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--gray-500);
}

.input-group:focus-within .input-group-text {
    border-color: var(--primary);
}

/* Checkbox & Radio */
.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

/* ============================================
   BADGE'LER
   ============================================ */
.badge {
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.badge-lg {
    padding: 8px 16px;
    font-size: 14px;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    border: none;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #1e7e34;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #bd2130;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #856404;
}

.alert-info {
    background: rgba(23, 162, 184, 0.1);
    color: #0c5460;
}

/* ============================================
   TABLOLAR
   ============================================ */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--gray-700);
    border: none;
    padding: 16px;
    font-size: 14px;
}

.table tbody td {
    padding: 16px;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
}

.table tbody tr:hover {
    background: rgba(var(--primary-rgb), 0.03);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--primary);
    font-size: 18px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li a:hover {
    color: var(--primary);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* App Buttons */
.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-btn img {
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.app-btn:hover img {
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.btn-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.btn-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-scroll-top:hover {
    transform: translateY(-5px);
}

/* ============================================
   SECTION GENEL
   ============================================ */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 48px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-primary);
}

.step-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray-600);
}

/* Step Arrow (Desktop) */
@media (min-width: 992px) {
    .step-card:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 30px;
        right: -15%;
        width: 30%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), transparent);
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

/* ============================================
   AUTH SAYFASI
   ============================================ */
.auth-page {
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gray-100), var(--white));
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    max-width: 450px;
    margin: 0 auto;
}

.auth-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    text-align: center;
}

.auth-subtitle {
    color: var(--gray-600);
    margin-bottom: 32px;
    text-align: center;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: var(--gray-500);
    font-size: 14px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-300);
}

.auth-divider span {
    padding: 0 16px;
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-header {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    padding: 40px 0;
    margin-bottom: 32px;
}

.dashboard-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 8px;
}

.dashboard-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stat-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.stat-card-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card-label {
    font-size: 14px;
    color: var(--gray-600);
}

/* ============================================
   TALEP KARTI
   ============================================ */
.talep-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 16px;
    transition: var(--transition-base);
    border-left: 4px solid var(--primary);
}

.talep-card:hover {
    box-shadow: var(--shadow-md);
}

.talep-route {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.talep-route .city {
    font-weight: 700;
    color: var(--dark);
}

.talep-route .arrow {
    color: var(--primary);
    font-size: 20px;
}

.talep-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--gray-600);
}

.talep-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.talep-info i {
    color: var(--primary);
}

/* ============================================
   TEKLİF KARTI
   ============================================ */
.teklif-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    margin-bottom: 12px;
    transition: var(--transition-base);
}

.teklif-card:hover {
    box-shadow: var(--shadow-md);
}

.teklif-driver {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.teklif-driver-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--success), #34ce57);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.teklif-driver-info h6 {
    margin-bottom: 2px;
    font-weight: 600;
}

.teklif-driver-rating {
    color: var(--warning);
    font-size: 13px;
}

.teklif-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

/* ============================================
   MESAJ BALONCUKLARI
   ============================================ */
.message-bubble {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
}

.message-bubble.sent {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.message-bubble.received {
    background: var(--gray-100);
    color: var(--dark);
    margin-right: auto;
    border-bottom-left-radius: 4px;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 4px;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner-primary {
    color: var(--primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        margin-top: 16px;
    }
    
    .navbar .nav-link {
        padding: 12px 16px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .auth-card {
        padding: 24px;
        margin: 0 16px;
    }
    
    .btn-scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 575.98px) {
    .hero-search-form {
        padding: 16px;
    }
    
    .feature-card {
        padding: 24px 16px;
    }
    
    .stat-card {
        padding: 16px;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-warning { color: var(--warning) !important; }
.text-info { color: var(--info) !important; }

.bg-primary-soft { background: rgba(var(--primary-rgb), 0.1) !important; }
.bg-success-soft { background: rgba(40, 167, 69, 0.1) !important; }
.bg-danger-soft { background: rgba(220, 53, 69, 0.1) !important; }
.bg-warning-soft { background: rgba(255, 193, 7, 0.1) !important; }
.bg-info-soft { background: rgba(23, 162, 184, 0.1) !important; }

.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }
.fw-extrabold { font-weight: 800 !important; }

/* ============================================
   GİRİŞ SAYFASI - TİP SEÇİM BUTONLARI
   ============================================ */
.btn-giris-secim {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    background: transparent !important;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.btn-giris-secim:hover {
    background-color: var(--primary) !important;
    color: #fff !important;
}

.btn-giris-secim.active {
    background-color: var(--primary) !important;
    color: #fff !important;
}