/* --- GENEL AYARLAR --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
body { background-color: #f4f4f4; padding-top: 80px; /* Header fixed olduğu için içerik kaymasın */ }

/* =========================================
   1. HEADER (MOBILE FIXED & TOGGLE)
   ========================================= */
.custom-header {
    background-color: #1a202c;
    color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Sayfa aşağı kayınca header küçülsün */
.custom-header.scrolled {
    background-color: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(5px);
}

.custom-header.scrolled .header-inner {
    height: 60px; /* Scrolled durumunda yükseklik azalır */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 80px; /* Normal yükseklik */
    max-width: 1400px;
    margin: 0 auto;
    transition: height 0.3s;
}

/* LOGO */
.header-logo a {
    text-decoration: none;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-logo .highlight { color: #00ff88; }
.logo-icon { color: #00ff88; font-size: 24px; }

/* SAĞ TARAF (İLETİŞİM) - Desktop */
.header-right { display: flex; gap: 20px; }
.contact-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}
.contact-link:hover { color: #00ff88; }
.contact-link i { color: #00ff88; }

/* MENU BUTONU (Başlangıçta gizli) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* DROPDOWN ALANI (Markalar + Mobil Contact) */
.header-dropdown {
    background-color: #12161f;
    border-top: 1px solid #2d3748;
    overflow: hidden;
    display: block; /* Masaüstünde varsayılan açık */
}

/* Masaüstü Markalar Bandı */
.header-brands-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 12px 0;
}

.h-brand-item {
    color: #718096;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}
.h-brand-item:hover { color: #fff; transform: translateY(-2px); }

/* Mobil İletişim Alanı (Başlangıçta gizli) */
.mobile-contact-area { display: none; }

/* --- HEADER RESPONSIVE / MOBILE CSS --- */
@media (max-width: 768px) {
    body { padding-top: 70px; }
    
    .header-inner {
        padding: 0 20px;
        height: 70px;
        flex-direction: row-reverse; /* Buton sağa, Logo sola */
        justify-content: space-between;
    }

    /* Masaüstü iletişim alanını gizle */
    .desktop-only { display: none; }

    /* Menü Butonunu Göster */
    .mobile-menu-btn { display: block; }

    /* Açılır Menü Alanı (Başlangıçta Kapalı) */
    .header-dropdown {
        max-height: 0; 
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    /* JS ile 'active' class eklenince açılacak */
    .header-dropdown.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding-bottom: 20px;
    }

    /* Mobil İletişim Alanını Göster */
    .mobile-contact-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
        border-bottom: 1px solid #2d3748;
        margin-bottom: 10px;
    }

    .mobile-contact-area a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
    }
    .mobile-contact-area i { color: #00ff88; margin-right: 8px; }

    /* Markalar Mobilde Dikey */
    .header-brands-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* =========================================
   2. SECTION & PRODUCT CARDS
   ========================================= */
.products-section { padding: 40px 20px; min-height: 600px; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 32px; margin-bottom: 40px; color: #1a202c; font-weight: 800; }
.highlight-text { color: #00b862; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }

.product-card { 
    background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; 
    transition: transform 0.3s; display: flex; flex-direction: column; 
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.card-image-box { height: 250px; background: #f9f9f9; display: flex; align-items: center; justify-content: center; padding: 20px; }
.product-img { max-width: 100%; max-height: 100%; object-fit: contain; transition: filter 0.3s; }

.card-body { padding: 25px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; flex-grow: 1; }

.btn-inspect {
    background-color: #9acd32; color: #fff; padding: 10px 40px; border-radius: 50px; text-decoration: none; 
    font-weight: bold; margin-top: -45px; margin-bottom: 20px; position: relative; z-index: 2;
    box-shadow: 0 4px 10px rgba(154, 205, 50, 0.4); transition: 0.3s;
}
.btn-inspect:hover { transform: scale(1.05); background-color: #8bbd2a; }

.product-title { font-size: 18px; margin-bottom: 10px; color: #2d3748; font-weight: 700; line-height: 1.4; }
.product-price { font-size: 24px; font-weight: 800; color: #1a202c; margin-bottom: 5px; }
.price-note { font-size: 12px; color: #718096; margin-bottom: 20px; }

.color-options { display: flex; gap: 10px; margin-top: auto; }
.color-circle { 
    width: 24px; height: 24px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; 
    justify-content: center; transition: transform 0.2s; box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}
.color-circle:hover { transform: scale(1.2); }
.color-circle i { color: #fff; font-size: 12px; display: none; text-shadow: 0 0 2px rgba(0,0,0,0.5); }
.color-circle.active { border: 2px solid #fff; box-shadow: 0 0 0 2px #cbd5e0; transform: scale(1.1); }
.color-circle.active i { display: block; }

/* =========================================
   3. FOOTER (RESTORED DETAILED VERSION)
   ========================================= */
.custom-footer {
    background-color: #151922; /* Koyu Zemin */
    color: #a0aec0;
    font-size: 14px;
    margin-top: 0px;
}

/* Footer Üst Bant (Markalar) */
.footer-brands-strip {
    background-color: #1a202c;
    padding: 25px 0;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    border-bottom: 1px solid #2d3748;
}

.footer-brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #718096;
    transition: all 0.3s ease;
    cursor: pointer;
}
.footer-brand-item i { font-size: 24px; margin-bottom: 5px; }
.footer-brand-item span { font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.footer-brand-item:hover { color: #00ff88; transform: translateY(-3px); }

/* Footer Ana Kısım */
.footer-main { padding: 50px 20px; max-width: 1200px; margin: 0 auto; }
.footer-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.footer-col h3 {
    color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 10px;
}
.footer-col h3::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background-color: #00ff88;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #a0aec0; text-decoration: none; transition: 0.3s; display: inline-block; }
.footer-col ul li a:hover { color: #00ff88; transform: translateX(5px); }

/* Footer İletişim Detayları */
.phone-number { color: #00ff88; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.work-hours { font-size: 13px; line-height: 1.6; margin-bottom: 20px; color: #cbd5e0; }

.etbis-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background-color: #e55e26; /* Turuncu */
    color: #fff; padding: 12px 15px; border-radius: 4px; text-decoration: none;
    font-weight: 600; font-size: 13px; transition: 0.3s; width: 100%; max-width: 220px;
}
.etbis-btn:hover { background-color: #c04512; }

/* Footer Alt Kısım */
.footer-bottom {
    background-color: #0f1219; padding: 20px 0; border-top: 1px solid #2d3748;
    display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
}
.copyright-text { color: #718096; font-size: 13px; }
.footer-social { display: flex; gap: 15px; }
.footer-social a { color: #718096; font-size: 18px; transition: 0.3s; }
.footer-social a:hover { color: #00ff88; }

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .product-grid { grid-template-columns: 1fr; }
    .card-image-box { height: 200px; }
    
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); }
    .footer-brands-strip { gap: 30px; }
    .etbis-btn { margin: 0 auto; }
    .contact-col { display: flex; flex-direction: column; align-items: center; }
}
/* =========================================
   ÜRÜN DETAY SAYFASI CSS
   ========================================= */

.product-page-wrapper { background-color: #ffffff; padding-bottom: 60px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- HERO --- */
.pd-hero-section { padding: 40px 0; background-color: #f9f9f9; }
.pd-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: flex-start; }
.pd-image-container { background: #fff; border-radius: 10px; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; cursor: zoom-in; display: flex; justify-content: center; }
.pd-main-image img { width: 100%; height: auto; display: block; max-height: 500px; object-fit: contain; }
.zoom-icon { position: absolute; top: 15px; right: 15px; background: rgba(0,0,0,0.05); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #555; transition: 0.3s; }
.pd-image-container:hover .zoom-icon { background: #00ff88; color: #fff; }
.pd-info-container { padding-top: 20px; }
.pd-title { font-size: 32px; font-weight: 800; color: #1a202c; margin-bottom: 25px; line-height: 1.2; }
.pd-price-area { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.old-price { text-decoration: line-through; color: #a0aec0; font-size: 18px; }
.current-price { font-size: 36px; font-weight: 800; color: #c53030; }
.discount-badge { background-color: #c53030; color: #fff; padding: 5px 10px; border-radius: 4px; font-weight: 700; font-size: 14px; }
.pd-vat-note { color: #9acd32; font-size: 13px; margin-bottom: 40px; font-weight: 600; }
.btn-get-quote { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background-color: #9acd32; color: #fff; width: 100%; padding: 18px; border-radius: 50px; font-size: 18px; font-weight: 800; text-decoration: none; transition: 0.3s; box-shadow: 0 5px 15px rgba(154, 205, 50, 0.4); }
.btn-get-quote:hover { background-color: #8bbd2a; transform: translateY(-2px); }

/* --- TEKNİK ÖZELLİKLER --- */
.pd-specs-section { padding: 60px 0; background: #fff; border-bottom: 1px solid #eee; }
.section-heading { text-align: center; font-size: 26px; font-weight: 700; color: #1a202c; margin-bottom: 50px; text-transform: uppercase; }
.section-heading.center { text-align: center; }
.specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.spec-item { display: flex; align-items: center; gap: 15px; }
.spec-icon { font-size: 32px; color: #9acd32; width: 50px; display: flex; justify-content: center; }
.spec-text strong { font-size: 15px; color: #1a202c; display: block; margin-bottom: 4px; }
.spec-text span { font-size: 14px; color: #718096; }

/* --- ACCORDION --- */
.pd-features-accordion { padding: 40px 0; border-bottom: 1px solid #eee; }
.accordion-item { border-bottom: 1px solid #e2e8f0; }
.accordion-header { width: 100%; padding: 20px 0; background: none; border: none; text-align: left; font-size: 18px; font-weight: 700; color: #1a202c; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-header:hover { color: #9acd32; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: #4a5568; line-height: 1.6; }
.accordion-header.active + .accordion-content { padding-bottom: 20px; }
.accordion-header i { transition: transform 0.3s; }
.accordion-header.active i { transform: rotate(45deg); }

/* --- İÇERİK BLOKLARI (Text Left/Right) --- */
.pd-content-row { padding: 60px 0; }
.video-row { background-color: #fafafa; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.media-side img, .video-cover { width: 100%; border-radius: 12px; display: block; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.video-placeholder { position: relative; cursor: pointer; }
.play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(255,255,255,0.2); backdrop-filter: blur(5px); border: 2px solid #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; transition: 0.3s; }
.video-placeholder:hover .play-button { background: #9acd32; border-color: #9acd32; transform: scale(1.1); }
.text-side h3 { font-size: 28px; font-weight: 800; color: #1a202c; margin-bottom: 20px; }
.text-side p { color: #4a5568; line-height: 1.7; margin-bottom: 15px; font-size: 15px; }

/* --- GALERİ BÖLÜMÜ (YENİ) --- */
.pd-gallery-section { padding: 60px 0; background-color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; height: 250px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.gallery-overlay i { color: #fff; font-size: 30px; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* --- BENZER ÜRÜNLER & LIGHTBOX --- */
.pd-similar-products { padding: 60px 0; background-color: #f9f9f9; }
.lightbox-modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); justify-content: center; align-items: center; }
.lightbox-content { max-width: 90%; max-height: 90%; border-radius: 5px; animation: zoom 0.3s; }
@keyframes zoom { from {transform:scale(0)} to {transform:scale(1)} }
.close-lightbox { position: absolute; top: 20px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; cursor: pointer; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) { 
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .pd-hero-grid, .content-grid { grid-template-columns: 1fr; gap: 30px; }
    /* Mobilde içerik sırasını düzenle: Resim üstte, Metin altta olsun istersen order kullanabiliriz ama default akış da gayet iyi. */
    .gallery-grid { grid-template-columns: 1fr; }
    .pd-title { font-size: 24px; }
    .current-price { font-size: 28px; }
}
/* =========================================
   İLETİŞİM SAYFASI CSS
   ========================================= */

/* Ana Kapsayıcı - Koyu Tema */
.contact-page-wrapper {
    background-color: #0f1219; /* Sayfanın genel koyu arka planı */
    color: #e2e8f0;
    padding-bottom: 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 1. HERO ALANI --- */
.c-hero-section {
    background: linear-gradient(135deg, #1a202c 0%, #151922 100%);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.c-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.c-hero-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Dekoratif İkonlar (Wifi, Top) */
.c-hero-decor i {
    position: absolute;
    right: 10%;
    top: 40%;
    font-size: 40px;
    color: rgba(154, 205, 50, 0.3); /* Bizim yeşilimiz, transparan */
    transform: rotate(-15deg);
}

.hero-dot {
    position: absolute;
    left: 15%;
    bottom: 30%;
    width: 30px;
    height: 30px;
    background: rgba(154, 205, 50, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(154, 205, 50, 0.2);
}

/* --- 2. İLETİŞİM FORMU --- */
.c-form-section {
    padding: 60px 0;
}

.c-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Form Kartı */
.c-form-card {
    background-color: #1a202c; /* Kart Rengi */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid #2d3748;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #a0aec0;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input Stilleri */
.c-form-card input, 
.c-form-card select, 
.c-form-card textarea {
    width: 100%;
    background-color: #151922; /* Input içi koyu */
    border: 1px solid #4a5568;
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
    outline: none;
}

.c-form-card input:focus, 
.c-form-card select:focus, 
.c-form-card textarea:focus {
    border-color: #9acd32; /* Odaklanınca yeşil */
    box-shadow: 0 0 0 3px rgba(154, 205, 50, 0.1);
}

/* Captcha Alanı */
.captcha-display {
    color: #9acd32;
    font-size: 16px;
    font-weight: 800;
    margin-left: 10px;
    letter-spacing: 2px;
}

/* Gönder Butonu */
.btn-submit {
    background-color: #9acd32; /* Fıstık yeşili */
    color: #fff;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #8bbd2a;
    transform: translateY(-2px);
}

/* Sağ Taraf Metin */
.c-text-area {
    padding-left: 20px;
}

.rotating-asterisk {
    font-size: 60px;
    color: #9acd32; /* Bizim Yeşil */
    margin-bottom: 20px;
    display: inline-block;
    animation: spin 10s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

.c-text-area h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.c-text-area p {
    color: #cbd5e0;
    font-size: 16px;
    line-height: 1.8;
}

/* --- 3. İLETİŞİM KANALLARI --- */
.c-channels-section {
    padding: 60px 0;
}

.section-heading.light-text {
    color: #fff;
    margin-bottom: 10px;
}

.section-sub {
    color: #a0aec0;
    text-align: center;
    margin-bottom: 50px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.channel-card {
    background-color: #1a202c;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 40px 30px;
    transition: 0.3s;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.channel-card:hover {
    transform: translateY(-5px);
    border-color: #9acd32;
}

.channel-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
}

.channel-value {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.channel-desc {
    color: #718096;
    font-size: 13px;
    line-height: 1.6;
    margin-top: auto; /* Metni alta it */
    padding-top: 20px;
}

.social-icons-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icons-row a {
    width: 40px;
    height: 40px;
    border: 1px solid #4a5568;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons-row a:hover {
    background-color: #9acd32;
    border-color: #9acd32;
    color: #fff;
}

/* --- 4. ADRES VE HARİTA --- */
.c-address-section {
    padding: 60px 0 100px 0;
}

.address-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Sol küçük, sağ büyük */
    gap: 30px;
    align-items: stretch;
}

.address-card {
    background-color: #1a202c;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.address-card p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
    border: 1px solid #2d3748;
}

/* --- RESPONSIVE AYARLAR --- */
@media (max-width: 992px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .c-form-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta */
        gap: 40px;
    }
    
    .c-form-card {
        order: 1; /* Önce Form */
    }
    
    .c-text-area {
        order: 2; /* Sonra Metin */
        padding-left: 0;
        text-align: center;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .address-grid {
        grid-template-columns: 1fr;
    }
    
    .c-hero-title {
        font-size: 32px;
    }
}
/* =========================================
   HAKKIMIZDA SAYFASI CSS
   ========================================= */

.about-page-wrapper {
    background-color: #ffffff;
    padding-bottom: 0;
}

/* --- 1. HERO ALANI --- */
.ab-hero-section {
    background: linear-gradient(rgba(26, 32, 44, 0.8), rgba(26, 32, 44, 0.9)), 
                url('https://images.unsplash.com/photo-1617788138017-80ad40651399?q=80&w=1000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Efekti */
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.ab-hero-content {
    max-width: 800px;
}

.ab-hero-title {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ab-hero-sub {
    color: #9acd32; /* Neon Yeşil */
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
}

/* --- 2. HİKAYEMİZ --- */
.ab-story-section {
    padding: 80px 0;
}

.ab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ab-media {
    position: relative;
}

.ab-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

/* Resim Arkasındaki Dekoratif Kutu */
.ab-media-decor {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #9acd32;
    border-radius: 12px;
    z-index: 1;
}

.section-heading.left {
    text-align: left;
    margin-bottom: 30px;
}

.ab-desc {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.ab-signature {
    margin-top: 30px;
    font-family: 'Segoe UI', cursive;
    font-size: 18px;
    color: #1a202c;
    border-left: 4px solid #9acd32;
    padding-left: 15px;
}

/* --- 3. İSTATİSTİKLER (SAYAÇ) --- */
.ab-stats-section {
    background-color: #1a202c; /* Koyu Arkaplan */
    padding: 60px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #9acd32; /* Yeşil Sayılar */
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cbd5e0;
}

/* --- 4. MİSYON & VİZYON --- */
.ab-values-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, border-bottom 0.3s;
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-bottom-color: #9acd32;
}

.value-icon {
    font-size: 40px;
    color: #1a202c;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a202c;
}

.value-card p {
    color: #718096;
    line-height: 1.6;
}

/* --- 5. NEDEN BİZ --- */
.ab-features-section {
    padding: 80px 0;
}

.ab-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ab-feature-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: 0.3s;
}

.ab-feature-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #9acd32;
}

.ab-feature-item i {
    font-size: 36px;
    color: #9acd32;
    margin-bottom: 20px;
}

.ab-feature-item h4 {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 10px;
}

.ab-feature-item p {
    font-size: 13px;
    color: #718096;
}

/* --- RESPONSIVE AYARLAR --- */
@media (max-width: 992px) {
    .ab-grid { grid-template-columns: 1fr; }
    .ab-media { margin-bottom: 40px; }
    .ab-media-decor { left: 10px; top: 10px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    .ab-hero-title { font-size: 28px; }
    .values-grid { grid-template-columns: 1fr; }
    .ab-features-grid { grid-template-columns: 1fr; }
}
/* =========================================
   SSS (FAQ) SAYFASI CSS
   ========================================= */

.faq-page-wrapper {
    background-color: #f9f9f9;
    padding-bottom: 60px;
}

/* --- 1. HERO ALANI --- */
.faq-hero-section {
    background-color: #1a202c; /* Koyu Lacivert Zemin */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero-title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.faq-hero-sub {
    color: #a0aec0;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* --- 2. KATEGORİLER VE LİSTE --- */
.faq-content-section {
    padding: 50px 0;
}

/* Kategori Tabları */
.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.faq-tab {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.3s ease;
}

.faq-tab:hover {
    border-color: #9acd32;
    color: #9acd32;
    transform: translateY(-2px);
}

.faq-tab.active {
    background-color: #9acd32; /* Aktif renk Neon Yeşil */
    color: #fff;
    border-color: #9acd32;
    box-shadow: 0 4px 10px rgba(154, 205, 50, 0.3);
}

/* Akordeon Liste */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: 0.3s;
    /* Filtreleme animasyonu için */
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.faq-item.hidden {
    display: none; /* JS ile gizlenenler için */
}

/* Soru Kısmı */
.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    transition: 0.3s;
}

.faq-question i {
    color: #9acd32;
    font-size: 18px;
    transition: transform 0.3s;
}

.faq-question:hover {
    color: #9acd32;
}

/* Cevap Kısmı */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fafafa;
    border-top: 1px solid transparent;
}

.faq-answer p {
    padding: 20px 25px;
    color: #4a5568;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* Aktif Durum (Açık) */
.faq-item.active {
    border-color: #9acd32;
}

.faq-item.active .faq-question {
    background-color: #fff;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg); /* Artı işaretini çarpı yap */
}

.faq-item.active .faq-answer {
    border-top-color: #f0f0f0;
}

/* --- 3. CTA KUTUSU --- */
.faq-cta-section {
    padding: 20px 0;
}

.cta-box {
    background-color: #1a202c;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(154, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9acd32;
    font-size: 24px;
}

.cta-text h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
}

.cta-text p {
    color: #a0aec0;
    font-size: 14px;
}

.btn-whatsapp {
    background-color: #25d366; /* Whatsapp Yeşili */
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .faq-tabs {
        gap: 10px;
    }
    
    .faq-tab {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .faq-hero-title {
        font-size: 28px;
    }
}
/* =========================================
   GİZLİLİK POLİTİKASI CSS
   ========================================= */

.privacy-page-wrapper {
    background-color: #fcfcfc;
    padding-bottom: 80px;
}

/* --- 1. HERO ALANI --- */
.pp-hero-section {
    background-color: #1a202c; /* Koyu Lacivert */
    padding: 60px 20px;
    text-align: center;
    border-bottom: 4px solid #9acd32; /* Neon Yeşil Çizgi */
}

.pp-title {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.pp-date {
    color: #a0aec0;
    font-size: 14px;
    font-style: italic;
}

/* --- 2. İÇERİK ALANI --- */
.pp-content-section {
    padding: 60px 0;
}

.pp-grid {
    display: grid;
    grid-template-columns: 250px 1fr; /* Sol Menü Sabit, Sağ Esnek */
    gap: 60px;
    align-items: start;
}

/* Sidebar (Sol Menü) */
.pp-sidebar {
    position: relative;
    height: 100%;
}

.sticky-nav {
    position: sticky;
    top: 100px; /* Header yüksekliğine göre ayarlanmalı */
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.nav-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin-bottom: 8px;
}

.nav-link {
    text-decoration: none;
    color: #718096;
    font-size: 14px;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.nav-link:hover {
    background-color: #f7fafc;
    color: #1a202c;
}

/* Aktif Link Stili (JS ile eklenecek) */
.nav-link.active {
    background-color: #f0fff4; /* Çok açık yeşil */
    color: #1a202c;
    font-weight: 600;
    border-left-color: #9acd32; /* Neon Yeşil Çizgi */
}

/* Sağ Taraf Metinler */
.pp-article {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.pp-block {
    margin-bottom: 50px;
    scroll-margin-top: 120px; /* Scroll yapınca başlık header altında kalmasın */
}

.pp-block:last-child {
    margin-bottom: 0;
}

.pp-block h2 {
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-left: 15px;
}

.pp-block h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 20px;
    width: 4px;
    background-color: #9acd32;
    border-radius: 2px;
}

.pp-block p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.pp-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.pp-list li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.6;
}

.pp-list strong {
    color: #2d3748;
}

.pp-contact-box {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1a202c;
}

.pp-contact-box p {
    margin-bottom: 8px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .pp-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 30px;
    }

    /* Mobilde Sidebar'ı üstte yatay menü yapalım veya gizleyelim.
       Burada basitlik için gizleyip sadece metni gösteriyoruz, 
       veya üstte scroll edilebilir menü yapabiliriz. */
    .sticky-nav {
        position: relative;
        top: 0;
        margin-bottom: 20px;
        overflow-x: auto;
    }

    .nav-links {
        display: flex;
        gap: 10px;
        white-space: nowrap;
        padding-bottom: 5px;
    }

    .nav-link {
        border-left: none;
        border-bottom: 3px solid transparent;
        background: #f7fafc;
    }

    .nav-link.active {
        border-left: none;
        border-bottom-color: #9acd32;
    }
}

@media (max-width: 768px) {
    .pp-article {
        padding: 25px;
    }
    .pp-title {
        font-size: 24px;
    }
}
/* =========================================
   MODELLER (ÜRÜNLER) SAYFASI CSS
   ========================================= */

.models-page-wrapper {
    background-color: #f4f4f4;
    padding-bottom: 80px;
}

/* --- 1. HERO ALANI --- */
.models-hero-section {
    background-color: #1a202c; /* Site Koyu Teması */
    padding: 60px 20px;
    text-align: center;
    border-bottom: 4px solid #9acd32; /* Neon Çizgi */
}

.models-title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.models-sub {
    color: #a0aec0;
    font-size: 16px;
}

/* --- 2. FİLTRELEME ALANI --- */
.models-grid-section {
    padding: 40px 0;
}

.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    color: #9acd32;
    font-size: 16px;
}

.filter-btn:hover {
    transform: translateY(-2px);
    border-color: #9acd32;
    color: #1a202c;
}

.filter-btn.active {
    background-color: #1a202c;
    color: #fff;
    border-color: #1a202c;
}

.filter-btn.active i {
    color: #9acd32;
}

/* --- 3. ÜRÜN KARTLARI (GRID) --- */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    /* JS Animasyonu İçin */
    opacity: 1;
    transform: scale(1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* JS ile gizlenen kartlar */
.product-card.hidden {
    display: none;
}

/* Resim Alanı */
.card-image-box {
    height: 250px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* Rozetler (Yeni, İndirim) */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    z-index: 2;
}

.badge.new { background-color: #9acd32; }
.badge.discount { background-color: #c53030; }

/* Aksiyon Butonları (Sağ Üst - Hoverda Çıkar) */
.card-actions {
    position: absolute;
    top: 15px;
    right: -50px; /* Gizli */
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.3s;
}

.product-card:hover .card-actions {
    right: 15px; /* Görünür */
}

.card-actions button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    color: #1a202c;
    transition: 0.2s;
}

.card-actions button:hover {
    background: #1a202c;
    color: #9acd32;
}

/* Kart Gövdesi */
.card-body {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

/* İncele Butonu */
.btn-inspect {
    background-color: #9acd32;
    color: #fff;
    padding: 8px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    margin-top: -40px; /* Resmin üzerine çıkar */
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(154, 205, 50, 0.4);
    transition: 0.3s;
}

.btn-inspect:hover {
    background-color: #8bbd2a;
    transform: scale(1.05);
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 44px; /* Başlıklar hizalı dursun */
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.product-price .old {
    text-decoration: line-through;
    color: #a0aec0;
    font-size: 14px;
}

.product-price .curr {
    font-size: 20px;
    font-weight: 800;
    color: #1a202c;
}

/* Renk Seçenekleri (Noktalar) */
.color-dots {
    display: flex;
    gap: 5px;
}

.color-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* --- 4. SAYFALAMA --- */
.pagination-area {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #1a202c;
    font-weight: 600;
    transition: 0.3s;
}

.page-link:hover, .page-link.active {
    background-color: #1a202c;
    color: #9acd32;
    border-color: #1a202c;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .filter-bar {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        flex-wrap: nowrap;
    }
    
    .filter-btn {
        flex-shrink: 0; /* Küçülmesini engelle */
    }
    
    .models-hero-content h1 {
        font-size: 28px;
    }
}