
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

/* Genel Ayarlar */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

/* Hero Slider */
.hero-slide {
    min-height: 45vh;
    display: flex;
    align-items: center;
    /*background: linear-gradient(135deg, var(--primary-color) 0%, #0a58ca 100%);*/
}

.hero-slide.bg-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #146c43 100%);
}

.hero-slide.bg-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #ffca2c 100%);
}

.min-vh-50 {
    min-height: 50vh;
}

/* Kartlar */
.card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.card-title {
    color: var(--dark-color);
}

/* Butonlar */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #0a58ca);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0a58ca, var(--primary-color));
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
    border: none;
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color), #ffca2c);
    border: none;
    color: var(--dark-color);
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: bold;
    margin: 0 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
}


/* Footer */
footer {
    margin-top: auto;
}

footer h5, footer h6 {
    color: #fff;
}

footer .text-muted {
    color: #adb5bd !important;
}

footer a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
}

/* Form Elements */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
}

/* Badges */
.badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Alert Messages */
.alert {
    border-radius: 8px;
    border: none;
    font-weight: 500;
}

/* Dashboard Styles */
.dashboard-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.dashboard-stat {
    background: linear-gradient(135deg, var(--primary-color), #0a58ca);
    color: white;
    border-radius: 15px;
    padding: 2rem;
}

.dashboard-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Table Styles */
.table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.table thead th {
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
    padding: 1rem;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-color: #e9ecef;
}

.table tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), #0a58ca);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

/* Login/Register Forms */
.auth-card {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: none;
    overflow: hidden;
}

