/* ==========================================================================
   1. TEMEL DEĞİŞKENLER VE RENK PALETİ
   ========================================================================== */
:root {
    --color-primary: #B8A88A; 
    --color-dark: #2C3539;    
    --color-light: #FAFAFA;   
    --color-text: #4A4A4A;    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ==========================================================================
   2. GLOBAL RESET & BASE STYLES
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

html, body { 
    overflow-x: hidden; 
    width: 100%; 
    max-width: 100vw;
    -webkit-text-size-adjust: 100%; 
}
html { scroll-padding-top: 100px; } /* Anchor linklerde header'ın içeriği ezmesini önler */

body { font-family: var(--font-body); background-color: var(--color-light); color: var(--color-text); line-height: 1.6; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-dark); font-weight: 700; }
a { text-decoration: none; transition: 0.3s ease; }
img, iframe { max-width: 100%; display: block; } /* Resimlerin taşmasını önler */
ul, li { list-style: none; } /* Global list sıfırlama (Tekrarlayan kodları önler) */

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

/* Butonlar */
.btn-primary { display: inline-block; background-color: var(--color-primary); color: var(--color-light); padding: 15px 35px; font-weight: 600; text-transform: uppercase; border: 1px solid var(--color-primary); cursor: pointer; }
.btn-primary:hover { background-color: transparent; color: var(--color-primary); }
.btn-outline { border: 1px solid var(--color-primary); padding: 10px 20px; color: var(--color-primary); }
.btn-outline:hover { background-color: var(--color-primary); color: var(--color-light); }

/* ==========================================================================
   3. NAVİGASYON (HEADER)
   ========================================================================== */
.navbar { background-color: var(--color-light); padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--color-dark); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--color-dark); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }
.nav-links a:hover { color: var(--color-primary); }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 2000; }
.hamburger span { width: 30px; height: 3px; background-color: var(--color-dark); transition: 0.3s; border-radius: 3px; }

/* ==========================================================================
   4. AÇILIR MENÜLER (DROPDOWN) - MASAÜSTÜ
   ========================================================================== */
