/* CRN Metal - Temel CSS */

/* Genel Ayarlar */
:root {
    /* Ana Renk Paleti */
    --primary-color: #67b3e4; /* Logo Mavi */
    --primary-dark: #4d9ad0; /* Koyu Mavi */
    --primary-light: #a5d3f0; /* Açık Mavi */
    
    --secondary-color: #514f50; /* Logo Gri */
    --secondary-light: #8a8889; /* Açık Gri */
    --secondary-lighter: #e2e2e2; /* Çok Açık Gri */
    
    --light-color: #ffffff; /* Beyaz */
    --light-gray: #f8f9fa; /* Açık Gri Arka Plan */
    --dark-color: #343a40; /* Koyu Renk */
    
    /* Durum Renkleri */
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    
    /* Sidebar Ayarları */
    --sidebar-width: 280px;
    --sidebar-collapsed-width: 80px;
    --sidebar-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --sidebar-bg: var(--primary-dark);
    --sidebar-color: var(--light-color);
    --sidebar-hover-bg: var(--primary-color);
    --sidebar-active-color: var(--light-color);
    --sidebar-hover-color: var(--light-color);
    
    /* Tema Ayarları */
    --bg-color: var(--light-color);
    --text-color: var(--secondary-color);
    --header-bg: var(--light-color);
    --card-bg: var(--light-color);
    --border-color: var(--secondary-lighter);
    
    /* Bölüm Arka Plan Renkleri */
    --section-bg-light: #f8f9fa;
    --section-bg-white: #ffffff;
    --section-bg-dark: #1e1e1e;
    --section-bg-darker: #2a2a2a;
}

/* Koyu Tema */
[data-theme="dark"] {
    --bg-color: #1a1a1a;
    --text-color: #f0f0f0;
    --header-bg: #252525;
    --card-bg: #2d2d2d;
    --border-color: #444;
    --light-gray: #333;
    --light-color: #2d2d2d;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Helper Sınıfları */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.text-light {
    color: var(--light-color) !important;
}

/* Sayfa yapısını tamamen değiştirdim - Wrapper yaklaşımı */
.page-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    will-change: transform; /* Performans iyileştirmesi */
}

/* Sidebar Stili - Fixed pozisyonlu ve transform iyileştirmeli */
.sidebar {
    position: fixed; /* sidebar titremesini engellemek için fixed yap */
    top: 0;
    left: 0;
    width: var(--sidebar-collapsed-width);
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-dark), var(--secondary-color));
    color: var(--sidebar-color);
    transition: var(--sidebar-transition);
    z-index: 1000;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
    flex-shrink: 0;
    will-change: width; /* Sadece width değişimini izle */
    transform: translateZ(0); /* Hardware acceleration için */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.sidebar.active {
    width: var(--sidebar-width);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

.sidebar-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    height: 80px;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    width: 0;
    transition: var(--sidebar-transition);
    color: var(--light-color);
}

.sidebar.active .sidebar-header h3 {
    opacity: 1;
    width: auto;
}

