:root {
    --primary-green: #00B894;
    --primary-blue: #0984E3;
    --accent-red: #E74C3C;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-gray: #ECEFF1;
    --white: #FFFFFF;
    --border-light: #E9ECEF;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-weight: 400;
    font-size: 15px;
}

/* Global Font Ayarları - Tüm Sayfalarda Kullanım */
* {
    font-family: 'Poppins', 'Source Sans Pro', sans-serif;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

p, span, div, a, li, td, th, input, textarea, select, button {
    font-family: 'Source Sans Pro', sans-serif;
}

.btn, .form-control, .form-select {
    font-family: 'Source Sans Pro', sans-serif;
}

/* Navbar ve Dropdown için özel font */
.navbar-nav .nav-link, .dropdown-item {
    font-family: 'Poppins', sans-serif !important;
}

/* Üst Menü (Top Bar) Stilleri */
.top-bar {
    background: #f8f9fa !important;
    border-bottom: 1px solid #e9ecef;
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1050;
    width: 100%;
    display: block !important;
}

.top-bar-left {
    display: flex !important;
    align-items: center;
    gap: 20px;
}

.top-bar-right {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.top-bar-text {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.85rem;
    margin-right: 10px;
}

.top-bar-item {
    color: #6c757d;
    display: flex;
    align-items: center;
}

.top-bar-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-item a:hover {
    color: var(--primary-green);
}

.top-bar-link {
    color: #6c757d;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.top-bar-link:hover {
    color: var(--primary-green);
    background: rgba(0, 184, 148, 0.1);
}

/* Responsive Top Bar */
@media (max-width: 768px) {
    .top-bar {
        padding: 5px 0;
    }
    
    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        gap: 10px;
        margin-bottom: 5px;
    }
    
    .top-bar-item {
        font-size: 0.8rem;
    }
    
    .top-bar-link {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
}

/* KrediFast Navbar */
.navbar-kredifast {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow-light);
    padding: 1rem 0;
    position: relative; /* Fixed'den relative'e çevir */
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 25px !important;
    width: auto;
    transition: all 0.3s ease;
}

/* Mobil için logo boyutu */
@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 32px !important;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        max-height: 28px !important;
    }
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0 0.8rem;
    padding: 0.8rem 0;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle .fas {
    font-size: 0.7rem;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-login-kredifast {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.btn-login-kredifast:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

/* KrediFast Tarzı Hero Section */
.hero-kredifast {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 77px 0 91px;
    margin-top: 0; /* Margin'i sıfırla çünkü artık fixed değil */
    position: relative;
    overflow: hidden;
}

.hero-kredifast::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 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>');
    background-size: cover;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #ffffff;
}

/* KrediFast Tarzı Hızlı İşlemler - Kare Tasarım */
.quick-services {
    background: var(--white);
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.services-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-medium);
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 1200px;
    border: 1px solid var(--border-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.service-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    border: 2px solid var(--border-light);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 184, 148, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 35px rgba(0, 184, 148, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

/* KrediFast Tarzı Ürün Kartları */
.products-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    position: relative;
}

.product-content {
    padding: 2rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Navbar Butonları */
.btn-login-kredifast {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border: none;
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-login-kredifast:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
    color: var(--white);
}

.btn-register-kredifast {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-register-kredifast:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-kredifast-primary {
    background: var(--white);
    border: 2px solid var(--white);
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-kredifast-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.9);
}

.btn-kredifast-outline {
    border: 2px solid #dc3545;
    color: #dc3545;
    background: transparent;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-kredifast-outline:hover {
    background: #dc3545;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

/* Piyasa Verileri Stilleri */
.market-data-section .market-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.rate-list .rate-item,
.market-indicators .indicator-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.rate-list .rate-item:last-child,
.market-indicators .indicator-item:last-child {
    border-bottom: none;
}

.rate-name,
.indicator-name {
    font-weight: 500;
    color: #2c3e50;
}

.rate-value {
    font-weight: 700;
    color: #27ae60;
    font-size: 1.1rem;
}

.indicator-value {
    font-weight: 600;
    font-size: 1.05rem;
}

.indicator-value.up {
    color: #27ae60;
}

.indicator-value.down {
    color: #e74c3c;
}

.indicator-value i {
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Blog Card Hover Effects */
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.blog-card .blog-image {
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

/* FAQ Accordion Styles */
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue)) !important;
    color: white !important;
}

.accordion-button:not(.collapsed) i {
    color: white !important;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Admin Panel Feature Cards */
.admin-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
}

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

.admin-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* KrediFast Tarzı Footer */
.footer-kredifast {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-section h5 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid #34495E;
    margin-top: 3rem;
    padding-top: 2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495E;
    color: var(--white);
    border-radius: 50%;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

/* Hero Image Slider - Sadece hero-stats üzerinde */
.hero-image-slider {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.hero-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    max-height: 600px;
    object-fit: cover;
}

/* Content Slider Animations */
.slider-content-container {
    position: relative;
    min-height: 300px;
}

.content-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-in-out;
    pointer-events: none;
}

.content-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.content-slide h1 {
    animation: slideInFromLeft 0.8s ease-out;
}

.content-slide p {
    animation: slideInFromLeft 0.8s ease-out 0.2s both;
}

.content-slide .d-flex {
    animation: slideInFromLeft 0.8s ease-out 0.4s both;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slider Navigation - KrediFast tarzı */
.slider-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    z-index: 1000 !important;
}

.slider-prev,
.slider-next {
    width: 40px !important;
    height: 40px !important;
    border: none !important;
    background: #E74C3C !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease;
    font-size: 16px !important;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3) !important;
}

.slider-prev:hover,
.slider-next:hover {
    background: #C0392B !important;
    transform: scale(1.15) !important;
    box-shadow: 0 6px 18px rgba(192, 57, 43, 0.4) !important;
}

.slider-dots {
    display: flex !important;
    align-items: center !important;
}

.slider-counter {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #2C3E50 !important;
    margin: 0 15px !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 991.98px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0;
        padding: 0.6rem 0;
        font-size: 1rem;
    }
    
    .navbar-kredifast .collapse .d-flex.align-items-center.gap-3 {
        width: 100%;
        padding: 0 12px;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 10px;
    }
    
    .navbar-kredifast .btn-login-kredifast,
    .navbar-kredifast .btn-register-kredifast {
        flex: 1 1 48%;
        min-width: 48%;
        display: inline-flex;
        justify-content: center;
        padding: 10px 16px;
        border-radius: 30px;
        font-size: 0.95rem;
    }
    
    /* Mobile/Tablet spacing improvements */
    .btn-kredifast-primary,
    .btn-kredifast-outline {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }
    .d-flex.gap-3 .btn,
    .d-flex.flex-wrap.gap-3 .btn,
    .promo-section .btn {
        margin: 8px 0 !important;
    }
    .btn + .btn { margin-top: 20px !important; }
    .d-flex.flex-wrap { row-gap: 12px !important; column-gap: 12px !important; }
    section .row.align-items-center > div + div { margin-top: 16px !important; }
    .hero-kredifast .btn, .promo-section .btn { margin: 12px 0 !important; }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Promo Section Styles */
.promo-section {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.promo-section .container {
    position: relative;
    z-index: 2;
}

.promo-feature-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.promo-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.promo-feature-icon {
    width: 60px;
    height: 60px;
    background: #00d4aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.promo-btn-primary {
    background: #00d4aa;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.promo-btn-primary:hover {
    background: #00b894;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3);
}

.promo-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.promo-btn-outline:hover {
    background: white;
    color: #1e3c72;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .promo-section h2 {
        font-size: 2.2rem !important;
    }
    
    .promo-section p {
        font-size: 1.1rem !important;
    }
    
    .promo-feature-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .promo-section h2 {
        font-size: 1.8rem !important;
    }
    
    .promo-section p {
        font-size: 1rem !important;
    }
    
    .promo-btn-primary,
    .promo-btn-outline {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #00B894, #0984E3) !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 20px !important;
    font-weight: bold !important;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.3) !important;
    transition: all 0.3s ease !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(20px) !important;
    z-index: 99999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
    left: auto !important;
}

.scroll-to-top.show {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #0984E3, #00B894) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.4) !important;
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 14px;
    }
}

/* Cookie Banner */
.cookie-banner{position:fixed;left:50%;transform:translateX(-50%);bottom:4px;z-index:1000;max-width:640px;width:calc(100% - 24px);background:rgba(255,255,255,0.96);backdrop-filter:saturate(140%) blur(8px);border-radius:18px;padding:16px 18px;color:#2C3E50;box-shadow:0 10px 30px rgba(0,0,0,0.12);display:none;box-sizing:border-box;overflow:visible}
.cookie-text{font-size:14px;line-height:1.5;margin-bottom:12px;text-align:left}
.cookie-text .cookie-link{color:#0984E3;text-decoration:underline}
.cookie-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.btn-cookie{height:40px;padding:8px 16px;border-radius:20px;font-weight:600;font-size:14px;cursor:pointer;transition:all .2s ease;flex:0 0 auto;box-sizing:border-box}
.btn-outline-red{background:transparent;border:2px solid #D63031;color:#D63031}
.btn-outline-red:hover{background:#fff4f4}
.btn-solid-primary{background:linear-gradient(135deg,#00B894,#0984E3);border:none;color:#FFFFFF;box-shadow:0 8px 20px rgba(9,132,227,.25)}
.btn-solid-primary:hover{filter:brightness(1.05)}
@media(max-width:768px){.cookie-banner{bottom:12px;padding:14px 16px}.cookie-text{font-size:13px}.cookie-actions{justify-content:space-between}.btn-cookie{flex:1 1 auto}}
#cookieOptionsModal .modal-content{border-radius:22px;box-shadow:0 20px 50px rgba(0,0,0,.25)}
#cookieOptionsModal .modal-header{border-bottom:1px solid #ECEFF1}
#cookieOptionsModal .modal-footer{border-top:1px solid #ECEFF1}
#cookieOptionsModal .modal-header .modal-title{color:#2C3E50;font-weight:600}
#cookieOptionsModal .btn-primary{background:linear-gradient(135deg,#00B894,#0984E3);border:none}
#cookieOptionsModal .btn-primary:hover{filter:brightness(1.05)}
#cookieOptionsModal .btn-secondary{background:#ECEFF1;color:#2C3E50;border:none}
#cookieOptionsModal .form-check-input:checked{background-color:#00B894;border-color:#00B894}
#cookieOptionsModal .form-check-input:focus{box-shadow:0 0 0 .25rem rgba(0,184,148,.25);border-color:#00B894}
.modal-backdrop.show{opacity:.6}