@media (min-width: 769px) {
    .dropdown, .dropdown-submenu { position: relative; }
    
    .dropdown-menu { display: none; position: absolute; top: 100%; left: -50px; background-color: #ffffff; box-shadow: 0 15px 35px rgba(0,0,0,0.07); padding: 12px 0; min-width: 200px; border-top: 3px solid var(--color-primary); border-radius: 0 0 6px 6px; z-index: 1000; }
    .dropdown:hover .dropdown-menu { display: block; animation: fadeIn 0.3s ease; }
    
    .dropdown-menu-side { display: none; position: absolute; top: 0; left: 100%; background-color: #FDFBF9; box-shadow: 10px 15px 40px rgba(0,0,0,0.08); min-width: 200px; padding: 12px 0; z-index: 1002; border-left: 3px solid var(--color-primary); border-radius: 0 8px 8px 0; }
    .dropdown-submenu:hover > .dropdown-menu-side { display: block; animation: fadeIn 0.2s ease; }

    /* Alt Menü Linkleri (Çok satırlı metin hover hatası KESİN ÇÖZÜMÜ) */
    .dropdown-menu li a, 
    .dropdown-menu-side li a,
    .dropdown-submenu > a { 
        display: block; 
        width: 100%;
        padding: 10px 18px; 
        font-size: 0.8rem;
        color: #555; 
        text-transform: capitalize; 
        height: auto; 
        white-space: normal; 
        word-wrap: break-word;
        transition: padding 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    }
    .dropdown-submenu > a { font-weight: 600; color: var(--color-dark); position: relative; padding-right: 35px; }
    .dropdown-menu-side li a { font-weight: 600; color: #5A5A5A; }
    
    /* Oklu alt menüler için ok konumlandırma */
    .dropdown-submenu > a .nav-arrow { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); font-size: 0.9rem; color: #333; transition: 0.3s ease; }

    /* Hover Efekti (Kutu daralmasını engellemek için sol artarken sağ azalır) */
    .dropdown-menu li a:hover,
    .dropdown-menu-side li a:hover { 
        background-color: #f9f9f9; 
        color: var(--color-primary); 
        padding-left: 22px; 
        padding-right: 14px;
    }
    .dropdown-submenu > a:hover {
        background-color: #f9f9f9; 
        color: var(--color-primary); 
        padding-left: 22px; 
        padding-right: 31px; 
    }
    
    /* Kırılan kelimelerde hover'ın kopmasını önler */
    .dropdown-menu li a *, .dropdown-menu-side li a *, .dropdown-submenu > a * { pointer-events: none; display: inline; }
}

/* Özel Menü Linkleri */
.all-products-link { font-weight: bold !important; border-bottom: 1px solid #eee !important; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   5. SAYFA BÖLÜMLERİ (HERO, HAKKIMIZDA, ÜRÜNLER VS.)
   ========================================================================== */
/* Hero Section */
.hero-slider { height: 70vh; position: relative; overflow: hidden; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; display: flex; align-items: center; text-align: center; }
.hero-slide.active { opacity: 1; }
.hero-slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(44, 53, 57, 0.6); }
.hero-content { position: relative; z-index: 1; color: #ffffff; }
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; color: #ffffff; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; text-shadow: 1px 1px 4px rgba(0,0,0,0.7); }
.hero-content .btn-primary { display: inline-block; margin-top: 40px; }

/* Hakkımızda */
.about-section { padding: 80px 0; background-color: #fff; text-align: center; }
.section-title { margin-bottom: 50px; text-align: center; }
.section-title h2 { font-size: 2.5rem; display: inline-block; position: relative; margin-bottom: 15px; }
.section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 50px; height: 2px; background-color: var(--color-primary); }
.about-text { max-width: 800px; margin: 0 auto; font-size: 1.1rem; line-height: 1.8; color: #555; }

/* Hakkımızda: Dinamik Kategori İkon Izgarası */
.kategori-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 40px 25px; max-width: 950px; margin: 60px auto 0; }
.kategori-item { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.kategori-icon { width: 90px; height: 90px; border-radius: 50%; border: 2px solid var(--color-dark); display: flex; align-items: center; justify-content: center; color: var(--color-dark); transition: 0.3s ease; flex-shrink: 0; }
.kategori-icon svg { width: 38px; height: 38px; }
.kategori-item:hover .kategori-icon { background-color: var(--color-primary); border-color: var(--color-primary); color: #fff; transform: translateY(-5px); }
.kategori-item span { font-weight: 600; color: var(--color-dark); font-size: 0.9rem; text-align: center; line-height: 1.3; }

/* Teknik Servis Bölümü (Anasayfa, Hakkımızda'dan önce) */
.teknik-servis-section { padding: 80px 0; background-color: #F5F1EA; text-align: center; }
.teknik-servis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; margin: 45px 0 50px; text-align: center; }
.ts-item { background: #fff; padding: 35px 25px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.04); transition: 0.3s ease; }
.ts-item:hover { transform: translateY(-6px); box-shadow: 0 12px 25px rgba(0,0,0,0.08); }
.ts-icon { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background-color: var(--color-dark); color: var(--color-primary); display: flex; align-items: center; justify-content: center; }
.ts-icon svg { width: 28px; height: 28px; }
.ts-item h4 { font-size: 1.05rem; margin-bottom: 10px; color: var(--color-dark); }
.ts-item p { font-size: 0.88rem; color: #666; line-height: 1.6; }
.ts-cta p { color: #555; margin-bottom: 15px; font-size: 0.95rem; }
.ts-cta .btn-primary { font-size: 1.3rem; letter-spacing: 1px; }


/* Avantajlarımız Bölümü */
.avantajlar-section { padding: 80px 0; background-color: #fff; }
.avantajlar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 45px 40px; margin-top: 55px; }
.avantaj-item { display: flex; gap: 22px; align-items: flex-start; }
.avantaj-icon { flex-shrink: 0; width: 58px; height: 58px; border-radius: 50%; background-color: var(--color-dark); color: var(--color-primary); display: flex; align-items: center; justify-content: center; }
.avantaj-icon svg { width: 26px; height: 26px; }
.avantaj-item h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--color-dark); }
.avantaj-item p { font-size: 0.9rem; color: #666; line-height: 1.65; }

/* İstatistikler Bölümü */
.istatistikler-section { background-color: var(--color-dark); padding: 60px 0; }
.istatistik-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 30px; text-align: center; }
.istatistik-sayi { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: var(--color-primary); margin-bottom: 8px; line-height: 1; }
.istatistik-etiket { font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; color: #ccc; }

/* Ürünler Slider & Grid */
.products-section { padding: 80px 0; background-color: var(--color-light); }
.carousel-container { position: relative; display: flex; align-items: center; width: 100%; padding: 0 60px; }
.carousel-track { display: flex; gap: 30px; overflow-x: auto; scroll-behavior: smooth; padding: 20px 5px; width: 100%; -ms-overflow-style: none; scrollbar-width: none; scroll-snap-type: x mandatory; }
.carousel-track::-webkit-scrollbar { display: none; }
.product-card { flex: 0 0 calc(33.333% - 20px); background: #fff; border: 1px solid #eee; transition: 0.3s; scroll-snap-align: start; }
.product-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: var(--color-primary); }
.product-img { height: 250px; background-color: #f5f5f5; display: flex; align-items: center; justify-content: center; color: #aaa; }
.product-info { padding: 30px; text-align: center; }
.product-info h3 { margin-bottom: 15px; font-size: 1.2rem; }
.carousel-btn { background-color: #fff; color: var(--color-dark); border: 1px solid #ddd; width: 45px; height: 45px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; transition: 0.3s; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.carousel-btn:hover { background-color: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.prev-btn { left: 0; } .next-btn { right: 0; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }

/* Markalar (Marquee) */
.brands-section { padding: 50px 0; background-color: #fff; border-top: 1px solid #eee; overflow: hidden; }
.brands-marquee { width: 100%; overflow: hidden; }
.brands-track { display: flex; width: 100%; }
.brands-slide { display: flex; align-items: center; flex-shrink: 0; animation: scrollBrands 30s linear infinite; }
.brands-track:hover .brands-slide { animation-play-state: paused; }
.logo-box { width: 140px; height: 70px; margin: 0 35px; display: flex; align-items: center; justify-content: center; background-color: transparent; border-radius: 4px; cursor: pointer; filter: grayscale(100%); opacity: 0.4; transition: all 0.3s ease; }
.logo-box:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
@keyframes scrollBrands { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* Duyurular */
.announcements-section { padding: 80px 0; background: #fafafa; }
.announcements-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.announcement-card { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.announcement-card:hover { transform: translateY(-10px); }
.announcement-card h3 { font-size: 1.1rem; margin: 15px 0; }
.announcement-card p { font-size: 0.9rem; color: #666; margin-bottom: 20px; }
.btn-more { display: inline-block; padding: 8px 15px; background: var(--color-primary); color: #fff; border-radius: 4px; font-size: 0.8rem; }

/* CTA Alanı */
.cta-section { background-color: var(--color-dark); color: #fff; padding: 60px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.cta-left { border-right: 1px solid rgba(255,255,255,0.1); padding-right: 40px; }
.cta-right { padding-left: 20px; }
.cta-section h2 { color: #fff; margin-bottom: 15px; }
.cta-section p { color: #ccc; margin-bottom: 25px; }
    .cta-tel-link {
        display: block;
        color: var(--color-primary) !important;
        font-size: 1.25rem;
        margin-top: 10px;
        font-family: var(--font-body);
        font-weight: 600;
        transition: color 0.25s ease, letter-spacing 0.25s ease;
    }
    .cta-tel-link:hover {
        color: #fff !important;
        letter-spacing: 1px;
    }

/* İletişim Formu ve Harita */
.contact-page-section { padding: 80px 0; background-color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.address-box { margin-bottom: 30px; padding: 30px; background-color: var(--color-light); border-left: 4px solid var(--color-primary); }
.address-box h4 { margin-top: 20px; margin-bottom: 5px; font-size: 1.1rem; }
.address-box h4:first-child { margin-top: 0; }
.premium-form { display: flex; flex-direction: column; gap: 20px; }
.premium-form input, .premium-form textarea { width: 100%; padding: 15px 20px; border: 1px solid #ddd; background-color: var(--color-light); font-family: var(--font-body); font-size: 0.95rem; outline: none; transition: 0.3s; }
.premium-form input:focus, .premium-form textarea:focus { border-color: var(--color-primary); }
.map-full-wrapper { 
    width: 100%; 
    margin-top: 60px; 
    border: 1px solid #eee; 
    background: #fff; 
    border-radius: 8px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    height: 510px; /* Haritanın sitende görünmesini istediğin net yüksekliği */
    overflow: hidden; /* Çerçevenin dışına itilen kısımları (siyah paneli) gizler */
    position: relative;
}

.map-full-wrapper iframe { 
    position: absolute;
    top: -65px; /* Siyah paneli garantili olarak çerçevenin üstüne, dışarı iter */
    left: 0;
    width: 100%; 
    height: calc(100% + 65px); /* Yukarı ittiğimiz 75px'lik boşluğu kompanse edip alt tarafı doldurur */
    border: none;
}

/* Ürün Detay Sayfası */
.product-detail-section { padding: 80px 0; background-color: #FAFAFA; }
.product-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.product-gallery-wrapper { display: flex; flex-direction: column; gap: 15px; }
.product-image-box { background: #fdfdfd; border: 1px solid #eee; border-radius: 8px; padding: 20px; display: flex; justify-content: center; align-items: center; min-height: 400px; }
.product-image-box img { max-height: 400px; object-fit: contain; }
.thumbnail-gallery { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.thumbnail-gallery img { width: 75px; height: 75px; object-fit: contain; border: 2px solid transparent; border-radius: 6px; cursor: pointer; background: #fdfdfd; box-shadow: 0 2px 5px rgba(0,0,0,0.05); opacity: 0.6; transition: all 0.3s ease; }
.thumbnail-gallery img:hover, .thumbnail-gallery img.active-thumb { opacity: 1; border-color: var(--color-primary); }
.product-info-box { display: flex; flex-direction: column; align-items: flex-start; }
.category-badge { display: inline-block; padding: 5px 12px; background-color: #F5F1EA; color: var(--color-primary); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; border-radius: 4px; margin-bottom: 15px; }
.product-info-box h1 { font-size: 2.2rem; color: var(--color-dark); margin-bottom: 20px; }
.product-info-box .description { font-size: 1.05rem; line-height: 1.6; color: #555; margin-bottom: 30px; }
.specs-wrapper { background-color: #f9f9f9; padding: 20px; border-left: 3px solid var(--color-primary); border-radius: 0 4px 4px 0; margin-bottom: 35px; width: 100%; }
.specs-wrapper h3 { font-size: 1.1rem; margin-bottom: 15px; color: #333; }
#product-specs li { margin-bottom: 10px; font-size: 0.95rem; color: #555; padding-left: 15px; position: relative; }
#product-specs li::before { content: "•"; color: var(--color-primary); font-weight: bold; position: absolute; left: 0; }

/* ==========================================================================
   6. FOOTER 
   ========================================================================== */
.site-footer { background-color: var(--color-dark); color: #ccc; padding: 70px 0 20px 0; }
.footer-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 40px 30px; margin-bottom: 50px; }
.footer-brand h3 { color: var(--color-primary); font-size: 1.8rem; margin-bottom: 15px; }
.footer-links-box h4, .footer-contact-box h4 { color: #fff; margin-bottom: 25px; font-size: 1.2rem; }
.footer-links-box ul li, .footer-contact-box ul li { margin-bottom: 12px; }
.footer-address-list li a { font-size: 0.92rem; line-height: 1.5; display: inline-block; }
.footer-links-box ul li a, .footer-contact-box ul li a { color: #ccc; transition: 0.3s; }
.footer-links-box ul li a:hover, .footer-contact-box ul li a:hover { color: var(--color-primary); padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: #888; }

/* ==========================================================================
   7. YÜZEN WHATSAPP BUTONU (FAB)
   ========================================================================== */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background-color: #25D366; color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(5deg); background-color: #20ba5a; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }

/* ==========================================================================
   8. MOBİL UYUM (RESPONSIVE) 
   ========================================================================== */
@media (max-width: 1024px) { 
    .announcements-grid { grid-template-columns: repeat(2, 1fr); } 
}

@media (max-width: 768px) {
    /* Navbar / Menü */
    .hamburger { display: flex; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 75%; height: 100vh; background-color: var(--color-light); flex-direction: column; justify-content: flex-start; padding-top: 100px; box-shadow: -5px 0 20px rgba(0,0,0,0.15); transition: 0.4s ease-in-out; overflow-y: auto; }
    .nav-links.active { right: 0; }
    
    .dropdown > a, .dropdown-submenu > a { display: block; width: 100%; padding: 10px 0; }
    .dropdown-menu { display: none; position: static; width: 100%; box-shadow: none; border: none; background: transparent; padding: 5px 0 10px 15px; }
    .dropdown.active > .dropdown-menu { display: flex; flex-direction: column; }
    .dropdown-menu-side { display: none; position: static; width: 100%; box-shadow: none; border: none; background-color: #F9F7F4; padding: 5px 0 5px 15px; margin-top: 6px; margin-bottom: 6px; border-left: 2px solid var(--color-primary); border-radius: 4px; }
    .dropdown-submenu.active > .dropdown-menu-side { display: flex; flex-direction: column; }
    .dropdown-menu li a, .dropdown-menu-side li a { font-size: 0.85rem; color: #666; font-weight: 600; padding: 10px 12px; display: block; text-transform: capitalize; }
    
    /* Layout */
    .hero-section h1 { font-size: 2.2rem; }
    /* ==========================================================================
       ALT SAYFA BAŞLIKLARI (PREMIUM KOLEKSİYON VB.) TAŞMA VE ORTALAMA ÇÖZÜMÜ
    ========================================================================== */
    .hero-section {
        /* HTML'deki inline sabit yüksekliği (35vh vb.) ezer ve içeriğe göre esnemesini sağlar */
        height: auto !important; 
        min-height: 25vh !important;
        
        /* Arka planı genişleterek metne nefes payı bırakır */
        padding: 50px 20px !important; 
        
        /* Flexbox ile içeriği kusursuzca ortalar */
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    /* ==========================================================================
       HERO / BAŞLIK ALANI MOBİL MERKEZLEME VE ZARAFET OPTİMİZASYONU
       ========================================================================== */
    
    /* 1. Kapsayıcıyı esnekleştirir ve içindekileri kusursuzca merkeze kilitler (Taşmayı önler) */
    .hero-section {
        height: auto !important; 
        min-height: 25vh !important;
        padding: 50px 20px !important; 
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* 2. Sol üste yaslanmayı iptal eder, yazılara sağdan soldan nefes aldırır */
    .hero-content {
        padding: 0 15px !important; 
        padding-top: 0 !important;
        margin-top: 0 !important;
        text-align: center !important; 
        width: 100%;
    }
    
    /* 3. Hem ana sayfa hem alt sayfa başlıklarının asil orantısı */
    .hero-content h1 { 
        font-size: 1.75rem !important; 
        line-height: 1.35 !important; 
        letter-spacing: 0.5px !important; 
        margin-bottom: 15px !important; 
    }
    
    /* 4. Alt açıklama yazısı */
    .hero-content p { 
        font-size: 0.95rem !important; 
        line-height: 1.6 !important;
        padding: 0 10px !important; 
        margin-bottom: 0 !important;
    }

    /* 5. Buton orantısı (Değişen yazı boyutlarına uygun küçültüldü) */
    .hero-content .btn-primary {
        padding: 12px 25px !important; 
        font-size: 0.85rem !important;
        margin-top: 25px !important;
        letter-spacing: 1px !important;
    }
    .products-section .section-title h2 { font-size: 1.6rem; margin-bottom: 20px; }

    /* Yeni Bölümler: Teknik Servis, Kategori Izgarası, Avantajlar, İstatistikler */
    .teknik-servis-section, .avantajlar-section { padding: 50px 0; }
    .kategori-grid { margin-top: 40px; gap: 30px 15px; }
    .kategori-icon { width: 75px; height: 75px; }
    .kategori-icon svg { width: 30px; height: 30px; }
    .avantajlar-grid { gap: 35px; margin-top: 35px; }
    .istatistikler-section { padding: 40px 0; }
    .istatistik-sayi { font-size: 2rem; }
    
    /* Carousel (Peek-a-boo) */
    .carousel-container { padding: 0; width: 100%; overflow: hidden; } 
    .carousel-track { gap: 16px; padding: 15px 9%; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; } 
    .product-card { flex: 0 0 82%; min-width: 82%; box-shadow: 0 5px 15px rgba(0,0,0,0.04); scroll-snap-align: center; } 
    .product-img { height: 230px; background-color: #ffffff; }
    .product-img img { padding: 15px; }
    .product-info { padding: 20px; }
    .product-info h3 { font-size: 1rem; }
    
    /* CTA */
    .cta-section { padding: 50px 0; }
    .cta-grid { grid-template-columns: 1fr; text-align: center; gap: 0; }
    .cta-left { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.15); padding-right: 0; padding-bottom: 40px; margin-bottom: 40px; }
    .cta-right { padding-left: 0; }
    .cta-right h3, .cta-right h3 a { font-size: 1.8rem; color: var(--color-primary); margin-top: 20px; font-weight: 600; text-decoration: none; }

    /* Contact & Footer */
    .contact-grid, .footer-layout { grid-template-columns: 1fr; text-align: center; }
    .footer-layout { gap: 40px; padding: 0 10px; }
    .footer-brand h3 { font-size: 1.6rem; }
    .footer-brand p { font-size: 0.95rem; padding: 0 10px; }
    .footer-contact-box p { font-size: 0.95rem; line-height: 1.8; }
    
    /* Product Detail */
    .product-container { grid-template-columns: 1fr; padding: 20px; gap: 30px; }
    .product-info-box h1 { font-size: 1.8rem; }
    .product-image-box { min-height: 250px; }
    
    /* WhatsApp */
    .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 600px) { 
    .announcements-grid { grid-template-columns: 1fr; } 
}