:root {
    --primary-color: #1a73e8;
    --primary-light: #e8f0fe;
    --primary-dark: #0d47a1;
    --secondary-color: #4caf50;
    --secondary-light: #e8f5e9;
    --secondary-dark: #2e7d32;
    --dark-color: #333333;
    --text-color: #505050;
    --light-color: #f8f9fa;
    --border-color: #e1e1e1;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --base-font-size: 16px;
    --h1-size: 2.5rem;
    --h2-size: 2rem;
    --h3-size: 1.5rem;
    --h4-size: 1.25rem;
    --h5-size: 1.1rem;
    --h6-size: 1rem;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition-fast: 0.3s;
    --transition-slow: 0.5s;
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

/* Eski tema tanımlamaları kaldırıldı - Yeni tema sistemi themes.css dosyasında */

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--body-font);
    font-size: var(--base-font-size);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.3;
}

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

h4 {
    font-size: var(--h4-size);
}

h5 {
    font-size: var(--h5-size);
}

h6 {
    font-size: var(--h6-size);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-fast);
}

    a:hover {
        color: var(--primary-dark);
    }

img {
    max-width: 100%;
    height: auto;
}

/* Logo img'leri için özel kurallar */
.logo-wrapper img,
.footer-logo-wrapper img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

#company-logo {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #preloader .spinner-border {
        width: 3rem;
        height: 3rem;
        color: var(--primary-color);
    }

.tlikon {
    font-size: 1em;
    font-family: Roboto;
    font-weight: 600;
}
.quote-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* İkonun küçülmesini engelle */
    margin-right: 12px !important; /* Sağ tarafta daha fazla boşluk */
}

    .quote-icon i {
        font-size: 1.1rem;
    }
.btn {
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover, .btn-primary:focus {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
    }

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-outline-primary:hover, .btn-outline-primary:focus {
        background-color: var(--primary-color);
        color: white;
    }

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.25rem 0.8rem;
    font-size: 0.875rem;
}

section {
    padding: 80px 0;
}

main {
    flex: 1;
}

.container {
    flex: 1;
}

/* Sorgu sayfaları için özel layout */
.quote-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.quote-page main {
    flex: 1;
}

.quote-page .container {
    flex: 1;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    margin-bottom: 20px;
    position: relative;
}

.section-line {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
}

.top-bar {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 10px 0;
    font-size: 0.9rem;
}

    .top-bar a {
        color: #ffffff;
        text-decoration: none;
    }

        .top-bar a:hover {
            color: rgba(255, 255, 255, 0.8);
        }

/* Beyaz temalar için top-bar linkleri - beyaz renk */
body[data-theme="kadikoy"] .top-bar a,
body[data-theme="besiktas"] .top-bar a,
body[data-theme="uskudar"] .top-bar a,
body[data-theme="beyoglu"] .top-bar a,
body[data-theme="sisli"] .top-bar a,
body[data-theme="beylikduzu"] .top-bar a,
body[data-theme="maltepe"] .top-bar a,
body[data-theme="atasehir"] .top-bar a,
body[data-theme="kadikoy"] .top-bar .contact-info a,
body[data-theme="besiktas"] .top-bar .contact-info a,
body[data-theme="uskudar"] .top-bar .contact-info a,
body[data-theme="beyoglu"] .top-bar .contact-info a,
body[data-theme="sisli"] .top-bar .contact-info a,
body[data-theme="beylikduzu"] .top-bar .contact-info a,
body[data-theme="maltepe"] .top-bar .contact-info a,
body[data-theme="atasehir"] .top-bar .contact-info a {
    color: #ffffff !important; /* Beyaz renk */
}

body[data-theme="kadikoy"] .top-bar a:hover,
body[data-theme="besiktas"] .top-bar a:hover,
body[data-theme="uskudar"] .top-bar a:hover,
body[data-theme="beyoglu"] .top-bar a:hover,
body[data-theme="sisli"] .top-bar a:hover,
body[data-theme="beylikduzu"] .top-bar a:hover,
body[data-theme="maltepe"] .top-bar a:hover,
body[data-theme="atasehir"] .top-bar a:hover,
body[data-theme="kadikoy"] .top-bar .contact-info a:hover,
body[data-theme="besiktas"] .top-bar .contact-info a:hover,
body[data-theme="uskudar"] .top-bar .contact-info a:hover,
body[data-theme="beyoglu"] .top-bar .contact-info a:hover,
body[data-theme="sisli"] .top-bar .contact-info a:hover,
body[data-theme="beylikduzu"] .top-bar .contact-info a:hover,
body[data-theme="maltepe"] .top-bar .contact-info a:hover,
body[data-theme="atasehir"] .top-bar .contact-info a:hover {
    color: rgba(255, 255, 255, 0.8) !important; /* Hover'da biraz soluk beyaz */
}

.contact-info {
    display: flex;
    align-items: center;
}

    .contact-info span {
        margin-right: 20px;
        display: flex;
        align-items: center;
    }

    .contact-info i {
        margin-right: 5px;
    }

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-left: 5px;
    transition: all var(--transition-fast);
}

    .social-links a:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

.navbar {
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    min-width: 90px;
    max-width: 120px;
    min-height: 90px;
    max-height: 120px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 15px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    overflow: hidden;
}

#company-logo {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
}

.brand-text {
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--dark-color);
    line-height: 1.2;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    padding: 1.5rem 1rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: all var(--transition-fast);
}

    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
        color: var(--primary-color);
    }

    .navbar-nav .nav-link.active {
        position: relative;
    }

        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            right: 1rem;
            height: 3px;
            background-color: var(--primary-color);
        }

.login-btn {
    padding: 0.5rem 1.2rem;
    border-radius: var(--border-radius);
}

.user-dropdown {
    padding: 0.5rem 1.2rem;
    border-radius: var(--border-radius);
}

.theme-selector {
    display: flex;
    align-items: center;
}

.theme-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 5px;
    border: 2px solid transparent;
    padding: 0;
}

    .theme-btn.active {
        border-color: var(--primary-color);
        transform: scale(1.1);
    }

    .theme-btn[data-theme="blue"] {
        background-color: #1a73e8;
    }

    .theme-btn[data-theme="green"] {
        background-color: #4caf50;
    }

    .theme-btn[data-theme="purple"] {
        background-color: #673ab7;
    }

    .theme-btn[data-theme="orange"] {
        background-color: #ff9800;
    }

.hero-section {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.hero-content {
    color: #ffffff;
    max-width: 650px;
    padding: 20px;
    z-index: 3;
}

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #ffffff;
    }

    .hero-content .highlight {
        color: var(--primary-color);
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__delay-1s {
    animation-delay: 0.3s;
}

.animate__delay-2s {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.features-section {
    background-color: #ffffff;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.feature-box {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: all var(--transition-fast);
    height: 100%;
}

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: var(--card-shadow-hover);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all var(--transition-fast);
}

.feature-box:hover .feature-icon {
    background-color: var(--primary-color);
    color: #ffffff;
}

.feature-box h3 {
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-color);
    margin-bottom: 0;
}

.insurance-types {
    background-color: var(--light-color);
    position: relative;
}

/* Hero ve Feature section'lar için blur efekti desteği */
.insurance-types::before,
.why-choose-us::before,
.hero-section::before,
.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.insurance-types > *,
.why-choose-us > *,
.hero-section > *,
.features-section > * {
    position: relative;
    z-index: 1;
}

.insurance-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 30px;
    text-align: center;
    transition: all var(--transition-fast);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    /* .insurance-card.active için border-top kaldırıldı - yerine renkli şeritler kullanılıyor (aşağıda ::before ile tanımlı) */

/* Ana sayfadaki sigorta kartlarına renkli şeritler ekle */
.insurance-types .row > div:nth-child(1) .insurance-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, rgba(28, 109, 163, 1) 0%, rgba(61, 194, 224, 1) 58%, rgba(83, 204, 237, 1) 100%);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    z-index: 1;
}

.insurance-types .row > div:nth-child(2) .insurance-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, rgba(42, 155, 80, 1) 0%, rgba(61, 224, 132, 1) 58%, rgba(142, 237, 83, 1) 100%);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    z-index: 1;
}

.insurance-types .row > div:nth-child(3) .insurance-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #ffc107;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    z-index: 1;
}

.insurance-types .row > div:nth-child(4) .insurance-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #0dcaf0;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    z-index: 1;
}

.insurance-types .row > div:nth-child(5) .insurance-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #c400e3;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    z-index: 1;
}

.insurance-types .row > div:nth-child(6) .insurance-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #dc3545;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    z-index: 1;
}

    .insurance-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--card-shadow-hover);
    }

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all var(--transition-fast);
}

.insurance-card.active .card-icon {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Ana sayfadaki sigorta kartları ikonları için branş renkleri */
.insurance-types .row > div:nth-child(1) .insurance-card.active .card-icon {
    background: linear-gradient(135deg, rgba(28, 109, 163, 1) 0%, rgba(61, 194, 224, 1) 50%, rgba(83, 204, 237, 1) 100%);
    color: #ffffff;
}

.insurance-types .row > div:nth-child(2) .insurance-card.active .card-icon {
    background: linear-gradient(135deg, rgba(42, 155, 80, 1) 0%, rgba(61, 224, 132, 1) 50%, rgba(142, 237, 83, 1) 100%);
    color: #ffffff;
}

.insurance-types .row > div:nth-child(3) .insurance-card.active .card-icon {
    background-color: #ffc107;
    color: #212529;
}

.insurance-types .row > div:nth-child(4) .insurance-card.active .card-icon {
    background-color: #0dcaf0;
    color: #212529;
}

.insurance-types .row > div:nth-child(5) .insurance-card.active .card-icon {
    background-color: #c400e3;
    color: #ffffff;
}

.insurance-types .row > div:nth-child(6) .insurance-card.active .card-icon {
    background-color: #dc3545;
    color: #ffffff;
}

.insurance-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.insurance-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    min-height: 50px;
}

.insurance-card.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 5px 40px;
    font-size: 0.8rem;
    transform: rotate(45deg);
    z-index: 10;
}

.hover-reveal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    border-radius: var(--border-radius);
    transition: all var(--transition-slow);
    padding: 20px;
    z-index: 2; /* Renkli şeritlerin üstünde olmalı */
}

.insurance-card:hover .hover-reveal {
    opacity: 0.97;
    transform: scale(1);
}

