/* CSS Değişkenleri (Renk Paleti) */
:root {
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: #AAAAAA;
    --accent-color-orange: #F08320;
    --accent-color-black: #2C2C2C;
    --border-color: #333333;
}

/* Temel Ayarlar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

main {
    display: block;
    padding-top: 90px;
}

a {
    color: var(--accent-color-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Konteyner */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 1. Header & Navigasyon */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-sizing: border-box;
    height: 90px; /* Sabit yükseklik */
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-container img {
    height: 75px; /* Logo yüksekliği */
    width: auto;
    margin-bottom: 2px;
}

.logo-container .logo-slogan {
    font-size: 0.7rem; /* Logoya göre slogan küçültüldü */
    color: var(--text-secondary);
    font-style: italic;
    letter-spacing: 0.5px;
}

.navbar-nav {
    display: flex;
    gap: 1.5rem;
}

.navbar-nav a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--text-primary);
    border-bottom-color: var(--accent-color-orange);
}

/* ======================================== */
/* === SLIDER (TAM EKRAN VE SOL-ALT METİNLİ) === */
/* ======================================== */

.slider-container {
    width: 100%;
    height: 100vh; /* Ekran yüksekliğinin %100'ü */
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    margin-top: -90px; 
}

.slider-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    
    /* Konum: Sol-Alt */
    display: flex;
    justify-content: flex-start;  /* SOLA YASLA */
    align-items: flex-end;        /* ALTA YASLA */
    text-align: left;             /* Metni sola hizala */
    padding: 4rem;
    box-sizing: border-box;
}

.slider-image.active {
    opacity: 1;
}

.slider-text-content {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    padding: 1.5rem 2.5rem;
    border-radius: 8px;
    max-width: 700px;
    animation: fadeInUp 1.5s ease-out;
    text-align: left;
}

.slider-title {
    font-size: 3rem;
    color: var(--text-primary);
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.slider-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0;
}

.slider-nav-buttons {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    gap: 12px;
}

.slider-nav-buttons button {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255,255,255,0.7);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav-buttons button.active,
.slider-nav-buttons button:hover {
    background-color: var(--accent-color-orange);
    border-color: var(--accent-color-orange);
    transform: scale(1.2);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ======================================== */
/* === PROJE/HİZMET GALERİSİ (KUTULAR) === */
/* ======================================== */

.proje-grid {
    padding: 4rem 0;
}

.proje-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

/* Kutu ızgarası (3'lü) */
.galeri-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem;
}

/* Kutu (Kart) */
.proje-karti {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%; /* Kartların aynı yükseklikte olmasını sağlar */
}

.proje-karti:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Kart Linki (Tüm kartı kaplar) */
.proje-karti-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Kart Görseli */
.proje-karti-img {
    width: 100%;
    height: 220px; 
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

/* Kart İçeriği (Metinler) */
.proje-karti-icerik {
    padding: 1.5rem;
}

.proje-karti-icerik h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.proje-karti-icerik p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Kart "Detayları Gör" linki */
.proje-karti-icerik .detay-gor-link,
.proje-karti-icerik .proje-link { 
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent-color-orange);
    text-decoration: none;
}

.proje-karti-link:hover .detay-gor-link {
    text-decoration: underline;
}

/* ======================================== */
/* === FOOTER (YENİ 3 SÜTUNLU TASARIM) === */
/* ======================================== */

footer {
    padding: 4rem 0 2rem 0; /* Üst boşluk daha fazla */
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
    color: var(--text-secondary);
}

.footer-content {
    display: grid;
    /* Masaüstünde 3 sütunlu ızgara */
    grid-template-columns: 1.5fr 1fr 1.5fr; /* Orta sütun daha dar */
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col {
    padding: 0 1rem;
}

/* Sütun 1: Logo ve Metin */
.footer-logo img {
    height: 40px; /* Logo yüksekliği */
    margin-bottom: 5px;
}
.footer-logo .logo-slogan {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-style: italic;
}
.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Sütun 2 & 3: Başlıklar */
.footer-col h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
/* Başlık altı çizgisi */
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color-orange);
}

/* Sütun 2: Hızlı Menü */
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--accent-color-orange);
    padding-left: 5px;
}

/* Sütun 3: İletişim Bilgileri */
.footer-contact {
    list-style: none;
}
.footer-contact li {
    display: flex; /* İkon ve metni yan yana getir */
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.footer-contact i {
    font-size: 1rem;
    color: var(--accent-color-orange);
    margin-top: 5px;
}
.footer-contact p {
    margin: 0;
    line-height: 1.6;
}
.footer-contact a {
    color: var(--text-secondary);
}
.footer-contact a:hover {
    color: var(--accent-color-orange);
}

/* Footer Alt Bar */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: #888;
}
.footer-bottom a {
    color: #888;
    text-decoration: underline;
}

