/* Sertaş Makine - Ana Stil Dosyası */

/* ========================================
   Global Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #003366;
    --secondary-color: #FF6600;
    --accent-color: #00AAFF;
    --font-family: 'Inter', sans-serif;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family, 'Inter, sans-serif');
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--background-color, #FFFFFF);
    transition: background-color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* ========================================
   Top Bar
======================================== */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: white;
    margin-right: 20px;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--accent-color);
}

.top-bar i {
    margin-right: 5px;
}

.top-bar-right {
    text-align: right;
}

.top-bar-right a {
    margin: 0 5px;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.top-bar-right a:hover {
    background-color: var(--secondary-color);
}

/* ========================================
   Navigation
======================================== */
.navbar {
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

.navbar-brand .logo {
    max-height: 60px;
    transition: var(--transition);
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    margin: 0 0.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(0, 51, 102, 0.05);
}

.navbar-nav .nav-link.active {
    color: white;
    background-color: var(--primary-color);
}

.navbar-nav .nav-link.active:hover {
    background-color: var(--accent-color);
}

.sticky-top {
    transition: var(--transition);
}

/* ========================================
   Hero Slider
======================================== */
.hero-slider {
    position: relative;
}

.carousel-item {
    height: 600px;
    position: relative;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1; /* En altta - resim her zaman görünür */
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Resmin üstünde, içeriğin altında */
    /* Dinamik renk header.php'den geliyor */
}

.carousel-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10; /* En üstte - içerik her zaman görünür */
}

.carousel-item h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-item p {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    border-color: var(--secondary-color);
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    width: 30px;
    border-radius: 5px;
}

/* ========================================
   Features Section
======================================== */
.features-section {
    margin-top: -50px;
    position: relative;
    z-index: 100;
}

.feature-box {
    background: var(--background-color, #FFFFFF);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.05);
}

.feature-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-box p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========================================
   About Section
======================================== */
.about-section {
    background-color: var(--background-color, #FFFFFF);
    transition: background-color 0.3s ease;
    padding: 4rem 0;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-content {
    padding-left: 2rem;
}

.about-content .lead {
    font-size: 1.1rem;
    color: #555;
}

.mission-vision {
    padding: 2.5rem 1.5rem;
    background-color: #000000;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mission-vision:hover {
    border-color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.mission-icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000000;
    transition: all 0.3s ease;
}

.mission-vision:hover .mission-icon-box {
    transform: scale(1.05);
    background: #f0f0f0;
}

.mission-vision h5 {
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.mission-vision h5 i {
    display: none; /* İkon artık mission-icon-box içinde */
}

.mission-vision p {
    margin-bottom: 0;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Ana sayfadaki misyon-vizyon kartları (hakkımızda sayfasındaki gibi) */
.mission-vision-card-inline {
    background: #000000;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #333333;
    text-align: center;
}

.mission-vision-card-inline:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

.mission-icon-box-inline {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000000;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.mission-vision-card-inline:hover .mission-icon-box-inline {
    transform: scale(1.05);
    background: #f0f0f0;
}

.mission-vision-card-inline h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.mission-vision-card-inline p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   References Section
======================================== */
.references-section {
    background-color: var(--background-color, #f8f9fa);
    transition: background-color 0.3s ease;
}

.reference-box {
    background: var(--background-color, #FFFFFF);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reference-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

.reference-logo {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    opacity: 0.7;
}

.reference-box:hover .reference-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.reference-name h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* ========================================
   Products Section
======================================== */
.products-section {
    background-color: var(--background-color, #FFFFFF);
}

.product-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-content p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.product-features {
    margin-top: auto;
}

.product-features h6 {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features ul li {
    color: #666666;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.product-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.feature-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0.25rem 0.25rem 0.25rem 0;
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    background-color: var(--background-color, #FFFFFF);
    padding: 4rem 0 !important;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

/* CTA section yazı renkleri - varsayılan beyaz arka plan için */
.cta-section h2 {
    color: #000000;
    font-weight: 700;
}

.cta-section p {
    color: #333333;
}

/* Siyah arka planlı CTA section'lar için beyaz yazı (genel kural) */
.cta-section[style*="background: #000000"] h2,
.cta-section[style*="background-color: #000000"] h2,
.cta-section[style*="background: #000000"] p,
.cta-section[style*="background-color: #000000"] p {
    color: #FFFFFF !important;
}

/* Genel kural: Siyah arka planlı herhangi bir element içindeki yazılar beyaz olsun */
section[style*="background: #000000"] h2,
section[style*="background-color: #000000"] h2,
section[style*="background: #000000"] p,
section[style*="background-color: #000000"] p,
div[style*="background: #000000"] h2,
div[style*="background-color: #000000"] h2,
div[style*="background: #000000"] p,
div[style*="background-color: #000000"] p {
    color: #FFFFFF !important;
}

/* Genel kural: Siyah arka planlı kutular için yazı ve simge renkleri */
body[data-theme="black-white-light"] .cta-section,
body[data-theme="black-white-dark"] .cta-section,
body[data-theme="custom-theme"] .cta-section,
body[data-theme="ozel"] .cta-section {
    background: #000000 !important;
}

body[data-theme="black-white-light"] .cta-section h2,
body[data-theme="black-white-light"] .cta-section p,
body[data-theme="black-white-dark"] .cta-section h2,
body[data-theme="black-white-dark"] .cta-section p,
body[data-theme="custom-theme"] .cta-section h2,
body[data-theme="custom-theme"] .cta-section p,
body[data-theme="ozel"] .cta-section h2,
body[data-theme="ozel"] .cta-section p {
    color: #FFFFFF !important;
}

.cta-section .btn-dark {
    background-color: #000000;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.cta-section .btn-dark:hover {
    background-color: #333333;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Footer
======================================== */
.footer {
    background-color: var(--dark-color);
    color: #aaa;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-widget h4,
.footer-widget h5 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-widget p {
    color: #aaa;
    line-height: 1.8;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-info li {
    margin-bottom: 0.8rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 3px;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
}

/* ========================================
   Scroll to Top Button
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 51, 102, 0.4);
}

/* ========================================
   Buttons - Modern & Minimal Design
======================================== */
.btn {
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-width: 2px;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.75rem 2rem;
    color: white;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    padding: 0.75rem 2rem;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}

.btn-light {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.btn-light:hover {
    background-color: transparent;
    border-color: white;
    color: white;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.8rem 1rem !important;
    }
    
    .top-bar-left,
    .top-bar-right {
        text-align: center;
    }
    
    .carousel-item {
        height: 500px;
    }
    
    .carousel-item h1 {
        font-size: 2.5rem;
    }
    
    .carousel-item p {
        font-size: 1.1rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .carousel-item {
        height: 400px;
    }
    
    .carousel-item h1 {
        font-size: 1.8rem;
    }
    
    .carousel-item p {
        font-size: 1rem;
    }
    
    .feature-box {
        margin-bottom: 1rem;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

/* ========================================
   Page Specific Styles
======================================== */
.page-header {
    background: #000000;
    padding: 5rem 0 3rem;
    text-align: center;
    color: #ffffff;
    border-bottom: 1px solid #333333;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #e0e0e0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-control,
.form-select {
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 51, 102, 0.1);
}

.contact-info-box {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.contact-info-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-box h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Siyah arka planlı contact-info-box için beyaz yazı */
.contact-info-box[style*="background: #000000"] h5,
.contact-info-box[style*="background-color: #000000"] h5,
.contact-info-box[style*="background: #000000"] p,
.contact-info-box[style*="background-color: #000000"] p,
.contact-info-box[style*="background: #000000"] a,
.contact-info-box[style*="background-color: #000000"] a {
    color: #FFFFFF !important;
}

.contact-info-box[style*="background: #000000"] i,
.contact-info-box[style*="background-color: #000000"] i {
    background: #FFFFFF !important;
    color: #000000 !important;
}

/* Animation Classes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__delay-1s {
    animation-delay: 0.5s;
}

/* ========================================
   Siyah-Beyaz Elit Tema Özel Stilleri
======================================== */
/* Siyah-Beyaz AÇIK tema (Beyaz arka plan) */
body[data-theme="black-white-light"] {
    background: #ffffff;
    color: #000000;
}

/* Siyah-Beyaz KOYU tema (Siyah arka plan) */
body[data-theme="black-white-dark"] {
    background: #000000;
    color: #ffffff;
}

/* Ortak stiller için selector */
body[data-theme="black-white-light"],
body[data-theme="black-white-dark"] {
    /* Ortak özellikler buraya */
}

/* Siyah-Beyaz AÇIK tema için buton stilleri */
body[data-theme="black-white-light"] .btn-primary {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.85rem 2.5rem;
    border-width: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body[data-theme="black-white-light"] .btn-primary:hover {
    background-color: #ffffff !important;
    border-color: #000000 !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

body[data-theme="black-white-light"] .btn-outline-primary {
    color: #000000 !important;
    border-color: #000000 !important;
    background-color: transparent;
    border-width: 2px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

body[data-theme="black-white-light"] .btn-outline-primary:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

body[data-theme="black-white-light"] .btn-light {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
}

body[data-theme="black-white-light"] .btn-light:hover {
    background-color: #000000 !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* Siyah-Beyaz KOYU tema için buton stilleri */
body[data-theme="black-white-dark"] .btn-primary {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.85rem 2.5rem;
    border-width: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body[data-theme="black-white-dark"] .btn-primary:hover {
    background-color: #000000 !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

body[data-theme="black-white-dark"] .btn-outline-primary {
    color: #ffffff !important;
    border-color: #ffffff !important;
    background-color: transparent;
    border-width: 2px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

body[data-theme="black-white-dark"] .btn-outline-primary:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
}

body[data-theme="black-white-dark"] .btn-light {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
}

body[data-theme="black-white-dark"] .btn-light:hover {
    background-color: #000000 !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* ========================================
   Siyah-Beyaz AÇIK Tema (Beyaz Arka Plan)
======================================== */

/* Kart stilleri */
body[data-theme="black-white-light"] .card,
body[data-theme="black-white-light"] .feature-box,
body[data-theme="black-white-light"] .reference-box {
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

body[data-theme="black-white-light"] .card:hover,
body[data-theme="black-white-light"] .feature-box:hover,
body[data-theme="black-white-light"] .reference-box:hover {
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Başlık stilleri */
body[data-theme="black-white-light"] .section-title,
body[data-theme="black-white-light"] h1,
body[data-theme="black-white-light"] h2,
body[data-theme="black-white-light"] h3 {
    color: #000000;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Page header içindeki h1 ve p beyaz olmalı */
body[data-theme="black-white-light"] .page-header h1,
body[data-theme="black-white-light"] .page-header p {
    color: #ffffff !important;
}

/* Navbar */
body[data-theme="black-white-light"] .navbar {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

body[data-theme="black-white-light"] .navbar-nav .nav-link {
    color: #000000;
    font-weight: 500;
    letter-spacing: 0.3px;
}

body[data-theme="black-white-light"] .navbar-nav .nav-link:hover,
body[data-theme="black-white-light"] .navbar-nav .nav-link.active {
    color: #000000;
    background-color: #f5f5f5;
    border-bottom: 2px solid #000000;
}

/* Top bar */
body[data-theme="black-white-light"] .top-bar {
    background-color: #000000;
    color: #ffffff;
}

body[data-theme="black-white-light"] .top-bar a {
    color: #ffffff;
}

body[data-theme="black-white-light"] .top-bar a:hover {
    color: #808080;
}

body[data-theme="black-white-light"] .top-bar-right a:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Slider - tema renklerine göre */
/* Overlay rengi artık header.php'de dinamik olarak ayarlanıyor */
/* body[data-theme="black-white-light"] .carousel-overlay {
    background: rgba(0, 0, 0, 0.75) !important;
} */

body[data-theme="black-white-light"] .carousel-control-prev:hover,
body[data-theme="black-white-light"] .carousel-control-next:hover {
    background-color: #000000;
    border-color: #000000;
}

/* CTA butonları - yazı görünürlüğü */
body[data-theme="black-white-light"] .cta-section .btn-light {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
    font-weight: 600;
}

body[data-theme="black-white-light"] .cta-section .btn-light:hover {
    background-color: #000000 !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* Feature icon */
body[data-theme="black-white-light"] .feature-icon {
    background: #000000;
    border: 2px solid #000000;
}

/* Footer */
body[data-theme="black-white-light"] .footer {
    background-color: #000000;
    color: #ffffff;
}

body[data-theme="black-white-light"] .footer-widget h4,
body[data-theme="black-white-light"] .footer-widget h5 {
    color: #ffffff;
}

body[data-theme="black-white-light"] .footer-widget p,
body[data-theme="black-white-light"] .footer-links a {
    color: #cccccc;
}

body[data-theme="black-white-light"] .footer-links a:hover {
    color: #ffffff;
}

body[data-theme="black-white-light"] .social-links a {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body[data-theme="black-white-light"] .social-links a:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* CTA section */
body[data-theme="black-white-light"] .cta-section {
    background: #000000;
}

body[data-theme="black-white-light"] .cta-section h2,
body[data-theme="black-white-light"] .cta-section p {
    color: #FFFFFF !important;
}

body[data-theme="black-white-light"] .cta-section .btn-dark {
    border: 2px solid #FFFFFF !important;
}

/* Scroll to top */
body[data-theme="black-white-light"] .scroll-to-top {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

body[data-theme="black-white-light"] .scroll-to-top:hover {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
}

/* Form stilleri */
body[data-theme="black-white-light"] .form-control,
body[data-theme="black-white-light"] .form-select {
    border-color: #e5e5e5;
    color: #000000;
    background-color: #ffffff;
}

body[data-theme="black-white-light"] .form-control:focus,
body[data-theme="black-white-light"] .form-select:focus {
    border-color: #000000;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    color: #000000;
}

/* Özel vurgular */
body[data-theme="black-white-light"] .text-primary {
    color: #000000 !important;
}

body[data-theme="black-white-light"] .text-secondary {
    color: #808080 !important;
}

/* Ürünler - Black White Light */
body[data-theme="black-white-light"] .product-card {
    background: #FFFFFF !important;
    border: 1px solid #e5e5e5 !important;
}

body[data-theme="black-white-light"] .product-content h4 {
    color: #000000 !important;
}

body[data-theme="black-white-light"] .product-price {
    color: #000000 !important;
}

body[data-theme="black-white-light"] .product-content p {
    color: #333333 !important;
}

body[data-theme="black-white-light"] .product-features h6 {
    color: #000000 !important;
}

body[data-theme="black-white-light"] .product-features ul li {
    color: #333333 !important;
}

body[data-theme="black-white-light"] .product-features ul li:before {
    color: #000000 !important;
}

body[data-theme="black-white-light"] .feature-tag {
    background: #000000 !important;
    color: #FFFFFF !important;
}

/* Badge */
body[data-theme="black-white-light"] .badge {
    background-color: #000000;
    color: #ffffff;
}

/* Divider */
body[data-theme="black-white-light"] hr {
    border-color: #e5e5e5;
}

/* Linkler */
body[data-theme="black-white-light"] a {
    color: #000000;
    text-decoration: none;
}

body[data-theme="black-white-light"] a:hover {
    color: #333333;
    text-decoration: underline;
}

/* Mission-vision kartları */
body[data-theme="black-white-light"] .mission-vision-card {
    border-left: 4px solid #000000;
    background: #000000 !important;
}

body[data-theme="black-white-light"] .mission-vision-card .icon-box {
    background: #ffffff !important;
    color: #000000 !important;
}

body[data-theme="black-white-light"] .mission-vision-card h3,
body[data-theme="black-white-light"] .mission-vision-card p {
    color: #ffffff !important;
}

body[data-theme="black-white-light"] .mission-vision {
    border-left: 4px solid #000000;
}

/* İstatistik kartları */
body[data-theme="black-white-light"] .stat-box {
    border-left: 4px solid #000000;
    background: #000000 !important;
}

body[data-theme="black-white-light"] .stat-box .stat-icon {
    background: #ffffff !important;
    color: #000000 !important;
}

body[data-theme="black-white-light"] .stat-box h3,
body[data-theme="black-white-light"] .stat-box p {
    color: #ffffff !important;
}

/* Page header */
body[data-theme="black-white-light"] .page-header {
    background: #000000;
}

body[data-theme="black-white-light"] .page-header h1,
body[data-theme="black-white-light"] .page-header p {
    color: #ffffff !important;
}

/* Contact info box */
body[data-theme="black-white-light"] .contact-info-box {
    border-left: 4px solid #000000;
    background: #000000 !important;
}

body[data-theme="black-white-light"] .contact-info-box i {
    background: #ffffff !important;
    color: #000000 !important;
}

body[data-theme="black-white-light"] .contact-info-box h5,
body[data-theme="black-white-light"] .contact-info-box p,
body[data-theme="black-white-light"] .contact-info-box a {
    color: #ffffff !important;
}

/* Why-choose kartları */
body[data-theme="black-white-light"] .why-choose-card {
    border: 1px solid #e5e5e5;
}

body[data-theme="black-white-light"] .why-choose-card:hover {
    border-color: #000000;
}

body[data-theme="black-white-light"] .why-choose-card .icon {
    background: #000000;
}

body[data-theme="black-white-light"] .why-choose-card h4 {
    color: #000000;
}

/* Reference card */
body[data-theme="black-white-light"] .reference-card {
    border: 1px solid #e5e5e5;
}

body[data-theme="black-white-light"] .reference-card:hover {
    border-color: #000000;
}

body[data-theme="black-white-light"] .reference-card-logo {
    filter: grayscale(100%);
}

body[data-theme="black-white-light"] .reference-card:hover .reference-card-logo {
    filter: grayscale(0%);
}

/* ========================================
   Siyah-Beyaz KOYU Tema (Siyah Arka Plan)
======================================== */

/* Kart stilleri */
body[data-theme="black-white-dark"] .card,
body[data-theme="black-white-dark"] .feature-box,
body[data-theme="black-white-dark"] .reference-box {
    border: 1px solid #333333;
    box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08);
    background: #1a1a1a;
}

body[data-theme="black-white-dark"] .card:hover,
body[data-theme="black-white-dark"] .feature-box:hover,
body[data-theme="black-white-dark"] .reference-box:hover {
    border-color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* Başlık stilleri */
body[data-theme="black-white-dark"] .section-title,
body[data-theme="black-white-dark"] h1,
body[data-theme="black-white-dark"] h2,
body[data-theme="black-white-dark"] h3 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Navbar */
body[data-theme="black-white-dark"] .navbar {
    background: #000000 !important;
    border-bottom: 1px solid #333333;
    box-shadow: 0 1px 3px rgba(255, 255, 255, 0.05);
}

body[data-theme="black-white-dark"] .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.3px;
}

body[data-theme="black-white-dark"] .navbar-nav .nav-link:hover,
body[data-theme="black-white-dark"] .navbar-nav .nav-link.active {
    color: #ffffff;
    background-color: #1a1a1a;
    border-bottom: 2px solid #ffffff;
}

/* Top bar */
body[data-theme="black-white-dark"] .top-bar {
    background-color: #000000;
    color: #ffffff;
}

body[data-theme="black-white-dark"] .top-bar a {
    color: #ffffff;
}

body[data-theme="black-white-dark"] .top-bar a:hover {
    color: #cccccc;
}

body[data-theme="black-white-dark"] .top-bar-right a:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Slider - tema renklerine göre */
/* Overlay rengi artık header.php'de dinamik olarak ayarlanıyor */
/* body[data-theme="black-white-dark"] .carousel-overlay {
    background: rgba(0, 0, 0, 0.8) !important;
} */

body[data-theme="black-white-dark"] .carousel-control-prev:hover,
body[data-theme="black-white-dark"] .carousel-control-next:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

/* CTA butonları */
body[data-theme="black-white-dark"] .cta-section .btn-light {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
    font-weight: 600;
}

body[data-theme="black-white-dark"] .cta-section .btn-light:hover {
    background-color: #000000 !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* Feature icon */
body[data-theme="black-white-dark"] .feature-icon {
    background: #ffffff;
    border: 2px solid #ffffff;
    color: #000000;
}

/* Footer */
body[data-theme="black-white-dark"] .footer {
    background-color: #000000;
    color: #ffffff;
}

body[data-theme="black-white-dark"] .footer-widget h4,
body[data-theme="black-white-dark"] .footer-widget h5 {
    color: #ffffff;
}

body[data-theme="black-white-dark"] .footer-widget p,
body[data-theme="black-white-dark"] .footer-links a {
    color: #cccccc;
}

body[data-theme="black-white-dark"] .footer-links a:hover {
    color: #ffffff;
}

body[data-theme="black-white-dark"] .social-links a {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body[data-theme="black-white-dark"] .social-links a:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* CTA section */
body[data-theme="black-white-dark"] .cta-section {
    background: #000000;
}

body[data-theme="black-white-dark"] .cta-section h2,
body[data-theme="black-white-dark"] .cta-section p {
    color: #FFFFFF !important;
}

body[data-theme="black-white-dark"] .cta-section .btn-dark {
    border: 2px solid #FFFFFF !important;
}

/* Scroll to top */
body[data-theme="black-white-dark"] .scroll-to-top {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

body[data-theme="black-white-dark"] .scroll-to-top:hover {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

/* Form stilleri */
body[data-theme="black-white-dark"] .form-control,
body[data-theme="black-white-dark"] .form-select {
    border-color: #333333;
    color: #ffffff;
    background-color: #1a1a1a;
}

body[data-theme="black-white-dark"] .form-control:focus,
body[data-theme="black-white-dark"] .form-select:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Özel vurgular */
body[data-theme="black-white-dark"] .text-primary {
    color: #ffffff !important;
}

body[data-theme="black-white-dark"] .text-secondary {
    color: #808080 !important;
}

/* Ürünler - Black White Dark */
body[data-theme="black-white-dark"] .product-card {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

body[data-theme="black-white-dark"] .product-content h4 {
    color: #FFFFFF !important;
}

body[data-theme="black-white-dark"] .product-price {
    color: #FFFFFF !important;
}

body[data-theme="black-white-dark"] .product-content p {
    color: #cccccc !important;
}

body[data-theme="black-white-dark"] .product-features h6 {
    color: #FFFFFF !important;
}

body[data-theme="black-white-dark"] .product-features ul li {
    color: #cccccc !important;
}

body[data-theme="black-white-dark"] .product-features ul li:before {
    color: #FFFFFF !important;
}

body[data-theme="black-white-dark"] .feature-tag {
    background: #FFFFFF !important;
    color: #000000 !important;
}

body[data-theme="black-white-dark"] .product-card:hover {
    border-color: #FFFFFF !important;
}

/* Badge */
body[data-theme="black-white-dark"] .badge {
    background-color: #ffffff;
    color: #000000;
}

/* Divider */
body[data-theme="black-white-dark"] hr {
    border-color: #333333;
}

/* Linkler */
body[data-theme="black-white-dark"] a {
    color: #ffffff;
    text-decoration: none;
}

body[data-theme="black-white-dark"] a:hover {
    color: #cccccc;
    text-decoration: underline;
}

/* Mission-vision kartları */
body[data-theme="black-white-dark"] .mission-vision-card {
    border-left: 4px solid #ffffff;
    background: #000000 !important;
}

body[data-theme="black-white-dark"] .mission-vision-card .icon-box {
    background: #ffffff !important;
    color: #000000 !important;
}

body[data-theme="black-white-dark"] .mission-vision-card h3,
body[data-theme="black-white-dark"] .mission-vision-card p {
    color: #ffffff !important;
}

body[data-theme="black-white-dark"] .mission-vision {
    border-left: 4px solid #ffffff;
    background: #1a1a1a;
}

body[data-theme="black-white-dark"] .mission-vision h5 {
    color: #ffffff;
}

body[data-theme="black-white-dark"] .mission-vision p {
    color: #cccccc;
}

/* İstatistik kartları */
body[data-theme="black-white-dark"] .stat-box {
    border-left: 4px solid #ffffff;
    background: #1a1a1a;
}

body[data-theme="black-white-dark"] .stat-box .stat-icon {
    background: #ffffff;
    color: #000000;
}

body[data-theme="black-white-dark"] .stat-box h3 {
    color: #ffffff;
}

body[data-theme="black-white-dark"] .stat-box p {
    color: #cccccc;
}

/* Page header */
body[data-theme="black-white-dark"] .page-header {
    background: #000000;
}

body[data-theme="black-white-dark"] .page-header h1,
body[data-theme="black-white-dark"] .page-header p {
    color: #ffffff !important;
}

/* Contact info box */
body[data-theme="black-white-dark"] .contact-info-box {
    border-left: 4px solid #ffffff;
    background: #1a1a1a;
}

body[data-theme="black-white-dark"] .contact-info-box i {
    color: #ffffff;
}

body[data-theme="black-white-dark"] .contact-info-box h5 {
    color: #ffffff;
}

/* Why-choose kartları */
body[data-theme="black-white-dark"] .why-choose-card {
    border: 1px solid #333333;
    background: #1a1a1a;
}

body[data-theme="black-white-dark"] .why-choose-card:hover {
    border-color: #ffffff;
}

body[data-theme="black-white-dark"] .why-choose-card .icon {
    background: #ffffff;
    color: #000000;
}

body[data-theme="black-white-dark"] .why-choose-card h4 {
    color: #ffffff;
}

body[data-theme="black-white-dark"] .why-choose-card p {
    color: #cccccc;
}

/* Reference card */
body[data-theme="black-white-dark"] .reference-card {
    border: 1px solid #333333;
    background: #1a1a1a;
}

body[data-theme="black-white-dark"] .reference-card:hover {
    border-color: #ffffff;
}

body[data-theme="black-white-dark"] .reference-card-logo {
    filter: grayscale(100%);
}

body[data-theme="black-white-dark"] .reference-card:hover .reference-card-logo {
    filter: grayscale(0%);
}

/* Ürünler - Black White Dark */
body[data-theme="black-white-dark"] .product-card {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

body[data-theme="black-white-dark"] .product-content h4 {
    color: #FFFFFF !important;
}

body[data-theme="black-white-dark"] .product-price {
    color: #FFFFFF !important;
}

body[data-theme="black-white-dark"] .product-content p {
    color: #cccccc !important;
}

body[data-theme="black-white-dark"] .product-features h6 {
    color: #FFFFFF !important;
}

body[data-theme="black-white-dark"] .product-features ul li {
    color: #cccccc !important;
}

body[data-theme="black-white-dark"] .product-features ul li:before {
    color: #FFFFFF !important;
}

body[data-theme="black-white-dark"] .feature-tag {
    background: #FFFFFF !important;
    color: #000000 !important;
}

body[data-theme="black-white-dark"] .product-card:hover {
    border-color: #FFFFFF !important;
}

body[data-theme="black-white-dark"] .reference-name h5 {
    color: #ffffff;
}

/* About section */
body[data-theme="black-white-dark"] .about-section {
    background-color: #000000;
}

body[data-theme="black-white-dark"] .about-content .lead {
    color: #cccccc;
}

/* References section */
body[data-theme="black-white-dark"] .references-section {
    background-color: #0a0a0a;
}

/* Features section */
body[data-theme="black-white-dark"] .features-section {
    background-color: #000000;
}

body[data-theme="black-white-dark"] .feature-box h4 {
    color: #ffffff;
}

body[data-theme="black-white-dark"] .feature-box p {
    color: #cccccc;
}

/* ========================================
   ÖZEL TEMA
======================================== */

/* Genel */
body[data-theme="ozel"] {
    background-color: #FFFFFF !important;
    color: #000000 !important;
}

/* Ana Sayfa - Slider Butonu */
body[data-theme="ozel"] .carousel-container .btn-primary {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
    font-weight: 600;
}

body[data-theme="ozel"] .carousel-container .btn-primary:hover {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border-color: #000000 !important;
}

/* Ana Sayfa - Kartlar (Feature Box) */
body[data-theme="ozel"] .feature-box {
    background: #FFFFFF !important;
    border: 1px solid #000000 !important;
    color: #000000 !important;
}

body[data-theme="ozel"] .feature-box h4 {
    color: #000000 !important;
}

body[data-theme="ozel"] .feature-box p {
    color: #000000 !important;
}

body[data-theme="ozel"] .feature-icon {
    background: #000000 !important;
    color: #FFFFFF !important;
}

/* Ana Sayfa - Misyon Vizyon */
body[data-theme="ozel"] .mission-vision,
body[data-theme="ozel"] .mission-vision-card-inline {
    background: #000000 !important;
    border: 1px solid #000000 !important;
}

body[data-theme="ozel"] .mission-vision h5,
body[data-theme="ozel"] .mission-vision-card-inline h5 {
    color: #FFFFFF !important;
}

body[data-theme="ozel"] .mission-vision p,
body[data-theme="ozel"] .mission-vision-card-inline p {
    color: #FFFFFF !important;
}

body[data-theme="ozel"] .mission-icon-box,
body[data-theme="ozel"] .mission-icon-box-inline {
    background: #FFFFFF !important;
    color: #000000 !important;
}

/* Ana Sayfa - CTA Section */
body[data-theme="ozel"] .cta-section {
    background: #000000 !important;
    border: none !important;
}

body[data-theme="ozel"] .cta-section h2,
body[data-theme="ozel"] .cta-section p {
    color: #FFFFFF !important;
}

body[data-theme="ozel"] .cta-section .btn-dark {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF !important;
}

body[data-theme="ozel"] .cta-section .btn-dark:hover {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border-color: #FFFFFF !important;
}

/* Hakkımızda Sayfası - Page Header */
body[data-theme="ozel"] .page-header {
    background: #000000 !important;
    border: none !important;
}

body[data-theme="ozel"] .page-header h1,
body[data-theme="ozel"] .page-header p {
    color: #FFFFFF !important;
}

/* Hakkımızda Sayfası - About Section */
body[data-theme="ozel"] .about-section {
    background: #FFFFFF !important;
}

body[data-theme="ozel"] .about-content h2,
body[data-theme="ozel"] .about-content .lead,
body[data-theme="ozel"] .section-title {
    color: #000000 !important;
}

body[data-theme="ozel"] .about-content .btn-primary {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border-color: #000000 !important;
}

body[data-theme="ozel"] .about-content .btn-primary:hover {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border-color: #000000 !important;
}

/* Hakkımızda Sayfası - Misyon Vizyon Kartları */
body[data-theme="ozel"] .mission-vision-card {
    background: #000000 !important;
    border: 1px solid #000000 !important;
}

body[data-theme="ozel"] .mission-vision-card h3,
body[data-theme="ozel"] .mission-vision-card p {
    color: #FFFFFF !important;
}

body[data-theme="ozel"] .mission-vision-card .icon-box {
    background: #FFFFFF !important;
    color: #000000 !important;
}

/* Hakkımızda Sayfası - Neden Bizi Tercih Etmelisiniz */
body[data-theme="ozel"] .why-choose-card {
    background: #FFFFFF !important;
    border: 1px solid #000000 !important;
}

body[data-theme="ozel"] .why-choose-card h4,
body[data-theme="ozel"] .why-choose-card p {
    color: #000000 !important;
}

body[data-theme="ozel"] .why-choose-card .icon {
    background: #000000 !important;
    color: #FFFFFF !important;
}

/* Hakkımızda Sayfası - CTA */
body[data-theme="ozel"] .cta-section {
    background: #000000 !important;
}

body[data-theme="ozel"] .cta-section h2,
body[data-theme="ozel"] .cta-section p {
    color: #FFFFFF !important;
}

body[data-theme="ozel"] .cta-section .btn-dark {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF !important;
}

/* Referanslar Sayfası - Page Header */
body[data-theme="ozel"] .page-header {
    background: #000000 !important;
}

body[data-theme="ozel"] .page-header h1,
body[data-theme="ozel"] .page-header p {
    color: #FFFFFF !important;
}

/* Referanslar Sayfası - Referans Kartları */
body[data-theme="ozel"] .reference-card {
    background: #FFFFFF !important;
    border: 1px solid #000000 !important;
}

body[data-theme="ozel"] .reference-card h5,
body[data-theme="ozel"] .reference-card p,
body[data-theme="ozel"] .reference-info h5,
body[data-theme="ozel"] .reference-info p {
    color: #000000 !important;
}

body[data-theme="ozel"] .reference-logo-container {
    background: #FFFFFF !important;
}

body[data-theme="ozel"] .reference-link {
    color: #000000 !important;
    border-color: #000000 !important;
}

body[data-theme="ozel"] .reference-link:hover {
    background: #000000 !important;
    color: #FFFFFF !important;
}

body[data-theme="ozel"] .reference-placeholder {
    background: #000000 !important;
    color: #FFFFFF !important;
    border-color: #000000 !important;
}

/* Referanslar Sayfası - İstatistik Kartları */
body[data-theme="ozel"] .stats-section {
    background: #FFFFFF !important;
}

body[data-theme="ozel"] .stat-box {
    background: #000000 !important;
    border: 1px solid #000000 !important;
}

body[data-theme="ozel"] .stat-box h3,
body[data-theme="ozel"] .stat-box p {
    color: #FFFFFF !important;
}

body[data-theme="ozel"] .stat-icon {
    background: #FFFFFF !important;
    color: #000000 !important;
}

/* Referanslar Sayfası - CTA */
body[data-theme="ozel"] .cta-section {
    background: #000000 !important;
}

body[data-theme="ozel"] .cta-section h2,
body[data-theme="ozel"] .cta-section p {
    color: #FFFFFF !important;
}

body[data-theme="ozel"] .cta-section .btn-dark {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF !important;
}

/* İletişim Sayfası - Page Header */
body[data-theme="ozel"] .page-header {
    background: #000000 !important;
}

body[data-theme="ozel"] .page-header h1,
body[data-theme="ozel"] .page-header p {
    color: #FFFFFF !important;
}

/* İletişim Sayfası - İletişim Bilgi Kartları */
body[data-theme="ozel"] .contact-info-box {
    background: #000000 !important;
    border: 1px solid #000000 !important;
}

body[data-theme="ozel"] .contact-info-box h5,
body[data-theme="ozel"] .contact-info-box p,
body[data-theme="ozel"] .contact-info-box a {
    color: #FFFFFF !important;
}

body[data-theme="ozel"] .contact-info-box i {
    background: #FFFFFF !important;
    color: #000000 !important;
}

/* İletişim Sayfası - Form */
body[data-theme="ozel"] .contact-form {
    background: #FFFFFF !important;
    border: 1px solid #000000 !important;
}

body[data-theme="ozel"] .contact-form h3 {
    color: #000000 !important;
}

body[data-theme="ozel"] .contact-form .btn-primary {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border: 2px solid #000000 !important;
}

body[data-theme="ozel"] .contact-form .btn-primary:hover {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border-color: #000000 !important;
}

/* Ürünler Sayfası - Ürün Kartları (Özel Tema) */
body[data-theme="ozel"] .product-card {
    background: #FFFFFF !important;
    border: 1px solid #000000 !important;
}

body[data-theme="ozel"] .product-content h4 {
    color: #000000 !important;
}

body[data-theme="ozel"] .product-price {
    color: #000000 !important;
}

body[data-theme="ozel"] .product-content p {
    color: #000000 !important;
}

body[data-theme="ozel"] .product-features h6 {
    color: #000000 !important;
}

body[data-theme="ozel"] .product-features ul li {
    color: #000000 !important;
}

body[data-theme="ozel"] .product-features ul li:before {
    color: #000000 !important;
}

body[data-theme="ozel"] .feature-tag {
    background: #000000 !important;
    color: #FFFFFF !important;
}

body[data-theme="ozel"] .product-card:hover {
    border-color: #000000 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