.reveal-content {
    color: #ffffff;
    text-align: left;
}

    .reveal-content h4 {
        color: #ffffff !important;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }
    
    .reveal-content p,
    .reveal-content span,
    .reveal-content div {
        color: #ffffff !important;
    }

    .reveal-content .btn-light {
        padding: 12px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .reveal-content .btn-light:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }

    .reveal-content ul {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 20px;
    }

        .reveal-content ul li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

            .reveal-content ul li::before {
                content: "\f00c";
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                position: absolute;
                left: 0;
                top: 2px;
                color: #ffffff;
            }

.why-choose-us {
    background-color: #ffffff;
}

/* Koyu temalar için why-choose-us bölümü */
body[data-theme="karakoy"] .why-choose-us,
body[data-theme="taksim"] .why-choose-us,
body[data-theme="levent"] .why-choose-us,
body[data-theme="etiler"] .why-choose-us {
    background-color: #2a2a2a !important;
}

body[data-theme="karakoy"] .why-choose-us .section-title,
body[data-theme="taksim"] .why-choose-us .section-title,
body[data-theme="levent"] .why-choose-us .section-title,
body[data-theme="etiler"] .why-choose-us .section-title {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .why-choose-us .section-subtitle,
body[data-theme="taksim"] .why-choose-us .section-subtitle,
body[data-theme="levent"] .why-choose-us .section-subtitle,
body[data-theme="etiler"] .why-choose-us .section-subtitle {
    color: var(--primary-color) !important;
}

body[data-theme="karakoy"] .why-choose-text h4,
body[data-theme="taksim"] .why-choose-text h4,
body[data-theme="levent"] .why-choose-text h4,
body[data-theme="etiler"] .why-choose-text h4 {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .why-choose-text p,
body[data-theme="taksim"] .why-choose-text p,
body[data-theme="levent"] .why-choose-text p,
body[data-theme="etiler"] .why-choose-text p {
    color: var(--text-color) !important;
}

/* Koyu temalar için "Buton Açıklamaları" bölümü - genel section stilleri */
body[data-theme="karakoy"] section:not(.hero-section):not(.insurance-types):not(.main-footer),
body[data-theme="taksim"] section:not(.hero-section):not(.insurance-types):not(.main-footer),
body[data-theme="levent"] section:not(.hero-section):not(.insurance-types):not(.main-footer),
body[data-theme="etiler"] section:not(.hero-section):not(.insurance-types):not(.main-footer) {
    background-color: #2a2a2a !important;
}

body[data-theme="karakoy"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h1,
body[data-theme="karakoy"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h2,
body[data-theme="karakoy"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h3,
body[data-theme="karakoy"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h4,
body[data-theme="taksim"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h1,
body[data-theme="taksim"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h2,
body[data-theme="taksim"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h3,
body[data-theme="taksim"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h4,
body[data-theme="levent"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h1,
body[data-theme="levent"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h2,
body[data-theme="levent"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h3,
body[data-theme="levent"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h4,
body[data-theme="etiler"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h1,
body[data-theme="etiler"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h2,
body[data-theme="etiler"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h3,
body[data-theme="etiler"] section:not(.hero-section):not(.insurance-types):not(.main-footer) h4 {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] section:not(.hero-section):not(.insurance-types):not(.main-footer) p,
body[data-theme="taksim"] section:not(.hero-section):not(.insurance-types):not(.main-footer) p,
body[data-theme="levent"] section:not(.hero-section):not(.insurance-types):not(.main-footer) p,
body[data-theme="etiler"] section:not(.hero-section):not(.insurance-types):not(.main-footer) p {
    color: var(--text-color) !important;
}

/* Buton Açıklamaları Wrapper - Tam genişlikte şerit */
.policy-buttons-legend-wrapper {
    width: 100%;
    background-color: #f8f9fa;
    padding: 0;
    margin: 0;
}

/* Koyu temalar için wrapper arka plan rengi */
body[data-theme="karakoy"] .policy-buttons-legend-wrapper,
body[data-theme="taksim"] .policy-buttons-legend-wrapper,
body[data-theme="levent"] .policy-buttons-legend-wrapper,
body[data-theme="etiler"] .policy-buttons-legend-wrapper {
    background-color: #2a2a2a !important;
}

/* Buton Açıklamaları İçerik - Container genişliğinde, footer ile hizalı */
.policy-buttons-legend-wrapper .container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Responsive: Mobilde container padding'i ayarla */
@media (max-width: 991.98px) {
    .policy-buttons-legend-wrapper .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Koyu temalar için "Buton Açıklamaları" bölümü (.policy-buttons-legend) */
body[data-theme="karakoy"] .policy-buttons-legend,
body[data-theme="taksim"] .policy-buttons-legend,
body[data-theme="levent"] .policy-buttons-legend,
body[data-theme="etiler"] .policy-buttons-legend {
    background-color: #2a2a2a !important;
    border-color: var(--border-color) !important;
}

body[data-theme="karakoy"] .policy-buttons-legend h6,
body[data-theme="taksim"] .policy-buttons-legend h6,
body[data-theme="levent"] .policy-buttons-legend h6,
body[data-theme="etiler"] .policy-buttons-legend h6 {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .policy-buttons-legend p,
body[data-theme="taksim"] .policy-buttons-legend p,
body[data-theme="levent"] .policy-buttons-legend p,
body[data-theme="etiler"] .policy-buttons-legend p {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .policy-buttons-legend .text-primary,
body[data-theme="taksim"] .policy-buttons-legend .text-primary,
body[data-theme="levent"] .policy-buttons-legend .text-primary,
body[data-theme="etiler"] .policy-buttons-legend .text-primary {
    color: var(--primary-color) !important;
}

.why-choose-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

    .experience-badge .years {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1;
    }

    .experience-badge .text {
        font-size: 0.9rem;
        text-transform: uppercase;
        line-height: 1.2;
    }

.why-choose-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.why-choose-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.why-choose-text h4 {
    margin-bottom: 10px;
}

.why-choose-text p {
    margin-bottom: 0;
    color: var(--text-color);
}

.cta-section {
    background-color: var(--primary-color);
    color: #ffffff;
}

.cta-wrapper {
    padding: 60px 40px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

    .cta-wrapper::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .cta-wrapper::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 250px;
        height: 250px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

.cta-title {
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 600px;
}

.stats-section {
    background-color: #ffffff;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.stat-text {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0;
}

.partners-section {
    background-color: var(--light-color);
}

.partner-item {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 15px;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-fast);
}

    .partner-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--card-shadow-hover);
    }

    .partner-item img {
        max-width: 100%;
        max-height: 100%;
        filter: grayscale(100%);
        transition: all var(--transition-fast);
    }

    .partner-item:hover img {
        filter: grayscale(0%);
    }

.main-footer {
    background-color: #1a2a36;
    color: #ffffff;
    padding: 80px 0 0;
    margin-top: auto;
}

.footer-logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    min-width: 100px;
    max-width: 120px;
    min-height: 100px;
    max-height: 120px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-bottom: 15px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.footer-logo img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
}

.footer-logo h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-title {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--primary-color);
    }

.footer-links {
    list-style-type: none;
    padding-left: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        transition: all var(--transition-fast);
    }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 5px;
        }

.disabled-link {
    color: rgba(255, 255, 255, 0.4) !important;
    cursor: not-allowed;
}

.footer-contact {
    list-style-type: none;
    padding-left: 0;
}

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

        .footer-contact li i {
            color: var(--primary-color);
            margin-right: 15px;
            margin-top: 5px;
        }

        .footer-contact li a {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-contact li a:hover {
            color: #ffffff;
        }

        .footer-contact li span {
            color: rgba(255, 255, 255, 0.7);
        }

/* Koyu temalar için footer contact bilgileri */
body[data-theme="karakoy"] .footer-contact li span,
body[data-theme="taksim"] .footer-contact li span,
body[data-theme="levent"] .footer-contact li span,
body[data-theme="etiler"] .footer-contact li span {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Footer'daki tüm text elementleri için (çalışma saatleri dahil) */
body[data-theme="karakoy"] .footer-contact li,
body[data-theme="taksim"] .footer-contact li,
body[data-theme="levent"] .footer-contact li,
body[data-theme="etiler"] .footer-contact li {
    color: rgba(255, 255, 255, 0.7) !important;
}

body[data-theme="karakoy"] .footer-contact li span,
body[data-theme="taksim"] .footer-contact li span,
body[data-theme="levent"] .footer-contact li span,
body[data-theme="etiler"] .footer-contact li span {
    color: rgba(255, 255, 255, 0.7) !important;
}

.social-links-footer {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    transition: all var(--transition-fast);
}

    .social-icon:hover {
        background-color: var(--primary-color);
        color: #ffffff;
        transform: translateY(-5px);
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 60px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 20px;
    transition: all var(--transition-fast);
}

    .footer-bottom-links a:hover {
        color: #ffffff;
    }

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 999;
}

    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: var(--primary-dark);
        color: #ffffff;
        transform: translateY(-5px);
    }

/* Koyu temalar için back-to-top butonu */
body[data-theme="karakoy"] .back-to-top,
body[data-theme="taksim"] .back-to-top,
body[data-theme="levent"] .back-to-top,
body[data-theme="etiler"] .back-to-top {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .back-to-top:hover,
body[data-theme="taksim"] .back-to-top:hover,
body[data-theme="levent"] .back-to-top:hover,
body[data-theme="etiler"] .back-to-top:hover {
    background-color: var(--primary-dark) !important;
    color: #ffffff !important;
}

/* Beyaz temalar için footer - beyaz ve tonlarında */
body[data-theme="kadikoy"] .main-footer,
body[data-theme="besiktas"] .main-footer,
body[data-theme="uskudar"] .main-footer,
body[data-theme="beyoglu"] .main-footer,
body[data-theme="sisli"] .main-footer,
body[data-theme="beylikduzu"] .main-footer,
body[data-theme="maltepe"] .main-footer,
body[data-theme="atasehir"] .main-footer {
    background-color: #f8f9fa !important; /* Açık gri-beyaz ton */
    color: #212529 !important; /* Koyu metin */
}

body[data-theme="kadikoy"] .footer-logo h4,
body[data-theme="besiktas"] .footer-logo h4,
body[data-theme="uskudar"] .footer-logo h4,
body[data-theme="beyoglu"] .footer-logo h4,
body[data-theme="sisli"] .footer-logo h4,
body[data-theme="beylikduzu"] .footer-logo h4,
body[data-theme="maltepe"] .footer-logo h4,
body[data-theme="atasehir"] .footer-logo h4 {
    color: #212529 !important; /* Koyu metin */
}

body[data-theme="kadikoy"] .footer-desc,
body[data-theme="besiktas"] .footer-desc,
body[data-theme="uskudar"] .footer-desc,
body[data-theme="beyoglu"] .footer-desc,
body[data-theme="sisli"] .footer-desc,
body[data-theme="beylikduzu"] .footer-desc,
body[data-theme="maltepe"] .footer-desc,
body[data-theme="atasehir"] .footer-desc {
    color: #6c757d !important; /* Gri metin */
}

body[data-theme="kadikoy"] .footer-title,
body[data-theme="besiktas"] .footer-title,
body[data-theme="uskudar"] .footer-title,
body[data-theme="beyoglu"] .footer-title,
body[data-theme="sisli"] .footer-title,
body[data-theme="beylikduzu"] .footer-title,
body[data-theme="maltepe"] .footer-title,
body[data-theme="atasehir"] .footer-title {
    color: #212529 !important; /* Koyu metin */
}

body[data-theme="kadikoy"] .footer-links a,
body[data-theme="besiktas"] .footer-links a,
body[data-theme="uskudar"] .footer-links a,
body[data-theme="beyoglu"] .footer-links a,
body[data-theme="sisli"] .footer-links a,
body[data-theme="beylikduzu"] .footer-links a,
body[data-theme="maltepe"] .footer-links a,
body[data-theme="atasehir"] .footer-links a {
    color: #495057 !important; /* Koyu gri linkler */
}

body[data-theme="kadikoy"] .footer-links a:hover,
body[data-theme="besiktas"] .footer-links a:hover,
body[data-theme="uskudar"] .footer-links a:hover,
body[data-theme="beyoglu"] .footer-links a:hover,
body[data-theme="sisli"] .footer-links a:hover,
body[data-theme="beylikduzu"] .footer-links a:hover,
body[data-theme="maltepe"] .footer-links a:hover,
body[data-theme="atasehir"] .footer-links a:hover {
    color: var(--primary-color) !important; /* Hover'da tema rengi */
}

body[data-theme="kadikoy"] .footer-contact li i,
body[data-theme="besiktas"] .footer-contact li i,
body[data-theme="uskudar"] .footer-contact li i,
body[data-theme="beyoglu"] .footer-contact li i,
body[data-theme="sisli"] .footer-contact li i,
body[data-theme="beylikduzu"] .footer-contact li i,
body[data-theme="maltepe"] .footer-contact li i,
body[data-theme="atasehir"] .footer-contact li i {
    color: var(--primary-color) !important; /* Tema rengi ikonlar */
}

body[data-theme="kadikoy"] .footer-contact li,
body[data-theme="besiktas"] .footer-contact li,
body[data-theme="uskudar"] .footer-contact li,
body[data-theme="beyoglu"] .footer-contact li,
body[data-theme="sisli"] .footer-contact li,
body[data-theme="beylikduzu"] .footer-contact li,
body[data-theme="maltepe"] .footer-contact li,
body[data-theme="atasehir"] .footer-contact li {
    color: #495057 !important; /* Koyu gri metin */
}

body[data-theme="kadikoy"] .footer-contact li span,
body[data-theme="besiktas"] .footer-contact li span,
body[data-theme="uskudar"] .footer-contact li span,
body[data-theme="beyoglu"] .footer-contact li span,
body[data-theme="sisli"] .footer-contact li span,
body[data-theme="beylikduzu"] .footer-contact li span,
body[data-theme="maltepe"] .footer-contact li span,
body[data-theme="atasehir"] .footer-contact li span {
    color: #495057 !important; /* Koyu gri metin */
}

body[data-theme="kadikoy"] .footer-contact li a,
body[data-theme="besiktas"] .footer-contact li a,
body[data-theme="uskudar"] .footer-contact li a,
body[data-theme="beyoglu"] .footer-contact li a,
body[data-theme="sisli"] .footer-contact li a,
body[data-theme="beylikduzu"] .footer-contact li a,
body[data-theme="maltepe"] .footer-contact li a,
body[data-theme="atasehir"] .footer-contact li a {
    color: #495057 !important; /* Koyu gri linkler */
}

body[data-theme="kadikoy"] .footer-contact li a:hover,
body[data-theme="besiktas"] .footer-contact li a:hover,
body[data-theme="uskudar"] .footer-contact li a:hover,
body[data-theme="beyoglu"] .footer-contact li a:hover,
body[data-theme="sisli"] .footer-contact li a:hover,
body[data-theme="beylikduzu"] .footer-contact li a:hover,
body[data-theme="maltepe"] .footer-contact li a:hover,
body[data-theme="atasehir"] .footer-contact li a:hover {
    color: var(--primary-color) !important; /* Hover'da tema rengi */
}

body[data-theme="kadikoy"] .social-icon,
body[data-theme="besiktas"] .social-icon,
body[data-theme="uskudar"] .social-icon,
body[data-theme="beyoglu"] .social-icon,
body[data-theme="sisli"] .social-icon,
body[data-theme="beylikduzu"] .social-icon,
body[data-theme="maltepe"] .social-icon,
body[data-theme="atasehir"] .social-icon {
    background-color: rgba(0, 0, 0, 0.05) !important; /* Açık gri arka plan */
    color: #495057 !important; /* Koyu gri ikon */
}

body[data-theme="kadikoy"] .social-icon:hover,
body[data-theme="besiktas"] .social-icon:hover,
body[data-theme="uskudar"] .social-icon:hover,
body[data-theme="beyoglu"] .social-icon:hover,
body[data-theme="sisli"] .social-icon:hover,
body[data-theme="beylikduzu"] .social-icon:hover,
body[data-theme="maltepe"] .social-icon:hover,
body[data-theme="atasehir"] .social-icon:hover {
    background-color: var(--primary-color) !important; /* Hover'da tema rengi */
    color: #ffffff !important; /* Beyaz ikon */
}

body[data-theme="kadikoy"] .footer-bottom,
body[data-theme="besiktas"] .footer-bottom,
body[data-theme="uskudar"] .footer-bottom,
body[data-theme="beyoglu"] .footer-bottom,
body[data-theme="sisli"] .footer-bottom,
body[data-theme="beylikduzu"] .footer-bottom,
body[data-theme="maltepe"] .footer-bottom,
body[data-theme="atasehir"] .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.1) !important; /* Açık gri border */
}

body[data-theme="kadikoy"] .copyright,
body[data-theme="besiktas"] .copyright,
body[data-theme="uskudar"] .copyright,
body[data-theme="beyoglu"] .copyright,
body[data-theme="sisli"] .copyright,
body[data-theme="beylikduzu"] .copyright,
body[data-theme="maltepe"] .copyright,
body[data-theme="atasehir"] .copyright {
    color: #6c757d !important; /* Gri metin */
}

body[data-theme="kadikoy"] .footer-bottom-links a,
body[data-theme="besiktas"] .footer-bottom-links a,
body[data-theme="uskudar"] .footer-bottom-links a,
body[data-theme="beyoglu"] .footer-bottom-links a,
body[data-theme="sisli"] .footer-bottom-links a,
body[data-theme="beylikduzu"] .footer-bottom-links a,
body[data-theme="maltepe"] .footer-bottom-links a,
body[data-theme="atasehir"] .footer-bottom-links a {
    color: #6c757d !important; /* Gri linkler */
}

body[data-theme="kadikoy"] .footer-bottom-links a:hover,
body[data-theme="besiktas"] .footer-bottom-links a:hover,
body[data-theme="uskudar"] .footer-bottom-links a:hover,
body[data-theme="beyoglu"] .footer-bottom-links a:hover,
body[data-theme="sisli"] .footer-bottom-links a:hover,
body[data-theme="beylikduzu"] .footer-bottom-links a:hover,
body[data-theme="maltepe"] .footer-bottom-links a:hover,
body[data-theme="atasehir"] .footer-bottom-links a:hover {
    color: var(--primary-color) !important; /* Hover'da tema rengi */
}

/* Back-to-top butonu ikon rengi - beyaz temalar */
body[data-theme="kadikoy"] .back-to-top,
body[data-theme="besiktas"] .back-to-top,
body[data-theme="uskudar"] .back-to-top,
body[data-theme="beyoglu"] .back-to-top,
body[data-theme="sisli"] .back-to-top,
body[data-theme="beylikduzu"] .back-to-top,
body[data-theme="maltepe"] .back-to-top,
body[data-theme="atasehir"] .back-to-top {
    background-color: var(--primary-color) !important;
    color: #ffffff !important; /* Beyaz ikon */
}

body[data-theme="kadikoy"] .back-to-top i,
body[data-theme="besiktas"] .back-to-top i,
body[data-theme="uskudar"] .back-to-top i,
body[data-theme="beyoglu"] .back-to-top i,
body[data-theme="sisli"] .back-to-top i,
body[data-theme="beylikduzu"] .back-to-top i,
body[data-theme="maltepe"] .back-to-top i,
body[data-theme="atasehir"] .back-to-top i {
    color: #ffffff !important; /* Beyaz ikon */
}

body[data-theme="kadikoy"] .back-to-top:hover,
body[data-theme="besiktas"] .back-to-top:hover,
body[data-theme="uskudar"] .back-to-top:hover,
body[data-theme="beyoglu"] .back-to-top:hover,
body[data-theme="sisli"] .back-to-top:hover,
body[data-theme="beylikduzu"] .back-to-top:hover,
body[data-theme="maltepe"] .back-to-top:hover,
body[data-theme="atasehir"] .back-to-top:hover {
    background-color: var(--primary-dark) !important;
    color: #ffffff !important; /* Hover'da da beyaz ikon */
}

body[data-theme="kadikoy"] .back-to-top:hover i,
body[data-theme="besiktas"] .back-to-top:hover i,
body[data-theme="uskudar"] .back-to-top:hover i,
body[data-theme="beyoglu"] .back-to-top:hover i,
body[data-theme="sisli"] .back-to-top:hover i,
body[data-theme="beylikduzu"] .back-to-top:hover i,
body[data-theme="maltepe"] .back-to-top:hover i,
body[data-theme="atasehir"] .back-to-top:hover i {
    color: #ffffff !important; /* Hover'da da beyaz ikon */
}

@media (max-width: 1199.98px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
    }

        .navbar-nav .nav-link.active::after {
            display: none;
        }

    .hero-section {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .logo-wrapper {
        width: 75px !important;
        height: 75px !important;
        min-width: 75px !important;
        max-width: 75px !important;
        min-height: 75px !important;
        max-height: 75px !important;
        margin-right: 12px;
        padding: 8px;
    }

    .brand-text {
        font-size: 1.6rem;
    }

    .footer-logo-wrapper {
        width: 120px !important;
        height: 120px !important;
        min-width: 90px !important;
        max-width: 120px !important;
        min-height: 90px !important;
        max-height: 120px !important;
        padding: 10px;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .top-bar {
        display: none;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 50px 0;
    }

    .hero-section {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .logo-wrapper {
        width: 65px !important;
        height: 65px !important;
        min-width: 65px !important;
        max-width: 65px !important;
        min-height: 65px !important;
        max-height: 65px !important;
        margin-right: 10px;
        padding: 7px;
    }

    .brand-text {
        font-size: 1.4rem;
    }

    .footer-logo-wrapper {
        width: 80px !important;
        height: 80px !important;
        min-width: 80px !important;
        max-width: 80px !important;
        min-height: 80px !important;
        max-height: 80px !important;
        padding: 8px;
    }

    .reveal-content .btn-light {
        padding: 10px 24px;
        font-size: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .why-choose-image {
        margin-bottom: 30px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }

        .experience-badge .years {
            font-size: 2rem;
        }

        .experience-badge .text {
            font-size: 0.8rem;
        }

    .cta-wrapper {
        padding: 40px 20px;
    }

    .partner-item {
        width: 130px;
        height: 70px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

        .hero-buttons .btn {
            width: 100%;
        }

    .section-title {
        font-size: 1.6rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

        .footer-bottom-links a {
            margin: 5px 10px;
        }

    .social-links-footer {
        justify-content: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-text {
        font-size: 0.9rem;
    }
}

.top-bar {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;
}

    .top-bar a {
        color: #fff;
        text-decoration: none;
        transition: opacity 0.3s;
    }

        .top-bar a:hover {
            opacity: 0.85;
        }

.social-links a {
    display: inline-flex;
    width: 28px;
    height: 28px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    margin-left: 8px;
    transition: all 0.3s;
}

    .social-links a:hover {
        background-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 120px !important;
    height: 120px !important;
    min-width: 90px !important;
    max-width: 120px !important;
    min-height: 90px !important;
    max-height: 120px !important;
    background-color: #ffffff !important;
    border-radius: 50% !important;
    margin-right: 15px !important;
    padding: 10px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
}

.navbar-brand #company-logo {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border-radius: 0 !important;
    display: block !important;
}

/* Eski .brand-text tanımı kaldırıldı - yukarıda güncellendi (2.2rem) */

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 1rem;
    position: relative;
    transition: color 0.3s;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-color);
    }

        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            right: 1rem;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 2px 2px 0 0;
        }

.header-right {
    display: flex;
    align-items: center;
}

.phone-button {
    border: 1px solid var(--border-color);
    background-color: #f8f9fa;
    border-radius: 30px;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    color: var(--dark-color);
    transition: all 0.3s;
}

    .phone-button:hover {
        background-color: var(--primary-light);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

.small-icon {
    font-size: 0.7rem;
}

.user-dropdown {
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 0.4rem 1rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

    .user-dropdown:hover {
        background-color: var(--primary-light);
        border-color: var(--primary-color);
    }

.login-btn {
    border-radius: 30px;
    padding: 0.4rem 1.2rem;
    font-weight: 500;
}

.theme-selector {
    display: flex;
    gap: 5px;
}

.theme-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    padding: 0;
    transition: all 0.3s;
}

    .theme-btn.active {
        transform: scale(1.2);
        border-color: rgba(255, 255, 255, 0.7);
    }

    .theme-btn:hover {
        transform: scale(1.1);
    }

@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 0.6rem 1rem;
    }

        .navbar-nav .nav-link.active::after {
            display: none;
        }

    .header-right {
        margin-top: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .navbar-collapse {
        padding: 1rem 0;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        display: none;
    }

    .header-right {
        width: 100%;
    }

    .phone-display {
        display: none !important;
    }

    .theme-selector {
        margin-left: 0 !important;
    }
}

.navbar {
    padding: 0.5rem 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

    .navbar-nav .nav-item {
        display: flex;
        align-items: center;
    }

    .navbar-nav .nav-link {
        padding: 1.5rem 1rem;
        height: 100%;
        display: flex;
        align-items: center;
    }

.header-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar .header-right .btn.login-btn,
.navbar .header-right .btn.user-dropdown,
.navbar .header-right .btn.phone-button {
    height: 38px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.card .btn:not(.login-btn):not(.user-dropdown):not(.phone-button),
.card-body .btn:not(.login-btn):not(.user-dropdown):not(.phone-button),
.quote-actions .btn:not(.login-btn):not(.user-dropdown):not(.phone-button),
.testimonial-item .btn:not(.login-btn):not(.user-dropdown):not(.phone-button),
.insurance-card .btn:not(.login-btn):not(.user-dropdown):not(.phone-button) {
    height: auto;
    padding: 0.5rem 1.5rem;
    display: inline-block;
}

.btn-teklifleri-goruntule,
.btn-pdf-indir {
    min-width: 160px;
    margin: 5px;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-fast);
}
.proposal-status-container {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    min-width: unset;
    flex-shrink: 0;
    gap: 4px;
    padding-right: 0px;
    margin-bottom: 0px;
}
.btn-pdf-indir {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

    .btn-pdf-indir:hover {
        background-color: #c82333 !important;
        border-color: #bd2130 !important;
        transform: translateY(-2px);
        box-shadow: var(--card-shadow-hover);
    }

.btn-teklifleri-goruntule:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.accordion-item {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 0.6rem 1rem;
        height: auto;
    }

    .header-right {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .quote-actions {
        flex-direction: column;
        width: 100%;
    }

        .quote-actions .btn {
            width: 100%;
            margin: 5px 0;
        }
}

@media (max-width: 768px) {
    .proposal-status-container {
        display: flex;
        align-items: center;
        box-sizing: border-box;
        text-overflow: ellipsis;
        gap: 4px;
        padding-right: 0px;
        margin-bottom: 0px;
        white-space: nowrap;
    }
    .card-body-params {
        font-size: 14px;
    }

    .status-content {
        font-size: 14px !important;
    }

    .status-message {
        font-size: 14px !important;
    }

    .proposal-line {
        padding: 12px;
        width: 100%;
        background-color: var(--light-color);
        border-radius: var(--border-radius);
        margin-bottom: clamp(8px, 2vw, 10px);
        box-shadow: var(--card-shadow);
        transition: all var(--transition-fast);
        gap: 10px;
        max-width: 100%;
        overflow: hidden;
        flex-flow: column;
        transform: translateY(0px);
    }

    .swal-mobile-popup {
        width: 95% !important;
        max-width: 350px !important;
        padding: 1rem !important;
    }

    .swal-mobile-title {
        font-size: 18px !important;
        margin-bottom: 0.5rem !important;
    }

    .swal-mobile-content {
        margin: 0 !important;
        padding: 0 !important;
    }

    .swal-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        z-index: 1;
        box-sizing: border-box;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: auto;
        margin: 1.25em auto 0;
        padding: 0;
        column-gap: 20px;
    }

    .swal-mobile-actions {
        display: grid !important;
        margin-top: 1rem !important;
        gap: 0.5rem !important;
        grid-template-columns: 1fr 0.5fr;
    }

    .swal-mobile-button {
        margin: 0 !important;
        padding: 0.6rem 1rem !important;
        width: 100% !important;
        font-size: 14px !important;
    }

    .verification-wrapper p {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }

    .verification-code-container {
        gap: 4px !important;
        margin: 15px 0 !important;
    }

    .code-digit {
        width: 38px !important;
        height: 44px !important;
        font-size: 18px !important;
    }

    #timer-container {
        font-size: 13px !important;
    }

    .countdown-container svg {
        width: 16px !important;
        height: 16px !important;
    }

    .swal2-container {
        font-size: 0.125em !important;
    }

    #timer-text {
        font-size: 13px !important;
    }

    #resend-container {
        font-size: 13px !important;
    }

    #notification {
        font-size: 13px !important;
    }

    @media (max-width: 340px) {
        .code-digit {
            width: 32px !important;
            height: 38px !important;
            font-size: 16px !important;
        }

        .verification-code-container {
            gap: 3px !important;
        }
    }
}

/* iOS için input görünümü düzeltme */
input.code-digit {
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none !important;
}

.update-animation {
    animation: updateFade 0.5s ease-in-out;
}
.navbar-nav .dropdown-menu {
    position: absolute !important;
    z-index: 1051;
    top: 100%;
    right: 0;
    left: auto;
    min-width: 220px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.navbar-nav .dropdown {
    position: relative;
}
@keyframes updateFade {
    0% {
        background-color: rgba(var(--primary-color-rgb), 0.1);
    }

    100% {
        background-color: transparent;
    }
}

/* Popup Notification Styles */
.popup-notification {
    position: fixed;
    top: 60px;
    right: 20px;
    width: 350px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.4s ease-in-out;
    overflow: hidden;
}

.popup-notification.show {
    transform: translateX(0);
}

.popup-notification .notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.popup-notification .notification-title {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    display: flex;
    align-items: center;
}

.popup-notification .notification-title i {
    margin-right: 8px;
    font-size: 18px;
}

.popup-notification .notification-close {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #6c757d;
}

.popup-notification .notification-content {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.popup-notification .notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: var(--bs-primary);
    width: 100%;
    transform-origin: left center;
    animation: countdown 10s linear forwards;
}

@keyframes countdown {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

.popup-notification.warning .notification-title i {
    color: #ffc107;
}

.popup-notification.warning .notification-progress {
    background-color: #ffc107;
}

.popup-notification.info .notification-title i {
    color: #0d6efd;
}

.popup-notification.success .notification-title i {
    color: #198754;
}

.popup-notification.success .notification-progress {
    background-color: #198754;
}

.popup-notification.error .notification-title i {
    color: #dc3545;
}

.popup-notification.error .notification-progress {
    background-color: #dc3545;
}

/* Koyu temalar için popup notification */
body[data-theme="karakoy"] .popup-notification,
body[data-theme="taksim"] .popup-notification,
body[data-theme="levent"] .popup-notification,
body[data-theme="etiler"] .popup-notification {
    background-color: rgba(50, 50, 50, 0.95) !important; /* Siyahın tonları */
    border: 1px solid var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .popup-notification .notification-title,
body[data-theme="taksim"] .popup-notification .notification-title,
body[data-theme="levent"] .popup-notification .notification-title,
body[data-theme="etiler"] .popup-notification .notification-title {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .popup-notification .notification-content,
body[data-theme="taksim"] .popup-notification .notification-content,
body[data-theme="levent"] .popup-notification .notification-content,
body[data-theme="etiler"] .popup-notification .notification-content {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .popup-notification .notification-close,
body[data-theme="taksim"] .popup-notification .notification-close,
body[data-theme="levent"] .popup-notification .notification-close,
body[data-theme="etiler"] .popup-notification .notification-close {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .popup-notification .notification-close:hover,
body[data-theme="taksim"] .popup-notification .notification-close:hover,
body[data-theme="levent"] .popup-notification .notification-close:hover,
body[data-theme="etiler"] .popup-notification .notification-close:hover {
    color: var(--heading-color) !important;
}

/* Koyu temalar için popup notification icon renkleri korunmalı */
body[data-theme="karakoy"] .popup-notification.success .notification-title i,
body[data-theme="taksim"] .popup-notification.success .notification-title i,
body[data-theme="levent"] .popup-notification.success .notification-title i,
body[data-theme="etiler"] .popup-notification.success .notification-title i {
    color: #198754 !important; /* Yeşil kalmalı */
}

body[data-theme="karakoy"] .popup-notification.warning .notification-title i,
body[data-theme="taksim"] .popup-notification.warning .notification-title i,
body[data-theme="levent"] .popup-notification.warning .notification-title i,
body[data-theme="etiler"] .popup-notification.warning .notification-title i {
    color: #ffc107 !important; /* Sarı kalmalı */
}

body[data-theme="karakoy"] .popup-notification.info .notification-title i,
body[data-theme="taksim"] .popup-notification.info .notification-title i,
body[data-theme="levent"] .popup-notification.info .notification-title i,
body[data-theme="etiler"] .popup-notification.info .notification-title i {
    color: #0d6efd !important; /* Mavi kalmalı */
}

body[data-theme="karakoy"] .popup-notification.error .notification-title i,
body[data-theme="taksim"] .popup-notification.error .notification-title i,
body[data-theme="levent"] .popup-notification.error .notification-title i,
body[data-theme="etiler"] .popup-notification.error .notification-title i {
    color: #dc3545 !important; /* Kırmızı kalmalı */
}

/* Karşılaştırma raporları stilleri */
.comparison-reports-grid {
    margin-top: 20px;
}

.comparison-report-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.comparison-report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.report-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.report-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}

.report-info {
    flex: 1;
}

.report-title {
    font-weight: 600;
    font-size: 16px;
    color: #495057;
    margin-bottom: 4px;
}

.report-date {
    font-size: 14px;
    color: #6c757d;
}

.report-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.report-details {
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.detail-item i {
    color: #007bff;
    width: 16px;
}

.report-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.report-actions .btn {
    width: 100%;
    font-size: 12px;
    padding: 8px 12px;
}

/* Mobil uyumluluk */
@media (max-width: 767.98px) {
    .comparison-report-card {
        padding: 15px;
    }
    
    .report-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 12px;
    }
    
    .report-title {
        font-size: 14px;
    }
    
    .report-date {
        font-size: 12px;
    }
    
    .report-actions {
        flex-direction: column;
        gap: 6px;
    }
    
    .report-actions .btn {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* Poliçeleştirme modal'ı için scroll içindeki modal footer */
#policyCreationModal .modal-footer-scrollable {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 15px 20px;
    margin: 0 -20px -20px -20px;
    border-radius: 0 0 8px 8px;
    display: none; /* Desktop'ta gizle */
}

#policyCreationModal .modal-footer-scrollable .btn {
    margin-bottom: 0;
}

/* Poliçeleştirme modal'ı için desktop'ta normal modal footer göster */
@media (min-width: 768px) {
    #policyCreationModal .modal-footer-scrollable {
        display: none !important; /* Desktop'ta gizle */
    }
    
    #policyCreationModal .modal-footer {
        display: flex !important; /* Desktop'ta normal footer'ı göster */
    }
}

/* Quote Card Styles for Live Queries */
.quote-card {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
    margin-bottom: 15px;
}

.quote-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.themed-card {
    background-color: #e8f5e9;
}

.white-card {
    background-color: #ffffff;
}

.company-logo-container {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background-color: #fff;
    border-radius: 4px;
    padding: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-small {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
}

.company-name {
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.premium-value {
    display: inline-block;
    white-space: nowrap;
    font-weight: 600;
    color: var(--primary-color);
}

.comparison-checkbox-column {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    min-width: 30px;
}

.comparison-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.proposal-value {
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.proposal-value:hover {
    background-color: rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
    .quote-card {
        padding: 1rem 1.5rem;
    }

    .company-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .proposal-value {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .premium-value {
        white-space: nowrap;
        margin-left: 25px;
    }
}

@media (max-width: 767.98px) {
    .quote-card {
        padding: 1rem;
    }
}

/* Poliçeleştirme modal'ı için mobilde scroll footer'ı göster */
@media (max-width: 767.98px) {
    #policyCreationModal .modal-footer-scrollable {
        display: block !important;
        padding: 10px 15px;
        margin: 0 -15px -10px -15px;
        position: relative; /* Mobilde normal akış */
    }
    
    #policyCreationModal .modal-footer {
        display: none !important;
    }
    
    #policyCreationModal .modal-footer-scrollable .d-flex {
        flex-direction: column;
        gap: 10px;
    }
    
    #policyCreationModal .modal-footer-scrollable .d-flex > div {
        width: 100%;
        justify-content: center;
    }
    
    #policyCreationModal .modal-footer-scrollable .btn {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* Quote results padding */
#quote-results {
    padding: 15px 5px;
}

/* Company name responsive font size */
.company-name {
    font-size: clamp(0.6rem, 1.8vw, 0.95rem);
    line-height: 1.1;
    max-width: 100%;
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
    min-width: 0;
    flex-shrink: 1;
}

/* WhatsApp Teklif Sayfası Stilleri */
.whatsapp-teklif-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
}

.whatsapp-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-fast);
    cursor: pointer;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.whatsapp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.whatsapp-card .card-image {
    position: relative;
    overflow: hidden;
    height: auto;
}

.whatsapp-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.whatsapp-card:hover .card-image img {
    transform: scale(1.05);
}

.whatsapp-card .card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.whatsapp-card .card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.whatsapp-card .card-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.whatsapp-card .whatsapp-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    transition: all var(--transition-fast);
}

.whatsapp-card:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .whatsapp-card .card-image {
        height: auto;
    }
    
    .whatsapp-card .card-content {
        padding: 1rem;
    }
    
    .whatsapp-card .card-content h3 {
        font-size: 1.1rem;
    }
    
    .whatsapp-card .whatsapp-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .whatsapp-card .card-image {
        height: auto;
    }
    
    .whatsapp-card .card-content {
        padding: 0.75rem;
    }
    
    .whatsapp-card .card-content h3 {
        font-size: 1rem;
    }
    
    .whatsapp-card .whatsapp-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* ============================================
   KOYU TEMALAR İÇİN ÖZEL STİLLER
   ============================================ */

/* Koyu temalar için body ve genel stiller */
body[data-theme="karakoy"],
body[data-theme="taksim"],
body[data-theme="levent"],
body[data-theme="etiler"] {
    background-color: var(--light-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için header */
body[data-theme="karakoy"] .main-header,
body[data-theme="taksim"] .main-header,
body[data-theme="levent"] .main-header,
body[data-theme="etiler"] .main-header {
    background-color: var(--light-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

/* Koyu temalar için navbar brand text */
body[data-theme="karakoy"] .brand-text,
body[data-theme="taksim"] .brand-text,
body[data-theme="levent"] .brand-text,
body[data-theme="etiler"] .brand-text {
    color: var(--heading-color) !important;
}

/* Koyu temalar için navbar linkleri */
body[data-theme="karakoy"] .navbar-nav .nav-link,
body[data-theme="taksim"] .navbar-nav .nav-link,
body[data-theme="levent"] .navbar-nav .nav-link,
body[data-theme="etiler"] .navbar-nav .nav-link {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .navbar-nav .nav-link:hover,
body[data-theme="karakoy"] .navbar-nav .nav-link.active,
body[data-theme="taksim"] .navbar-nav .nav-link:hover,
body[data-theme="taksim"] .navbar-nav .nav-link.active,
body[data-theme="levent"] .navbar-nav .nav-link:hover,
body[data-theme="levent"] .navbar-nav .nav-link.active,
body[data-theme="etiler"] .navbar-nav .nav-link:hover,
body[data-theme="etiler"] .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Koyu temalar için section title ve subtitle */
body[data-theme="karakoy"] .section-title,
body[data-theme="taksim"] .section-title,
body[data-theme="levent"] .section-title,
body[data-theme="etiler"] .section-title {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .section-subtitle,
body[data-theme="taksim"] .section-subtitle,
body[data-theme="levent"] .section-subtitle,
body[data-theme="etiler"] .section-subtitle {
    color: var(--primary-color) !important;
}

body[data-theme="karakoy"] .section-description,
body[data-theme="taksim"] .section-description,
body[data-theme="levent"] .section-description,
body[data-theme="etiler"] .section-description {
    color: var(--text-color) !important;
}

/* Koyu temalar için hero görseli üzerindeki yazılar - text-shadow ile görünürlük artırma */
/* Koyu temalar için section başlıkları - siyah yazı + beyaz shadow (eski siyah shadow kuralları kaldırıldı, yeni kurallar aşağıda) */

/* Açık temalar için section başlıkları - yazı rengi textColor'dan, shadow beyaz */
body[data-theme="kadikoy"] .insurance-types .section-subtitle,
body[data-theme="besiktas"] .insurance-types .section-subtitle,
body[data-theme="uskudar"] .insurance-types .section-subtitle,
body[data-theme="beyoglu"] .insurance-types .section-subtitle,
body[data-theme="sisli"] .insurance-types .section-subtitle,
body[data-theme="beylikduzu"] .insurance-types .section-subtitle,
body[data-theme="maltepe"] .insurance-types .section-subtitle,
body[data-theme="atasehir"] .insurance-types .section-subtitle,
body[data-theme="kadikoy"] .hero-section .section-subtitle,
body[data-theme="besiktas"] .hero-section .section-subtitle,
body[data-theme="uskudar"] .hero-section .section-subtitle,
body[data-theme="beyoglu"] .hero-section .section-subtitle,
body[data-theme="sisli"] .hero-section .section-subtitle,
body[data-theme="beylikduzu"] .hero-section .section-subtitle,
body[data-theme="maltepe"] .hero-section .section-subtitle,
body[data-theme="atasehir"] .hero-section .section-subtitle {
    color: var(--text-color) !important;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9), 
                 0 0 8px rgba(255, 255, 255, 0.7),
                 -1px -1px 2px rgba(255, 255, 255, 0.9) !important;
}

body[data-theme="kadikoy"] .insurance-types .section-title,
body[data-theme="besiktas"] .insurance-types .section-title,
body[data-theme="uskudar"] .insurance-types .section-title,
body[data-theme="beyoglu"] .insurance-types .section-title,
body[data-theme="sisli"] .insurance-types .section-title,
body[data-theme="beylikduzu"] .insurance-types .section-title,
body[data-theme="maltepe"] .insurance-types .section-title,
body[data-theme="atasehir"] .insurance-types .section-title,
body[data-theme="kadikoy"] .hero-section .section-title,
body[data-theme="besiktas"] .hero-section .section-title,
body[data-theme="uskudar"] .hero-section .section-title,
body[data-theme="beyoglu"] .hero-section .section-title,
body[data-theme="sisli"] .hero-section .section-title,
body[data-theme="beylikduzu"] .hero-section .section-title,
body[data-theme="maltepe"] .hero-section .section-title,
body[data-theme="atasehir"] .hero-section .section-title {
    color: var(--text-color) !important;
    text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.9), 
                 0 0 10px rgba(255, 255, 255, 0.7),
                 -1px -1px 3px rgba(255, 255, 255, 0.9) !important;
}

body[data-theme="kadikoy"] .insurance-types .section-description,
body[data-theme="besiktas"] .insurance-types .section-description,
body[data-theme="uskudar"] .insurance-types .section-description,
body[data-theme="beyoglu"] .insurance-types .section-description,
body[data-theme="sisli"] .insurance-types .section-description,
body[data-theme="beylikduzu"] .insurance-types .section-description,
body[data-theme="maltepe"] .insurance-types .section-description,
body[data-theme="atasehir"] .insurance-types .section-description,
body[data-theme="kadikoy"] .hero-section .section-description,
body[data-theme="besiktas"] .hero-section .section-description,
body[data-theme="uskudar"] .hero-section .section-description,
body[data-theme="beyoglu"] .hero-section .section-description,
body[data-theme="sisli"] .hero-section .section-description,
body[data-theme="beylikduzu"] .hero-section .section-description,
body[data-theme="maltepe"] .hero-section .section-description,
body[data-theme="atasehir"] .hero-section .section-description {
    color: var(--text-color) !important;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9), 
                 0 0 6px rgba(255, 255, 255, 0.7),
                 -1px -1px 2px rgba(255, 255, 255, 0.9) !important;
}

/* Koyu temalar için section başlıkları - yazı rengi textColor'dan, shadow siyah */
body[data-theme="karakoy"] .insurance-types .section-subtitle,
body[data-theme="taksim"] .insurance-types .section-subtitle,
body[data-theme="levent"] .insurance-types .section-subtitle,
body[data-theme="etiler"] .insurance-types .section-subtitle,
body[data-theme="karakoy"] .hero-section .section-subtitle,
body[data-theme="taksim"] .hero-section .section-subtitle,
body[data-theme="levent"] .hero-section .section-subtitle,
body[data-theme="etiler"] .hero-section .section-subtitle {
    color: var(--text-color) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 
                 0 0 8px rgba(0, 0, 0, 0.7),
                 -1px -1px 2px rgba(0, 0, 0, 0.9) !important;
}

body[data-theme="karakoy"] .insurance-types .section-title,
body[data-theme="taksim"] .insurance-types .section-title,
body[data-theme="levent"] .insurance-types .section-title,
body[data-theme="etiler"] .insurance-types .section-title,
body[data-theme="karakoy"] .hero-section .section-title,
body[data-theme="taksim"] .hero-section .section-title,
body[data-theme="levent"] .hero-section .section-title,
body[data-theme="etiler"] .hero-section .section-title {
    color: var(--text-color) !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 
                 0 0 10px rgba(0, 0, 0, 0.7),
                 -1px -1px 3px rgba(0, 0, 0, 0.9) !important;
}

body[data-theme="karakoy"] .insurance-types .section-description,
body[data-theme="taksim"] .insurance-types .section-description,
body[data-theme="levent"] .insurance-types .section-description,
body[data-theme="etiler"] .insurance-types .section-description,
body[data-theme="karakoy"] .hero-section .section-description,
body[data-theme="taksim"] .hero-section .section-description,
body[data-theme="levent"] .hero-section .section-description,
body[data-theme="etiler"] .hero-section .section-description {
    color: var(--text-color) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 
                 0 0 6px rgba(0, 0, 0, 0.7),
                 -1px -1px 2px rgba(0, 0, 0, 0.9) !important;
}

/* Koyu temalar için kartlar */
body[data-theme="karakoy"] .card,
body[data-theme="taksim"] .card,
body[data-theme="levent"] .card,
body[data-theme="etiler"] .card {
    background-color: var(--card-bg-color) !important;
    border-color: var(--card-border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .card h1,
body[data-theme="karakoy"] .card h2,
body[data-theme="karakoy"] .card h3,
body[data-theme="karakoy"] .card h4,
body[data-theme="karakoy"] .card h5,
body[data-theme="karakoy"] .card h6,
body[data-theme="taksim"] .card h1,
body[data-theme="taksim"] .card h2,
body[data-theme="taksim"] .card h3,
body[data-theme="taksim"] .card h4,
body[data-theme="taksim"] .card h5,
body[data-theme="taksim"] .card h6,
body[data-theme="levent"] .card h1,
body[data-theme="levent"] .card h2,
body[data-theme="levent"] .card h3,
body[data-theme="levent"] .card h4,
body[data-theme="levent"] .card h5,
body[data-theme="levent"] .card h6,
body[data-theme="etiler"] .card h1,
body[data-theme="etiler"] .card h2,
body[data-theme="etiler"] .card h3,
body[data-theme="etiler"] .card h4,
body[data-theme="etiler"] .card h5,
body[data-theme="etiler"] .card h6 {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .card p,
body[data-theme="taksim"] .card p,
body[data-theme="levent"] .card p,
body[data-theme="etiler"] .card p {
    color: var(--text-color) !important;
}

/* Koyu temalar için insurance card'lar */
body[data-theme="karakoy"] .insurance-card,
body[data-theme="taksim"] .insurance-card,
body[data-theme="levent"] .insurance-card,
body[data-theme="etiler"] .insurance-card {
    background-color: var(--card-bg-color) !important;
    border-color: var(--card-border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .insurance-card h3,
body[data-theme="karakoy"] .insurance-card h4,
body[data-theme="karakoy"] .insurance-card h5,
body[data-theme="taksim"] .insurance-card h3,
body[data-theme="taksim"] .insurance-card h4,
body[data-theme="taksim"] .insurance-card h5,
body[data-theme="levent"] .insurance-card h3,
body[data-theme="levent"] .insurance-card h4,
body[data-theme="levent"] .insurance-card h5,
body[data-theme="etiler"] .insurance-card h3,
body[data-theme="etiler"] .insurance-card h4,
body[data-theme="etiler"] .insurance-card h5 {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .insurance-card p,
body[data-theme="taksim"] .insurance-card p,
body[data-theme="levent"] .insurance-card p,
body[data-theme="etiler"] .insurance-card p {
    color: var(--text-color) !important;
}

/* Koyu temalar için insurance-card hover-reveal - mavi arka plan korunmalı */
body[data-theme="karakoy"] .insurance-card .hover-reveal,
body[data-theme="taksim"] .insurance-card .hover-reveal,
body[data-theme="levent"] .insurance-card .hover-reveal,
body[data-theme="etiler"] .insurance-card .hover-reveal {
    background-color: var(--primary-color) !important; /* Mavi arka plan korunmalı */
    z-index: 10 !important; /* Üstte görünmeli */
}

/* Levent teması için özel mavi hover-reveal */
body[data-theme="levent"] .insurance-card .hover-reveal {
    background-color: #64b5f6 !important; /* Levent teması mavi rengi */
}

/* Tüm temalar için reveal-content içindeki yazılar beyaz kalmalı (hover-reveal koyu arka plana sahip) */
body[data-theme] .insurance-card .reveal-content {
    color: #ffffff !important;
}

body[data-theme] .insurance-card .reveal-content h4,
body[data-theme] .insurance-card .reveal-content h3,
body[data-theme] .insurance-card .reveal-content h5,
body[data-theme] .insurance-card .reveal-content h6 {
    color: #ffffff !important;
}

body[data-theme] .insurance-card .reveal-content p,
body[data-theme] .insurance-card .reveal-content span,
body[data-theme] .insurance-card .reveal-content div {
    color: #ffffff !important;
}

body[data-theme] .insurance-card .reveal-content ul li {
    color: #ffffff !important;
}

body[data-theme] .insurance-card .reveal-content ul li::before {
    color: #ffffff !important;
}

/* Koyu temalar için reveal-content içindeki yazılar beyaz kalmalı */
body[data-theme="karakoy"] .insurance-card .reveal-content,
body[data-theme="taksim"] .insurance-card .reveal-content,
body[data-theme="levent"] .insurance-card .reveal-content,
body[data-theme="etiler"] .insurance-card .reveal-content {
    color: #ffffff !important;
}

body[data-theme="karakoy"] .insurance-card .reveal-content h4,
body[data-theme="taksim"] .insurance-card .reveal-content h4,
body[data-theme="levent"] .insurance-card .reveal-content h4,
body[data-theme="etiler"] .insurance-card .reveal-content h4 {
    color: #ffffff !important;
}

body[data-theme="karakoy"] .insurance-card .reveal-content ul li,
body[data-theme="taksim"] .insurance-card .reveal-content ul li,
body[data-theme="levent"] .insurance-card .reveal-content ul li,
body[data-theme="etiler"] .insurance-card .reveal-content ul li {
    color: #ffffff !important;
}

body[data-theme="karakoy"] .insurance-card .reveal-content ul li::before,
body[data-theme="taksim"] .insurance-card .reveal-content ul li::before,
body[data-theme="levent"] .insurance-card .reveal-content ul li::before,
body[data-theme="etiler"] .insurance-card .reveal-content ul li::before {
    color: #ffffff !important;
}

/* Koyu temalar için quote card'lar - daha belirgin */
body[data-theme="karakoy"] .quote-card,
body[data-theme="taksim"] .quote-card,
body[data-theme="levent"] .quote-card,
body[data-theme="etiler"] .quote-card {
    background-color: var(--card-bg-color) !important;
    border-color: var(--border-color) !important;
    border-width: 2px !important;
    color: var(--text-color) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

body[data-theme="karakoy"] .quote-card:hover,
body[data-theme="taksim"] .quote-card:hover,
body[data-theme="levent"] .quote-card:hover,
body[data-theme="etiler"] .quote-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-2px);
}

/* Quote card şeritleri için daha açık arka plan - palette renklerinden */
body[data-theme="karakoy"] .quote-card.themed-card,
body[data-theme="taksim"] .quote-card.themed-card,
body[data-theme="levent"] .quote-card.themed-card,
body[data-theme="etiler"] .quote-card.themed-card {
    background-color: rgba(66, 66, 66, 0.8) !important; /* Daha açık siyah */
}

body[data-theme="karakoy"] .quote-card.white-card,
body[data-theme="taksim"] .quote-card.white-card,
body[data-theme="levent"] .quote-card.white-card,
body[data-theme="etiler"] .quote-card.white-card {
    background-color: rgba(80, 80, 80, 0.8) !important; /* Biraz daha açık */
}

/* Modal içindeki quote card'lar için */
body[data-theme="karakoy"] .quote-detail-modal .quote-card.themed-card,
body[data-theme="taksim"] .quote-detail-modal .quote-card.themed-card,
body[data-theme="levent"] .quote-detail-modal .quote-card.themed-card,
body[data-theme="etiler"] .quote-detail-modal .quote-card.themed-card {
    background-color: rgba(66, 66, 66, 0.8) !important;
}

body[data-theme="karakoy"] .quote-detail-modal .quote-card.white-card,
body[data-theme="taksim"] .quote-detail-modal .quote-card.white-card,
body[data-theme="levent"] .quote-detail-modal .quote-card.white-card,
body[data-theme="etiler"] .quote-detail-modal .quote-card.white-card {
    background-color: rgba(80, 80, 80, 0.8) !important;
}

/* Koyu temalar için quote-info-box */
body[data-theme="karakoy"] .quote-info-box,
body[data-theme="taksim"] .quote-info-box,
body[data-theme="levent"] .quote-info-box,
body[data-theme="etiler"] .quote-info-box {
    background-color: var(--card-bg-color) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .quote-info-box .info-label,
body[data-theme="taksim"] .quote-info-box .info-label,
body[data-theme="levent"] .quote-info-box .info-label,
body[data-theme="etiler"] .quote-info-box .info-label {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .quote-info-box .info-value,
body[data-theme="taksim"] .quote-info-box .info-value,
body[data-theme="levent"] .quote-info-box .info-value,
body[data-theme="etiler"] .quote-info-box .info-value {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .quote-info-box .info-icon,
body[data-theme="taksim"] .quote-info-box .info-icon,
body[data-theme="levent"] .quote-info-box .info-icon,
body[data-theme="etiler"] .quote-info-box .info-icon {
    background-color: var(--light-color) !important;
    color: var(--primary-color) !important;
}

/* Koyu temalar için daterangepicker */
body[data-theme="karakoy"] .daterangepicker,
body[data-theme="taksim"] .daterangepicker,
body[data-theme="levent"] .daterangepicker,
body[data-theme="etiler"] .daterangepicker {
    background-color: rgba(50, 50, 50, 0.95) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için daterangepicker içindeki liste öğeleri (ranges) */
body[data-theme="karakoy"] .daterangepicker .ranges ul li,
body[data-theme="taksim"] .daterangepicker .ranges ul li,
body[data-theme="levent"] .daterangepicker .ranges ul li,
body[data-theme="etiler"] .daterangepicker .ranges ul li {
    background-color: rgba(50, 50, 50, 0.95) !important;
    color: var(--text-color) !important;
    border-color: var(--border-color) !important;
}

body[data-theme="karakoy"] .daterangepicker .ranges ul li:hover,
body[data-theme="taksim"] .daterangepicker .ranges ul li:hover,
body[data-theme="levent"] .daterangepicker .ranges ul li:hover,
body[data-theme="etiler"] .daterangepicker .ranges ul li:hover {
    background-color: var(--primary-color) !important;
    color: var(--button-text-color) !important;
}

body[data-theme="karakoy"] .daterangepicker .ranges ul li.active,
body[data-theme="taksim"] .daterangepicker .ranges ul li.active,
body[data-theme="levent"] .daterangepicker .ranges ul li.active,
body[data-theme="etiler"] .daterangepicker .ranges ul li.active {
    background-color: var(--primary-color) !important;
    color: var(--button-text-color) !important;
}

/* Koyu temalar için daterangepicker takvim bölümü */
body[data-theme="karakoy"] .daterangepicker .calendar-table,
body[data-theme="taksim"] .daterangepicker .calendar-table,
body[data-theme="levent"] .daterangepicker .calendar-table,
body[data-theme="etiler"] .daterangepicker .calendar-table {
    background-color: rgba(50, 50, 50, 0.95) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .daterangepicker .calendar-table th,
body[data-theme="taksim"] .daterangepicker .calendar-table th,
body[data-theme="levent"] .daterangepicker .calendar-table th,
body[data-theme="etiler"] .daterangepicker .calendar-table th {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .daterangepicker .calendar-table td,
body[data-theme="taksim"] .daterangepicker .calendar-table td,
body[data-theme="levent"] .daterangepicker .calendar-table td,
body[data-theme="etiler"] .daterangepicker .calendar-table td {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .daterangepicker .calendar-table td.available:hover,
body[data-theme="taksim"] .daterangepicker .calendar-table td.available:hover,
body[data-theme="levent"] .daterangepicker .calendar-table td.available:hover,
body[data-theme="etiler"] .daterangepicker .calendar-table td.available:hover {
    background-color: var(--primary-color) !important;
    color: var(--button-text-color) !important;
}

body[data-theme="karakoy"] .daterangepicker .calendar-table td.in-range,
body[data-theme="taksim"] .daterangepicker .calendar-table td.in-range,
body[data-theme="levent"] .daterangepicker .calendar-table td.in-range,
body[data-theme="etiler"] .daterangepicker .calendar-table td.in-range {
    background-color: rgba(var(--primary-color-rgb), 0.2) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .daterangepicker .calendar-table td.start-date,
body[data-theme="taksim"] .daterangepicker .calendar-table td.start-date,
body[data-theme="levent"] .daterangepicker .calendar-table td.start-date,
body[data-theme="etiler"] .daterangepicker .calendar-table td.start-date,
body[data-theme="karakoy"] .daterangepicker .calendar-table td.end-date,
body[data-theme="taksim"] .daterangepicker .calendar-table td.end-date,
body[data-theme="levent"] .daterangepicker .calendar-table td.end-date,
body[data-theme="etiler"] .daterangepicker .calendar-table td.end-date {
    background-color: var(--primary-color) !important;
    color: var(--button-text-color) !important;
}

/* Koyu temalar için daterangepicker butonları */
body[data-theme="karakoy"] .daterangepicker .drp-buttons .btn,
body[data-theme="taksim"] .daterangepicker .drp-buttons .btn,
body[data-theme="levent"] .daterangepicker .drp-buttons .btn,
body[data-theme="etiler"] .daterangepicker .drp-buttons .btn {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--button-text-color) !important;
}

body[data-theme="karakoy"] .daterangepicker .drp-buttons .btn:hover,
body[data-theme="taksim"] .daterangepicker .drp-buttons .btn:hover,
body[data-theme="levent"] .daterangepicker .drp-buttons .btn:hover,
body[data-theme="etiler"] .daterangepicker .drp-buttons .btn:hover {
    background-color: var(--button-hover-bg-color) !important;
    border-color: var(--button-hover-bg-color) !important;
}

body[data-theme="karakoy"] .daterangepicker .drp-buttons .btn.cancelBtn,
body[data-theme="taksim"] .daterangepicker .drp-buttons .btn.cancelBtn,
body[data-theme="levent"] .daterangepicker .drp-buttons .btn.cancelBtn,
body[data-theme="etiler"] .daterangepicker .drp-buttons .btn.cancelBtn {
    background-color: transparent !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .daterangepicker .drp-buttons .btn.cancelBtn:hover,
body[data-theme="taksim"] .daterangepicker .drp-buttons .btn.cancelBtn:hover,
body[data-theme="levent"] .daterangepicker .drp-buttons .btn.cancelBtn:hover,
body[data-theme="etiler"] .daterangepicker .drp-buttons .btn.cancelBtn:hover {
    background-color: var(--card-bg-color) !important;
    border-color: var(--border-color) !important;
}

/* Koyu temalar için daterangepicker input alanları */
body[data-theme="karakoy"] .daterangepicker .calendar-table .form-control,
body[data-theme="taksim"] .daterangepicker .calendar-table .form-control,
body[data-theme="levent"] .daterangepicker .calendar-table .form-control,
body[data-theme="etiler"] .daterangepicker .calendar-table .form-control {
    background-color: var(--light-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için TSS sayfasındaki "İndirim Oranı" ve "Diş Teminatı" kutuları */
body[data-theme="karakoy"] .quote-page .border.rounded[style*="background-color"],
body[data-theme="taksim"] .quote-page .border.rounded[style*="background-color"],
body[data-theme="levent"] .quote-page .border.rounded[style*="background-color"],
body[data-theme="etiler"] .quote-page .border.rounded[style*="background-color"] {
    background-color: rgba(50, 50, 50, 0.95) !important; /* Siyahın tonları */
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için TSS sayfasındaki "İndirim Oranı" ve "Diş Teminatı" kutuları içindeki başlıklar */
body[data-theme="karakoy"] .quote-page .border.rounded h5,
body[data-theme="taksim"] .quote-page .border.rounded h5,
body[data-theme="levent"] .quote-page .border.rounded h5,
body[data-theme="etiler"] .quote-page .border.rounded h5 {
    color: var(--heading-color) !important;
}

/* Koyu temalar için TSS sayfasındaki "İndirim Oranı" ve "Diş Teminatı" kutuları içindeki label'lar */
body[data-theme="karakoy"] .quote-page .border.rounded .form-label,
body[data-theme="taksim"] .quote-page .border.rounded .form-label,
body[data-theme="levent"] .quote-page .border.rounded .form-label,
body[data-theme="etiler"] .quote-page .border.rounded .form-label {
    color: var(--text-color) !important;
}

/* Koyu temalar için TSS sayfasındaki "İndirim Oranı" ve "Diş Teminatı" kutuları içindeki select elementleri */
body[data-theme="karakoy"] .quote-page .border.rounded .form-select,
body[data-theme="taksim"] .quote-page .border.rounded .form-select,
body[data-theme="levent"] .quote-page .border.rounded .form-select,
body[data-theme="etiler"] .quote-page .border.rounded .form-select {
    background-color: var(--light-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .quote-page .border.rounded .form-select option,
body[data-theme="taksim"] .quote-page .border.rounded .form-select option,
body[data-theme="levent"] .quote-page .border.rounded .form-select option,
body[data-theme="etiler"] .quote-page .border.rounded .form-select option {
    background-color: var(--card-bg-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için TSS sayfasındaki "Aile Fertleri" formu */
body[data-theme="karakoy"] .quote-page #aileFertleriForm.bg-light,
body[data-theme="taksim"] .quote-page #aileFertleriForm.bg-light,
body[data-theme="levent"] .quote-page #aileFertleriForm.bg-light,
body[data-theme="etiler"] .quote-page #aileFertleriForm.bg-light {
    background-color: rgba(50, 50, 50, 0.95) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .quote-page #aileFertleriForm h4,
body[data-theme="taksim"] .quote-page #aileFertleriForm h4,
body[data-theme="levent"] .quote-page #aileFertleriForm h4,
body[data-theme="etiler"] .quote-page #aileFertleriForm h4 {
    color: var(--heading-color) !important;
}

/* Koyu temalar için global notification popup */
body[data-theme="karakoy"] .global-notification-popup,
body[data-theme="taksim"] .global-notification-popup,
body[data-theme="levent"] .global-notification-popup,
body[data-theme="etiler"] .global-notification-popup {
    background: rgba(50, 50, 50, 0.95) !important; /* Siyahın tonları */
    border: 1px solid var(--border-color) !important;
}

body[data-theme="karakoy"] .global-notification-body,
body[data-theme="taksim"] .global-notification-body,
body[data-theme="levent"] .global-notification-body,
body[data-theme="etiler"] .global-notification-body {
    background-color: rgba(50, 50, 50, 0.95) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .global-notification-message,
body[data-theme="taksim"] .global-notification-message,
body[data-theme="levent"] .global-notification-message,
body[data-theme="etiler"] .global-notification-message {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .global-notification-details,
body[data-theme="taksim"] .global-notification-details,
body[data-theme="levent"] .global-notification-details,
body[data-theme="etiler"] .global-notification-details {
    background: rgba(60, 60, 60, 0.8) !important; /* Daha açık ton */
    border: 1px solid var(--border-color) !important;
}

body[data-theme="karakoy"] .global-notification-details h6,
body[data-theme="taksim"] .global-notification-details h6,
body[data-theme="levent"] .global-notification-details h6,
body[data-theme="etiler"] .global-notification-details h6 {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .global-notification-detail-label,
body[data-theme="taksim"] .global-notification-detail-label,
body[data-theme="levent"] .global-notification-detail-label,
body[data-theme="etiler"] .global-notification-detail-label {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .global-notification-detail-value,
body[data-theme="taksim"] .global-notification-detail-value,
body[data-theme="levent"] .global-notification-detail-value,
body[data-theme="etiler"] .global-notification-detail-value {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .global-notification-detail-item,
body[data-theme="taksim"] .global-notification-detail-item,
body[data-theme="levent"] .global-notification-detail-item,
body[data-theme="etiler"] .global-notification-detail-item {
    border-bottom-color: var(--border-color) !important;
}

/* Global notification içindeki şirket logosu beyaz kutu içine al */
body[data-theme="karakoy"] .global-notification-detail-value img,
body[data-theme="taksim"] .global-notification-detail-value img,
body[data-theme="levent"] .global-notification-detail-value img,
body[data-theme="etiler"] .global-notification-detail-value img,
body[data-theme="karakoy"] .global-notification-details img,
body[data-theme="taksim"] .global-notification-details img,
body[data-theme="levent"] .global-notification-details img,
body[data-theme="etiler"] .global-notification-details img {
    background-color: #ffffff !important;
    padding: 4px !important;
    border-radius: 4px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* Koyu temalar için form elementleri */
body[data-theme="karakoy"] .form-control,
body[data-theme="taksim"] .form-control,
body[data-theme="levent"] .form-control,
body[data-theme="etiler"] .form-control {
    background-color: var(--card-bg-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .form-label,
body[data-theme="taksim"] .form-label,
body[data-theme="levent"] .form-label,
body[data-theme="etiler"] .form-label {
    color: var(--text-color) !important;
}

/* Koyu temalar için footer */
body[data-theme="karakoy"] footer,
body[data-theme="taksim"] footer,
body[data-theme="levent"] footer,
body[data-theme="etiler"] footer {
    background-color: var(--card-bg-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için poliçeleştirme talepleri sayfası */
body[data-theme="karakoy"] .card-body,
body[data-theme="taksim"] .card-body,
body[data-theme="levent"] .card-body,
body[data-theme="etiler"] .card-body {
    background-color: rgba(50, 50, 50, 0.95) !important; /* Siyahın tonları */
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .card-body .form-label,
body[data-theme="taksim"] .card-body .form-label,
body[data-theme="levent"] .card-body .form-label,
body[data-theme="etiler"] .card-body .form-label {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .card-body .form-control,
body[data-theme="taksim"] .card-body .form-control,
body[data-theme="levent"] .card-body .form-control,
body[data-theme="etiler"] .card-body .form-control,
body[data-theme="karakoy"] .card-body .form-select,
body[data-theme="taksim"] .card-body .form-select,
body[data-theme="levent"] .card-body .form-select,
body[data-theme="etiler"] .card-body .form-select {
    background-color: var(--light-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için tablo satırları */
body[data-theme="karakoy"] #policyRequestsTable tbody tr,
body[data-theme="taksim"] #policyRequestsTable tbody tr,
body[data-theme="levent"] #policyRequestsTable tbody tr,
body[data-theme="etiler"] #policyRequestsTable tbody tr {
    background-color: rgba(50, 50, 50, 0.95) !important; /* Siyahın tonları */
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] #policyRequestsTable tbody tr:hover,
body[data-theme="taksim"] #policyRequestsTable tbody tr:hover,
body[data-theme="levent"] #policyRequestsTable tbody tr:hover,
body[data-theme="etiler"] #policyRequestsTable tbody tr:hover {
    background-color: rgba(60, 60, 60, 0.95) !important; /* Hover için biraz daha açık */
}

body[data-theme="karakoy"] #policyRequestsTable tbody td,
body[data-theme="taksim"] #policyRequestsTable tbody td,
body[data-theme="levent"] #policyRequestsTable tbody td,
body[data-theme="etiler"] #policyRequestsTable tbody td {
    color: var(--text-color) !important;
    border-color: var(--border-color) !important;
}

body[data-theme="karakoy"] #policyRequestsTable thead th,
body[data-theme="taksim"] #policyRequestsTable thead th,
body[data-theme="levent"] #policyRequestsTable thead th,
body[data-theme="etiler"] #policyRequestsTable thead th {
    background-color: rgba(40, 40, 40, 0.95) !important; /* Başlık için daha koyu */
    color: var(--heading-color) !important;
    border-color: var(--border-color) !important;
}

/* Beyaz temalar için table-dark override */
body[data-theme="kadikoy"] #policyRequestsTable thead.table-dark,
body[data-theme="besiktas"] #policyRequestsTable thead.table-dark,
body[data-theme="uskudar"] #policyRequestsTable thead.table-dark,
body[data-theme="beyoglu"] #policyRequestsTable thead.table-dark,
body[data-theme="sisli"] #policyRequestsTable thead.table-dark,
body[data-theme="beylikduzu"] #policyRequestsTable thead.table-dark,
body[data-theme="maltepe"] #policyRequestsTable thead.table-dark,
body[data-theme="atasehir"] #policyRequestsTable thead.table-dark {
    background-color: #212529 !important; /* Bootstrap table-dark rengi */
}

body[data-theme="kadikoy"] #policyRequestsTable thead.table-dark th,
body[data-theme="besiktas"] #policyRequestsTable thead.table-dark th,
body[data-theme="uskudar"] #policyRequestsTable thead.table-dark th,
body[data-theme="beyoglu"] #policyRequestsTable thead.table-dark th,
body[data-theme="sisli"] #policyRequestsTable thead.table-dark th,
body[data-theme="beylikduzu"] #policyRequestsTable thead.table-dark th,
body[data-theme="maltepe"] #policyRequestsTable thead.table-dark th,
body[data-theme="atasehir"] #policyRequestsTable thead.table-dark th {
    background-color: #212529 !important; /* Bootstrap table-dark rengi */
    color: #ffffff !important; /* Beyaz metin */
    border-color: #32383e !important;
}

/* Daha spesifik selector - tüm beyaz temalar için */
body[data-theme="kadikoy"] table#policyRequestsTable thead.table-dark,
body[data-theme="besiktas"] table#policyRequestsTable thead.table-dark,
body[data-theme="uskudar"] table#policyRequestsTable thead.table-dark,
body[data-theme="beyoglu"] table#policyRequestsTable thead.table-dark,
body[data-theme="sisli"] table#policyRequestsTable thead.table-dark,
body[data-theme="beylikduzu"] table#policyRequestsTable thead.table-dark,
body[data-theme="maltepe"] table#policyRequestsTable thead.table-dark,
body[data-theme="atasehir"] table#policyRequestsTable thead.table-dark {
    background-color: #212529 !important; /* Bootstrap table-dark rengi */
}

body[data-theme="kadikoy"] table#policyRequestsTable thead.table-dark tr th,
body[data-theme="besiktas"] table#policyRequestsTable thead.table-dark tr th,
body[data-theme="uskudar"] table#policyRequestsTable thead.table-dark tr th,
body[data-theme="beyoglu"] table#policyRequestsTable thead.table-dark tr th,
body[data-theme="sisli"] table#policyRequestsTable thead.table-dark tr th,
body[data-theme="beylikduzu"] table#policyRequestsTable thead.table-dark tr th,
body[data-theme="maltepe"] table#policyRequestsTable thead.table-dark tr th,
body[data-theme="atasehir"] table#policyRequestsTable thead.table-dark tr th {
    background-color: #212529 !important; /* Bootstrap table-dark rengi */
    color: #ffffff !important; /* Beyaz metin */
    border-color: #32383e !important;
}

/* Poliçeleştirme talepleri tablosundaki sigorta şirketi logoları için beyaz kutu */
#policyRequestsTable .insurance-company-logo,
#policyRequestsTable img[alt*="Ankara"],
#policyRequestsTable img[alt*="Sigorta"] {
    background-color: #ffffff !important;
    padding: 4px !important;
    border-radius: 4px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    object-fit: contain;
}

/* Beyaz temalar için bg-primary text-white card-header */
body[data-theme="kadikoy"] .card-header.bg-primary,
body[data-theme="besiktas"] .card-header.bg-primary,
body[data-theme="uskudar"] .card-header.bg-primary,
body[data-theme="beyoglu"] .card-header.bg-primary,
body[data-theme="sisli"] .card-header.bg-primary,
body[data-theme="beylikduzu"] .card-header.bg-primary,
body[data-theme="maltepe"] .card-header.bg-primary,
body[data-theme="atasehir"] .card-header.bg-primary {
    background-color: var(--primary-color) !important; /* Tema primary rengi */
}

body[data-theme="kadikoy"] .card-header.bg-primary.text-white,
body[data-theme="besiktas"] .card-header.bg-primary.text-white,
body[data-theme="uskudar"] .card-header.bg-primary.text-white,
body[data-theme="beyoglu"] .card-header.bg-primary.text-white,
body[data-theme="sisli"] .card-header.bg-primary.text-white,
body[data-theme="beylikduzu"] .card-header.bg-primary.text-white,
body[data-theme="maltepe"] .card-header.bg-primary.text-white,
body[data-theme="atasehir"] .card-header.bg-primary.text-white,
body[data-theme="kadikoy"] .card-header.bg-primary.text-white .card-title,
body[data-theme="besiktas"] .card-header.bg-primary.text-white .card-title,
body[data-theme="uskudar"] .card-header.bg-primary.text-white .card-title,
body[data-theme="beyoglu"] .card-header.bg-primary.text-white .card-title,
body[data-theme="sisli"] .card-header.bg-primary.text-white .card-title,
body[data-theme="beylikduzu"] .card-header.bg-primary.text-white .card-title,
body[data-theme="maltepe"] .card-header.bg-primary.text-white .card-title,
body[data-theme="atasehir"] .card-header.bg-primary.text-white .card-title {
    color: #ffffff !important; /* Beyaz metin */
}

/* Koyu temalar için date input takvim ikonu */
body[data-theme="karakoy"] input[type="date"]::-webkit-calendar-picker-indicator,
body[data-theme="taksim"] input[type="date"]::-webkit-calendar-picker-indicator,
body[data-theme="levent"] input[type="date"]::-webkit-calendar-picker-indicator,
body[data-theme="etiler"] input[type="date"]::-webkit-calendar-picker-indicator {
    filter: brightness(0) invert(1) !important; /* Siyah ikonu beyaz yap */
    cursor: pointer;
}

/* Koyu temalar için date picker (tarayıcı native calendar) */
body[data-theme="karakoy"] input[type="date"]::-webkit-datetime-edit,
body[data-theme="taksim"] input[type="date"]::-webkit-datetime-edit,
body[data-theme="levent"] input[type="date"]::-webkit-datetime-edit,
body[data-theme="etiler"] input[type="date"]::-webkit-datetime-edit {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] input[type="date"]::-webkit-datetime-edit-fields-wrapper,
body[data-theme="taksim"] input[type="date"]::-webkit-datetime-edit-fields-wrapper,
body[data-theme="levent"] input[type="date"]::-webkit-datetime-edit-fields-wrapper,
body[data-theme="etiler"] input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] input[type="date"]::-webkit-datetime-edit-text,
body[data-theme="taksim"] input[type="date"]::-webkit-datetime-edit-text,
body[data-theme="levent"] input[type="date"]::-webkit-datetime-edit-text,
body[data-theme="etiler"] input[type="date"]::-webkit-datetime-edit-text {
    color: var(--text-color) !important;
}

/* Koyu temalar için date picker dropdown (tarayıcı native calendar popup) - Chrome/Edge için */
@media (prefers-color-scheme: dark) {
    body[data-theme="karakoy"] input[type="date"],
    body[data-theme="taksim"] input[type="date"],
    body[data-theme="levent"] input[type="date"],
    body[data-theme="etiler"] input[type="date"] {
        color-scheme: dark;
    }
}

body[data-theme="karakoy"] footer h5,
body[data-theme="karakoy"] footer h6,
body[data-theme="taksim"] footer h5,
body[data-theme="taksim"] footer h6,
body[data-theme="levent"] footer h5,
body[data-theme="levent"] footer h6,
body[data-theme="etiler"] footer h5,
body[data-theme="etiler"] footer h6 {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] footer p,
body[data-theme="taksim"] footer p,
body[data-theme="levent"] footer p,
body[data-theme="etiler"] footer p {
    color: var(--text-color) !important;
}

/* Koyu temalar için dropdown menüler */
body[data-theme="karakoy"] .dropdown-menu,
body[data-theme="taksim"] .dropdown-menu,
body[data-theme="levent"] .dropdown-menu,
body[data-theme="etiler"] .dropdown-menu {
    background-color: var(--card-bg-color) !important;
    border-color: var(--card-border-color) !important;
}

body[data-theme="karakoy"] .dropdown-item,
body[data-theme="taksim"] .dropdown-item,
body[data-theme="levent"] .dropdown-item,
body[data-theme="etiler"] .dropdown-item {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .dropdown-item:hover,
body[data-theme="taksim"] .dropdown-item:hover,
body[data-theme="levent"] .dropdown-item:hover,
body[data-theme="etiler"] .dropdown-item:hover {
    background-color: var(--primary-color) !important;
    color: var(--button-text-color) !important;
}

/* Koyu temalar için text-muted sınıfı */
body[data-theme="karakoy"] .text-muted,
body[data-theme="taksim"] .text-muted,
body[data-theme="levent"] .text-muted,
body[data-theme="etiler"] .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Koyu temalar için preloader */
body[data-theme="karakoy"] #preloader,
body[data-theme="taksim"] #preloader,
body[data-theme="levent"] #preloader,
body[data-theme="etiler"] #preloader {
    background-color: var(--light-color) !important;
}

/* Koyu temalar için başlıklar (h1-h6) - dark-color yerine heading-color kullan */
body[data-theme="karakoy"] h1,
body[data-theme="karakoy"] h2,
body[data-theme="karakoy"] h3,
body[data-theme="karakoy"] h4,
body[data-theme="karakoy"] h5,
body[data-theme="karakoy"] h6,
body[data-theme="taksim"] h1,
body[data-theme="taksim"] h2,
body[data-theme="taksim"] h3,
body[data-theme="taksim"] h4,
body[data-theme="taksim"] h5,
body[data-theme="taksim"] h6,
body[data-theme="levent"] h1,
body[data-theme="levent"] h2,
body[data-theme="levent"] h3,
body[data-theme="levent"] h4,
body[data-theme="levent"] h5,
body[data-theme="levent"] h6,
body[data-theme="etiler"] h1,
body[data-theme="etiler"] h2,
body[data-theme="etiler"] h3,
body[data-theme="etiler"] h4,
body[data-theme="etiler"] h5,
body[data-theme="etiler"] h6 {
    color: var(--heading-color) !important;
}

/* Koyu temalar için brand-text */
body[data-theme="karakoy"] .brand-text,
body[data-theme="taksim"] .brand-text,
body[data-theme="levent"] .brand-text,
body[data-theme="etiler"] .brand-text {
    color: var(--heading-color) !important;
}

/* Koyu temalar için navbar linkleri - zaten yukarıda var ama tekrar kontrol */
body[data-theme="karakoy"] .navbar-nav .nav-link,
body[data-theme="taksim"] .navbar-nav .nav-link,
body[data-theme="levent"] .navbar-nav .nav-link,
body[data-theme="etiler"] .navbar-nav .nav-link {
    color: var(--text-color) !important;
}

/* Koyu temalar için stat-number */
body[data-theme="karakoy"] .stat-number,
body[data-theme="taksim"] .stat-number,
body[data-theme="levent"] .stat-number,
body[data-theme="etiler"] .stat-number {
    color: var(--heading-color) !important;
}

/* Koyu temalar için phone-button */
body[data-theme="karakoy"] .phone-button,
body[data-theme="taksim"] .phone-button,
body[data-theme="levent"] .phone-button,
body[data-theme="etiler"] .phone-button {
    background-color: var(--card-bg-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .phone-button:hover,
body[data-theme="taksim"] .phone-button:hover,
body[data-theme="levent"] .phone-button:hover,
body[data-theme="etiler"] .phone-button:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--button-text-color) !important;
}

/* Koyu temalar için whatsapp-teklif-section */
body[data-theme="karakoy"] .whatsapp-teklif-section,
body[data-theme="taksim"] .whatsapp-teklif-section,
body[data-theme="levent"] .whatsapp-teklif-section,
body[data-theme="etiler"] .whatsapp-teklif-section {
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%) !important; /* Siyahın tonları */
}

body[data-theme="karakoy"] .whatsapp-teklif-section .section-subtitle,
body[data-theme="taksim"] .whatsapp-teklif-section .section-subtitle,
body[data-theme="levent"] .whatsapp-teklif-section .section-subtitle,
body[data-theme="etiler"] .whatsapp-teklif-section .section-subtitle {
    color: var(--primary-color) !important;
}

body[data-theme="karakoy"] .whatsapp-teklif-section .section-title,
body[data-theme="taksim"] .whatsapp-teklif-section .section-title,
body[data-theme="levent"] .whatsapp-teklif-section .section-title,
body[data-theme="etiler"] .whatsapp-teklif-section .section-title {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .whatsapp-teklif-section .section-description,
body[data-theme="taksim"] .whatsapp-teklif-section .section-description,
body[data-theme="levent"] .whatsapp-teklif-section .section-description,
body[data-theme="etiler"] .whatsapp-teklif-section .section-description {
    color: var(--text-color) !important;
}

/* Koyu temalar için whatsapp-card başlıkları */
body[data-theme="karakoy"] .whatsapp-card .card-content h3,
body[data-theme="taksim"] .whatsapp-card .card-content h3,
body[data-theme="levent"] .whatsapp-card .card-content h3,
body[data-theme="etiler"] .whatsapp-card .card-content h3 {
    color: var(--heading-color) !important;
}

/* Koyu temalar için whatsapp-card içeriği */
body[data-theme="karakoy"] .whatsapp-card,
body[data-theme="taksim"] .whatsapp-card,
body[data-theme="levent"] .whatsapp-card,
body[data-theme="etiler"] .whatsapp-card {
    background-color: rgba(50, 50, 50, 0.95) !important; /* Siyahın tonları */
    border-color: var(--border-color) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

body[data-theme="karakoy"] .whatsapp-card:hover,
body[data-theme="taksim"] .whatsapp-card:hover,
body[data-theme="levent"] .whatsapp-card:hover,
body[data-theme="etiler"] .whatsapp-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4) !important;
    background-color: rgba(55, 55, 55, 0.95) !important; /* Hover için biraz daha açık */
}

body[data-theme="karakoy"] .whatsapp-card .card-content p,
body[data-theme="taksim"] .whatsapp-card .card-content p,
body[data-theme="levent"] .whatsapp-card .card-content p,
body[data-theme="etiler"] .whatsapp-card .card-content p {
    color: var(--text-color) !important;
}

/* Koyu temalar için tüm paragraflar */
body[data-theme="karakoy"] p,
body[data-theme="taksim"] p,
body[data-theme="levent"] p,
body[data-theme="etiler"] p {
    color: var(--text-color) !important;
}

/* Koyu temalar için listeler */
body[data-theme="karakoy"] ul,
body[data-theme="karakoy"] ol,
body[data-theme="karakoy"] li,
body[data-theme="taksim"] ul,
body[data-theme="taksim"] ol,
body[data-theme="taksim"] li,
body[data-theme="levent"] ul,
body[data-theme="levent"] ol,
body[data-theme="levent"] li,
body[data-theme="etiler"] ul,
body[data-theme="etiler"] ol,
body[data-theme="etiler"] li {
    color: var(--text-color) !important;
}

/* Koyu temalar için table elementleri */
body[data-theme="karakoy"] table,
body[data-theme="taksim"] table,
body[data-theme="levent"] table,
body[data-theme="etiler"] table {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] table th,
body[data-theme="taksim"] table th,
body[data-theme="levent"] table th,
body[data-theme="etiler"] table th {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] table td,
body[data-theme="taksim"] table td,
body[data-theme="levent"] table td,
body[data-theme="etiler"] table td {
    color: var(--text-color) !important;
}

/* Koyu temalar için "Teklif Al" butonu (btn-light) - hover reveal içinde */
body[data-theme="karakoy"] .reveal-content .btn-light,
body[data-theme="taksim"] .reveal-content .btn-light,
body[data-theme="levent"] .reveal-content .btn-light,
body[data-theme="etiler"] .reveal-content .btn-light {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
}

/* Koyu temalar için ana sayfadaki sigorta kartları renkli şeritleri - aynı renkler korunmalı */
body[data-theme="karakoy"] .insurance-types .row > div:nth-child(1) .insurance-card.active::before,
body[data-theme="taksim"] .insurance-types .row > div:nth-child(1) .insurance-card.active::before,
body[data-theme="levent"] .insurance-types .row > div:nth-child(1) .insurance-card.active::before,
body[data-theme="etiler"] .insurance-types .row > div:nth-child(1) .insurance-card.active::before {
    background: linear-gradient(90deg, rgba(28, 109, 163, 1) 0%, rgba(61, 194, 224, 1) 58%, rgba(83, 204, 237, 1) 100%) !important;
}

body[data-theme="karakoy"] .insurance-types .row > div:nth-child(2) .insurance-card.active::before,
body[data-theme="taksim"] .insurance-types .row > div:nth-child(2) .insurance-card.active::before,
body[data-theme="levent"] .insurance-types .row > div:nth-child(2) .insurance-card.active::before,
body[data-theme="etiler"] .insurance-types .row > div:nth-child(2) .insurance-card.active::before {
    background: linear-gradient(90deg, rgba(42, 155, 80, 1) 0%, rgba(61, 224, 132, 1) 58%, rgba(142, 237, 83, 1) 100%) !important;
}

body[data-theme="karakoy"] .insurance-types .row > div:nth-child(3) .insurance-card.active::before,
body[data-theme="taksim"] .insurance-types .row > div:nth-child(3) .insurance-card.active::before,
body[data-theme="levent"] .insurance-types .row > div:nth-child(3) .insurance-card.active::before,
body[data-theme="etiler"] .insurance-types .row > div:nth-child(3) .insurance-card.active::before {
    background-color: #ffc107 !important;
}

body[data-theme="karakoy"] .insurance-types .row > div:nth-child(4) .insurance-card.active::before,
body[data-theme="taksim"] .insurance-types .row > div:nth-child(4) .insurance-card.active::before,
body[data-theme="levent"] .insurance-types .row > div:nth-child(4) .insurance-card.active::before,
body[data-theme="etiler"] .insurance-types .row > div:nth-child(4) .insurance-card.active::before {
    background-color: #0dcaf0 !important;
}

body[data-theme="karakoy"] .insurance-types .row > div:nth-child(5) .insurance-card.active::before,
body[data-theme="taksim"] .insurance-types .row > div:nth-child(5) .insurance-card.active::before,
body[data-theme="levent"] .insurance-types .row > div:nth-child(5) .insurance-card.active::before,
body[data-theme="etiler"] .insurance-types .row > div:nth-child(5) .insurance-card.active::before {
    background-color: #c400e3 !important;
}

body[data-theme="karakoy"] .insurance-types .row > div:nth-child(6) .insurance-card.active::before,
body[data-theme="taksim"] .insurance-types .row > div:nth-child(6) .insurance-card.active::before,
body[data-theme="levent"] .insurance-types .row > div:nth-child(6) .insurance-card.active::before,
body[data-theme="etiler"] .insurance-types .row > div:nth-child(6) .insurance-card.active::before {
    background-color: #dc3545 !important;
}

/* Koyu temalar için ana sayfadaki sigorta kartları ikonları branş renkleri */
body[data-theme="karakoy"] .insurance-types .row > div:nth-child(1) .insurance-card.active .card-icon,
body[data-theme="taksim"] .insurance-types .row > div:nth-child(1) .insurance-card.active .card-icon,
body[data-theme="levent"] .insurance-types .row > div:nth-child(1) .insurance-card.active .card-icon,
body[data-theme="etiler"] .insurance-types .row > div:nth-child(1) .insurance-card.active .card-icon {
    background: linear-gradient(135deg, rgba(28, 109, 163, 1) 0%, rgba(61, 194, 224, 1) 50%, rgba(83, 204, 237, 1) 100%) !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .insurance-types .row > div:nth-child(2) .insurance-card.active .card-icon,
body[data-theme="taksim"] .insurance-types .row > div:nth-child(2) .insurance-card.active .card-icon,
body[data-theme="levent"] .insurance-types .row > div:nth-child(2) .insurance-card.active .card-icon,
body[data-theme="etiler"] .insurance-types .row > div:nth-child(2) .insurance-card.active .card-icon {
    background: linear-gradient(135deg, rgba(42, 155, 80, 1) 0%, rgba(61, 224, 132, 1) 50%, rgba(142, 237, 83, 1) 100%) !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .insurance-types .row > div:nth-child(3) .insurance-card.active .card-icon,
body[data-theme="taksim"] .insurance-types .row > div:nth-child(3) .insurance-card.active .card-icon,
body[data-theme="levent"] .insurance-types .row > div:nth-child(3) .insurance-card.active .card-icon,
body[data-theme="etiler"] .insurance-types .row > div:nth-child(3) .insurance-card.active .card-icon {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

body[data-theme="karakoy"] .insurance-types .row > div:nth-child(4) .insurance-card.active .card-icon,
body[data-theme="taksim"] .insurance-types .row > div:nth-child(4) .insurance-card.active .card-icon,
body[data-theme="levent"] .insurance-types .row > div:nth-child(4) .insurance-card.active .card-icon,
body[data-theme="etiler"] .insurance-types .row > div:nth-child(4) .insurance-card.active .card-icon {
    background-color: #0dcaf0 !important;
    color: #212529 !important;
}

body[data-theme="karakoy"] .insurance-types .row > div:nth-child(5) .insurance-card.active .card-icon,
body[data-theme="taksim"] .insurance-types .row > div:nth-child(5) .insurance-card.active .card-icon,
body[data-theme="levent"] .insurance-types .row > div:nth-child(5) .insurance-card.active .card-icon,
body[data-theme="etiler"] .insurance-types .row > div:nth-child(5) .insurance-card.active .card-icon {
    background-color: #c400e3 !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .insurance-types .row > div:nth-child(6) .insurance-card.active .card-icon,
body[data-theme="taksim"] .insurance-types .row > div:nth-child(6) .insurance-card.active .card-icon,
body[data-theme="levent"] .insurance-types .row > div:nth-child(6) .insurance-card.active .card-icon,
body[data-theme="etiler"] .insurance-types .row > div:nth-child(6) .insurance-card.active .card-icon {
    background-color: #dc3545 !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .reveal-content .btn-light:hover,
body[data-theme="taksim"] .reveal-content .btn-light:hover,
body[data-theme="levent"] .reveal-content .btn-light:hover,
body[data-theme="etiler"] .reveal-content .btn-light:hover {
    background-color: #f0f0f0 !important;
    border-color: #f0f0f0 !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3) !important;
}

/* Footer'daki çalışma saatleri için tüm child elementler ve text içeriği */
body[data-theme="karakoy"] .footer-contact li,
body[data-theme="taksim"] .footer-contact li,
body[data-theme="levent"] .footer-contact li,
body[data-theme="etiler"] .footer-contact li {
    color: rgba(255, 255, 255, 0.7) !important;
}

body[data-theme="karakoy"] .footer-contact li *,
body[data-theme="taksim"] .footer-contact li *,
body[data-theme="levent"] .footer-contact li *,
body[data-theme="etiler"] .footer-contact li * {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Footer'daki çalışma saatleri için span içindeki text */
body[data-theme="karakoy"] .footer-contact li span,
body[data-theme="taksim"] .footer-contact li span,
body[data-theme="levent"] .footer-contact li span,
body[data-theme="etiler"] .footer-contact li span {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Footer'daki çalışma saatleri için i tag'i içindeki text */
body[data-theme="karakoy"] .footer-contact li i,
body[data-theme="taksim"] .footer-contact li i,
body[data-theme="levent"] .footer-contact li i,
body[data-theme="etiler"] .footer-contact li i {
    color: var(--primary-color) !important;
}

/* ============================================
   KOYU TEMALAR İÇİN TRAFİK SORGULAMA SAYFASI
   ============================================ */

/* Koyu temalar için card (form kartı) */
body[data-theme="karakoy"] .quote-page .card,
body[data-theme="taksim"] .quote-page .card,
body[data-theme="levent"] .quote-page .card,
body[data-theme="etiler"] .quote-page .card {
    background-color: var(--card-bg-color) !important;
    border-color: var(--card-border-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için card header - primary-color kullan */
body[data-theme="karakoy"] .card-header,
body[data-theme="taksim"] .card-header,
body[data-theme="levent"] .card-header,
body[data-theme="etiler"] .card-header {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .card-header.bg-info-subtle,
body[data-theme="taksim"] .card-header.bg-info-subtle,
body[data-theme="levent"] .card-header.bg-info-subtle,
body[data-theme="etiler"] .card-header.bg-info-subtle {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .card-header .card-title,
body[data-theme="taksim"] .card-header .card-title,
body[data-theme="levent"] .card-header .card-title,
body[data-theme="etiler"] .card-header .card-title {
    color: #ffffff !important;
}

/* Koyu temalar için accordion - secondary-color kullan (farklı renk) */
body[data-theme="karakoy"] .accordion-item,
body[data-theme="taksim"] .accordion-item,
body[data-theme="levent"] .accordion-item,
body[data-theme="etiler"] .accordion-item {
    background-color: var(--card-bg-color) !important;
    border-color: var(--border-color) !important;
}

body[data-theme="karakoy"] .accordion-button,
body[data-theme="taksim"] .accordion-button,
body[data-theme="levent"] .accordion-button,
body[data-theme="etiler"] .accordion-button {
    background-color: var(--card-bg-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için accordion button chevron (ok işareti) - tüm durumlar için */
body[data-theme="karakoy"] .accordion-button::after,
body[data-theme="taksim"] .accordion-button::after,
body[data-theme="levent"] .accordion-button::after,
body[data-theme="etiler"] .accordion-button::after {
    filter: brightness(0) invert(1) !important;
    opacity: 0.9 !important;
}

/* Koyu temalar için accordion button chevron (ok işareti) - collapsed durumda (aşağı ok) */
body[data-theme="karakoy"] .accordion-button.collapsed::after,
body[data-theme="taksim"] .accordion-button.collapsed::after,
body[data-theme="levent"] .accordion-button.collapsed::after,
body[data-theme="etiler"] .accordion-button.collapsed::after {
    filter: brightness(0) invert(1) !important;
    opacity: 0.9 !important;
}

/* Koyu temalar için accordion button chevron (ok işareti) - expanded durumda (yukarı ok) */
body[data-theme="karakoy"] .accordion-button:not(.collapsed)::after,
body[data-theme="taksim"] .accordion-button:not(.collapsed)::after,
body[data-theme="levent"] .accordion-button:not(.collapsed)::after,
body[data-theme="etiler"] .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
}

body[data-theme="karakoy"] .accordion-button:not(.collapsed),
body[data-theme="taksim"] .accordion-button:not(.collapsed),
body[data-theme="levent"] .accordion-button:not(.collapsed),
body[data-theme="etiler"] .accordion-button:not(.collapsed) {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .accordion-button:focus,
body[data-theme="taksim"] .accordion-button:focus,
body[data-theme="levent"] .accordion-button:focus,
body[data-theme="etiler"] .accordion-button:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

body[data-theme="karakoy"] .accordion-body,
body[data-theme="taksim"] .accordion-body,
body[data-theme="levent"] .accordion-body,
body[data-theme="etiler"] .accordion-body {
    background-color: var(--card-bg-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için form check (radio ve checkbox) */
body[data-theme="karakoy"] .form-check-label,
body[data-theme="taksim"] .form-check-label,
body[data-theme="levent"] .form-check-label,
body[data-theme="etiler"] .form-check-label {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .form-check-input,
body[data-theme="taksim"] .form-check-input,
body[data-theme="levent"] .form-check-input,
body[data-theme="etiler"] .form-check-input {
    background-color: var(--card-bg-color) !important;
    border-color: var(--border-color) !important;
}

body[data-theme="karakoy"] .form-check-input:checked,
body[data-theme="taksim"] .form-check-input:checked,
body[data-theme="levent"] .form-check-input:checked,
body[data-theme="etiler"] .form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

body[data-theme="karakoy"] .form-check-input:focus,
body[data-theme="taksim"] .form-check-input:focus,
body[data-theme="levent"] .form-check-input:focus,
body[data-theme="etiler"] .form-check-input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

/* Koyu temalar için input group */
body[data-theme="karakoy"] .input-group-text,
body[data-theme="taksim"] .input-group-text,
body[data-theme="levent"] .input-group-text,
body[data-theme="etiler"] .input-group-text {
    background-color: var(--card-bg-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için select */
body[data-theme="karakoy"] select.form-control,
body[data-theme="taksim"] select.form-control,
body[data-theme="levent"] select.form-control,
body[data-theme="etiler"] select.form-control {
    background-color: var(--light-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] select.form-control option,
body[data-theme="taksim"] select.form-control option,
body[data-theme="levent"] select.form-control option,
body[data-theme="etiler"] select.form-control option {
    background-color: var(--card-bg-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için form-select (Bootstrap 5 select elementi) */
body[data-theme="karakoy"] .form-select,
body[data-theme="taksim"] .form-select,
body[data-theme="levent"] .form-select,
body[data-theme="etiler"] .form-select {
    background-color: var(--light-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .form-select:focus,
body[data-theme="taksim"] .form-select:focus,
body[data-theme="levent"] .form-select:focus,
body[data-theme="etiler"] .form-select:focus {
    background-color: var(--light-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

body[data-theme="karakoy"] .form-select option,
body[data-theme="taksim"] .form-select option,
body[data-theme="levent"] .form-select option,
body[data-theme="etiler"] .form-select option {
    background-color: var(--card-bg-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için select elementleri (genel) */
body[data-theme="karakoy"] select,
body[data-theme="taksim"] select,
body[data-theme="levent"] select,
body[data-theme="etiler"] select {
    background-color: var(--light-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] select:focus,
body[data-theme="taksim"] select:focus,
body[data-theme="levent"] select:focus,
body[data-theme="etiler"] select:focus {
    background-color: var(--light-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
    outline: none !important;
}

body[data-theme="karakoy"] select option,
body[data-theme="taksim"] select option,
body[data-theme="levent"] select option,
body[data-theme="etiler"] select option {
    background-color: var(--card-bg-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için form-select dropdown arrow (ok işareti) */
body[data-theme="karakoy"] .form-select,
body[data-theme="taksim"] .form-select,
body[data-theme="levent"] .form-select,
body[data-theme="etiler"] .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
}

/* Koyu temalar için form control placeholder */
body[data-theme="karakoy"] .form-control::placeholder,
body[data-theme="taksim"] .form-control::placeholder,
body[data-theme="levent"] .form-control::placeholder,
body[data-theme="etiler"] .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Koyu temalar için Bootstrap butonları - renk paletinden renkler kullan */

/* Primary buton - button-bg-color kullan */
body[data-theme="karakoy"] .quote-page .btn-primary,
body[data-theme="taksim"] .quote-page .btn-primary,
body[data-theme="levent"] .quote-page .btn-primary,
body[data-theme="etiler"] .quote-page .btn-primary {
    background-color: var(--button-bg-color) !important;
    border-color: var(--button-bg-color) !important;
    color: var(--button-text-color) !important;
}

body[data-theme="karakoy"] .quote-page .btn-primary:hover,
body[data-theme="taksim"] .quote-page .btn-primary:hover,
body[data-theme="levent"] .quote-page .btn-primary:hover,
body[data-theme="etiler"] .quote-page .btn-primary:hover {
    background-color: var(--button-hover-bg-color) !important;
    border-color: var(--button-hover-bg-color) !important;
    color: var(--button-text-color) !important;
}

/* Secondary buton - secondary-color kullan (gri ton) */
body[data-theme="karakoy"] .quote-page .btn-secondary,
body[data-theme="taksim"] .quote-page .btn-secondary,
body[data-theme="levent"] .quote-page .btn-secondary,
body[data-theme="etiler"] .quote-page .btn-secondary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .quote-page .btn-secondary:hover,
body[data-theme="taksim"] .quote-page .btn-secondary:hover,
body[data-theme="levent"] .quote-page .btn-secondary:hover,
body[data-theme="etiler"] .quote-page .btn-secondary:hover {
    background-color: var(--secondary-dark) !important;
    border-color: var(--secondary-dark) !important;
    color: #ffffff !important;
}

/* Outline Secondary buton - secondary-color border, şeffaf arka plan */
body[data-theme="karakoy"] .quote-page .btn-outline-secondary,
body[data-theme="taksim"] .quote-page .btn-outline-secondary,
body[data-theme="levent"] .quote-page .btn-outline-secondary,
body[data-theme="etiler"] .quote-page .btn-outline-secondary {
    background-color: transparent !important;
    border-color: var(--secondary-color) !important;
    color: var(--secondary-color) !important;
}

body[data-theme="karakoy"] .quote-page .btn-outline-secondary:hover,
body[data-theme="taksim"] .quote-page .btn-outline-secondary:hover,
body[data-theme="levent"] .quote-page .btn-outline-secondary:hover,
body[data-theme="etiler"] .quote-page .btn-outline-secondary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #ffffff !important;
}

/* Success buton - success-color kullan (renk paletinden) */
body[data-theme="karakoy"] .btn-success,
body[data-theme="taksim"] .btn-success,
body[data-theme="levent"] .btn-success,
body[data-theme="etiler"] .btn-success,
body[data-theme="kadikoy"] .btn-success,
body[data-theme="besiktas"] .btn-success,
body[data-theme="sisli"] .btn-success,
body[data-theme="uskudar"] .btn-success,
body[data-theme="beyoglu"] .btn-success,
body[data-theme="sariyer"] .btn-success,
body[data-theme="beylikduzu"] .btn-success,
body[data-theme="bakirkoy"] .btn-success,
body[data-theme="kartal"] .btn-success,
body[data-theme="maltepe"] .btn-success,
body[data-theme="atasehir"] .btn-success {
    background-color: var(--success-color, #28a745) !important;
    border-color: var(--success-color, #28a745) !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .btn-success:hover,
body[data-theme="taksim"] .btn-success:hover,
body[data-theme="levent"] .btn-success:hover,
body[data-theme="etiler"] .btn-success:hover,
body[data-theme="kadikoy"] .btn-success:hover,
body[data-theme="besiktas"] .btn-success:hover,
body[data-theme="sisli"] .btn-success:hover,
body[data-theme="uskudar"] .btn-success:hover,
body[data-theme="beyoglu"] .btn-success:hover,
body[data-theme="sariyer"] .btn-success:hover,
body[data-theme="beylikduzu"] .btn-success:hover,
body[data-theme="bakirkoy"] .btn-success:hover,
body[data-theme="kartal"] .btn-success:hover,
body[data-theme="maltepe"] .btn-success:hover,
body[data-theme="atasehir"] .btn-success:hover {
    background-color: var(--success-color-dark, #218838) !important;
    border-color: var(--success-color-dark, #218838) !important;
    color: #ffffff !important;
    filter: brightness(0.9) !important;
}

/* Info buton - primary-color kullan */
body[data-theme="karakoy"] .quote-page .btn-info,
body[data-theme="taksim"] .quote-page .btn-info,
body[data-theme="levent"] .quote-page .btn-info,
body[data-theme="etiler"] .quote-page .btn-info {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .quote-page .btn-info:hover,
body[data-theme="taksim"] .quote-page .btn-info:hover,
body[data-theme="levent"] .quote-page .btn-info:hover,
body[data-theme="etiler"] .quote-page .btn-info:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #ffffff !important;
}

/* Warning buton */
body[data-theme="karakoy"] .quote-page .btn-warning,
body[data-theme="taksim"] .quote-page .btn-warning,
body[data-theme="levent"] .quote-page .btn-warning,
body[data-theme="etiler"] .quote-page .btn-warning {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #000000 !important;
}

/* Danger buton */
body[data-theme="karakoy"] .quote-page .btn-danger,
body[data-theme="taksim"] .quote-page .btn-danger,
body[data-theme="levent"] .quote-page .btn-danger,
body[data-theme="etiler"] .quote-page .btn-danger {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #ffffff !important;
}

/* Light buton */
body[data-theme="karakoy"] .quote-page .btn-light,
body[data-theme="taksim"] .quote-page .btn-light,
body[data-theme="levent"] .quote-page .btn-light,
body[data-theme="etiler"] .quote-page .btn-light {
    background-color: #f8f9fa !important;
    border-color: #f8f9fa !important;
    color: #000000 !important;
}

/* Dark buton */
body[data-theme="karakoy"] .quote-page .btn-dark,
body[data-theme="taksim"] .quote-page .btn-dark,
body[data-theme="levent"] .quote-page .btn-dark,
body[data-theme="etiler"] .quote-page .btn-dark {
    background-color: var(--card-bg-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için linkler */
body[data-theme="karakoy"] .quote-page a,
body[data-theme="taksim"] .quote-page a,
body[data-theme="levent"] .quote-page a,
body[data-theme="etiler"] .quote-page a {
    color: var(--link-color) !important;
}

body[data-theme="karakoy"] .quote-page a:hover,
body[data-theme="taksim"] .quote-page a:hover,
body[data-theme="levent"] .quote-page a:hover,
body[data-theme="etiler"] .quote-page a:hover {
    color: var(--link-hover-color) !important;
}

/* Koyu temalar için başlıklar */
body[data-theme="karakoy"] .quote-page h1,
body[data-theme="karakoy"] .quote-page h2,
body[data-theme="karakoy"] .quote-page h3,
body[data-theme="karakoy"] .quote-page h4,
body[data-theme="karakoy"] .quote-page h5,
body[data-theme="karakoy"] .quote-page h6,
body[data-theme="taksim"] .quote-page h1,
body[data-theme="taksim"] .quote-page h2,
body[data-theme="taksim"] .quote-page h3,
body[data-theme="taksim"] .quote-page h4,
body[data-theme="taksim"] .quote-page h5,
body[data-theme="taksim"] .quote-page h6,
body[data-theme="levent"] .quote-page h1,
body[data-theme="levent"] .quote-page h2,
body[data-theme="levent"] .quote-page h3,
body[data-theme="levent"] .quote-page h4,
body[data-theme="levent"] .quote-page h5,
body[data-theme="levent"] .quote-page h6,
body[data-theme="etiler"] .quote-page h1,
body[data-theme="etiler"] .quote-page h2,
body[data-theme="etiler"] .quote-page h3,
body[data-theme="etiler"] .quote-page h4,
body[data-theme="etiler"] .quote-page h5,
body[data-theme="etiler"] .quote-page h6 {
    color: var(--heading-color) !important;
}

/* ============================================
   KOYU TEMALAR İÇİN GENEL BOOTSTRAP BUTONLARI
   ============================================ */

/* Primary buton - button-bg-color kullan */
body[data-theme="karakoy"] .btn-primary,
body[data-theme="taksim"] .btn-primary,
body[data-theme="levent"] .btn-primary,
body[data-theme="etiler"] .btn-primary {
    background-color: var(--button-bg-color) !important;
    border-color: var(--button-bg-color) !important;
    color: var(--button-text-color) !important;
}

body[data-theme="karakoy"] .btn-primary:hover,
body[data-theme="taksim"] .btn-primary:hover,
body[data-theme="levent"] .btn-primary:hover,
body[data-theme="etiler"] .btn-primary:hover {
    background-color: var(--button-hover-bg-color) !important;
    border-color: var(--button-hover-bg-color) !important;
    color: var(--button-text-color) !important;
}

/* Secondary buton - secondary-color kullan */
body[data-theme="karakoy"] .btn-secondary,
body[data-theme="taksim"] .btn-secondary,
body[data-theme="levent"] .btn-secondary,
body[data-theme="etiler"] .btn-secondary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .btn-secondary:hover,
body[data-theme="taksim"] .btn-secondary:hover,
body[data-theme="levent"] .btn-secondary:hover,
body[data-theme="etiler"] .btn-secondary:hover {
    background-color: var(--secondary-dark) !important;
    border-color: var(--secondary-dark) !important;
    color: #ffffff !important;
}

/* Outline Secondary buton - border-color kullan (gri ton - Temizle butonu için) */
body[data-theme="karakoy"] .btn-outline-secondary,
body[data-theme="taksim"] .btn-outline-secondary,
body[data-theme="levent"] .btn-outline-secondary,
body[data-theme="etiler"] .btn-outline-secondary {
    background-color: transparent !important;
    border-color: var(--border-color) !important;
    color: var(--border-color) !important;
}

body[data-theme="karakoy"] .btn-outline-secondary:hover,
body[data-theme="taksim"] .btn-outline-secondary:hover,
body[data-theme="levent"] .btn-outline-secondary:hover,
body[data-theme="etiler"] .btn-outline-secondary:hover {
    background-color: var(--border-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

/* Info buton - primary-color kullan */
body[data-theme="karakoy"] .btn-info,
body[data-theme="taksim"] .btn-info,
body[data-theme="levent"] .btn-info,
body[data-theme="etiler"] .btn-info {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .btn-info:hover,
body[data-theme="taksim"] .btn-info:hover,
body[data-theme="levent"] .btn-info:hover,
body[data-theme="etiler"] .btn-info:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #ffffff !important;
}

/* Outline Primary buton */
body[data-theme="karakoy"] .btn-outline-primary,
body[data-theme="taksim"] .btn-outline-primary,
body[data-theme="levent"] .btn-outline-primary,
body[data-theme="etiler"] .btn-outline-primary {
    background-color: transparent !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

body[data-theme="karakoy"] .btn-outline-primary:hover,
body[data-theme="taksim"] .btn-outline-primary:hover,
body[data-theme="levent"] .btn-outline-primary:hover,
body[data-theme="etiler"] .btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
}

/* ============================================
   KOYU TEMALAR İÇİN MODAL/POPUP PENCERELERİ
   ============================================ */

/* Koyu temalar için modal backdrop */
body[data-theme="karakoy"] .modal-backdrop,
body[data-theme="taksim"] .modal-backdrop,
body[data-theme="levent"] .modal-backdrop,
body[data-theme="etiler"] .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

/* Koyu temalar için modal content */
body[data-theme="karakoy"] .modal-content,
body[data-theme="taksim"] .modal-content,
body[data-theme="levent"] .modal-content,
body[data-theme="etiler"] .modal-content {
    background-color: var(--card-bg-color) !important;
    border-color: var(--card-border-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için modal header */
body[data-theme="karakoy"] .modal-header,
body[data-theme="taksim"] .modal-header,
body[data-theme="levent"] .modal-header,
body[data-theme="etiler"] .modal-header {
    background-color: var(--primary-color) !important;
    border-bottom-color: var(--primary-dark) !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .modal-header .modal-title,
body[data-theme="taksim"] .modal-header .modal-title,
body[data-theme="levent"] .modal-header .modal-title,
body[data-theme="etiler"] .modal-header .modal-title {
    color: #ffffff !important;
}

body[data-theme="karakoy"] .modal-header .btn-close,
body[data-theme="taksim"] .modal-header .btn-close,
body[data-theme="levent"] .modal-header .btn-close,
body[data-theme="etiler"] .modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%) !important;
}

/* Koyu temalar için modal body */
body[data-theme="karakoy"] .modal-body,
body[data-theme="taksim"] .modal-body,
body[data-theme="levent"] .modal-body,
body[data-theme="etiler"] .modal-body {
    background-color: var(--card-bg-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .modal-body h1,
body[data-theme="karakoy"] .modal-body h2,
body[data-theme="karakoy"] .modal-body h3,
body[data-theme="karakoy"] .modal-body h4,
body[data-theme="karakoy"] .modal-body h5,
body[data-theme="karakoy"] .modal-body h6,
body[data-theme="taksim"] .modal-body h1,
body[data-theme="taksim"] .modal-body h2,
body[data-theme="taksim"] .modal-body h3,
body[data-theme="taksim"] .modal-body h4,
body[data-theme="taksim"] .modal-body h5,
body[data-theme="taksim"] .modal-body h6,
body[data-theme="levent"] .modal-body h1,
body[data-theme="levent"] .modal-body h2,
body[data-theme="levent"] .modal-body h3,
body[data-theme="levent"] .modal-body h4,
body[data-theme="levent"] .modal-body h5,
body[data-theme="levent"] .modal-body h6,
body[data-theme="etiler"] .modal-body h1,
body[data-theme="etiler"] .modal-body h2,
body[data-theme="etiler"] .modal-body h3,
body[data-theme="etiler"] .modal-body h4,
body[data-theme="etiler"] .modal-body h5,
body[data-theme="etiler"] .modal-body h6 {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .modal-body p,
body[data-theme="taksim"] .modal-body p,
body[data-theme="levent"] .modal-body p,
body[data-theme="etiler"] .modal-body p {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .modal-body label,
body[data-theme="taksim"] .modal-body label,
body[data-theme="levent"] .modal-body label,
body[data-theme="etiler"] .modal-body label {
    color: var(--text-color) !important;
}

/* Koyu temalar için modal footer */
body[data-theme="karakoy"] .modal-footer,
body[data-theme="taksim"] .modal-footer,
body[data-theme="levent"] .modal-footer,
body[data-theme="etiler"] .modal-footer {
    background-color: var(--card-bg-color) !important;
    border-top-color: var(--card-border-color) !important;
}

body[data-theme="karakoy"] .modal-footer-scrollable,
body[data-theme="taksim"] .modal-footer-scrollable,
body[data-theme="levent"] .modal-footer-scrollable,
body[data-theme="etiler"] .modal-footer-scrollable {
    background-color: var(--card-bg-color) !important;
    border-top-color: var(--card-border-color) !important;
}

/* Koyu temalar için modal içindeki form kontrolleri */
body[data-theme="karakoy"] .modal-body .form-control,
body[data-theme="taksim"] .modal-body .form-control,
body[data-theme="levent"] .modal-body .form-control,
body[data-theme="etiler"] .modal-body .form-control {
    background-color: var(--light-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .modal-body .form-control:focus,
body[data-theme="taksim"] .modal-body .form-control:focus,
body[data-theme="levent"] .modal-body .form-control:focus,
body[data-theme="etiler"] .modal-body .form-control:focus {
    background-color: var(--light-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

body[data-theme="karakoy"] .modal-body .form-control::placeholder,
body[data-theme="taksim"] .modal-body .form-control::placeholder,
body[data-theme="levent"] .modal-body .form-control::placeholder,
body[data-theme="etiler"] .modal-body .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Koyu temalar için telefon doğrulama modal'ı - kod input alanları */
body[data-theme="karakoy"] .verification-code-container,
body[data-theme="taksim"] .verification-code-container,
body[data-theme="levent"] .verification-code-container,
body[data-theme="etiler"] .verification-code-container {
    background-color: transparent !important;
}

body[data-theme="karakoy"] .code-digit,
body[data-theme="taksim"] .code-digit,
body[data-theme="levent"] .code-digit,
body[data-theme="etiler"] .code-digit {
    background-color: var(--light-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .code-digit:focus,
body[data-theme="taksim"] .code-digit:focus,
body[data-theme="levent"] .code-digit:focus,
body[data-theme="etiler"] .code-digit:focus {
    background-color: var(--light-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

/* Koyu temalar için verification wrapper */
body[data-theme="karakoy"] .verification-wrapper,
body[data-theme="taksim"] .verification-wrapper,
body[data-theme="levent"] .verification-wrapper,
body[data-theme="etiler"] .verification-wrapper {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .verification-wrapper p,
body[data-theme="taksim"] .verification-wrapper p,
body[data-theme="levent"] .verification-wrapper p,
body[data-theme="etiler"] .verification-wrapper p {
    color: var(--text-color) !important;
}

/* Koyu temalar için timer container */
body[data-theme="karakoy"] #timer-container,
body[data-theme="taksim"] #timer-container,
body[data-theme="levent"] #timer-container,
body[data-theme="etiler"] #timer-container {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] #timer-text,
body[data-theme="taksim"] #timer-text,
body[data-theme="levent"] #timer-text,
body[data-theme="etiler"] #timer-text {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] #resend-container,
body[data-theme="taksim"] #resend-container,
body[data-theme="levent"] #resend-container,
body[data-theme="etiler"] #resend-container {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] #resend-container a,
body[data-theme="taksim"] #resend-container a,
body[data-theme="levent"] #resend-container a,
body[data-theme="etiler"] #resend-container a {
    color: var(--link-color) !important;
}

body[data-theme="karakoy"] #resend-container a:hover,
body[data-theme="taksim"] #resend-container a:hover,
body[data-theme="levent"] #resend-container a:hover,
body[data-theme="etiler"] #resend-container a:hover {
    color: var(--link-hover-color) !important;
}

/* Koyu temalar için modal içindeki alert'ler */
body[data-theme="karakoy"] .modal-body .alert,
body[data-theme="taksim"] .modal-body .alert,
body[data-theme="levent"] .modal-body .alert,
body[data-theme="etiler"] .modal-body .alert {
    background-color: var(--card-bg-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .modal-body .alert-info,
body[data-theme="taksim"] .modal-body .alert-info,
body[data-theme="levent"] .modal-body .alert-info,
body[data-theme="etiler"] .modal-body .alert-info {
    background-color: rgba(0, 123, 255, 0.2) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .modal-body .alert-success,
body[data-theme="taksim"] .modal-body .alert-success,
body[data-theme="levent"] .modal-body .alert-success,
body[data-theme="etiler"] .modal-body .alert-success {
    background-color: rgba(40, 167, 69, 0.2) !important;
    border-color: #28a745 !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .modal-body .alert-danger,
body[data-theme="taksim"] .modal-body .alert-danger,
body[data-theme="levent"] .modal-body .alert-danger,
body[data-theme="etiler"] .modal-body .alert-danger {
    background-color: rgba(220, 53, 69, 0.2) !important;
    border-color: #dc3545 !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .modal-body .alert-warning,
body[data-theme="taksim"] .modal-body .alert-warning,
body[data-theme="levent"] .modal-body .alert-warning,
body[data-theme="etiler"] .modal-body .alert-warning {
    background-color: rgba(255, 193, 7, 0.2) !important;
    border-color: #ffc107 !important;
    color: var(--text-color) !important;
}

/* ============================================
   KOYU TEMALAR İÇİN SWEETALERT2 POPUP'LARI
   ============================================ */

/* Koyu temalar için SweetAlert2 container */
body[data-theme="karakoy"] .swal2-container,
body[data-theme="taksim"] .swal2-container,
body[data-theme="levent"] .swal2-container,
body[data-theme="etiler"] .swal2-container {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

/* Koyu temalar için SweetAlert2 popup */
body[data-theme="karakoy"] .swal2-popup,
body[data-theme="taksim"] .swal2-popup,
body[data-theme="levent"] .swal2-popup,
body[data-theme="etiler"] .swal2-popup {
    background-color: var(--card-bg-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için error-quotes-popup (Sorunlu Teklifler modal'ı) */
body[data-theme="karakoy"] .swal2-popup.error-quotes-popup,
body[data-theme="taksim"] .swal2-popup.error-quotes-popup,
body[data-theme="levent"] .swal2-popup.error-quotes-popup,
body[data-theme="etiler"] .swal2-popup.error-quotes-popup {
    background-color: rgba(50, 50, 50, 0.95) !important; /* Siyahın tonları */
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .swal2-popup.error-quotes-popup .swal2-html-container,
body[data-theme="taksim"] .swal2-popup.error-quotes-popup .swal2-html-container,
body[data-theme="levent"] .swal2-popup.error-quotes-popup .swal2-html-container,
body[data-theme="etiler"] .swal2-popup.error-quotes-popup .swal2-html-container {
    color: var(--text-color) !important;
}

/* Koyu temalar için corporate-error-table */
body[data-theme="karakoy"] .corporate-error-table,
body[data-theme="taksim"] .corporate-error-table,
body[data-theme="levent"] .corporate-error-table,
body[data-theme="etiler"] .corporate-error-table {
    background: rgba(50, 50, 50, 0.95) !important; /* Siyahın tonları */
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .corporate-error-table thead th,
body[data-theme="taksim"] .corporate-error-table thead th,
body[data-theme="levent"] .corporate-error-table thead th,
body[data-theme="etiler"] .corporate-error-table thead th {
    background-color: rgba(40, 40, 40, 0.95) !important; /* Daha koyu başlık */
    color: var(--heading-color) !important;
    border-color: var(--border-color) !important;
}

/* Beyaz temalar için corporate-error-table thead th - Bootstrap table-dark rengi */
body[data-theme="kadikoy"] .corporate-error-table thead th,
body[data-theme="besiktas"] .corporate-error-table thead th,
body[data-theme="uskudar"] .corporate-error-table thead th,
body[data-theme="beyoglu"] .corporate-error-table thead th,
body[data-theme="sisli"] .corporate-error-table thead th,
body[data-theme="beylikduzu"] .corporate-error-table thead th,
body[data-theme="maltepe"] .corporate-error-table thead th,
body[data-theme="atasehir"] .corporate-error-table thead th {
    background-color: #495057 !important; /* Bootstrap table-dark rengi */
    color: #ffffff !important; /* Beyaz metin */
    border-color: #32383e !important;
}

body[data-theme="karakoy"] .corporate-error-table tbody tr,
body[data-theme="taksim"] .corporate-error-table tbody tr,
body[data-theme="levent"] .corporate-error-table tbody tr,
body[data-theme="etiler"] .corporate-error-table tbody tr {
    background-color: rgba(50, 50, 50, 0.95) !important;
    border-bottom-color: var(--border-color) !important;
}

body[data-theme="karakoy"] .corporate-error-table tbody tr:hover,
body[data-theme="taksim"] .corporate-error-table tbody tr:hover,
body[data-theme="levent"] .corporate-error-table tbody tr:hover,
body[data-theme="etiler"] .corporate-error-table tbody tr:hover {
    background-color: rgba(60, 60, 60, 0.95) !important; /* Hover için biraz daha açık */
}

body[data-theme="karakoy"] .corporate-error-table tbody td,
body[data-theme="taksim"] .corporate-error-table tbody td,
body[data-theme="levent"] .corporate-error-table tbody td,
body[data-theme="etiler"] .corporate-error-table tbody td {
    color: var(--text-color) !important;
    border-color: var(--border-color) !important;
}

/* Koyu temalar için badge'ler */
body[data-theme="karakoy"] .corporate-error-table .corporate-badge,
body[data-theme="taksim"] .corporate-error-table .corporate-badge,
body[data-theme="levent"] .corporate-error-table .corporate-badge,
body[data-theme="etiler"] .corporate-error-table .corporate-badge {
    color: white !important; /* Badge metinleri beyaz kalmalı */
}

body[data-theme="karakoy"] .corporate-error-table .identity-text,
body[data-theme="taksim"] .corporate-error-table .identity-text,
body[data-theme="levent"] .corporate-error-table .identity-text,
body[data-theme="etiler"] .corporate-error-table .identity-text {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .corporate-error-table .error-text,
body[data-theme="taksim"] .corporate-error-table .error-text,
body[data-theme="levent"] .corporate-error-table .error-text,
body[data-theme="etiler"] .corporate-error-table .error-text {
    color: #ff6b6b !important; /* Hata metni kırmızı kalmalı ama daha açık ton */
}

body[data-theme="karakoy"] .corporate-error-table .date-text,
body[data-theme="taksim"] .corporate-error-table .date-text,
body[data-theme="levent"] .corporate-error-table .date-text,
body[data-theme="etiler"] .corporate-error-table .date-text {
    color: var(--text-color) !important;
}

/* Koyu temalar için table-footer */
body[data-theme="karakoy"] .corporate-error-table .table-footer,
body[data-theme="taksim"] .corporate-error-table .table-footer,
body[data-theme="levent"] .corporate-error-table .table-footer,
body[data-theme="etiler"] .corporate-error-table .table-footer,
body[data-theme="karakoy"] .swal2-popup.error-quotes-popup .table-footer,
body[data-theme="taksim"] .swal2-popup.error-quotes-popup .table-footer,
body[data-theme="levent"] .swal2-popup.error-quotes-popup .table-footer,
body[data-theme="etiler"] .swal2-popup.error-quotes-popup .table-footer,
body[data-theme="karakoy"] .error-quotes-popup .table-footer,
body[data-theme="taksim"] .error-quotes-popup .table-footer,
body[data-theme="levent"] .error-quotes-popup .table-footer,
body[data-theme="etiler"] .error-quotes-popup .table-footer {
    background-color: rgba(60, 60, 60, 0.95) !important; /* Daha açık ton */
    border-top-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .corporate-error-table .table-footer .text-muted,
body[data-theme="taksim"] .corporate-error-table .table-footer .text-muted,
body[data-theme="levent"] .corporate-error-table .table-footer .text-muted,
body[data-theme="etiler"] .corporate-error-table .table-footer .text-muted,
body[data-theme="karakoy"] .swal2-popup.error-quotes-popup .table-footer .text-muted,
body[data-theme="taksim"] .swal2-popup.error-quotes-popup .table-footer .text-muted,
body[data-theme="levent"] .swal2-popup.error-quotes-popup .table-footer .text-muted,
body[data-theme="etiler"] .swal2-popup.error-quotes-popup .table-footer .text-muted,
body[data-theme="karakoy"] .error-quotes-popup .table-footer .text-muted,
body[data-theme="taksim"] .error-quotes-popup .table-footer .text-muted,
body[data-theme="levent"] .error-quotes-popup .table-footer .text-muted,
body[data-theme="etiler"] .error-quotes-popup .table-footer .text-muted,
body[data-theme="karakoy"] .swal2-popup.error-quotes-popup .table-footer strong,
body[data-theme="taksim"] .swal2-popup.error-quotes-popup .table-footer strong,
body[data-theme="levent"] .swal2-popup.error-quotes-popup .table-footer strong,
body[data-theme="etiler"] .swal2-popup.error-quotes-popup .table-footer strong,
body[data-theme="karakoy"] .swal2-popup.error-quotes-popup .table-footer small,
body[data-theme="taksim"] .swal2-popup.error-quotes-popup .table-footer small,
body[data-theme="levent"] .swal2-popup.error-quotes-popup .table-footer small,
body[data-theme="etiler"] .swal2-popup.error-quotes-popup .table-footer small {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .swal2-popup.error-quotes-popup .table-footer .text-muted,
body[data-theme="taksim"] .swal2-popup.error-quotes-popup .table-footer .text-muted,
body[data-theme="levent"] .swal2-popup.error-quotes-popup .table-footer .text-muted,
body[data-theme="etiler"] .swal2-popup.error-quotes-popup .table-footer .text-muted {
    opacity: 0.9;
}

/* Koyu temalar için mobil görünüm */
body[data-theme="karakoy"] .corporate-error-table tbody tr,
body[data-theme="taksim"] .corporate-error-table tbody tr,
body[data-theme="levent"] .corporate-error-table tbody tr,
body[data-theme="etiler"] .corporate-error-table tbody tr {
    background: rgba(50, 50, 50, 0.95) !important;
}

body[data-theme="karakoy"] .corporate-error-table .mobile-row-header,
body[data-theme="taksim"] .corporate-error-table .mobile-row-header,
body[data-theme="levent"] .corporate-error-table .mobile-row-header,
body[data-theme="etiler"] .corporate-error-table .mobile-row-header {
    background-color: rgba(60, 60, 60, 0.8) !important;
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .corporate-error-table tbody td:before,
body[data-theme="taksim"] .corporate-error-table tbody td:before,
body[data-theme="levent"] .corporate-error-table tbody td:before,
body[data-theme="etiler"] .corporate-error-table tbody td:before {
    color: var(--heading-color) !important;
}

/* Koyu temalar için SweetAlert2 başlık */
body[data-theme="karakoy"] .swal2-title,
body[data-theme="taksim"] .swal2-title,
body[data-theme="levent"] .swal2-title,
body[data-theme="etiler"] .swal2-title {
    color: var(--heading-color) !important;
}

/* Koyu temalar için SweetAlert2 içerik */
body[data-theme="karakoy"] .swal2-html-container,
body[data-theme="taksim"] .swal2-html-container,
body[data-theme="levent"] .swal2-html-container,
body[data-theme="etiler"] .swal2-html-container {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .swal2-html-container p,
body[data-theme="taksim"] .swal2-html-container p,
body[data-theme="levent"] .swal2-html-container p,
body[data-theme="etiler"] .swal2-html-container p {
    color: var(--text-color) !important;
}

/* Koyu temalar için SweetAlert2 input */
body[data-theme="karakoy"] .swal2-input,
body[data-theme="taksim"] .swal2-input,
body[data-theme="levent"] .swal2-input,
body[data-theme="etiler"] .swal2-input {
    background-color: var(--light-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .swal2-input:focus,
body[data-theme="taksim"] .swal2-input:focus,
body[data-theme="levent"] .swal2-input:focus,
body[data-theme="etiler"] .swal2-input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

/* Koyu temalar için SweetAlert2 içindeki telefon numarası input alanı */
body[data-theme="karakoy"] .swal2-popup #phone,
body[data-theme="karakoy"] .swal2-popup input[type="tel"][id="phone"],
body[data-theme="taksim"] .swal2-popup #phone,
body[data-theme="taksim"] .swal2-popup input[type="tel"][id="phone"],
body[data-theme="levent"] .swal2-popup #phone,
body[data-theme="levent"] .swal2-popup input[type="tel"][id="phone"],
body[data-theme="etiler"] .swal2-popup #phone,
body[data-theme="etiler"] .swal2-popup input[type="tel"][id="phone"] {
    background-color: var(--light-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .swal2-popup #phone:focus,
body[data-theme="karakoy"] .swal2-popup input[type="tel"][id="phone"]:focus,
body[data-theme="taksim"] .swal2-popup #phone:focus,
body[data-theme="taksim"] .swal2-popup input[type="tel"][id="phone"]:focus,
body[data-theme="levent"] .swal2-popup #phone:focus,
body[data-theme="levent"] .swal2-popup input[type="tel"][id="phone"]:focus,
body[data-theme="etiler"] .swal2-popup #phone:focus,
body[data-theme="etiler"] .swal2-popup input[type="tel"][id="phone"]:focus {
    background-color: var(--light-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

body[data-theme="karakoy"] .swal2-popup #phone::placeholder,
body[data-theme="karakoy"] .swal2-popup input[type="tel"][id="phone"]::placeholder,
body[data-theme="taksim"] .swal2-popup #phone::placeholder,
body[data-theme="taksim"] .swal2-popup input[type="tel"][id="phone"]::placeholder,
body[data-theme="levent"] .swal2-popup #phone::placeholder,
body[data-theme="levent"] .swal2-popup input[type="tel"][id="phone"]::placeholder,
body[data-theme="etiler"] .swal2-popup #phone::placeholder,
body[data-theme="etiler"] .swal2-popup input[type="tel"][id="phone"]::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Koyu temalar için telefon doğrulama container içindeki tüm input'lar */
body[data-theme="karakoy"] .phone-verification-container input,
body[data-theme="taksim"] .phone-verification-container input,
body[data-theme="levent"] .phone-verification-container input,
body[data-theme="etiler"] .phone-verification-container input {
    background-color: var(--light-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .phone-verification-container input:focus,
body[data-theme="taksim"] .phone-verification-container input:focus,
body[data-theme="levent"] .phone-verification-container input:focus,
body[data-theme="etiler"] .phone-verification-container input:focus {
    background-color: var(--light-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

body[data-theme="karakoy"] .phone-verification-container input::placeholder,
body[data-theme="taksim"] .phone-verification-container input::placeholder,
body[data-theme="levent"] .phone-verification-container input::placeholder,
body[data-theme="etiler"] .phone-verification-container input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Koyu temalar için SweetAlert2 butonlar */
body[data-theme="karakoy"] .swal2-confirm,
body[data-theme="taksim"] .swal2-confirm,
body[data-theme="levent"] .swal2-confirm,
body[data-theme="etiler"] .swal2-confirm {
    background-color: var(--button-bg-color) !important;
    color: var(--button-text-color) !important;
}

body[data-theme="karakoy"] .swal2-confirm:hover,
body[data-theme="taksim"] .swal2-confirm:hover,
body[data-theme="levent"] .swal2-confirm:hover,
body[data-theme="etiler"] .swal2-confirm:hover {
    background-color: var(--button-hover-bg-color) !important;
}

body[data-theme="karakoy"] .swal2-cancel,
body[data-theme="taksim"] .swal2-cancel,
body[data-theme="levent"] .swal2-cancel,
body[data-theme="etiler"] .swal2-cancel {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .swal2-cancel:hover,
body[data-theme="taksim"] .swal2-cancel:hover,
body[data-theme="levent"] .swal2-cancel:hover,
body[data-theme="etiler"] .swal2-cancel:hover {
    background-color: var(--secondary-dark) !important;
}

/* Koyu temalar için SweetAlert2 close button */
body[data-theme="karakoy"] .swal2-close,
body[data-theme="taksim"] .swal2-close,
body[data-theme="levent"] .swal2-close,
body[data-theme="etiler"] .swal2-close {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .swal2-close:hover,
body[data-theme="taksim"] .swal2-close:hover,
body[data-theme="levent"] .swal2-close:hover,
body[data-theme="etiler"] .swal2-close:hover {
    color: var(--primary-color) !important;
}

/* ============================================
   KOYU TEMALAR İÇİN MODAL/POPUP PENCERELERİ
   ============================================ */

/* Koyu temalar için modal backdrop */
body[data-theme="karakoy"] .modal-backdrop,
body[data-theme="taksim"] .modal-backdrop,
body[data-theme="levent"] .modal-backdrop,
body[data-theme="etiler"] .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

/* Koyu temalar için modal content */
body[data-theme="karakoy"] .modal-content,
body[data-theme="taksim"] .modal-content,
body[data-theme="levent"] .modal-content,
body[data-theme="etiler"] .modal-content {
    background-color: var(--card-bg-color) !important;
    border-color: var(--card-border-color) !important;
    color: var(--text-color) !important;
}

/* Koyu temalar için modal header */
body[data-theme="karakoy"] .modal-header,
body[data-theme="taksim"] .modal-header,
body[data-theme="levent"] .modal-header,
body[data-theme="etiler"] .modal-header {
    background-color: var(--primary-color) !important;
    border-bottom-color: var(--primary-dark) !important;
    color: #ffffff !important;
}

body[data-theme="karakoy"] .modal-header .modal-title,
body[data-theme="taksim"] .modal-header .modal-title,
body[data-theme="levent"] .modal-header .modal-title,
body[data-theme="etiler"] .modal-header .modal-title {
    color: #ffffff !important;
}

body[data-theme="karakoy"] .modal-header .btn-close,
body[data-theme="taksim"] .modal-header .btn-close,
body[data-theme="levent"] .modal-header .btn-close,
body[data-theme="etiler"] .modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%) !important;
}

/* Koyu temalar için modal body */
body[data-theme="karakoy"] .modal-body,
body[data-theme="taksim"] .modal-body,
body[data-theme="levent"] .modal-body,
body[data-theme="etiler"] .modal-body {
    background-color: var(--card-bg-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .modal-body h1,
body[data-theme="karakoy"] .modal-body h2,
body[data-theme="karakoy"] .modal-body h3,
body[data-theme="karakoy"] .modal-body h4,
body[data-theme="karakoy"] .modal-body h5,
body[data-theme="karakoy"] .modal-body h6,
body[data-theme="taksim"] .modal-body h1,
body[data-theme="taksim"] .modal-body h2,
body[data-theme="taksim"] .modal-body h3,
body[data-theme="taksim"] .modal-body h4,
body[data-theme="taksim"] .modal-body h5,
body[data-theme="taksim"] .modal-body h6,
body[data-theme="levent"] .modal-body h1,
body[data-theme="levent"] .modal-body h2,
body[data-theme="levent"] .modal-body h3,
body[data-theme="levent"] .modal-body h4,
body[data-theme="levent"] .modal-body h5,
body[data-theme="levent"] .modal-body h6,
body[data-theme="etiler"] .modal-body h1,
body[data-theme="etiler"] .modal-body h2,
body[data-theme="etiler"] .modal-body h3,
body[data-theme="etiler"] .modal-body h4,
body[data-theme="etiler"] .modal-body h5,
body[data-theme="etiler"] .modal-body h6 {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .modal-body p,
body[data-theme="taksim"] .modal-body p,
body[data-theme="levent"] .modal-body p,
body[data-theme="etiler"] .modal-body p {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .modal-body label,
body[data-theme="taksim"] .modal-body label,
body[data-theme="levent"] .modal-body label,
body[data-theme="etiler"] .modal-body label {
    color: var(--text-color) !important;
}

/* Koyu temalar için modal footer */
body[data-theme="karakoy"] .modal-footer,
body[data-theme="taksim"] .modal-footer,
body[data-theme="levent"] .modal-footer,
body[data-theme="etiler"] .modal-footer {
    background-color: var(--card-bg-color) !important;
    border-top-color: var(--card-border-color) !important;
}

body[data-theme="karakoy"] .modal-footer-scrollable,
body[data-theme="taksim"] .modal-footer-scrollable,
body[data-theme="levent"] .modal-footer-scrollable,
body[data-theme="etiler"] .modal-footer-scrollable {
    background-color: var(--card-bg-color) !important;
    border-top-color: var(--card-border-color) !important;
}

/* Koyu temalar için modal içindeki form kontrolleri */
body[data-theme="karakoy"] .modal-body .form-control,
body[data-theme="taksim"] .modal-body .form-control,
body[data-theme="levent"] .modal-body .form-control,
body[data-theme="etiler"] .modal-body .form-control {
    background-color: var(--light-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .modal-body .form-control:focus,
body[data-theme="taksim"] .modal-body .form-control:focus,
body[data-theme="levent"] .modal-body .form-control:focus,
body[data-theme="etiler"] .modal-body .form-control:focus {
    background-color: var(--light-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

body[data-theme="karakoy"] .modal-body .form-control::placeholder,
body[data-theme="taksim"] .modal-body .form-control::placeholder,
body[data-theme="levent"] .modal-body .form-control::placeholder,
body[data-theme="etiler"] .modal-body .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Koyu temalar için telefon doğrulama modal'ı - kod input alanları */
body[data-theme="karakoy"] .verification-code-container,
body[data-theme="taksim"] .verification-code-container,
body[data-theme="levent"] .verification-code-container,
body[data-theme="etiler"] .verification-code-container {
    background-color: transparent !important;
}

body[data-theme="karakoy"] .code-digit,
body[data-theme="taksim"] .code-digit,
body[data-theme="levent"] .code-digit,
body[data-theme="etiler"] .code-digit {
    background-color: var(--light-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .code-digit:focus,
body[data-theme="taksim"] .code-digit:focus,
body[data-theme="levent"] .code-digit:focus,
body[data-theme="etiler"] .code-digit:focus {
    background-color: var(--light-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

/* Koyu temalar için verification wrapper */
body[data-theme="karakoy"] .verification-wrapper,
body[data-theme="taksim"] .verification-wrapper,
body[data-theme="levent"] .verification-wrapper,
body[data-theme="etiler"] .verification-wrapper {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .verification-wrapper p,
body[data-theme="taksim"] .verification-wrapper p,
body[data-theme="levent"] .verification-wrapper p,
body[data-theme="etiler"] .verification-wrapper p {
    color: var(--text-color) !important;
}

/* Koyu temalar için timer container */
body[data-theme="karakoy"] #timer-container,
body[data-theme="taksim"] #timer-container,
body[data-theme="levent"] #timer-container,
body[data-theme="etiler"] #timer-container {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] #timer-text,
body[data-theme="taksim"] #timer-text,
body[data-theme="levent"] #timer-text,
body[data-theme="etiler"] #timer-text {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] #resend-container,
body[data-theme="taksim"] #resend-container,
body[data-theme="levent"] #resend-container,
body[data-theme="etiler"] #resend-container {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] #resend-container a,
body[data-theme="taksim"] #resend-container a,
body[data-theme="levent"] #resend-container a,
body[data-theme="etiler"] #resend-container a {
    color: var(--link-color) !important;
}

body[data-theme="karakoy"] #resend-container a:hover,
body[data-theme="taksim"] #resend-container a:hover,
body[data-theme="levent"] #resend-container a:hover,
body[data-theme="etiler"] #resend-container a:hover {
    color: var(--link-hover-color) !important;
}

/* Koyu temalar için modal içindeki alert'ler */
body[data-theme="karakoy"] .modal-body .alert,
body[data-theme="taksim"] .modal-body .alert,
body[data-theme="levent"] .modal-body .alert,
body[data-theme="etiler"] .modal-body .alert {
    background-color: var(--card-bg-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .modal-body .alert-info,
body[data-theme="taksim"] .modal-body .alert-info,
body[data-theme="levent"] .modal-body .alert-info,
body[data-theme="etiler"] .modal-body .alert-info {
    background-color: rgba(0, 123, 255, 0.2) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .modal-body .alert-success,
body[data-theme="taksim"] .modal-body .alert-success,
body[data-theme="levent"] .modal-body .alert-success,
body[data-theme="etiler"] .modal-body .alert-success {
    background-color: rgba(40, 167, 69, 0.2) !important;
    border-color: #28a745 !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .modal-body .alert-danger,
body[data-theme="taksim"] .modal-body .alert-danger,
body[data-theme="levent"] .modal-body .alert-danger,
body[data-theme="etiler"] .modal-body .alert-danger {
    background-color: rgba(220, 53, 69, 0.2) !important;
    border-color: #dc3545 !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .modal-body .alert-warning,
body[data-theme="taksim"] .modal-body .alert-warning,
body[data-theme="levent"] .modal-body .alert-warning,
body[data-theme="etiler"] .modal-body .alert-warning {
    background-color: rgba(255, 193, 7, 0.2) !important;
    border-color: #ffc107 !important;
    color: var(--text-color) !important;
}


/* Koyu temalar için result-container'lar (trafik, kasko, tss, dask, konut, imm) */
body[data-theme="karakoy"] #trafik-result-container,
body[data-theme="karakoy"] #kasko-result-container,
body[data-theme="karakoy"] #tss-result-container,
body[data-theme="karakoy"] #dask-result-container,
body[data-theme="karakoy"] #konut-result-container,
body[data-theme="karakoy"] #imm-result-container,
body[data-theme="taksim"] #trafik-result-container,
body[data-theme="taksim"] #kasko-result-container,
body[data-theme="taksim"] #tss-result-container,
body[data-theme="taksim"] #dask-result-container,
body[data-theme="taksim"] #konut-result-container,
body[data-theme="taksim"] #imm-result-container,
body[data-theme="levent"] #trafik-result-container,
body[data-theme="levent"] #kasko-result-container,
body[data-theme="levent"] #tss-result-container,
body[data-theme="levent"] #dask-result-container,
body[data-theme="levent"] #konut-result-container,
body[data-theme="levent"] #imm-result-container,
body[data-theme="etiler"] #trafik-result-container,
body[data-theme="etiler"] #kasko-result-container,
body[data-theme="etiler"] #tss-result-container,
body[data-theme="etiler"] #dask-result-container,
body[data-theme="etiler"] #konut-result-container,
body[data-theme="etiler"] #imm-result-container {
    background-color: rgba(50, 50, 50, 0.95) !important; /* Siyahın tonları */
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
    border-left-color: var(--primary-color) !important;
}

body[data-theme="karakoy"] #trafik-result-container h3,
body[data-theme="karakoy"] #trafik-result-container h4,
body[data-theme="karakoy"] #trafik-result-container h5,
body[data-theme="karakoy"] #kasko-result-container h3,
body[data-theme="karakoy"] #kasko-result-container h4,
body[data-theme="karakoy"] #kasko-result-container h5,
body[data-theme="karakoy"] #tss-result-container h3,
body[data-theme="karakoy"] #tss-result-container h4,
body[data-theme="karakoy"] #tss-result-container h5,
body[data-theme="karakoy"] #dask-result-container h3,
body[data-theme="karakoy"] #dask-result-container h4,
body[data-theme="karakoy"] #dask-result-container h5,
body[data-theme="karakoy"] #konut-result-container h3,
body[data-theme="karakoy"] #konut-result-container h4,
body[data-theme="karakoy"] #konut-result-container h5,
body[data-theme="karakoy"] #imm-result-container h3,
body[data-theme="karakoy"] #imm-result-container h4,
body[data-theme="karakoy"] #imm-result-container h5,
body[data-theme="taksim"] #trafik-result-container h3,
body[data-theme="taksim"] #trafik-result-container h4,
body[data-theme="taksim"] #trafik-result-container h5,
body[data-theme="taksim"] #kasko-result-container h3,
body[data-theme="taksim"] #kasko-result-container h4,
body[data-theme="taksim"] #kasko-result-container h5,
body[data-theme="taksim"] #tss-result-container h3,
body[data-theme="taksim"] #tss-result-container h4,
body[data-theme="taksim"] #tss-result-container h5,
body[data-theme="taksim"] #dask-result-container h3,
body[data-theme="taksim"] #dask-result-container h4,
body[data-theme="taksim"] #dask-result-container h5,
body[data-theme="taksim"] #konut-result-container h3,
body[data-theme="taksim"] #konut-result-container h4,
body[data-theme="taksim"] #konut-result-container h5,
body[data-theme="taksim"] #imm-result-container h3,
body[data-theme="taksim"] #imm-result-container h4,
body[data-theme="taksim"] #imm-result-container h5,
body[data-theme="levent"] #trafik-result-container h3,
body[data-theme="levent"] #trafik-result-container h4,
body[data-theme="levent"] #trafik-result-container h5,
body[data-theme="levent"] #kasko-result-container h3,
body[data-theme="levent"] #kasko-result-container h4,
body[data-theme="levent"] #kasko-result-container h5,
body[data-theme="levent"] #tss-result-container h3,
body[data-theme="levent"] #tss-result-container h4,
body[data-theme="levent"] #tss-result-container h5,
body[data-theme="levent"] #dask-result-container h3,
body[data-theme="levent"] #dask-result-container h4,
body[data-theme="levent"] #dask-result-container h5,
body[data-theme="levent"] #konut-result-container h3,
body[data-theme="levent"] #konut-result-container h4,
body[data-theme="levent"] #konut-result-container h5,
body[data-theme="levent"] #imm-result-container h3,
body[data-theme="levent"] #imm-result-container h4,
body[data-theme="levent"] #imm-result-container h5,
body[data-theme="etiler"] #trafik-result-container h3,
body[data-theme="etiler"] #trafik-result-container h4,
body[data-theme="etiler"] #trafik-result-container h5,
body[data-theme="etiler"] #kasko-result-container h3,
body[data-theme="etiler"] #kasko-result-container h4,
body[data-theme="etiler"] #kasko-result-container h5,
body[data-theme="etiler"] #tss-result-container h3,
body[data-theme="etiler"] #tss-result-container h4,
body[data-theme="etiler"] #tss-result-container h5,
body[data-theme="etiler"] #dask-result-container h3,
body[data-theme="etiler"] #dask-result-container h4,
body[data-theme="etiler"] #dask-result-container h5,
body[data-theme="etiler"] #konut-result-container h3,
body[data-theme="etiler"] #konut-result-container h4,
body[data-theme="etiler"] #konut-result-container h5,
body[data-theme="etiler"] #imm-result-container h3,
body[data-theme="etiler"] #imm-result-container h4,
body[data-theme="etiler"] #imm-result-container h5 {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] #trafik-result-container p,
body[data-theme="karakoy"] #trafik-result-container span,
body[data-theme="karakoy"] #trafik-result-container div,
body[data-theme="karakoy"] #kasko-result-container p,
body[data-theme="karakoy"] #kasko-result-container span,
body[data-theme="karakoy"] #kasko-result-container div,
body[data-theme="karakoy"] #tss-result-container p,
body[data-theme="karakoy"] #tss-result-container span,
body[data-theme="karakoy"] #tss-result-container div,
body[data-theme="karakoy"] #dask-result-container p,
body[data-theme="karakoy"] #dask-result-container span,
body[data-theme="karakoy"] #dask-result-container div,
body[data-theme="karakoy"] #konut-result-container p,
body[data-theme="karakoy"] #konut-result-container span,
body[data-theme="karakoy"] #konut-result-container div,
body[data-theme="karakoy"] #imm-result-container p,
body[data-theme="karakoy"] #imm-result-container span,
body[data-theme="karakoy"] #imm-result-container div,
body[data-theme="taksim"] #trafik-result-container p,
body[data-theme="taksim"] #trafik-result-container span,
body[data-theme="taksim"] #trafik-result-container div,
body[data-theme="taksim"] #kasko-result-container p,
body[data-theme="taksim"] #kasko-result-container span,
body[data-theme="taksim"] #kasko-result-container div,
body[data-theme="taksim"] #tss-result-container p,
body[data-theme="taksim"] #tss-result-container span,
body[data-theme="taksim"] #tss-result-container div,
body[data-theme="taksim"] #dask-result-container p,
body[data-theme="taksim"] #dask-result-container span,
body[data-theme="taksim"] #dask-result-container div,
body[data-theme="taksim"] #konut-result-container p,
body[data-theme="taksim"] #konut-result-container span,
body[data-theme="taksim"] #konut-result-container div,
body[data-theme="taksim"] #imm-result-container p,
body[data-theme="taksim"] #imm-result-container span,
body[data-theme="taksim"] #imm-result-container div,
body[data-theme="levent"] #trafik-result-container p,
body[data-theme="levent"] #trafik-result-container span,
body[data-theme="levent"] #trafik-result-container div,
body[data-theme="levent"] #kasko-result-container p,
body[data-theme="levent"] #kasko-result-container span,
body[data-theme="levent"] #kasko-result-container div,
body[data-theme="levent"] #tss-result-container p,
body[data-theme="levent"] #tss-result-container span,
body[data-theme="levent"] #tss-result-container div,
body[data-theme="levent"] #dask-result-container p,
body[data-theme="levent"] #dask-result-container span,
body[data-theme="levent"] #dask-result-container div,
body[data-theme="levent"] #konut-result-container p,
body[data-theme="levent"] #konut-result-container span,
body[data-theme="levent"] #konut-result-container div,
body[data-theme="levent"] #imm-result-container p,
body[data-theme="levent"] #imm-result-container span,
body[data-theme="levent"] #imm-result-container div,
body[data-theme="etiler"] #trafik-result-container p,
body[data-theme="etiler"] #trafik-result-container span,
body[data-theme="etiler"] #trafik-result-container div,
body[data-theme="etiler"] #kasko-result-container p,
body[data-theme="etiler"] #kasko-result-container span,
body[data-theme="etiler"] #kasko-result-container div,
body[data-theme="etiler"] #tss-result-container p,
body[data-theme="etiler"] #tss-result-container span,
body[data-theme="etiler"] #tss-result-container div,
body[data-theme="etiler"] #dask-result-container p,
body[data-theme="etiler"] #dask-result-container span,
body[data-theme="etiler"] #dask-result-container div,
body[data-theme="etiler"] #konut-result-container p,
body[data-theme="etiler"] #konut-result-container span,
body[data-theme="etiler"] #konut-result-container div,
body[data-theme="etiler"] #imm-result-container p,
body[data-theme="etiler"] #imm-result-container span,
body[data-theme="etiler"] #imm-result-container div {
    color: var(--text-color) !important;
}

/* Koyu temalar için şirket isimleri */
body[data-theme="karakoy"] .company-name,
body[data-theme="taksim"] .company-name,
body[data-theme="levent"] .company-name,
body[data-theme="etiler"] .company-name {
    color: var(--heading-color) !important;
}

body[data-theme="karakoy"] .company-name div,
body[data-theme="taksim"] .company-name div,
body[data-theme="levent"] .company-name div,
body[data-theme="etiler"] .company-name div {
    color: var(--heading-color) !important;
}

/* Koyu temalar için quote-card satırları - farklı renk tonları (zebra striping) */
body[data-theme="karakoy"] #quote-results .quote-card:nth-child(odd),
body[data-theme="taksim"] #quote-results .quote-card:nth-child(odd),
body[data-theme="levent"] #quote-results .quote-card:nth-child(odd),
body[data-theme="etiler"] #quote-results .quote-card:nth-child(odd) {
    background-color: rgba(50, 50, 50, 0.95) !important; /* İlk satır */
}

body[data-theme="karakoy"] #quote-results .quote-card:nth-child(even),
body[data-theme="taksim"] #quote-results .quote-card:nth-child(even),
body[data-theme="levent"] #quote-results .quote-card:nth-child(even),
body[data-theme="etiler"] #quote-results .quote-card:nth-child(even) {
    background-color: rgba(55, 55, 55, 0.95) !important; /* İkinci satır - biraz daha açık */
}

/* Status bazlı renkler için override - koyu temalarda daha koyu tonlar */
body[data-theme="karakoy"] #quote-results .quote-card[style*="background-color: rgb(232, 245, 233)"],
body[data-theme="karakoy"] #quote-results .quote-card[style*="background-color:rgba(232, 245, 233"],
body[data-theme="taksim"] #quote-results .quote-card[style*="background-color: rgb(232, 245, 233)"],
body[data-theme="taksim"] #quote-results .quote-card[style*="background-color:rgba(232, 245, 233"],
body[data-theme="levent"] #quote-results .quote-card[style*="background-color: rgb(232, 245, 233)"],
body[data-theme="levent"] #quote-results .quote-card[style*="background-color:rgba(232, 245, 233"],
body[data-theme="etiler"] #quote-results .quote-card[style*="background-color: rgb(232, 245, 233)"],
body[data-theme="etiler"] #quote-results .quote-card[style*="background-color:rgba(232, 245, 233"] {
    background-color: rgba(40, 60, 40, 0.8) !important; /* Onay - koyu yeşil ton */
}

body[data-theme="karakoy"] #quote-results .quote-card[style*="background-color: rgb(255, 250, 215)"],
body[data-theme="karakoy"] #quote-results .quote-card[style*="background-color:rgba(255, 250, 215"],
body[data-theme="taksim"] #quote-results .quote-card[style*="background-color: rgb(255, 250, 215)"],
body[data-theme="taksim"] #quote-results .quote-card[style*="background-color:rgba(255, 250, 215"],
body[data-theme="levent"] #quote-results .quote-card[style*="background-color: rgb(255, 250, 215)"],
body[data-theme="levent"] #quote-results .quote-card[style*="background-color:rgba(255, 250, 215"],
body[data-theme="etiler"] #quote-results .quote-card[style*="background-color: rgb(255, 250, 215)"],
body[data-theme="etiler"] #quote-results .quote-card[style*="background-color:rgba(255, 250, 215"] {
    background-color: rgba(60, 60, 40, 0.8) !important; /* Belirsiz - koyu sarı ton */
}

body[data-theme="karakoy"] #quote-results .quote-card[style*="background-color: rgb(255, 208, 208)"],
body[data-theme="karakoy"] #quote-results .quote-card[style*="background-color:rgba(255, 208, 208"],
body[data-theme="taksim"] #quote-results .quote-card[style*="background-color: rgb(255, 208, 208)"],
body[data-theme="taksim"] #quote-results .quote-card[style*="background-color:rgba(255, 208, 208"],
body[data-theme="levent"] #quote-results .quote-card[style*="background-color: rgb(255, 208, 208)"],
body[data-theme="levent"] #quote-results .quote-card[style*="background-color:rgba(255, 208, 208"],
body[data-theme="etiler"] #quote-results .quote-card[style*="background-color: rgb(255, 208, 208)"],
body[data-theme="etiler"] #quote-results .quote-card[style*="background-color:rgba(255, 208, 208"] {
    background-color: rgba(60, 40, 40, 0.8) !important; /* Red - koyu kırmızı ton */
}

/* Inline style override için daha spesifik selector - rgb(33, 33, 33) için */
body[data-theme="karakoy"] #quote-results .quote-card[style*="rgb(33, 33, 33)"],
body[data-theme="taksim"] #quote-results .quote-card[style*="rgb(33, 33, 33)"],
body[data-theme="levent"] #quote-results .quote-card[style*="rgb(33, 33, 33)"],
body[data-theme="etiler"] #quote-results .quote-card[style*="rgb(33, 33, 33)"] {
    background-color: rgba(50, 50, 50, 0.95) !important;
}

body[data-theme="karakoy"] #quote-results .quote-card:nth-child(even)[style*="rgb(33, 33, 33)"],
body[data-theme="taksim"] #quote-results .quote-card:nth-child(even)[style*="rgb(33, 33, 33)"],
body[data-theme="levent"] #quote-results .quote-card:nth-child(even)[style*="rgb(33, 33, 33)"],
body[data-theme="etiler"] #quote-results .quote-card:nth-child(even)[style*="rgb(33, 33, 33)"] {
    background-color: rgba(55, 55, 55, 0.95) !important;
}

/* Koyu temalar için sorgu durumu listesi (statusList) */
body[data-theme="karakoy"] #statusList,
body[data-theme="karakoy"] .status-list,
body[data-theme="karakoy"] .status-container,
body[data-theme="taksim"] #statusList,
body[data-theme="taksim"] .status-list,
body[data-theme="taksim"] .status-container,
body[data-theme="levent"] #statusList,
body[data-theme="levent"] .status-list,
body[data-theme="levent"] .status-container,
body[data-theme="etiler"] #statusList,
body[data-theme="etiler"] .status-list,
body[data-theme="etiler"] .status-container {
    background-color: rgba(50, 50, 50, 0.95) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] #statusList.list-group,
body[data-theme="taksim"] #statusList.list-group,
body[data-theme="levent"] #statusList.list-group,
body[data-theme="etiler"] #statusList.list-group {
    background-color: rgba(50, 50, 50, 0.95) !important;
    border-color: var(--border-color) !important;
}

body[data-theme="karakoy"] .list-group-item,
body[data-theme="taksim"] .list-group-item,
body[data-theme="levent"] .list-group-item,
body[data-theme="etiler"] .list-group-item {
    background-color: rgba(50, 50, 50, 0.95) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .status-item,
body[data-theme="taksim"] .status-item,
body[data-theme="levent"] .status-item,
body[data-theme="etiler"] .status-item {
    background-color: rgba(50, 50, 50, 0.95) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .status-item:hover,
body[data-theme="taksim"] .status-item:hover,
body[data-theme="levent"] .status-item:hover,
body[data-theme="etiler"] .status-item:hover {
    background-color: rgba(55, 55, 55, 0.95) !important;
}

body[data-theme="karakoy"] .status-item.success,
body[data-theme="taksim"] .status-item.success,
body[data-theme="levent"] .status-item.success,
body[data-theme="etiler"] .status-item.success {
    border-left-color: var(--success-color) !important;
    background-color: rgba(40, 60, 40, 0.8) !important;
}

body[data-theme="karakoy"] .status-item.warning,
body[data-theme="taksim"] .status-item.warning,
body[data-theme="levent"] .status-item.warning,
body[data-theme="etiler"] .status-item.warning {
    border-left-color: var(--warning-color) !important;
    background-color: rgba(60, 60, 40, 0.8) !important;
}

body[data-theme="karakoy"] .status-item.error,
body[data-theme="karakoy"] .status-item.alert,
body[data-theme="taksim"] .status-item.error,
body[data-theme="taksim"] .status-item.alert,
body[data-theme="levent"] .status-item.error,
body[data-theme="levent"] .status-item.alert,
body[data-theme="etiler"] .status-item.error,
body[data-theme="etiler"] .status-item.alert {
    border-left-color: var(--danger-color) !important;
    background-color: rgba(60, 40, 40, 0.8) !important;
}

body[data-theme="karakoy"] .status-item.info,
body[data-theme="taksim"] .status-item.info,
body[data-theme="levent"] .status-item.info,
body[data-theme="etiler"] .status-item.info {
    border-left-color: var(--info-color) !important;
    background-color: rgba(40, 50, 60, 0.8) !important;
}

body[data-theme="karakoy"] .status-content,
body[data-theme="karakoy"] .status-header,
body[data-theme="karakoy"] .status-message,
body[data-theme="karakoy"] .status-time,
body[data-theme="karakoy"] .status-details,
body[data-theme="taksim"] .status-content,
body[data-theme="taksim"] .status-header,
body[data-theme="taksim"] .status-message,
body[data-theme="taksim"] .status-time,
body[data-theme="taksim"] .status-details,
body[data-theme="levent"] .status-content,
body[data-theme="levent"] .status-header,
body[data-theme="levent"] .status-message,
body[data-theme="levent"] .status-time,
body[data-theme="levent"] .status-details,
body[data-theme="etiler"] .status-content,
body[data-theme="etiler"] .status-header,
body[data-theme="etiler"] .status-message,
body[data-theme="etiler"] .status-time,
body[data-theme="etiler"] .status-details {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .status-icon,
body[data-theme="taksim"] .status-icon,
body[data-theme="levent"] .status-icon,
body[data-theme="etiler"] .status-icon {
    color: var(--text-color) !important;
}

body[data-theme="karakoy"] .status-item .text-success,
body[data-theme="taksim"] .status-item .text-success,
body[data-theme="levent"] .status-item .text-success,
body[data-theme="etiler"] .status-item .text-success {
    color: var(--success-color) !important;
}

body[data-theme="karakoy"] .status-item .text-warning,
body[data-theme="taksim"] .status-item .text-warning,
body[data-theme="levent"] .status-item .text-warning,
body[data-theme="etiler"] .status-item .text-warning {
    color: var(--warning-color) !important;
}

body[data-theme="karakoy"] .status-item .text-danger,
body[data-theme="taksim"] .status-item .text-danger,
body[data-theme="levent"] .status-item .text-danger,
body[data-theme="etiler"] .status-item .text-danger {
    color: var(--danger-color) !important;
}

body[data-theme="karakoy"] .status-item .text-info,
body[data-theme="taksim"] .status-item .text-info,
body[data-theme="levent"] .status-item .text-info,
body[data-theme="etiler"] .status-item .text-info {
    color: var(--info-color) !important;
}