/* Footer Mobil Uyumluluğu */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr; /* Tablette 2 sütun */
    }
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* Mobilde tek sütun (alt alta) */
    }
    .footer-col {
        padding: 0;
        text-align: center; /* Mobilde her şeyi ortala */
    }
    .footer-col h3::after {
        left: 50%; /* Başlık çizgisini ortala */
        transform: translateX(-50%);
    }
    .footer-contact li {
        text-align: left; /* İletişim ikonlarını sola hizalı tut */
    }
}

/* ======================================== */
/* === İÇ SAYFALAR (Hakkımızda, Projeler vb.) === */
/* ======================================== */

/* Sayfa Başlığı (Hakkımızda, Projelerimiz vb.) */
.page-header {
    background-color: var(--bg-card); 
    padding: 4rem 1.5rem; 
    margin-bottom: 0; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--text-primary);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

/* 'Hakkımızda' içerik blokları (ESKİ YAPILAR - YENİSİ AŞAĞIDA) */
/* (Aşağıdaki yeni eklediğimiz HAKKIMIZDA bloğu burayı ezecektir) */
.section-block {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}
/* ... Eski section-block stilleri burada kalabilir, diğer sayfalar kullanıyor olabilir ... */


/* ======================================== */
/* === PROJELER (SEKME SİSTEMİ) === */
/* ======================================== */

.tab-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.tab-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2.5rem;
}
.tab-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    transform: translateY(2px);
}
.tab-button.active,
.tab-button:hover {
    color: var(--text-primary);
    border-bottom-color: var(--accent-color-orange);
}
.tab-content {
    display: none;
    animation: fadeInTab 0.5s;
}
.tab-content.active {
    display: block;
}
.empty-tab-message {
    text-align: center; 
    color: var(--text-secondary); 
    grid-column: 1 / -1;
    padding: 2rem 0;
}
@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ======================================== */
/* === DETAY SAYFALARI (Hizmet/Proje) === */
/* ======================================== */

.detay-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.detay-header {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}
.detay-header-image {
    flex: 1;
    min-width: 350px;
}
.detay-ana-gorsel {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.detay-header-text {
    flex: 1.2;
    min-width: 300px;
}
.detay-aciklama {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.detay-galeri {
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}
.detay-galeri h2 {
    font-size: 2rem;
    color: var(--accent-color-orange);
    margin-bottom: 1.5rem;
    text-align: center;
}
.detay-galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 1rem;
}
.gallery-thumb {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}
.gallery-thumb:hover {
    transform: scale(1.05);
    border-color: var(--accent-color-orange);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* "Geri Dön" butonu */
.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
    text-decoration: none;
}
.btn-secondary { 
    background: #6c757d; 
    color: #fff;
}
.btn-secondary:hover { background: #5a6268; }

/* ======================================== */
/* === MODAL (LIGHTBOX) === */
/* ======================================== */

.modal {
    display: none; /* Gizli başla */
    position: fixed; 
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    align-items: center; /* Dikeyde ortala */
    justify-content: center; /* Yatayda ortala */
    padding: 1rem; 
    box-sizing: border-box;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
}
.modal-slide {
    display: none;
    width: 100%;
    text-align: center;
}
.modal-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    animation: zoom 0.5s;
}
@keyframes zoom {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}
.modal-close:hover,
.modal-close:focus {
    color: #bbb;
    text-decoration: none;
}
.modal-prev,
.modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 1001;
}
.modal-prev { left: 10px; }
.modal-next { right: 10px; }

.modal-prev:hover,
.modal-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ======================================== */
/* === GENEL RESPONSIVE DÜZENLEMELER === */
/* ======================================== */

/* Tablet (992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 1rem;
    }
    .navbar {
        padding: 1rem 1.5rem;
    }
    .navbar-nav {
        gap: 1rem;
    }
    .proje-grid h2 {
        font-size: 2.2rem;
    }
    /* Galeriyi 2'li yap */
    .galeri-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-header {
        height: 30vh;
        padding: 4rem 1rem;
    }
    .page-header h1 {
        font-size: 2.8rem;
    }
    /* ... Diğer responsive ayarlar ... */
}

/* Mobil (768px) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        height: auto; /* Mobilde yükseklik otomatik olsun */
    }
    main {
        padding-top: 0; 
    }
    .slider-container {
        margin-top: 0; 
        height: 90vh; /* Mobil için 90vh */
    }
    
    .logo-container {
        align-items: center;
    }
    .navbar-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
    .proje-grid {
        padding: 2rem 0;
    }
    .proje-grid h2 {
        font-size: 1.8rem;
    }
    /* Galeriyi tekli yap */
    .galeri-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .detay-header {
        flex-direction: column;
    }
    .detay-header-image,
    .detay-header-text {
        min-width: 100%;
    }
    .detay-ana-gorsel {
        max-height: 300px;
    }
    .detay-galeri-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .modal-prev, .modal-next {
        font-size: 18px;
        padding: 10px;
    }
}