.sidebar-toggle {
    background: transparent;
    color: var(--sidebar-color);
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: var(--sidebar-transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.sidebar-toggle:hover {
    background: var(--primary-color);
    transform: rotate(-20deg);
}

.sidebar:not(.active) .sidebar-toggle i {
    transform: rotate(180deg);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    margin: 5px 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--sidebar-color);
    text-decoration: none;
    transition: var(--sidebar-transition);
    border-left: 4px solid transparent;
    overflow: hidden;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: var(--sidebar-hover-bg);
    border-left-color: var(--light-color);
    color: var(--sidebar-hover-color);
}

/* Menü ikonları için gelişmiş animasyonlar */
.sidebar-link i {
    font-size: 20px;
    min-width: 30px;
    margin-right: 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sidebar-link:hover i {
    transform: translateY(-2px) scale(1.2) rotate(5deg);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sidebar-text {
    white-space: nowrap;
    opacity: 0;
    transition: var(--sidebar-transition);
}

.sidebar.active .sidebar-text {
    opacity: 1;
    display: block;
}

.sidebar-footer {
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.sidebar-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--sidebar-color);
    text-decoration: none;
    margin: 4px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Content Stili - Performans için iyileştirildi */
.content {
    flex: 1;
    margin-left: var(--sidebar-collapsed-width);
    transition: var(--sidebar-transition);
    width: calc(100% - var(--sidebar-collapsed-width));
    min-height: calc(100vh - 80px); /* Header yüksekliği (80px) düşüldü */
    position: relative;
    overflow-x: hidden;
    background-color: var(--bg-color);
    will-change: margin-left, width; /* Sadece değişecek özellikleri izle */
    transform: translateZ(0); /* Hardware acceleration */
    -webkit-backface-visibility: hidden; /* Safari için performans */
    backface-visibility: hidden;
}

body.sidebar-active .content {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
}

/* Container genişlikleri için düzenleme */
.container, .container-fluid {
    transition: width 0.3s ease, max-width 0.3s ease;
}

body.sidebar-active .container {
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
}

/* Minimum genişlik bozulmaması için */
@media (min-width: 992px) {
    body.sidebar-active .container {
        max-width: calc(960px - var(--sidebar-width) + var(--sidebar-collapsed-width));
    }
}

@media (min-width: 1200px) {
    body.sidebar-active .container {
        max-width: calc(1140px - var(--sidebar-width) + var(--sidebar-collapsed-width));
    }
}

@media (min-width: 1400px) {
    body.sidebar-active .container {
        max-width: calc(1320px - var(--sidebar-width) + var(--sidebar-collapsed-width));
    }
}

/* Bölüm Geçişlerini Belirginleştirme */
section {
    position: relative;
    z-index: 1;
    padding: 70px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

/* Açık tema için bölüm geçişleri */
[data-theme="light"] section:nth-child(odd),
section:nth-child(odd) {
    background-color: var(--section-bg-light);
}

[data-theme="light"] section:nth-child(even),
section:nth-child(even) {
    background-color: var(--section-bg-white);
}

[data-theme="dark"] section:nth-child(odd) {
    background-color: var(--section-bg-dark);
}

[data-theme="dark"] section:nth-child(even) {
    background-color: var(--section-bg-darker);
}

/* Bölüm başlıklarının altına çizgi */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

/* Hero bölümü dışındakilere margin ekle */
.quick-info-section {
    background-color: var(--card-bg);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 20;
    margin-top: -50px;
    padding-top: 80px;
    border-radius: 15px 15px 0 0;
    transition: all 0.3s ease;
}

.services-section {
    padding-top: 80px;
}

/* CTA bölümü özel stili */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
    margin: 50px 0;
    z-index: 5;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border: none;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-section:after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-inner {
    position: relative;
    z-index: 5;
    padding: 0 20px;
}

.cta-title {
    color: var(--light-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 0;
}

.cta-section .btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobil düzenlemeler */
@media (max-width: 768px) {
    .sidebar {
        left: -100%; /* Tamamen gizli */
        width: 0;
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        transform: translateX(0); /* Başlangıç konumu */
    }
    
    .sidebar.active {
        width: 100%;
        left: 0;
        transform: translateX(0); /* Aktif konumu */
    }
    
    .content {
        width: 100%;
        margin-left: 0;
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }
    
    body.sidebar-active .content {
        margin-left: 0;
        width: 100%;
        transform: translateX(100%); /* Sidebarın dışına it */
    }
    
    section {
        padding: 60px 0;
    }
    
    .quick-info-section {
        margin-top: -30px;
        padding-top: 60px;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-section .btn {
        display: block;
        margin-bottom: 10px;
        width: 100%;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    /* Mobil Header */
    .site-header {
        padding: 0;
        height: 70px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .cta-section {
        margin: 30px 0;
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

/* Yeni Header Stili */
.site-header {
    background: var(--header-bg);
    padding: 0;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(81, 79, 80, 0.08);
    position: sticky;
    top: 0;
    z-index: 99;
}

.logo {
    display: flex;
    align-items: center;
}

/* Logo animasyonu */
@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo img {
    transition: transform 0.3s ease;
    height: 75px;
    animation: logoEntrance 1s ease-out forwards;
}

.logo:hover img {
    transform: scale(1.05) rotate(2deg);
}

.header-contact {
    display: flex;
    align-items: center; /* İletişim öğelerini dikeyde ortala */
    height: 100%; /* Header yüksekliği kadar yer kapla */
}

.contact-item {
    display: flex;
    align-items: center; /* İkon ve metni dikeyde ortala */
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 10px;
    width: 40px; /* İkon kutusu genişliği */
    height: 40px; /* İkon kutusu yüksekliği */
    background: rgba(103, 179, 228, 0.1); /* Hafif arka plan */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    background: rgba(103, 179, 228, 0.2); /* Hoverda arka plan rengi */
}

.contact-item div {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Metinleri dikeyde ortala */
}

.contact-item span {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.2;
}

.contact-item a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.site-header .row {
    height: 100%;
    align-items: center; /* Row içindeki elemanları dikeyde ortala */
}

/* Hamburger Menü */
.hamburger-menu {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 5px;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4px;
    outline: none;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.hamburger-menu:hover {
    background: var(--primary-dark);
    transform: rotate(15deg);
}

.circle {
    width: 12px;
    height: 12px;
    background: var(--light-color);
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .circle {
    transform: scale(1.2);
}

body.sidebar-active .hamburger-menu {
    transform: rotate(-180deg);
}

/* Ana Sayfa - Hero Bölümü */
.hero-section {
    position: relative;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    overflow: hidden;
}

.hero-section img {
    transition: transform 0.5s ease;
}

.hero-section:hover img {
    transform: scale(1.02);
}

/* Kartlar */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    border-color: var(--border-color);
    background-color: var(--card-bg);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(81, 79, 80, 0.08) !important;
}

/* Feature Icon */
.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Formlar */
.form-control {
    border-radius: 6px;
    font-size: 0.95rem;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(103, 179, 228, 0.25);
}

/* Butonlar */
.btn {
    border-radius: 6px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(103, 179, 228, 0.2);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(103, 179, 228, 0.2);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    margin-top: auto; /* Content dolduktan sonra en alta it */
}

footer h5 {
    color: var(--light-color);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer a.text-muted {
    transition: color 0.3s ease;
}

footer a.text-muted:hover {
    color: var(--light-color) !important;
    text-decoration: none;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes pulseEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulseEffect 1.5s infinite;
}

/* Sidebar başlık yazı stilleri */
.sidebar-title {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
    height: 40px;
}

.sidebar-short-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--light-color);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    display: block;
    text-align: center;
    line-height: 1;
}

.sidebar-long-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--light-color);
    white-space: nowrap;
    opacity: 0;
    width: 0;
    transition: var(--sidebar-transition);
    display: block;
    line-height: 1;
}

.sidebar.active .sidebar-long-title {
    opacity: 1;
    width: auto;
    margin-top: 5px;
}

.sidebar:not(.active) .sidebar-short-title {
    transform: scale(1.2);
}

.site-header .row {
    height: 100%;
    align-items: center; /* Row içindeki elemanları dikeyde ortala */
}

/* Tema değiştirme düğmesi */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(30deg);
    color: var(--primary-dark);
}

[data-theme="dark"] .theme-toggle i.fa-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle i.fa-sun {
    display: inline-block;
}

.theme-toggle i.fa-sun {
    display: none;
}

/* Header'ın koyu temada görünümü */
[data-theme="dark"] .site-header {
    background: var(--header-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Kartların koyu temada görünümü */
[data-theme="dark"] .card {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

.theme-transition {
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease !important;
}

/* Header Arama Kutusu */
.header-search {
    padding: 0 15px;
}

.header-search .input-group {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header-search .input-group:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.header-search .form-control {
    border: none;
    padding: 10px 15px;
    font-size: 0.9rem;
    background-color: var(--light-gray);
    color: var(--text-color);
}

.header-search .form-control::placeholder {
    color: var(--text-color);
    opacity: 0.7;
}

.header-search .btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.header-search .btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

/* Header Sosyal İkonlar */
.header-social {
    display: flex;
    align-items: center;
}

.header-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    margin: 0 3px;
    transition: all 0.3s ease;
}

.header-social-icon:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

/* Dil Seçimi */
.header-dropdown .dropdown-toggle {
    border: none;
    background: transparent;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.header-dropdown .dropdown-toggle:hover,
.header-dropdown .dropdown-toggle:focus {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.header-dropdown .dropdown-menu {
    margin-top: 10px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeIn 0.3s ease;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.header-dropdown .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.header-dropdown .dropdown-item:hover,
.header-dropdown .dropdown-item:focus {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.header-dropdown .dropdown-item.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.header-dropdown .dropdown-item img {
    margin-right: 8px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Animasyon keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Koyu tema uyumluluğu */
[data-theme="dark"] .header-search .form-control {
    background-color: #333;
    color: #f0f0f0;
}

[data-theme="dark"] .header-dropdown .dropdown-toggle {
    color: #f0f0f0;
}

[data-theme="dark"] .header-social-icon {
    background-color: #333;
    color: var(--primary-light);
}

[data-theme="dark"] .header-social-icon:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Tam Sayfa Hero Alanı */
.fullscreen-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('../img/boyahane-bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    margin-top: -80px; /* Header'ı da içerecek şekilde tam sayfa */
    padding-top: 80px; /* Header yüksekliği kadar padding */
    border-bottom: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    background-image: linear-gradient(45deg, rgba(81, 79, 80, 0.6), rgba(77, 154, 208, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 15px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-buttons .btn-outline-light {
    border-width: 2px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    display: inline-block;
    color: var(--light-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.hero-scroll-indicator a:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

/* Quick Info kartları için düzenleme */
.quick-info-item {
    padding: 20px;
    border-radius: 10px;
    background-color: var(--card-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
}

.quick-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--light-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.quick-info-item .content {
    flex: 1;
    min-width: 0;
}

.quick-info-item .content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-color);
    /* white-space: nowrap; */ /* Sidebar açıkken metnin kaybolmasını önlemek için kapatıldı */
    overflow: visible; /* Metnin taşmasını önlemek için değiştirildi */
    text-overflow: clip; /* Metin taşma efektini kaldırmak için değiştirildi */
}

.quick-info-item .content p {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 0;
    /* white-space: nowrap; */ /* Sidebar açıkken metnin kaybolmasını önlemek için kapatıldı */
    overflow: visible; /* Metnin taşmasını önlemek için değiştirildi */
    text-overflow: clip; /* Metin taşma efektini kaldırmak için değiştirildi */
}

/* Sidebar durumuna göre düzenleme */
@media (min-width: 768px) {
    body.sidebar-active .quick-info-section .container {
        max-width: calc(100% - 40px);
        padding-left: 15px;
        padding-right: 15px;
        transition: all 0.3s ease;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 767px) {
    .quick-info-section {
        margin-top: -30px;
        padding-top: 60px;
    }
    
    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 10px;
    }
    
    .quick-info-item .content h4 {
        font-size: 16px;
    }
    
    .quick-info-item .content p {
        font-size: 13px;
    }
}

/* Bölüm Başlıkları */
.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-description {
    font-size: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
    opacity: 0.7;
}

/* Hizmet Kartları */
.service-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; /* Tüm geçişler burada */
    height: 100%;
    position: relative;
    /* overflow: hidden; */ /* İçeriğin taşmasını engellemek için kapatıldı */
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform-style: preserve-3d; /* İç elemanlar için 3D transform */
    perspective: 1000px;
    overflow: hidden; /* Işık efektinin taşmasını engelle */
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    /* Transform JS tarafından eklenecek */
}

/* Işık efekti için sözde element */
.service-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%); /* JS ile güncellenecek */
    left: var(--mouse-x, 50%); /* JS ile güncellenecek */
    width: 180%; /* Işık alanını biraz büyüt */
    height: 180%; /* Işık alanını biraz büyüt */
    background: radial-gradient(
        circle closest-side,
        rgba(103, 179, 228, 0.4) 0%, /* Ana mavi renkte ışık */
        transparent 50%
    );
    transform: translate(-50%, -50%);
    opacity: 0; /* Başlangıçta gizli */
    transition: opacity 0.5s ease, top 0.05s linear, left 0.05s linear; /* Pozisyon geçişleri hızlandırıldı */
    pointer-events: none;
    z-index: 1;
}

.service-card.mouse-active::before {
    opacity: 1; /* Fare üzerindeyken görünür */
}

/* İkon, başlık, paragraf ve link stilleri mevcut halleriyle kalacak, transform doğrudan .service-card'a uygulanacak */
.service-icon, .service-card h3, .service-card p, .service-link {
    /* Mevcut stiller */
    z-index: 2; /* Işık efektinin üzerinde olmalı */
    position: relative; /* z-index için gerekli */
}

.service-icon {
    width: 65px;
    height: 65px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
    color: var(--primary-dark);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: rotate(360deg) scale(1.1);
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    color: var(--text-color);
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 20px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.5;
}

.service-link {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.service-link i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Dark tema uyumluluğu */
[data-theme="dark"] .service-card {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .service-card:hover {
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
     border-color: var(--primary-color);
}

[data-theme="dark"] .service-card::before {
     background: radial-gradient(
        circle closest-side,
        rgba(103, 179, 228, 0.2) 0%, /* Koyu temada daha az opak mavi ışık */
        transparent 50%
    );
}

[data-theme="dark"] .service-icon {
    background-color: rgba(103, 179, 228, 0.2);
    color: var(--primary-light);
}

[data-theme="dark"] .service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--light-color);
}

[data-theme="dark"] .service-link {
    color: var(--primary-light);
}

[data-theme="dark"] .service-link:hover {
    color: var(--primary-color);
}

/* Scroll reveal stilleri */
.service-card.reveal {
    opacity: 0;
    transform: translateY(50px);
}

.service-card.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Fare efekti stilleri */
.service-card.reveal.is-visible.mouse-active {
     transition: transform 0.1s linear, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.service-card.reveal.is-visible:not(.mouse-active) {
     transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 180%;
    height: 180%;
    background: radial-gradient(
        circle closest-side,
        rgba(103, 179, 228, 0.4) 0%,
        transparent 50%
    );
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease, top 0.05s linear, left 0.05s linear;
    pointer-events: none;
    z-index: 1;
}

.service-card.mouse-active::before {
    opacity: 1;
}

[data-theme="dark"] .service-card::before {
     background: radial-gradient(
        circle closest-side,
        rgba(103, 179, 228, 0.2) 0%,
        transparent 50%
    );
}

/* Hakkımızda Sayfası Stilleri */
.about-page-section img {
    transition: transform 0.5s ease; /* Görsel hover efekti */
}

.about-page-section img:hover {
    transform: scale(1.02); /* Hoverda hafif büyüme */
}

/* Scroll Reveal Animasyonları */
/* Genel reveal stili (varsayılan olarak aşağıdan yukarı) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Varsayılan animasyon geçişi */
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Farklı animasyon yönleri için özel stiller */
.reveal.fade-in-left {
    opacity: 0;
    transform: translateX(-50px); /* Soldan başla */
}

.reveal.fade-in-left.is-visible {
    opacity: 1;
    transform: translateX(0); /* Sola kayarak gel */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Animasyon geçişi */
}

.reveal.fade-in-right {
    opacity: 0;
    transform: translateX(50px); /* Sağdan başla */
}

.reveal.fade-in-right.is-visible {
    opacity: 1;
    transform: translateX(0); /* Sağa kayarak gel */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Animasyon geçişi */
}

.reveal.fade-in-bottom { /* Varsayılan reveal ile aynı */
     opacity: 0;
     transform: translateY(40px);
}

.reveal.fade-in-bottom.is-visible { /* Varsayılan reveal ile aynı */
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Animasyon geçişi */
}

/* Scroll reveal için gecikme - JS ile ayarlanıyor */

/* Dark tema uyumluluğu */
[data-theme="dark"] .about-page-section img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Koyu temada gölge */
}

/* Mevcut diğer stiller (Referanslar, Servis Kartları, Fare Efektleri vb.) burada devam edecek */

/* References Section */
.references-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.reference-item {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--card-bg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    filter: grayscale(100%);
    opacity: 0.7;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.reference-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.reference-logo {
    max-width: 85%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Scroll reveal animasyonu - Referanslar için */
/* Birinci sıra (soldan sağa animasyon) */
.references-row-1 .reference-item.reveal {
    opacity: 0;
    transform: translateX(-50px);
}

.references-row-1 .reference-item.reveal.is-visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Animasyon geçişi */
}

/* İkinci sıra (sağdan sola animasyon) */
.references-row-2 .reference-item.reveal {
    opacity: 0;
    transform: translateX(50px);
}

.references-row-2 .reference-item.reveal.is-visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Animasyon geçişi */
}

/* Dark tema uyumluluğu - Referanslar */
[data-theme="dark"] .references-section {
    /* Arka plan rengi index.php'de bg-light sınıfı dark tema karşılığı ile ayarlanıyor */
}

[data-theme="dark"] .reference-item {
    background-color: var(--card-bg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    filter: grayscale(70%);
    opacity: 0.8;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .reference-item:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    filter: grayscale(0%);
    opacity: 1;
    border-color: var(--primary-color);
}

[data-theme="dark"] .references-row-1 .reference-item.reveal.is-visible,
[data-theme="dark"] .references-row-2 .reference-item.reveal.is-visible {
     /* Dark temada animasyon geçişleri aynı kalabilir veya ayarlanabilir */
}

/* Mevcut scroll reveal stilleri diğer elementler için kullanılmaya devam edecek */
.service-card.reveal {
    opacity: 0;
    transform: translateY(50px);
}

.service-card.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Fare efekti stilleri */
.service-card.reveal.is-visible.mouse-active {
     transition: transform 0.1s linear, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.service-card.reveal.is-visible:not(.mouse-active) {
     transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 180%;
    height: 180%;
    background: radial-gradient(
        circle closest-side,
        rgba(103, 179, 228, 0.4) 0%,
        transparent 50%
    );
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease, top 0.05s linear, left 0.05s linear;
    pointer-events: none;
    z-index: 1;
}

.service-card.mouse-active::before {
    opacity: 1;
}

[data-theme="dark"] .service-card::before {
     background: radial-gradient(
        circle closest-side,
        rgba(103, 179, 228, 0.2) 0%,
        transparent 50%
    );
}

/* Sidebar Alt Menü Stilleri */
.sidebar-item.has-submenu > .sidebar-link {
    position: relative;
}

.sidebar-item.has-submenu > .sidebar-link i.dropdown-toggle::after {
    content: '\f107'; /* Chevron aşağı ikonu */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.sidebar-item.has-submenu > .sidebar-link[aria-expanded="true"] i.dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg); /* Açıldığında yukarı baksın */
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.1); /* Hafif koyu arka plan */
}

.submenu-link {
    padding: 10px 15px 10px 45px; /* Hizalamak için soldan boşluk */
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.submenu-link:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.2); /* Hoverda biraz daha koyu */
    padding-left: 50px; /* Hoverda hafif sağa kayma efekti */
}

/* Koyu temada alt menü stilleri */
[data-theme="dark"] .submenu {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .submenu-link:hover {
     background-color: rgba(255, 255, 255, 0.1);
}

/* Sidebar aktif olmadığında alt menünün gizlenmesi */
.sidebar:not(.active) .submenu {
    display: none !important;
}

/* Genel sidebar link stillerini etkilememesi için */
.sidebar-link.dropdown-toggle i {
    margin-right: 15px; /* İkon ile yazı arasına boşluk */
}

/* Hizmetler Sayfası Stilleri */
.services-page-section {
    padding: 80px 0;
    padding-bottom: 120px; /* Footer için daha fazla boşluk */
    background-color: var(--bg-color);
}

/* Banner Stili */
.service-banner {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 60px;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.service-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png') repeat;
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

.service-banner-content {
    position: relative;
    z-index: 2;
}

.service-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.service-banner p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
}

/* Detay Kartı Stili */
.service-detail-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-light);
}

.feature-item i {
    font-size: 20px;
    margin-right: 15px;
    color: var(--primary-color);
}

.feature-item span {
    font-size: 15px;
    color: var(--text-color);
}

/* Alt Kartlar Stili */
.service-info-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    text-align: center;
}

.service-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.service-info-card:hover .card-icon {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: rotate(360deg);
}

.service-info-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-info-card p {
    font-size: 15px;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0;
}

/* Faydalar Kartı Stili */
.service-benefits-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    position: sticky;
    top: 100px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    font-size: 18px;
    margin-right: 15px;
    color: var(--primary-color);
}

.benefits-list span {
    font-size: 15px;
    color: var(--text-color);
}

/* Dark tema uyumluluğu */
[data-theme="dark"] .service-banner {
    background: linear-gradient(45deg, var(--primary-dark), var(--secondary-color));
}

[data-theme="dark"] .service-detail-card,
[data-theme="dark"] .service-info-card,
[data-theme="dark"] .service-benefits-card {
    background-color: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .feature-item {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .feature-item:hover {
    background-color: rgba(103, 179, 228, 0.2);
}

[data-theme="dark"] .benefits-list li {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Animasyonlar */
@keyframes slide {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .service-banner {
        padding: 40px;
    }
    
    .service-banner h1 {
        font-size: 2rem;
    }
    
    .service-detail-card,
    .service-info-card,
    .service-benefits-card {
        padding: 30px;
    }
    
    .service-benefits-card {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .services-page-section {
        padding: 60px 0;
        padding-bottom: 100px; /* Mobil görünümde footer için boşluk */
    }
    
    .service-banner {
        padding: 30px;
    }
    
    .service-banner h1 {
        font-size: 1.8rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Boyahane Bakımları Özel Detay Stilleri */
.boyahane-bakim-detail {
    /* Genel padding veya margin ayarları yapılabilir */
}

.service-detail-section {
    margin-bottom: 60px; /* Bölümler arasına boşluk */
}

.service-detail-section img {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.service-detail-section img:hover {
    transform: scale(1.02);
}

.service-detail-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.8;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.service-features-list li {
    display: flex;
    align-items: flex-start; /* İkon ve yazı aynı hizaya */
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-color);
}

.service-features-list li i {
    margin-right: 12px;
    font-size: 18px;
    color: var(--primary-color);
    flex-shrink: 0; /* İkonun küçülmesini engelle */
    margin-top: 3px; /* Yazı ile dikey hizalama */
}

/* Alt Kartlar ve Faydalar Kartı için boşluk düzenlemesi */
.boyahane-bakim-detail .service-info-card,
.boyahane-bakim-detail .service-benefits-card {
    margin-top: 0 !important; /* Üstten boşluğu sıfırla, düzenlemeyi ana yapıdaki g-4 halledecek */
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .service-detail-section {
        margin-bottom: 40px;
    }

    .service-detail-section img {
        margin-bottom: 20px; /* Mobil/Tablet görünümde görsel altına boşluk */
    }

    .service-detail-content {
        padding: 0; /* Mobil/Tablet görünümde padding sıfırla */
    }
}

@media (max-width: 767px) {
    .service-detail-content h3 {
        font-size: 20px;
    }

    .service-detail-content p {
        font-size: 15px;
    }

    .service-features-list li {
        font-size: 14px;
    }
}

/* Material Icons Stilleri */
.material-icons, .material-icons-outlined {
    /* Genel Material Icons stili */
    font-family: 'Material Icons', 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d; /* 3D dönüş için */
    perspective: 1000px; /* 3D dönüş için */
}

.service-icon .material-icons-outlined {
    font-size: 2em;
    color: var(--primary-dark);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon .material-icons-outlined {
    transform: rotateY(180deg) scale(1.2);
    color: var(--light-color);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.card-icon .material-icons-outlined {
    font-size: 2.5em;
    color: var(--primary-dark);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-info-card:hover .card-icon .material-icons-outlined {
    transform: rotateY(180deg) scale(1.2);
    color: var(--light-color);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Dark tema uyumluluğu */
[data-theme="dark"] .service-icon .material-icons-outlined,
[data-theme="dark"] .card-icon .material-icons-outlined {
    color: var(--primary-light);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

[data-theme="dark"] .service-card:hover .service-icon .material-icons-outlined,
[data-theme="dark"] .service-info-card:hover .card-icon .material-icons-outlined {
    color: var(--light-color);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Projeler Sayfası Stilleri */
.page-header {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Proje Filtreleme */
.projects-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
}

/* Proje Kartları */
.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-actions {
    display: flex;
    gap: 1rem;
}

.project-content {
    padding: 1.5rem;
}

.project-category {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.project-description {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Projeler Sayfası Hero Section */
.projects-hero {
    background: url('../img/projects-hero-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    margin-top: -80px;
    padding-top: 80px;
    border-bottom: none;
    z-index: 1;
}

.projects-hero .hero-overlay {
    background: linear-gradient(45deg, rgba(81, 79, 80, 0.8), rgba(77, 154, 208, 0.7));
}

.projects-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.projects-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.projects-hero .hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.projects-hero .hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.projects-hero .hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.projects-hero .hero-buttons .btn-outline-light {
    border-width: 2px;
}

.projects-hero .hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.projects-hero .hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    animation: bounce 2s infinite;
}

.projects-hero .hero-scroll-indicator a {
    display: inline-block;
    color: var(--light-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.projects-hero .hero-scroll-indicator a:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .projects-hero {
        height: auto;
        min-height: 500px;
        padding: 120px 0 60px;
    }
    
    .projects-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .projects-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .projects-hero .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Proje Detay Sayfası Stilleri */
.project-detail-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.project-detail-section .section-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.project-detail-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.project-detail-section .project-meta {
    margin-bottom: 30px;
}

.project-detail-section .project-meta .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
}

.project-detail-section .project-meta span {
    color: var(--text-color);
    opacity: 0.8;
    margin-right: 20px;
}

.project-detail-section .project-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.project-detail-section .project-image {
    margin-bottom: 30px;
}

.project-detail-section .project-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-detail-section .project-description h3,
.project-detail-section .project-features h3,
.project-detail-section .project-gallery h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.project-detail-section .project-description .lead {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.project-detail-section .project-description p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-detail-section .features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.project-detail-section .feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.project-detail-section .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: var(--primary-light);
}

.project-detail-section .feature-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.project-detail-section .feature-item span {
    color: var(--text-color);
}

.project-detail-section .gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-detail-section .gallery-item:hover {
    transform: translateY(-5px);
}

.project-detail-section .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-detail-section .project-info-card,
.project-detail-section .contact-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.project-detail-section .project-info-card h3,
.project-detail-section .contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.project-detail-section .project-info-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.project-detail-section .project-info-list li:last-child {
    border-bottom: none;
}

.project-detail-section .project-info-list i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.project-detail-section .project-info-list strong {
    color: var(--text-color);
    margin-right: 5px;
}

.project-detail-section .contact-card {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.project-detail-section .contact-card h3 {
    color: var(--light-color);
}

.project-detail-section .contact-card p {
    color: var(--light-color);
    opacity: 0.9;
    margin-bottom: 20px;
}

.project-detail-section .contact-card .btn-primary {
    background-color: var(--light-color);
    color: var(--primary-color);
    border: none;
}

.project-detail-section .contact-card .btn-primary:hover {
    background-color: var(--light-gray);
}

.project-detail-section .related-projects h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* Dark tema uyumluluğu */
[data-theme="dark"] .project-detail-section .project-image img {
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

[data-theme="dark"] .project-detail-section .feature-item {
    background-color: rgba(255,255,255,0.05);
}

[data-theme="dark"] .project-detail-section .feature-item:hover {
    background-color: rgba(103,179,228,0.2);
}

[data-theme="dark"] .project-detail-section .project-info-card,
[data-theme="dark"] .project-detail-section .contact-card {
    background-color: var(--card-bg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

[data-theme="dark"] .project-detail-section .project-info-list li {
    border-color: rgba(255,255,255,0.1);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .project-detail-section {
        padding: 60px 0;
    }

    .project-detail-section .section-title {
        font-size: 2rem;
    }

    .project-detail-section .features-list {
        grid-template-columns: 1fr;
    }

    .project-detail-section .gallery-item img {
        height: 150px;
    }
}

/* Ürünler Sayfası Stilleri */
.products-hero {
    background: url('../img/products-hero-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    margin-top: -80px;
    padding-top: 80px;
    border-bottom: none;
    z-index: 1;
}

.products-hero .hero-overlay {
    background: linear-gradient(45deg, rgba(81, 79, 80, 0.8), rgba(77, 154, 208, 0.7));
}

.products-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.products-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.products-hero .hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.products-hero .hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.products-hero .hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.products-hero .hero-buttons .btn-outline-light {
    border-width: 2px;
}

.products-hero .hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.products-hero .hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    animation: bounce 2s infinite;
}

.products-hero .hero-scroll-indicator a {
    display: inline-block;
    color: var(--light-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.products-hero .hero-scroll-indicator a:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

/* Ürün Filtreleme */
.products-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
}

/* Ürün Kartları */
.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(2deg);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-actions {
    transform: translateY(0);
}

.product-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.product-category {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(103, 179, 228, 0.3);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

.product-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-features li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.9;
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1rem;
    background: var(--primary-light);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-card:hover .product-features li i {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(360deg);
}

/* Ürün Filtreleme */
.products-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
}

.product-features-section .feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.product-features-section .feature-item p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0;
}

/* Dark tema uyumluluğu */
[data-theme="dark"] .product-card {
    background-color: var(--card-bg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.1);
}

[data-theme="dark"] .product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border-color: var(--primary-color);
}

[data-theme="dark"] .product-features-section .feature-item {
    background-color: var(--card-bg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.1);
}

[data-theme="dark"] .product-features-section .feature-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border-color: var(--primary-color);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .products-hero {
        height: auto;
        min-height: 500px;
        padding: 120px 0 60px;
    }
    
    .products-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .products-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .products-hero .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .products-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .product-features-section .feature-item {
        padding: 1.5rem;
    }
    
    .product-features-section .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
} 

/* İletişim Sayfası Stilleri */
.contact-info {
    margin-top: 2.5rem; /* Genel üst boşluğu biraz artırıyorum */
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem; /* Elemanlar arasına daha fazla boşluk */
}

.info-item:last-child {
    margin-bottom: 0; /* Son elemanın alt boşluğunu kaldırıyorum */
}

.info-item i {
    font-size: 1.6rem; /* İkon boyutunu biraz artırıyorum */
    color: var(--bs-primary);
    margin-right: 1.2rem; /* İkon ve yazı arasına daha fazla boşluk */
    margin-top: 0.3rem;
}

.info-item h5 {
    color: var(--bs-dark);
    font-size: 1.2rem; /* Başlık boyutunu biraz artırıyorum */
    font-weight: 600;
    margin-bottom: 0.75rem; /* Başlık ve paragraf arasına daha fazla boşluk */
}

.info-item p {
    color: var(--bs-gray-700);
    margin: 0;
    line-height: 1.7; /* Satır yüksekliğini biraz artırıyorum */
}

/* İletişim Formu Stilleri */
.contact-form-card {
    background: var(--bs-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.form-title {
    color: var(--bs-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    color: var(--bs-gray-700);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 1px solid var(--bs-gray-300);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Harita Stilleri */
.map-card {
    background: var(--bs-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.map-title {
    color: var(--bs-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Çalışma Saatleri Stilleri */
.working-hours {
    margin-top: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--bs-gray-200);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    color: var(--bs-dark);
    font-weight: 600;
}

.hours-item .time {
    color: var(--bs-primary);
    font-weight: 500;
}

/* Dark Theme Uyumluluğu */
[data-bs-theme="dark"] .contact-form-card,
[data-bs-theme="dark"] .map-card {
    background: var(--bs-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

[data-bs-theme="dark"] .form-title,
[data-bs-theme="dark"] .map-title {
    color: var(--bs-white);
}

[data-bs-theme="dark"] .form-group label {
    color: var(--bs-gray-300);
}

[data-bs-theme="dark"] .form-control {
    background-color: var(--bs-dark);
    border-color: var(--bs-gray-700);
    color: var(--bs-white);
}

[data-bs-theme="dark"] .form-control:focus {
    background-color: var(--bs-dark);
    color: var(--bs-white);
}

[data-bs-theme="dark"] .hours-item {
    border-color: var(--bs-gray-700);
}

[data-bs-theme="dark"] .hours-item .day {
    color: var(--bs-white);
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .contact-form-card,
    .map-card {
        margin-bottom: 2rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .info-item {
        margin-bottom: 1rem;
    }
    
    .info-item i {
        font-size: 1.2rem;
    }
    
    .info-item h5 {
        font-size: 1rem;
    }
    
    .form-title,
    .map-title {
        font-size: 1.3rem;
    }
} 

/* İletişim Sayfası Yeni Stilleri */
.contact-page-intro {
    background-color: var(--bg-color); /* Temanın genel arka plan rengi */
}

.contact-page-intro .section-subtitle {
    color: var(--primary-color);
}

.contact-page-intro .section-title {
    color: var(--text-color);
}

.contact-page-intro .section-description {
    color: var(--text-color);
    opacity: 0.8;
}

.contact-info-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.contact-info-card .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .icon-box {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: scale(1.1) rotate(15deg);
}

.contact-info-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info-card p:last-child {
    margin-bottom: 0;
}

.contact-info-card a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-form-map {
    background-color: var(--section-bg-light); /* Açık arka plan rengi */
}

[data-theme="dark"] .contact-form-map {
    background-color: var(--section-bg-dark); /* Koyu temada koyu arka plan */
}

.contact-form-card, .map-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

[data-theme="dark"] .contact-form-card, [data-theme="dark"] .map-card {
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-form-card .form-title, .map-card .map-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background-color: var(--bg-color);
    color: var(--text-color);
    border-color: var(--border-color);
}

[data-theme="dark"] .contact-form .form-control {
    background-color: var(--bg-color);
    border-color: var(--border-color);
    color: var(--text-color);
}

.contact-form .form-control::placeholder {
    color: var(--text-color);
    opacity: 0.7;
}

.contact-form .btn {
     padding: 1rem 2.5rem;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 30px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Eski .working-hours-section stillerini kaldırıyorum */

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .contact-page-intro .section-title {
        font-size: 2rem;
    }

    .contact-form-card, .map-card {
        padding: 2rem;
    }

    .contact-form-card .form-title, .map-card .map-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .contact-page-intro .section-subtitle {
         text-align: center;
    }

    .contact-page-intro .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .contact-page-intro .section-description {
        font-size: 1rem;
        text-align: center;
    }

    .contact-info-card {
        padding: 1.2rem;
    }

    .contact-info-card .icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .contact-info-card h4 {
        font-size: 1.1rem;
    }

    .contact-info-card p {
        font-size: 0.9rem;
    }

    .contact-form-card, .map-card {
        padding: 1.5rem;
    }

    .contact-form-card .form-title, .map-card .map-title {
        font-size: 1.3rem;
    }

    .contact-form .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* Eski iletişim sayfası stillerini siliyorum */
.contact-info,
.info-item,
.info-item i,
.info-item h5,
.info-item p,
.contact-form-card,
.form-title,
.form-group label,
.form-control,
textarea.form-control,
.map-card,
.map-title,
.map-container,
.working-hours,
.hours-item,
.hours-item .day,
.hours-item .time {
    /* Bu sınıflar için eski stiller burada listelenmişti */
    /* Yeni stiller yukarıda tanımlandı */
}

[data-bs-theme="dark"] .contact-form-card,
[data-bs-theme="dark"] .map-card,
[data-bs-theme="dark"] .form-title,
[data-bs-theme="dark"] .map-title,
[data-bs-theme="dark"] .form-group label,
[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .hours-item,
[data-bs-theme="dark"] .hours-item .day {
    /* Bu sınıflar için eski dark theme stilleri burada listelenmişti */
    /* Yeni stiller yukarıda dark theme uyumluluğu içinde tanımlandı */
}

@media (max-width: 768px) {
    /* Bu medya sorgusu içindeki eski iletişim stilleri kaldırılıyor */
    .contact-form-card,
    .map-card,
    .info-item,
    .info-item i,
    .info-item h5,
    .form-title,
    .map-title {
        /* Eski stiller buradaydı */
    }
}

/* Ürünler Sayfası Stilleri */
/* ... existing code ... */

/* Galeri Sayfası Stilleri */
.gallery-intro {
    background-color: var(--bg-color);
}

.gallery-intro .section-subtitle {
    color: var(--primary-color);
}

.gallery-intro .section-title {
    color: var(--text-color);
}

.gallery-intro .section-description {
    color: var(--text-color);
    opacity: 0.8;
}

.gallery-section {
    background-color: var(--section-bg-light);
}

[data-theme="dark"] .gallery-section {
    background-color: var(--section-bg-dark);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 250px; /* Sabit yükseklik belirleyebilirsiniz veya aspect-ratio kullanabilirsiniz */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item a {
    position: relative;
    display: block;
}

.gallery-item a::after {
    content: '\f06e'; /* Font Awesome Eye ikonu */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(103, 179, 228, 0.7); /* Tema rengi ile overlay */
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item a:hover::after {
    opacity: 1;
}

/* Dark tema uyumluluğu */
[data-theme="dark"] .gallery-section {
    background-color: var(--section-bg-dark);
}

[data-theme="dark"] .gallery-item {
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

[data-theme="dark"] .gallery-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

[data-theme="dark"] .gallery-item a::after {
    background: rgba(77, 154, 208, 0.7); /* Koyu temada overlay rengi */
}

/* Responsive düzenlemeler */
@media (max-width: 767px) {
    .gallery-item img {
        height: 200px;
    }

    .gallery-item a::after {
        font-size: 1.5rem;
    }
}