.auth-header {
    background: linear-gradient(135deg, var(--primary-color), #0a58ca);
    color: white;
    padding: 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 50vh;
        text-align: center;
    }
    
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .display-1 {
        font-size: 4rem;
    }
    
    .dashboard-stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .container-fluid {
        padding: 0 10px;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Loading Spinner */
.spinner-custom {
    width: 2rem;
    height: 2rem;
    border: 0.25em solid var(--primary-color);
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0a58ca;
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.rounded-custom {
    border-radius: 15px !important;
}
/* Petrol Fiyatları Popup */
.petrol-popup {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 320px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 2px solid var(--primary-color);
    z-index: 1050;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.petrol-popup.minimized {
    transform: translateY(-50%) scale(0.3);
    opacity: 0.7;
    pointer-events: none;
}

.petrol-popup.minimized:hover {
    transform: translateY(-50%) scale(0.35);
    opacity: 0.9;
    pointer-events: auto;
}

.petrol-popup-header {
    background: linear-gradient(135deg, var(--primary-color), #0a58ca);
    color: white;
    padding: 12px 15px;
    border-radius: 13px 13px 0 0;
    position: relative;
    cursor: move;
}

.petrol-popup-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.petrol-popup-controls {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
}

.popup-control-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.popup-control-btn:hover {
    background: rgba(255,255,255,0.3);
}

.petrol-popup-body {
    padding: 15px;
}

.petrol-fiyat-item {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.petrol-fiyat-item:hover {
    transform: translateX(3px);
}

.petrol-fiyat-item.benzin {
    border-left-color: #e74c3c;
}

.petrol-fiyat-item.motorin {
    border-left-color: #f39c12;
}

.petrol-fiyat-item.lpg {
    border-left-color: #27ae60;
}

.yakit-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 5px;
}

.yakit-isim {
    font-weight: 600;
    font-size: 13px;
    color: #2c3e50;
}

.yakit-fiyat {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.yakit-degisim {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

.yakit-degisim.pozitif {
    background: #fee;
    color: #e74c3c;
}

.yakit-degisim.negatif {
    background: #efe;
    color: #27ae60;
}

.yakit-degisim.sifir {
    background: #f8f9fa;
    color: #6c757d;
}

.zam-beklentisi {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
}

.zam-beklentisi-title {
    font-size: 12px;
    font-weight: 600;
    color: #856404;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.zam-item {
    font-size: 11px;
    color: #856404;
    margin-bottom: 3px;
}

.son-guncelleme {
    text-align: center;
    font-size: 10px;
    color: #6c757d;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.popup-loader {
    text-align: center;
    padding: 20px;
    color: #6c757d;
}

.popup-error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .petrol-popup {
        width: 280px;
        right: 10px;
    }
    
    .petrol-popup.minimized {
        right: 5px;
        transform: translateY(-50%) scale(0.25);
    }
}

@media (max-width: 480px) {
    .petrol-popup {
        width: 250px;
        right: 5px;
    }
    
    .petrol-popup-body {
        padding: 10px;
    }
    
    .petrol-fiyat-item {
        padding: 8px;
    }
}
.petrol-widget {
    position: fixed;
    top: 80px;
    right: 0;
    width: 300px;
    background: white;
    border: 2px solid #0d6efd;
    border-right: none;
    border-radius: 15px 0 0 15px;
    box-shadow: -8px 8px 25px rgba(0,0,0,0.15);
    z-index: 1040;
    transition: transform 0.3s ease, background 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.petrol-widget.collapsed {
    transform: translateX(250px);
}

/* Widget Header/Toggle */
.widget-toggle {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 15px 0 0 0;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.widget-toggle:hover {
    background: linear-gradient(135deg, #0a58ca 0%, #0d6efd 100%);
}

.petrol-widget.collapsed .widget-toggle {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 20px 12px;
    width: 50px;
    justify-content: center;
    border-radius: 15px 0 0 15px;
}

.toggle-text {
    flex: 1;
    font-weight: 700;
}

.petrol-widget.collapsed .toggle-text {
    font-size: 12px;
    letter-spacing: 1px;
}

.toggle-icon {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.petrol-widget.collapsed .widget-content {
    display: none;
}

/* Widget Content */
.widget-content {
    padding: 0;
    background: white;
    border-radius: 0 0 0 15px;
}

.widget-prices {
    padding: 15px;
}

.widget-price-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
    border-left: 3px solid #0d6efd;
    transition: all 0.2s ease;
}

.widget-price-item:hover {
    background: #e9ecef;
    transform: translateX(2px);
}

.widget-price-item:last-child {
    margin-bottom: 0;
}

.price-label {
    font-size: 12px;
    font-weight: 600;
    color: #495057;
}

.price-value {
    font-size: 14px;
    font-weight: 700;
    color: #0d6efd;
}

.price-change {
    font-size: 10px;
    text-align: right;
    margin-top: 2px;
    font-weight: 500;
}

.price-change.positive {
    color: #dc3545;
}

.price-change.negative {
    color: #198754;
}

.price-change.neutral {
    color: #6c757d;
}

/* Widget Footer */
.widget-footer {
    background: #f8f9fa;
    padding: 10px 15px;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-update-time {
    font-size: 10px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 4px;
}

.widget-actions .btn {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Widget Error */
.widget-error {
    padding: 20px;
    text-align: center;
    color: #6c757d;
    font-size: 12px;
}

/* Widget Loader */
.widget-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    font-size: 12px;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .petrol-widget {
        width: 250px;
        top: 70px;
    }
    
    .petrol-widget.collapsed {
        transform: translateX(200px);
    }
    
    .widget-toggle {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .widget-prices {
        padding: 12px;
    }
    
    .widget-price-item {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .petrol-widget {
        width: 220px;
    }
    
    .petrol-widget.collapsed {
        transform: translateX(170px);
    }
}
/* Gelişmiş Widget Stilleri */
.price-source {
    font-size: 9px;
    color: #6c757d;
    margin-top: 6px;
    padding: 2px 6px;
    background: rgba(108, 117, 125, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.price-change-wrapper {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.widget-price-item.usdtl {
    border-left-color: #6f42c1;
    background: linear-gradient(135deg, #f8f7ff 0%, #f0edff 100%);
}

.widget-price-item.brent {
    border-left-color: #fd7e14;
    background: linear-gradient(135deg, #fff8f0 0%, #fef5e7 100%);
}

.widget-section-title {
    font-size: 11px;
    font-weight: 800;
    color: #495057;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.widget-error {
    padding: 20px;
    text-align: center;
    color: #dc3545;
    font-size: 12px;
}

.widget-error .progress {
    margin: 8px 0;
    height: 4px;
    background: #f8f9fa;
    border-radius: 2px;
    overflow: hidden;
}

.widget-error .progress-bar {
    background: linear-gradient(90deg, #dc3545, #fd7e14);
    transition: width 0.3s ease;
}

/* Animasyonlar */
@keyframes widget-pulse {
    0% { 
        border-color: #0d6efd; 
        box-shadow: -10px 10px 30px rgba(0,0,0,0.15);
    }
    50% { 
        border-color: #198754; 
        box-shadow: 0 0 25px rgba(25, 135, 84, 0.4);
    }
    100% { 
        border-color: #0d6efd; 
        box-shadow: -10px 10px 30px rgba(0,0,0,0.15);
    }
}

.widget-updating {
    animation: widget-pulse 2s ease-in-out;
}

/* Gelişmiş hover efektleri */
.widget-price-item:hover {
    transform: translateX(4px) translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.widget-price-item.brent:hover {
    box-shadow: 0 6px 16px rgba(253, 126, 20, 0.2);
}

.widget-price-item.usdtl:hover {
    box-shadow: 0 6px 16px rgba(111, 66, 193, 0.2);
}

/* Responsive iyileştirmeler */
@media (max-width: 768px) {
    .widget-section-title {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .price-change-wrapper {
        flex-direction: column;
        gap: 4px;
    }
    
    .widget-price-item {
        padding: 10px 12px;
    }
    
    .price-value {
        font-size: 14px;
    }
    
    .price-value.large {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .petrol-widget {
        width: 280px;
    }
    
    .widget-prices {
        padding: 15px;
    }
    
    .widget-footer {
        padding: 12px 15px;
        font-size: 10px;
    }
}
@media (max-width: 991.98px) {
    /* Navbar collapse menü için arkaplan */
    .navbar-collapse {
        background-color: #0d6efd !important;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        margin-top: 10px;
        padding: 20px 15px;
        border: none;
        position: relative;
        z-index: 999;
    }
    
    /* Nav menü container */
    .navbar-nav {
        width: 100%;
        margin-left: 0 !important;
    }
    
    /* Nav linklerini sola hizala */
    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 8px;
        text-align: left;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        color: #ffffff !important;
        font-weight: 600;
        border-radius: 8px;
        margin: 0 !important;
        text-align: left !important;
        width: 100%;
        display: block;
        background: rgba(255,255,255,0.1);
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255,255,255,0.2) !important;
        color: #ffc107 !important;
        border-left-color: #ffc107;
        transform: translateX(5px);
        padding-left: 20px !important;
    }
    
    /* Şöför menü özel mobil stil */
    .nav-link.sofor-menu {
        background: rgba(40, 167, 69, 0.2) !important;
        border-left-color: #28a745 !important;
        color: #ffffff !important;
    }
    
    .nav-link.sofor-menu:hover {
        background: rgba(40, 167, 69, 0.4) !important;
        border-left-color: #20c997 !important;
        color: #ffffff !important;
    }
    
    /* Dropdown menü mobil */
    .nav-item.dropdown .dropdown-menu {
        background: rgba(13, 110, 253, 0.95);
        border: none;
        border-radius: 8px;
        margin-top: 5px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .dropdown-menu .dropdown-item {
        color: #ffffff !important;
        padding: 10px 15px;
        border-radius: 6px;
        margin: 2px 0;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu .dropdown-item:hover {
        background: rgba(255,255,255,0.2) !important;
        color: #ffc107 !important;
        transform: translateX(5px);
    }
    
    /* Dropdown divider */
    .dropdown-divider {
        border-color: rgba(255,255,255,0.2);
        margin: 8px 0;
    }
    
    /* Navbar toggle butonu */
    .navbar-toggler {
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 8px;
        padding: 8px 12px;
        background: rgba(255,255,255,0.1);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
        border-color: rgba(255,255,255,0.5);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* Me-auto ve ms-auto sınıflarını override et */
    .navbar-nav.me-auto,
    .navbar-nav.ms-auto {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    /* Son nav-item'da border kaldır */
    .navbar-nav:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    /* Ana navbar arkaplanı mobilde */
    .navbar {
        background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) !important;
    }
}

/* Küçük ekranlar için ek düzenlemeler */
@media (max-width: 576px) {
    .navbar-collapse {
        margin-top: 8px;
        padding: 15px 10px;
        border-radius: 0 0 12px 12px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 12px !important;
        font-size: 14px;
    }
    
    .navbar-nav .nav-link:hover {
        padding-left: 18px !important;
    }
    
    .navbar-brand.logo-container {
        padding: 0;
    }
    
    .logo-text2 {
        display: none;
    }
    
    .logo-text {
        opacity: 1 !important;
        transform: translateX(0) !important;
        font-size: 0.9rem;
        left: 65px;
    }
}

/* Ultra küçük ekranlar */
@media (max-width: 480px) {
    .navbar {
        padding: 0 10px;
    }
    
    .navbar-collapse {
        margin-left: -10px;
        margin-right: -10px;
        border-radius: 0 0 10px 10px;
    }
    
    .logo-text {
        left: 60px;
        font-size: 0.8rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 8px 10px !important;
    }
}

/* Navbar animasyonları */
.navbar-collapse.collapsing {
    transition: height 0.35s ease;
}

.navbar-collapse.show {
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Widget pozisyonu mobilde navbar ile uyumlu */
@media (max-width: 991.98px) {
    .petrol-widget {
        top: 70px !important;
    }
}

@media (max-width: 576px) {
    .petrol-widget {
        top: 60px !important;
    }
}

/* Navbar scroll efekti mobilde */
@media (max-width: 991.98px) {
    .navbar-scrolled {
        background: linear-gradient(135deg, rgba(13, 110, 253, 0.98) 0%, rgba(10, 88, 202, 0.98) 100%) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .navbar-scrolled .navbar-collapse {
        background: linear-gradient(135deg, rgba(13, 110, 253, 0.95) 0%, rgba(10, 88, 202, 0.95) 100%) !important;
    }
}

/* Logo container mobil iyileştirmeler */
@media (max-width: 768px) {
    .logo-container {
        position: relative;
        z-index: 1001;
    }
    
    .logo-container:hover .logo-text {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobil menü kapatma otomatiği için JS desteği */
.navbar-nav .nav-link[data-close-menu="true"] {
    position: relative;
}

/* Active link stili mobilde */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link.active {
        background: rgba(255,193,7,0.3) !important;
        border-left-color: #ffc107 !important;
        color: #ffc107 !important;
    }
    
    .nav-link.sofor-menu.active {
        background: rgba(40, 167, 69, 0.5) !important;
        border-left-color: #20c997 !important;
    }
}
/* ===== NAVBAR STYLES - style.css dosyasının sonuna ekleyin ===== */

/* Logo Animasyonu */
@keyframes logoSpin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* Navbar Temel Stil */
.navbar {
    min-height: 70px;
    padding: 0;
    /*position: fixed;*/
    top: 0;
    width: 100%;
    z-index: 1050;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.95) 0%, rgba(10, 88, 202, 0.95) 100%) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar .container {
    height: 100%;
    position: relative;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    color: white !important;
    height: 70px;
    position: relative;
    z-index: 1051;
}

.logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: logoSpin 4s linear infinite;
    transition: transform 0.3s ease;
    margin-right: -30px;
}

.logo-container:hover .logo-image {
    animation-play-state: paused;
    transform: scale(1.05);
}

.logo-text {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    margin-left: 15px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    transform: translateX(0);
    white-space: nowrap;
}

.logo-text-hover {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    position: absolute;
    left: 110px; /* Logo + margin */
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    white-space: nowrap;
}

/* Desktop hover efekti */
@media (min-width: 992px) {
    .logo-container:hover .logo-text {
        opacity: 0;
        transform: translateX(10px);
    }
    
    .logo-container:hover .logo-text-hover {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
        color: #ffc107;
    }
}

/* Mobile ayarlar */
@media (max-width: 991.98px) {
    .logo-container {
        height: 65px;
    }
    
    .logo-text {
        font-size: 1rem;
        margin-left: 10px;
    }
    
    .logo-text-hover {
        display: none; /* Mobilde gizle */
    }
}

@media (max-width: 576px) {
    .logo-container {
        height: 60px;
    }
    
    .logo-text {
        font-size: 0.9rem;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 0.8rem;
        margin-left: 5px;
    }
}

.logo-container:hover .logo-text {
    color: #ffc107;
    transform: translateX(5px);
}

/* Desktop Navigation */
.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 16px;
    margin: 0 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ffc107, #fd7e14);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
}

/* Şöför Menü Özel Stil */
.nav-link.sofor-menu {
    background: linear-gradient(45deg, rgba(40, 167, 69, 0.2), rgba(32, 201, 151, 0.1));
    border: 1px solid rgba(40, 167, 69, 0.3);
    font-weight: 600;
}

.nav-link.sofor-menu::before {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.nav-link.sofor-menu:hover {
    background: linear-gradient(45deg, rgba(40, 167, 69, 0.3), rgba(32, 201, 151, 0.2));
    color: #20c997 !important;
    border-color: rgba(32, 201, 151, 0.5);
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: white;
    padding: 8px;
}

.dropdown-item {
    border-radius: 8px;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(45deg, #0d6efd, #0a58ca);
    color: white;
    transform: translateX(5px);
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
    .navbar {
        min-height: 65px;
    }
    
    .logo-container {
        height: 65px;
    }
    
    .logo-image {
        width: 90px;
        height: 90px;
    }
    
    .logo-text {
        font-size: 1rem;
        margin-left: 5px;
    }
    
    /* Mobile Toggle Button */
    .navbar-toggler {
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 8px;
        padding: 8px 12px;
        background: rgba(255,255,255,0.1);
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        border-color: rgba(255,255,255,0.5);
    }
    
    .navbar-toggler:hover {
        background: rgba(255,255,255,0.2);
        border-color: rgba(255,255,255,0.5);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 20px;
        height: 20px;
    }
    
    /* Mobile Collapse Menu */
    .navbar-collapse {
        background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) !important;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        margin-top: 15px;
        padding: 25px 20px;
        border: none;
        position: relative;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mobile Navigation Links */
    .navbar-nav {
        width: 100%;
        margin: 0 !important;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .navbar-nav .nav-link {
        color: #ffffff !important;
        font-weight: 600;
        padding: 15px 20px !important;
        margin: 0 !important;
        text-align: left !important;
        width: 100%;
        display: block;
        background: rgba(255,255,255,0.1);
        border-radius: 12px;
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .navbar-nav .nav-link::before {
        display: none;
    }
    
    /* Ok işareti sadece dropdown'lar için */
    .navbar-nav .dropdown-toggle::after {
        content: '';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid rgba(255,255,255,0.6);
        transition: all 0.3s ease;
        border: none;
        margin: 0;
    }
    
    /* Normal linkler için ok işareti kaldır */
    .navbar-nav .nav-link:not(.dropdown-toggle)::after {
        display: none !important;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255,255,255,0.2) !important;
        color: #ffc107 !important;
        border-left-color: #ffc107;
        transform: translateX(8px) translateY(0);
        padding-left: 25px !important;
    }
    
    .navbar-nav .dropdown-toggle:hover::after {
        border-top-color: #ffc107;
        transform: translateY(-50%) translateX(5px);
    }
    
    /* Mobile Şöför Menu */
    .nav-link.sofor-menu {
        background: linear-gradient(135deg, rgba(40, 167, 69, 0.3), rgba(32, 201, 151, 0.2)) !important;
        border-left-color: #28a745 !important;
        border: 1px solid rgba(40, 167, 69, 0.3);
    }
    
    .nav-link.sofor-menu:hover {
        background: linear-gradient(135deg, rgba(40, 167, 69, 0.5), rgba(32, 201, 151, 0.3)) !important;
        border-left-color: #20c997 !important;
        border-color: rgba(32, 201, 151, 0.5);
        color: #ffffff !important;
    }
    
    /* Mobile Dropdown */
    .nav-item.dropdown .dropdown-menu {
        background: rgba(13, 110, 253, 0.9) !important;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
        margin-top: 8px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        backdrop-filter: blur(10px);
    }
    
    .dropdown-menu .dropdown-item {
        color: #ffffff !important;
        padding: 12px 20px;
        border-radius: 8px;
        margin: 4px 0;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu .dropdown-item:hover {
        background: rgba(255,255,255,0.2) !important;
        color: #ffc107 !important;
        transform: translateX(8px);
    }
    
    .dropdown-divider {
        border-color: rgba(255,255,255,0.2);
        margin: 12px 0;
    }
    
    /* Mobile Menu Sections */
    .navbar-nav.me-auto {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .navbar-nav:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

/* Small Mobile Screens */
@media (max-width: 576px) {
    .navbar {
        min-height: 60px;
        padding: 0 10px;
    }
    
    .logo-container {
        height: 60px;
    }
    
    .logo-image {
        width: 75px;
        height: 75px;
    }
    
    .logo-text {
        font-size: 0.9rem;
        margin-left: 2px;
    }
    
    .navbar-collapse {
        margin-left: -10px;
        margin-right: -10px;
        border-radius: 0 0 15px 15px;
        padding: 20px 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        font-size: 14px;
    }
    
    .navbar-nav .nav-link:hover {
        padding-left: 20px !important;
    }
}

/* Ultra Small Screens */
@media (max-width: 480px) {
    .logo-text {
        font-size: 0.8rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 10px 12px !important;
    }
    
    .navbar-nav .nav-link:hover {
        padding-left: 18px !important;
    }
}

/* Hover Effects */
.logo-container:hover {
    color: white !important;
    text-decoration: none !important;
}

/* Active Link Styles */
.navbar-nav .nav-link.active {
    background: rgba(255,193,7,0.2);
    color: #ffc107 !important;
    border-left-color: #ffc107;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link.active {
        background: rgba(255,193,7,0.3) !important;
        border-left-color: #ffc107 !important;
    }
    
    .nav-link.sofor-menu.active {
        background: linear-gradient(135deg, rgba(40, 167, 69, 0.6), rgba(32, 201, 151, 0.4)) !important;
        border-left-color: #20c997 !important;
    }
}

/* Body offset for fixed navbar */
/* @media (max-width: 991.98px) {
    body {
        padding-top: 65px;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 60px;
    }
} */

/* ===== NAVBAR STYLES SON ===== */

/* ===== FOOTER STYLES - style.css dosyasına ekleyin ===== */

/* Site İstatistikleri Bölümü */
.stats-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%) !important;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

/* İstatistik Kartları */
.stat-card {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover .stat-number {
    color: #ffed4e !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transform: scale(1.05);
}

.stat-card:hover .stat-label {
    color: #f8f9fa !important;
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
    font-weight: 500;
}

.stat-icon {
    margin-right: 6px;
    opacity: 0.8;
}

/* Footer Ana Stil */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(13, 110, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(13, 110, 253, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(13, 110, 253, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 1;
}

/* Footer Logo Bölümü */
.footer-logo-section {
    position: relative;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
    color: inherit;
}

.footer-logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 15px;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.footer-logo-container:hover .footer-logo-image {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.1);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-logo-container:hover .footer-logo-text {
    color: #0d6efd;
    text-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
}

.footer-description {
    color: #adb5bd;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Sosyal Medya Linkleri */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.2));
    border: 2px solid rgba(13, 110, 253, 0.3);
    border-radius: 50%;
    color: #0d6efd;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0d6efd, #0a58ca);
    transition: left 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px) scale(1.1);
    border-color: #0d6efd;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

.social-link:hover::before {
    left: 0;
}

/* Footer Başlıkları */
.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(45deg, #0d6efd, #0a58ca);
    border-radius: 2px;
}

/* Footer Linkleri */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #0d6efd;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #0d6efd;
    padding-left: 15px;
    transform: translateX(5px);
}

.footer-link:hover::before {
    width: 8px;
}

/* İletişim Bilgileri */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #adb5bd;
    font-size: 0.9rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(45deg, #0d6efd, #0a58ca);
    color: white;
    transform: scale(1.1);
}

.contact-item a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #0d6efd;
}

/* Bülten Bölümü */
.newsletter-section h6 {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.newsletter-form {
    position: relative;
    margin-bottom: 15px;
}

.newsletter-input {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-input:focus {
    background: rgba(255,255,255,0.15);
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: none;
}

.newsletter-btn {
    background: linear-gradient(45deg, #0d6efd, #0a58ca);
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.newsletter-btn:hover {
    background: linear-gradient(45deg, #0a58ca, #084298);
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

.last-update {
    color: #6c757d;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.last-update i {
    color: #198754;
}

/* Alt Çizgi */
.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 30px 0;
}

/* Alt Footer */
.footer-bottom {
    padding-top: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    align-items: center;
}

.footer-bottom-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0d6efd;
    transition: width 0.3s ease;
}

.footer-bottom-link:hover {
    color: #0d6efd;
}

.footer-bottom-link:hover::after {
    width: 100%;
}

.copyright-text {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
}

/* Animasyon Efektleri */
@keyframes countUp {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.stat-number {
    animation: countUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: slideInUp 0.6s ease-out;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    
    .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
    }

    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-card {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .footer-logo-image {
        width: 60px;
        height: 60px;
        margin-right: 10px;
    }
    
    .footer-logo-text {
        font-size: 1.2rem;
    }
    
    .social-links {
        gap: 10px;
        justify-content: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .newsletter-form .input-group {
        gap: 10px;
    }
    
    .newsletter-input,
    .newsletter-btn {
        border-radius: 20px;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 30px 0;
    }
    
    .stat-card {
        padding: 15px 10px;
    }
    
    .footer-logo-container {
        justify-content: center;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
}

/* ===== FOOTER STYLES SON ===== */
/* ==================================================
   SSS (Sık Sorulan Sorular) Sayfası Stilleri
   ================================================== */

/* SSS Arama Stili */
.sss-item {
    border: none !important;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sss-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.sss-item .accordion-button {
    background: #f8f9fa;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 1rem 1.25rem;
}

.sss-item .accordion-button:hover {
    background: #e9ecef;
}

.sss-item .accordion-button:not(.collapsed) {
    background: #e7f3ff;
    color: #0d6efd;
    box-shadow: none;
}

.sss-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.sss-item .accordion-button::after {
    transition: transform 0.3s ease;
}

.sss-item .accordion-body {
    background: white;
    border-top: 1px solid #dee2e6;
    padding: 1.5rem 1.25rem;
    line-height: 1.6;
}

/* Tab Stilleri */
.nav-pills .nav-link {
    color: #6c757d;
    border-radius: 2rem;
    margin: 0 0.25rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-pills .nav-link:hover {
    background: #f8f9fa;
    color: #495057;
    transform: translateY(-2px);
}

.nav-pills .nav-link.active {
    background: #0d6efd;
    color: white;
    border-color: #0d6efd;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.nav-pills .nav-link i {
    margin-right: 0.5rem;
}

/* Arama Kutusu Stilleri */
#sssArama {
    border-radius: 0.5rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
}

#sssArama:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.input-group-text {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 0.5rem 0 0 0.5rem;
}

/* Arama Sonuçları Vurgulama */
.highlight {
    background-color: #fff3cd;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Gizli Öğeler */
.hidden {
    display: none !important;
}

/* Hero Section */
.bg-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) !important;
}

/* Destek Kartı */
.card.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

/* Animasyonlar */
.accordion-item {
    animation: slideInUp 0.3s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab İçeriği Geçiş Animasyonu */
.tab-content > .tab-pane {
    transition: all 0.3s ease;
}

.tab-content > .tab-pane.active {
    animation: fadeInContent 0.4s ease;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animasyonu */
.sss-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .nav-pills {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-pills .nav-link {
        margin: 0.25rem 0;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    .sss-item .accordion-button {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .sss-item .accordion-body {
        padding: 1.25rem 1rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .input-group {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .nav-pills .nav-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .sss-item .accordion-button {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .sss-item .accordion-body {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Dark Mode Desteği (İsteğe bağlı) */
@media (prefers-color-scheme: dark) {
    .sss-item {
        background: #2d3748;
    }
    
    .sss-item .accordion-button {
        background: #4a5568;
        color: #e2e8f0;
    }
    
    .sss-item .accordion-button:not(.collapsed) {
        background: #3182ce;
        color: white;
    }
    
    .sss-item .accordion-body {
        background: #2d3748;
        color: #e2e8f0;
        border-top-color: #4a5568;
    }
}

/* Print Stilleri */
@media print {
    .nav-pills,
    #sssArama,
    .input-group,
    .btn {
        display: none !important;
    }
    
    .accordion-collapse {
        display: block !important;
    }
    
    .sss-item {
        page-break-inside: avoid;
        margin-bottom: 1rem;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
/* ==================================================
   PETROL FİYATLARI SAYFASI STİLLERİ
   ================================================== */

/* Petrol Fiyat Kartları */
.fuel-price-card {
    transition: all 0.3s ease;
    border-width: 2px !important;
}

.fuel-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.fuel-price-card .card-body {
    padding: 2rem 1.5rem;
}

.fuel-price-card .display-1 {
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Fiyat Değişim Badge'leri */
.price-change-badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Grafik Container */
.chart-container {
    position: relative;
    height: 400px;
    margin: 1rem 0;
}

#priceChart {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 10px;
}

/* Brent Petrol Kartı */
.brent-card {
    background: linear-gradient(135deg, #ffc107 0%, #ffcd39 100%);
    color: #000;
}

.brent-card .card-header {
    background: rgba(0,0,0,0.1) !important;
    border: none;
}

.brent-price-display {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Analiz Kartları */
.analysis-card {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
}

.expectation-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* Tablo Stilleri */
.price-history-table {
    font-size: 0.9rem;
}

.price-history-table th {
    background: #343a40 !important;
    color: white;
    font-weight: 600;
    text-align: center;
}

.price-history-table td {
    text-align: center;
    vertical-align: middle;
}

.price-history-table .table-success {
    background-color: #d1e7dd !important;
    font-weight: 600;
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Refresh Button Animation */
.btn-refresh {
    transition: all 0.3s ease;
}

.btn-refresh:hover {
    transform: rotate(180deg);
}

.btn-refresh.refreshing {
    animation: spin 1s linear infinite;
}

/* Badge Renkleri */
.badge-source-primary { background-color: #0d6efd !important; }
.badge-source-warning { background-color: #ffc107 !important; color: #000 !important; }
.badge-source-info { background-color: #0dcaf0 !important; }

/* Price Trend Indicators */
.trend-up {
    color: #dc3545;
    animation: bounce 1.5s infinite;
}

.trend-down {
    color: #198754;
    animation: bounce 1.5s infinite;
}

.trend-stable {
    color: #6c757d;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Tasarım - Petrol Sayfası */
@media (max-width: 768px) {
    .fuel-price-card .display-1 {
        font-size: 3rem;
    }
    
    .fuel-price-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .chart-container {
        height: 300px;
    }
    
    .brent-price-display {
        font-size: 2rem;
    }
    
    .price-history-table {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .fuel-price-card .display-1 {
        font-size: 2.5rem;
    }
    
    .price-change-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .chart-container {
        height: 250px;
    }
    
    .table-responsive {
        font-size: 0.75rem;
    }
}

/* Dark Mode - Petrol Sayfası */
@media (prefers-color-scheme: dark) {
    .fuel-price-card {
        background: #2d3748;
        color: #e2e8f0;
    }
    
    .analysis-card {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    }
    
    .expectation-card {
        background: linear-gradient(135deg, #2c5aa0 0%, #3b82f6 100%);
    }
}

/* Print Styles - Petrol Sayfası */
@media print {
    .btn, 
    .loading-spinner,
    .chart-container {
        display: none !important;
    }
    
    .fuel-price-card {
        page-break-inside: avoid;
        margin-bottom: 1rem;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .price-change-badge {
        animation: none;
    }
}

/* Accessibility İyileştirmeleri */
.fuel-price-card:focus-within {
    outline: 3px solid #0d6efd;
    outline-offset: 2px;
}

.price-change-badge {
    font-variant-numeric: tabular-nums;
}

/* Animasyon Performansı */
@media (prefers-reduced-motion: reduce) {
    .fuel-price-card,
    .price-change-badge,
    .trend-up,
    .trend-down,
    .btn-refresh {
        animation: none !important;
        transition: none !important;
    }
}
/* Auth Pages Styling */
.auth-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.auth-header {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* User Type Selection Cards */
.btn-check:checked + label {
    border-width: 3px !important;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary:hover,
.btn-outline-success:hover,
.btn-outline-warning:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Input Groups */
.input-group-lg > .input-group-text {
    font-size: 1.25rem;
}

.input-group-lg > .form-control {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
}

/* Form Cards */
.card.border-0 {
    transition: all 0.3s ease;
}

.card.border-0:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .auth-header h2 {
        font-size: 1.5rem;
    }
    
    .btn-outline-primary label,
    .btn-outline-success label,
    .btn-outline-warning label {
        padding: 1.5rem !important;
    }
}