/* Küçük Mobil (480px) */
@media (max-width: 480px) {
    .navbar-nav a {
        font-size: 0.85rem;
    }
    .logo-container img {
        height: 40px;
    }
    .logo-container .logo-slogan {
        font-size: 0.7rem;
    }
    .slider-container {
        height: 80vh; /* Daha da küçük */
    }
    .slider-text-content {
        padding: 1rem;
    }
    .slider-title {
        font-size: 1.8rem;
    }
    .slider-description {
        font-size: 0.9rem;
    }
    .proje-karti-icerik {
        padding: 1rem;
    }
    .proje-karti-icerik h3 {
        font-size: 1.2rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .detay-galeri-grid {
        grid-template-columns: 1fr; /* Tekli */
    }
}



/* ======================================== */
/* === ÜRÜNLER SAYFASI (urunlerimiz.php) === */
/* ======================================== */

/* Sayfa başlığını (Arama Barı Alanı) özelleştirme */
.page-header.product-header {
    padding: 3rem 1.5rem; /* Başlığı daha kısa yap */
}

/* Arama Barı */
.search-bar {
    width: 100%;
    max-width: 600px; /* Arama barı çok genişlemesin */
    margin: 1.5rem auto 0 auto;
    display: flex;
}
.search-bar input[type="text"] {
    flex: 1; /* Alanı kapla */
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px 0 0 6px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}
.search-bar button {
    padding: 0.75rem 1.5rem;
    border: none;
    background: var(--accent-color-orange);
    color: var(--text-primary);
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

/* 2 Sütunlu Sayfa Yapısı */
.product-page-container {
    display: flex;
    flex-wrap: wrap; /* Mobil için */
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Sol Sütun: Kategori Sidebar */
.product-sidebar {
    flex: 0 0 280px; /* 280px genişliğinde sabit */
}
.product-sidebar h3 {
    font-size: 1.5rem;
    color: var(--accent-color-orange);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 1rem;
}
.category-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-menu li.ana-kategori {
    margin-bottom: 1rem;
}
.category-menu li.ana-kategori span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}
/* Alt kategori listesi */
.category-menu li.ana-kategori ul {
    padding-left: 1rem; /* İçeriden başlat */
    margin-top: 0.5rem;
}
.category-menu li.alt-kategori a {
    display: block;
    padding: 0.5rem;
    color: var(--text-secondary);
    border-radius: 4px;
}
.category-menu li.alt-kategori a:hover {
    background: var(--bg-card);
    color: var(--accent-color-orange);
}

/* Sağ Sütun: Ürün Izgarası */
.product-grid {
    flex: 1; /* Kalan tüm alanı kapla */
    min-width: 0; /* Flexbox hatasını önler */
}

/* Mobil Uyum (Ürünler Sayfası) */
@media (max-width: 992px) {
    .product-page-container {
        flex-direction: column; /* Alt alta getir */
    }
    .product-sidebar {
        flex: 1; /* Tam genişlik kapla */
        width: 100%;
    }
}


/* ======================================== */
/* === ÜRÜNLER SAYFASI (GÜNCELLEME) === */
/* ======================================== */

/* Ana kategori 'span' etiketini 'a' ile değiştir */
.category-menu li.ana-kategori a.ana-kategori-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
}

/* Aktif Ana Kategori */
.category-menu li.ana-kategori.active > a.ana-kategori-link {
    color: var(--accent-color-orange);
}

/* Alt Kategoriler (Mevcut kuralı güncelleyelim) */
.category-menu li.alt-kategori a {
    display: block;
    padding: 0.5rem;
    color: var(--text-secondary);
    border-radius: 4px;
}

.category-menu li.alt-kategori a:hover {
    background: var(--bg-card);
    color: var(--accent-color-orange);
}

/* Aktif Alt Kategori */
.category-menu li.alt-kategori.active a {
    color: var(--accent-color-orange);
    font-weight: 600;
}

/* ======================================== */
/* === SAYFA SABİT İLETİŞİM BUTONLARI (FAB) === */
/* ======================================== */

.fab-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse; /* Butonları yukarıdan aşağıya sırala (ana en altta) */
    align-items: center;
    gap: 10px; /* Butonlar arası boşluk */
}

.fab-main, .fab-option {
    width: 55px; /* Boyut */
    height: 55px;
    border-radius: 50%; /* Yuvarlak */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Ana buton (mesaj ikonu) */
.fab-main {
    background-color: #6a40c6; /* Mor */
    font-size: 1.5rem;
}
.fab-main:hover {
    background-color: #5a34a8;
}

/* Seçenek butonları (telefon, whatsapp, kapat) */
.fab-options {
    display: flex;
    flex-direction: column; /* Alt alta sırala */
    gap: 10px;
    opacity: 0; /* Başlangıçta gizli */
    visibility: hidden; /* Başlangıçta gizli */
    transform: translateY(20px); /* Hafifçe yukarı kaydır */
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/* Seçenekler açıkken */
.fab-options.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-option {
    font-size: 1.2rem;
}

.fab-call {
    background-color: #28a745; /* Yeşil */
}
.fab-call:hover {
    background-color: #218838;
}

.fab-whatsapp {
    background-color: #25D366; /* WhatsApp yeşili */
}
.fab-whatsapp:hover {
    background-color: #1EBE55;
}

.fab-close {
    background-color: #6a40c6; /* Mor (ana butonla aynı) */
}
.fab-close:hover {
    background-color: #5a34a8;
}

/* Küçük ekranlarda buton boyutunu ayarla */
@media (max-width: 768px) {
    .fab-main, .fab-option {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}


/* ======================================== */
/* === İLETİŞİM SAYFASI (iletisim.php) === */
/* ======================================== */

.contact-page-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Sayfayı 2'ye bölen ızgara */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Sol sütun daha dar, sağ daha geniş */
    gap: 3rem;
}

/* Sol Sütun: Bilgiler */
.contact-info h2 {
    font-size: 2rem;
    color: var(--accent-color-orange);
    margin-bottom: 1rem;
}
.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color-orange);
    margin-top: 5px;
}
.info-item strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}
.info-item a {
    color: var(--text-secondary);
}
.info-item a:hover {
    color: var(--accent-color-orange);
}

/* Sağ Sütun: Form */
.contact-form-container h2 {
    font-size: 2rem;
    color: var(--accent-color-orange);
    margin-bottom: 1rem;
}

/* Form stilleri (Admin panelinden kopyalandı) */
.form-group { 
    margin-bottom: 1rem; 
}
.form-group label { 
    display: block; 
    font-weight: 500; 
    color: var(--text-secondary); 
    margin-bottom: 0.5rem; 
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-sizing: border-box; 
    font-size: 1rem;
    background-color: var(--bg-card);
    color: var(--text-primary);
}
.form-group textarea { 
    min-height: 120px; 
    font-family: inherit; 
}
.form-actions { 
    margin-top: 1.5rem; 
}
.btn-success { background: #28a745; }
.btn-success:hover { background: #218838; }

/* Harita */
.map-container {
    width: 100%;
    height: 450px;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.map-container iframe {
    filter: invert(90%) grayscale(80%); /* Haritayı koyu temaya uydur */
}

/* Mobil Uyum (İletişim Sayfası) */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Sütunları alt alta getir */
    }
}

/* ======================================== */
/* === DİL DEĞİŞTİRME BUTONU === */
/* ======================================== */
.lang-switcher {
    margin-left: 1.5rem;
}
.lang-option {
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}
.lang-option:hover {
    color: var(--text-primary);
    background: var(--accent-color-orange);
    border-color: var(--accent-color-orange);
}

/* Mobilde dil butonunu ayarla */
@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        padding-top: 0.5rem;
    }
}

/* ======================================== */
/* === HAKKIMIZDA SAYFASI (MODERN & TEMİZ) === */
/* ======================================== */

.about-page-wrapper {
    width: 100%;
}

.about-section {
    padding: 4rem 0; /* Boşluk */
    width: 100%;
    /* Çizgiyi buradan da kaldırıyoruz */
    border-bottom: none; 
}

/* Zebra Deseni (Bir koyu, bir açık arka plan) */
.about-section:nth-child(even) {
    background-color: var(--bg-card);
}
.about-section:nth-child(odd) {
    background-color: var(--bg-dark);
}

/* İçerik Düzeni */
.about-content {
    max-width: 900px; /* Metin genişliği */
    margin: 0 auto;   /* Ortala */
    text-align: center; /* Başlık ve metni ortala */
}

/* Başlıklar */
.about-content h2 {
    font-size: 2.2rem;
    color: var(--accent-color-orange); /* Turuncu */
    margin-bottom: 1.5rem;
    /* ÖNEMLİ: Beyaz çizgiyi oluşturan 'position: relative' kaldırıldı */
}

/* BEYAZ ÇİZGİYİ İPTAL ETME (Kesin Çözüm) */
.about-content h2::after {
    display: none !important;
    content: none !important;
}

/* Paragraflar */
.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Vizyon Bölümü (En Alt) */
.about-section.vision-section {
    background-color: var(--accent-color-orange) !important;
    color: #121212 !important;
}
.vision-section h2 {
    color: #fff !important;
}
.vision-section p {
    color: #121212 !important;
    font-weight: 500;
}