:root {
    --bg-main: #f8f9fa;        /* Ferah Açık Gri/Beyaz Arka Plan */
    --bg-card: #ffffff;        /* Tam Beyaz Kartlar */
    --text-main: #1a1a1a;      /* Koyu Okunabilir Metin */
    --text-muted: #666666;     /* Yumuşak Gri Metin */
    --accent-red: #e53935;     /* Canlı Kırmızı */
    --accent-red-hover: #b71c1c; /* Koyu Kırmızı */
    --accent-yellow: #f5b041;  /* Canlı Sarı/Turuncu */
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(229, 57, 53, 0.2); 
    --shadow-light: rgba(0, 0, 0, 0.08); 
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { 
    scroll-behavior: smooth; 
    overflow-x: hidden; /* Yatay kaymayı kesin olarak engeller */
    width: 100%;
    max-width: 100vw;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
}

/* ===================== MODAL ===================== */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6); 
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s;
    backdrop-filter: blur(5px);
}
.modal-overlay.show-modal { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--bg-card);
    border: 1px solid var(--accent-red);
    border-radius: 20px;
    max-width: 480px; width: 90%;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(229,57,53,0.15), 0 0 40px rgba(0,0,0,0.1);
    transform: translateY(30px);
    transition: transform 0.4s;
}
.modal-overlay.show-modal .modal-box { transform: translateY(0); }
.modal-header { text-align: center; margin-bottom: 24px; }
.modal-icon { font-size: 48px; color: var(--accent-yellow); margin-bottom: 16px; display: block; }
.modal-header h2 { font-size: 1.4rem; color: var(--text-main); }
.modal-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 10px; }
.modal-footer { display: flex; gap: 12px; margin-top: 28px; }
.modal-btn { flex: 1; padding: 12px; border: none; border-radius: 50px; font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-cancel { background: #f0f0f0; color: var(--text-muted); border: 1px solid #ddd; }
.btn-cancel:hover { background: #e0e0e0; color: var(--text-main); border-color: var(--accent-yellow); }
.btn-accept { background: var(--accent-red); color: #fff; box-shadow: 0 4px 20px rgba(229,57,53,0.3); }
.btn-accept:hover { background: var(--accent-yellow); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(245,176,65,0.4); }

/* ===================== 3D CANVAS ===================== */
#canvas-container {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    z-index: 0; pointer-events: none;
    transition: opacity 0.6s ease-in-out; 
    will-change: opacity;
    overflow: hidden;
}
#canvas-container canvas {
    display: block;
}

/* ===================== NAVBAR ===================== */
.glass-nav {
    position: fixed; top: 0; left: 0; width: 100%; /* TOP DEĞERİ SIFIRLANDI */
    padding: 16px 5%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    z-index: 150;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
    transition: all 0.4s;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 38px; width: auto; object-fit: contain; }

.nav-links-list { display: flex; gap: 28px; list-style: none; }
.nav-links-list a { color: var(--text-main); text-decoration: none; font-weight: 500; transition: 0.3s; font-size: 14px; }
.nav-links-list a:hover { color: var(--accent-red); }

.dropdown { position: relative; }
.dropdown-content {
    display: none !important; /* Normalde kesinlikle gizli tutar */
    position: absolute; top: 100%; left: 0;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: 12px;
    padding: 20px; min-width: 520px; gap: 20px;
    flex-direction: row; box-shadow: 0 20px 50px var(--shadow-light);
    z-index: 1000;
}

/* Portföyümüz için Mega Menü (Yan yana sütunlar) */
.dropdown:hover .mega-menu { display: flex !important; gap: 15px; }
/* Hizmetler için Standart Menü (Alt alta) */
.dropdown:hover .standard-menu { display: block !important; }

.dropdown-column { flex: 1; }
.dropdown-column h4 { color: var(--accent-red); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; border-bottom:1px solid #eee; padding-bottom:5px; transition: color 0.3s;}
.dropdown-column h4 a { transition: color 0.3s; color: inherit; text-decoration: none; }
.dropdown-column a { display: block; color: var(--text-muted); text-decoration: none; font-size: 13px; padding: 4px 0; transition: 0.2s; }
.dropdown-column h4 a:hover, .dropdown-column a:hover { color: var(--accent-red) !important; padding-left: 5px; }

.btn-quote-header { background: var(--accent-red); color: #fff; padding: 9px 22px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 13px; transition: 0.3s; box-shadow: 0 4px 15px rgba(229,57,53,0.3); }
.btn-quote-header:hover { background: var(--accent-yellow); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(245,176,65,0.4); }

.mobile-menu-btn { background: none; border: 1px solid var(--accent-red); color: var(--text-main); padding: 8px 12px; border-radius: 8px; cursor: pointer; display: none; font-size: 16px; }
@media(max-width:900px){
    .nav-links-list { display: none; }
    .btn-quote-header { display: none; }
    .mobile-menu-btn { display: block; }
}
.mobile-dropdown-menu {
    display: none; position: absolute; top: 100%; right: 0; width: 220px;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: 12px; padding: 10px; list-style: none;
    box-shadow: 0 15px 40px var(--shadow-light);
}
.mobile-dropdown-menu.open { display: block; }
.mobile-dropdown-menu li a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; color: var(--text-main); text-decoration: none; border-radius: 8px; font-size: 14px; transition: 0.2s; }
.mobile-dropdown-menu li a:hover { background: rgba(229,57,53,0.08); color: var(--accent-red); }
.mobile-menu-wrapper { position: relative; }

/* ===================== SECTIONS ===================== */
.section {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; z-index: 10;
    padding: 100px 10%; box-sizing: border-box; width: 100%;
}

.content-box {
    max-width: 460px;
    background: var(--glass);
    backdrop-filter: blur(18px);
    padding: 44px;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid #fff;
    will-change: transform, opacity;
}
.align-left { margin-right: auto; border-radius: 20px 0 0 20px; border-right: 4px solid var(--accent-red); }
.align-right { margin-left: auto; border-radius: 0 20px 20px 0; border-left: 4px solid var(--accent-red); }
.align-center { margin: 0 auto; text-align: center; background: transparent; border: none; box-shadow: none; }
.from-left { transform: translateX(-120px) translateY(30px); }
.from-right { transform: translateX(120px) translateY(30px); }
.from-bottom { transform: translateY(80px); }
.content-box.visible { opacity: 1; transform: translateX(0) translateY(0); }

.section-tag { display: block; color: var(--accent-red); font-weight: 700; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
h2 { font-size: 2.6rem; color: var(--text-main); line-height: 1.2; margin-bottom: 16px; }
.highlight { color: var(--accent-red); }
p { color: var(--text-muted); line-height: 1.9; font-size: 1rem; margin-bottom: 10px; }
strong { color: var(--text-main); }

.btn-primary {
    display: inline-block; background: var(--accent-red); color: #fff; padding: 12px 28px;
    border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 14px;
    margin-top: 18px; transition: 0.3s; box-shadow: 0 4px 20px rgba(229,57,53,0.35);
}
.btn-primary:hover { background: var(--accent-yellow); color: #fff; transform: translateY(-3px); box-shadow: 0 4px 20px rgba(245,176,65,0.4); }

/* Hero */
#hero { padding-top: 120px; }
#hero .content-box { max-width: 600px; }
.hero-tag { display: inline-block; background: rgba(229,57,53,0.1); color: var(--accent-red); padding: 5px 16px; border-radius: 50px; font-size: 12px; letter-spacing: 2px; font-weight: 600; border: 1px solid rgba(229,57,53,0.2); margin-bottom: 18px; }
.hero-title { font-size: clamp(2.8rem, 5vw, 4.5rem); margin-bottom: 14px; line-height: 1.1; }

.scroll-down {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%); text-align: center;
    animation: bounce 2s infinite; color: var(--accent-red);
    font-size: 11px; letter-spacing: 3px; font-weight: 600;
}
@keyframes bounce {
    0%,20%,50%,80%,100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* ===================== STATS ===================== */
.stats-section {
    position: relative; z-index: 10;
    background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(20px);
    border-top: 1px solid #eaeaea; border-bottom: 1px solid #eaeaea;
    padding: 60px 10%;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item i { font-size: 2rem; color: var(--accent-yellow); margin-bottom: 12px; display: block; }
.stat-item h3 { font-size: 2.4rem; color: var(--text-main); font-weight: 700; }
.stat-item p { color: var(--text-muted); font-size: 13px; margin-top: 5px; font-weight:500; }
.counter-wrapper { display: flex; justify-content: center; align-items: baseline; gap: 2px; }
.plus-sign { font-size: 1.8rem; color: var(--accent-red); font-weight: 700; }
@media(max-width:768px){ .stats-grid { grid-template-columns: repeat(2,1fr); } }

/* ===================== HIZMETLER ===================== */
.services-full {
    position: relative; z-index: 10;
    padding: 80px 10%;
    background: #ffffff; 
}
.services-full .section-header { text-align: center; margin-bottom: 50px; }
.subtitle { display: block; color: var(--accent-yellow); font-size: 12px; letter-spacing: 3px; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: 2.4rem; color: var(--text-main); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--bg-card); border: 1px solid #eee;
    border-radius: 20px; overflow: hidden; transition: 0.4s;
    box-shadow: 0 10px 30px var(--shadow-light);
}
.service-card:hover { transform: translateY(-8px); border-color: var(--accent-red); box-shadow: 0 20px 40px rgba(229,57,53,0.1); }
.service-img-wrapper { height: 180px; overflow: hidden; background: #f4f4f4; }
.service-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.service-card:hover .service-img-wrapper img { transform: scale(1.05); }
.service-content { padding: 24px; }
.service-content i { font-size: 1.6rem; color: var(--accent-red); margin-bottom: 10px; transition: 0.3s;}
.service-card:hover .service-content i { color: var(--accent-yellow); }
.service-content h3 { font-size: 1.1rem; color: var(--text-main); margin-bottom: 8px; }
.service-content p { font-size: 0.9rem; color: var(--text-muted); }
@media(max-width:768px){ .services-grid { grid-template-columns: 1fr; } }

/* ===================== ÜRÜNLER SLIDER ===================== */
.products-section {
    position: relative; z-index: 10;
    padding: 80px 10%;
    background: var(--bg-main);
}
.slider-wrapper { position: relative; overflow: hidden; margin-top: 40px; padding: 10px 0; }
.product-track { display: flex; gap: 20px; transition: transform 0.5s cubic-bezier(0.25,1,0.5,1); }
.product-card {
    min-width: calc(25% - 15px); background: var(--bg-card);
    border: 1px solid #eee; border-radius: 16px; overflow: hidden;
    transition: 0.3s; flex-shrink: 0; box-shadow: 0 5px 20px var(--shadow-light);
}
@media(max-width:768px){ .product-card { min-width: calc(50% - 10px); } }
@media(max-width:480px){ .product-card { min-width: calc(100% - 0px); } }
.product-card:hover { border-color: var(--accent-red); transform: translateY(-6px); box-shadow: 0 15px 30px rgba(229,57,53,0.1); }
.product-img-container { position: relative; height: 180px; overflow: hidden; background: #f9f9f9; display: flex; align-items: center; justify-content: center; }
.product-img-file { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.hover-btn {
    position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
    background: var(--accent-red); color: #fff; padding: 10px 22px; border-radius: 50px;
    text-decoration: none; font-size: 13px; font-weight: 600; white-space: nowrap;
    transition: 0.3s; box-shadow: 0 4px 15px rgba(229,57,53,0.3);
}
.product-card:hover .hover-btn { bottom: 12px; }
.hover-btn:hover { background: var(--accent-yellow); color: #fff; }
.product-card h3 { padding: 16px 16px 4px; color: var(--text-main); font-size: 1rem; }
.product-card p { padding: 0 16px 16px; font-size: 13px; color: var(--text-muted); }

.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: #fff; border: 1px solid #ddd; color: var(--text-main);
    width: 44px; height: 44px; border-radius: 50%; cursor: pointer; z-index: 5;
    font-size: 16px; transition: 0.3s; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px var(--shadow-light);
}
.slider-btn:hover { background: var(--accent-red); color: #fff; border-color: var(--accent-red); }
.prev-btn { left: 10px; } 
.next-btn { right: 10px; } 

/* ===================== FAQ ===================== */
.faq-section {
    position: relative; z-index: 10;
    padding: 80px 10%;
    background: #ffffff;
}
.faq-container { margin-top: 40px; max-width: 760px; margin-inline: auto; }
.faq-item { border: 1px solid #eee; border-radius: 12px; margin-bottom: 12px; overflow: hidden; background: var(--bg-card); box-shadow: 0 4px 15px var(--shadow-light); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 18px 22px; background: transparent; border: none; color: var(--text-main);
    font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; text-align: left;
}
.faq-question i { color: var(--accent-yellow); transition: 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); color: var(--accent-red); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 22px 18px; color: var(--text-muted); font-size: 14px; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 200px; }
/* ===================== ABOUT (BİZ KİMİZ) ===================== */
#about-section {
    position: relative; z-index: 10;
    padding: 50px 10%;
    background: var(--bg-main);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; } 
.about-content .subtitle { margin-bottom: 8px; }
.about-content h2 { margin-bottom: 15px; font-size: 2.2rem; } 
.about-content p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 12px; } 

.about-image img { 
    width: 100%; 
    max-height: 380px; 
    object-fit: cover; 
    border-radius: 20px; 
    border: 1px solid #ddd; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); 
    
    /* YENİ EKLENEN ÖZELLİK */
    /* Resmin çerçeve içindeki dikey hizasını ayarlar. */
    /* Varsayılan %50'dir (orta). %80 yaparak resim dosyasını */
    /* yukarı kaydırıp, alt kısmının görünmesini sağlıyoruz. */
    object-position: 50% 80%; /* İlk değer yatay (%50 orta), ikinci değer dikey */
}

@media(max-width:768px){ 
    .about-grid { grid-template-columns: 1fr; gap: 30px; } 
    /* Mobilde de resim çerçeve içinde kayık kalabilir, sorun olmazsa */
    /* bu kısmı değiştirmenize gerek yok. */
    .about-image img { max-height: 250px; }
}

/* ===================== CONTACT ===================== */
#contact {
    position: relative; z-index: 10;
    padding: 80px 10%;
    background: #ffffff;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 20px; color: var(--text-main); }
.contact-info p { color: var(--text-muted); font-size: 14px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.contact-info p i { color: var(--accent-yellow); width: 18px; }
.map-wrapper { margin-top: 20px; }
.map-placeholder {
    background: rgba(229,57,53,0.03); border: 1px dashed var(--accent-red);
    border-radius: 12px; height: 160px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 8px;
    color: var(--accent-red); font-size: 14px; cursor: pointer; transition: 0.3s;
    text-decoration: none; font-weight: 500;
}
.map-placeholder:hover { background: rgba(245,176,65,0.05); border-color: var(--accent-yellow); color: var(--accent-yellow); }
.map-placeholder i { font-size: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 14px; background: var(--bg-card); padding: 30px; border-radius: 20px; box-shadow: 0 10px 40px var(--shadow-light); border: 1px solid #eee; }
.contact-form input, .contact-form textarea {
    background: #f9f9f9; border: 1px solid #ddd; border-radius: 10px;
    padding: 14px 18px; color: var(--text-main); font-family: 'Poppins', sans-serif; font-size: 14px;
    outline: none; transition: 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent-red); background: #fff; box-shadow: 0 0 0 2px rgba(229,57,53,0.1); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #999; }
.btn-send {
    background: var(--accent-red); color: #fff; border: none; border-radius: 50px;
    padding: 14px; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600;
    cursor: pointer; transition: 0.3s; box-shadow: 0 4px 20px rgba(229,57,53,0.3); margin-top: 10px;
}
.btn-send:hover { background: var(--accent-yellow); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(245,176,65,0.4); }
@media(max-width:768px){ .contact-grid { grid-template-columns: 1fr; } .contact-form{ padding:20px; } }

/* ===================== FOOTER ===================== */
.main-footer {
    position: relative; z-index: 10;
    background: #ffffff; border-top: 1px solid #eee;
    padding: 60px 10% 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img { height: 42px; width: auto; }
.footer-desc { color: var(--text-muted); font-size: 13px; line-height: 1.8; margin-bottom: 20px; padding-right: 20px; }
.footer-social a { color: var(--text-muted); margin-right: 12px; font-size: 16px; transition: 0.3s; background: #f4f4f4; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; }
.footer-social a:hover { color: #fff; background: var(--accent-red); }
.footer-col h4 { color: var(--text-main); font-size: 15px; margin-bottom: 16px; letter-spacing: 0.5px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--accent-red); padding-left: 4px; }
.contact-details li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 13px; margin-bottom: 12px; }
.contact-details li i { color: var(--accent-yellow); width: 15px; font-size: 15px; }
.footer-bottom { border-top: 1px solid #eee; padding: 20px 0; text-align: center; color: #888; font-size: 12px; }
@media(max-width:768px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px){ .footer-grid { grid-template-columns: 1fr; } }

/* ===================== WHATSAPP ===================== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 300;
    background: #25D366; color: #fff; width: 56px; height: 56px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 26px; box-shadow: 0 6px 25px rgba(37,211,102,0.3);
    text-decoration: none; transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }






/* ========================================================
   KATEGORİLER SAYFASI ÖZEL TASARIMLARI (CATEGORIES.HTML)
   ======================================================== */

/* ===== PAGE BANNER ===== */
.page-banner {
    position: relative; z-index: 10;
    min-height: 42vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 140px 10% 80px;
    border-bottom: 1px solid #eaeaea;
    background: linear-gradient(180deg, var(--bg-main) 0%, #ffffff 100%);
}
.banner-inner { position: relative; z-index: 2; }
.banner-breadcrumb {
    display: flex; align-items: center; gap: 8px; justify-content: center;
    font-size: 12px; color: var(--text-muted); letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 20px;
}
.banner-breadcrumb a { color: var(--accent-red); text-decoration: none; transition: 0.2s; font-weight: 600; }
.banner-breadcrumb a:hover { color: var(--accent-yellow); }
.banner-breadcrumb i { font-size: 8px; color: var(--text-muted); }
.page-banner h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700; line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 14px;
}
.page-banner p { font-size: 1.1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }
.banner-line { width: 60px; height: 3px; background: linear-gradient(90deg, transparent, var(--accent-red), transparent); margin: 22px auto 0; border-radius: 2px; }

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    position: relative; z-index: 10;
    padding: 90px 10%;
    background: var(--bg-main);
}
.section-intro {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.section-intro.visible { opacity: 1; transform: translateY(0); }
.section-intro .subtitle { 
    display: inline-block; color: var(--accent-red); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 5px 14px; border: 1px solid rgba(229,57,53,0.2); border-radius: 50px; background: rgba(229,57,53,0.05); margin-bottom: 14px; 
}
.section-intro .section-title { font-size: 2.4rem; color: var(--text-main); }
.section-intro .section-title .hl { color: var(--accent-red); }

/* ===== CATEGORY GRID ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media(max-width:900px){ .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:560px){ .category-grid { grid-template-columns: 1fr; } }

/* ===== CATEGORY CARD ===== */
.category-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 40px 32px;
    text-decoration: none;
    display: flex; flex-direction: column; gap: 14px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    opacity: 0; transform: translateY(50px);
    box-shadow: 0 10px 30px var(--shadow-light);
}
.category-card.visible { opacity: 1; transform: translateY(0); }

/* Staggered delays (Kartların sırayla gelmesi için) */
.category-card:nth-child(1) { transition-delay: 0s; }
.category-card:nth-child(2) { transition-delay: 0.08s; }
.category-card:nth-child(3) { transition-delay: 0.16s; }
.category-card:nth-child(4) { transition-delay: 0.24s; }
.category-card:nth-child(5) { transition-delay: 0.32s; }
.category-card:nth-child(6) { transition-delay: 0.40s; }

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 24px 50px rgba(229,57,53,0.1), 0 0 0 1px rgba(229,57,53,0.1);
}

/* Glow orb on hover (Sağ üstteki parlama) */
.category-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,176,65,0.15) 0%, transparent 70%); /* Sarımsı Glow */
    opacity: 0; transition: opacity 0.4s;
}
.category-card:hover::before { opacity: 1; }

/* Accent bar at bottom (Alt çizgi) */
.category-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-red), var(--accent-yellow), transparent);
    transform: scaleX(0); transition: transform 0.4s ease;
    border-radius: 0 0 24px 24px;
}
.category-card:hover::after { transform: scaleX(1); }

/* Icon */
.cat-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: rgba(229,57,53,0.05);
    border: 1px solid rgba(229,57,53,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--accent-red);
    transition: 0.4s;
    position: relative; z-index: 1;
}
.category-card:hover .cat-icon {
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 8px 24px rgba(229,57,53,0.3);
    transform: scale(1.08);
}

.cat-label {
    display: inline-block;
    font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent-yellow); 
    position: relative; z-index: 1;
}

.category-card h3 {
    font-size: 1.35rem; color: var(--text-main); font-weight: 600;
    position: relative; z-index: 1;
}

.category-card p {
    color: var(--text-muted); font-size: 0.92rem; line-height: 1.85;
    flex: 1; position: relative; z-index: 1;
}

.view-products {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent-red); font-size: 13px; font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 8px;
    position: relative; z-index: 1;
    transition: gap 0.3s;
}
.category-card:hover .view-products { gap: 12px; color: var(--accent-yellow); }
.view-products i { font-size: 11px; }

/* Card number badge (Arka plandaki dev rakam) */
.card-number {
    position: absolute; top: 22px; right: 24px;
    font-size: 3.5rem; font-weight: 800;
    color: rgba(0,0,0,0.03);
    line-height: 1; pointer-events: none;
    transition: color 0.4s;
}
.category-card:hover .card-number { color: rgba(229,57,53,0.05); }

/* ===== CTA STRIP ===== */
.cta-strip {
    position: relative; z-index: 10;
    margin: 0 10% 80px;
    background: linear-gradient(135deg, rgba(229,57,53,0.05) 0%, rgba(245,176,65,0.05) 100%);
    border: 1px solid rgba(229,57,53,0.1);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex; align-items: center; justify-content: space-between; gap: 30px;
    overflow: hidden;
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.cta-strip.visible { opacity: 1; transform: translateY(0); }
.cta-strip::before {
    content: '';
    position: absolute; top: -50%; right: -10%;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(229,57,53,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-text { position: relative; z-index: 1; }
.cta-text h3 { font-size: 1.7rem; color: var(--text-main); margin-bottom: 8px; }
.cta-text p { color: var(--text-muted); font-size: 0.95rem; }
.cta-btn {
    position: relative; z-index: 1; flex-shrink: 0;
    background: var(--accent-red); color: #fff; padding: 14px 32px;
    border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 14px;
    transition: 0.3s; box-shadow: 0 6px 24px rgba(229,57,53,0.3);
    white-space: nowrap;
}
.cta-btn:hover { background: var(--accent-yellow); color: #fff; transform: translateY(-3px); box-shadow: 0 6px 24px rgba(245,176,65,0.4); }
@media(max-width:768px){
    .cta-strip { flex-direction: column; text-align: center; padding: 36px 28px; margin: 0 5% 60px; }
}


/* ========================================================
   HAKKIMIZDA SAYFASI ÖZEL TASARIMLARI (ABOUT.HTML)
   ======================================================== */

/* ===== CONTENT SECTIONS ===== */
.corp-section {
    position: relative; z-index: 10;
    padding: 100px 10%;
    background: var(--bg-main); /* Açık Tema */
}
.corp-section.alt-bg {
    background: #ffffff; /* Alternatif bölüm için tam beyaz */
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.corp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.corp-grid.reverse { direction: rtl; }
.corp-grid.reverse > * { direction: ltr; }
@media(max-width:900px){ .corp-grid { grid-template-columns: 1fr; gap: 40px; } .corp-grid.reverse { direction: ltr; } }

/* Text box */
.corp-text {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s ease, transform 1s ease;
}
.corp-text.from-right { transform: translateX(60px); }
.corp-text.visible { opacity: 1; transform: translateX(0); }

.section-label {
    display: inline-block;
    color: var(--accent-red);
    font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    padding: 5px 14px;
    border: 1px solid rgba(229,57,53,0.2);
    border-radius: 50px;
    background: rgba(229,57,53,0.05);
    margin-bottom: 18px;
}
.corp-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--text-main); /* Siyah yazı */
    line-height: 1.25;
    margin-bottom: 24px;
}
.corp-text h2 .hl { color: var(--accent-red); }
.corp-text p {
    color: var(--text-muted); /* Gri yazı */
    font-size: 0.97rem;
    line-height: 1.95;
    margin-bottom: 14px;
}
.corp-text p strong { color: var(--text-main); }

/* Feature list */
.feature-list { list-style: none; margin-top: 24px; }
.feature-list li {
    display: flex; align-items: flex-start; gap: 12px;
    color: var(--text-muted); font-size: 0.95rem;
    padding: 10px 0; border-bottom: 1px solid #eee;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--accent-red); margin-top: 3px; flex-shrink: 0; }

/* Image */
.corp-image {
    opacity: 0;
    transform: translateX(60px) scale(0.97);
    transition: opacity 1s ease, transform 1s ease;
    margin: 0;
}
.corp-image.from-left { transform: translateX(-60px) scale(0.97); }
.corp-image.visible { opacity: 1; transform: translateX(0) scale(1); }
.img-frame {
    position: relative; border-radius: 24px; overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 20px 50px var(--shadow-light); /* Yumuşatılmış gölge */
}
.img-frame img { width: 100%; display: block; filter: brightness(0.9) saturate(0.9); transition: 0.5s; }
.img-frame:hover img { filter: brightness(1) saturate(1.05); transform: scale(1.02); }
.img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(229,57,53,0.1) 0%, transparent 60%); } /* Kırmızımsı overlay */
.img-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); /* Beyaz blur */
    border: 1px solid #ddd; border-radius: 12px;
    padding: 12px 18px; display: flex; align-items: center; gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.img-badge .badge-icon { color: var(--accent-yellow); font-size: 1.4rem; }
.img-badge .badge-text { font-size: 12px; color: var(--text-muted); }
.img-badge .badge-text strong { display: block; color: var(--text-main); font-size: 14px; }

.side-accent {
    width: 4px; height: 80px;
    background: linear-gradient(180deg, transparent, var(--accent-red), transparent);
    border-radius: 2px; margin-bottom: 24px;
}

/* ===== VALUES GRID ===== */
.values-section { position: relative; z-index: 10; padding: 80px 10%; text-align: center; background: var(--bg-main); }
.values-header { margin-bottom: 60px; }
.values-header h2 { font-size: 2.4rem; color: var(--text-main); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:768px){ .values-grid { grid-template-columns: 1fr; } }
.value-card {
    background: var(--bg-card); border: 1px solid #eee; border-radius: 20px;
    padding: 36px 28px; transition: 0.4s; opacity: 0; transform: translateY(40px);
    box-shadow: 0 10px 30px var(--shadow-light);
}
.value-card.visible { opacity: 1; transform: translateY(0); }
.value-card:nth-child(2) { transition-delay: 0.15s; }
.value-card:nth-child(3) { transition-delay: 0.3s; }
.value-card:hover { border-color: var(--accent-red); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(229,57,53,0.1); }
.value-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(229,57,53,0.05); border: 1px solid rgba(229,57,53,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-red); font-size: 1.5rem; margin: 0 auto 20px; transition: 0.3s;
}
.value-card:hover .value-icon { background: var(--accent-red); color: #fff; }
.value-card h3 { color: var(--text-main); font-size: 1.15rem; margin-bottom: 12px; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }



/* ========================================================
   HİZMETLER SAYFASI ÖZEL TASARIMLARI (SERVICES.HTML)
   ======================================================== */

/* ===== QUICK NAV TABS (SEKMELER) ===== */
.service-tabs {
    position: relative; z-index: 10;
    display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 57, 53, 0.1);
    padding: 0 10%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.service-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 18px 24px; color: var(--text-muted);
    text-decoration: none; font-size: 13px; font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: 0.3s; white-space: nowrap;
}
.service-tab i { color: var(--accent-yellow); font-size: 14px; transition: 0.3s; }
.service-tab:hover { color: var(--text-main); border-bottom-color: rgba(229,57,53,0.3); }
.service-tab:hover i { color: var(--accent-red); }
.service-tab.active { color: var(--accent-red); border-bottom-color: var(--accent-red); }
.service-tab.active i { color: var(--accent-red); }
@media(max-width:768px){ .service-tabs { padding: 0 5%; gap: 0; } .service-tab { padding: 14px 14px; font-size: 12px; } }

/* ===== SERVICE SECTIONS (HİZMET BÖLÜMLERİ) ===== */
.srv-section {
    position: relative; z-index: 10;
    padding: 100px 10%;
    background: transparent; /* DNA'nın görünmesi için ŞEFFAF yapıldı */
}
.srv-section.alt { 
    background: rgba(255, 255, 255, 0.4); /* DNA'yı tamamen kapatmayan hafif beyazlık */
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.6); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.6); 
}

.srv-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.srv-grid.reverse { direction: rtl; }
.srv-grid.reverse > * { direction: ltr; }
@media(max-width:900px){ .srv-grid { grid-template-columns: 1fr; gap: 40px; } .srv-grid.reverse { direction: ltr; } }

/* Text - Okunabilirlik için Şık Cam (Glass) Kutu Eklendi */
.srv-text {
    opacity: 0; transform: translateX(-60px);
    transition: opacity 1s ease, transform 1s ease;
    background: rgba(255, 255, 255, 0.85); /* Yazıların arkasından DNA hafifçe belli olur */
    backdrop-filter: blur(12px);
    padding: 44px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 40px var(--shadow-light);
}
@media(max-width:768px) { .srv-text { padding: 28px; } }

.srv-text.from-right { transform: translateX(60px); }
.srv-text.visible { opacity: 1; transform: translateX(0); }

.srv-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--text-main); line-height: 1.25; margin-bottom: 20px; }
.srv-text h2 .hl { color: var(--accent-red); }
.srv-text p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.95; margin-bottom: 14px; }
.srv-text p strong { color: var(--text-main); }

.check-list { list-style: none; margin-top: 20px; }
.check-list li {
    display: flex; align-items: flex-start; gap: 12px;
    color: var(--text-muted); font-size: 0.94rem;
    padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--accent-red); margin-top: 3px; flex-shrink: 0; }

/* Image */
.srv-image {
    opacity: 0; transform: translateX(60px) scale(0.97);
    transition: opacity 1s ease, transform 1s ease;
    margin: 0;
}
.srv-image.from-left { transform: translateX(-60px) scale(0.97); }
.srv-image.visible { opacity: 1; transform: translateX(0) scale(1); }

/* ===== PROCESS STEPS (SÜREÇ) ===== */
.process-section {
    position: relative; z-index: 10;
    padding: 100px 10%;
    text-align: center;
    background: transparent; /* DNA'nın görünmesi için ŞEFFAF yapıldı */
}
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; margin-top: 40px; }
.steps-grid::before {
    content: ''; position: absolute; top: 38px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(229,57,53,0.3), var(--accent-red), rgba(229,57,53,0.3), transparent);
    pointer-events: none;
}
@media(max-width:768px){ .steps-grid { grid-template-columns: repeat(2,1fr); } .steps-grid::before { display: none; } }
@media(max-width:480px){ .steps-grid { grid-template-columns: 1fr; } }

.step-card {
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
    border: 1px solid #eee;
    border-radius: 20px; padding: 32px 24px;
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px var(--shadow-light);
}
.step-card.visible { opacity: 1; transform: translateY(0); }
.step-card:nth-child(2) { transition-delay: 0.12s; }
.step-card:nth-child(3) { transition-delay: 0.24s; }
.step-card:nth-child(4) { transition-delay: 0.36s; }
.step-card:hover { border-color: var(--accent-red); box-shadow: 0 16px 40px rgba(229,57,53,0.1); transform: translateY(-5px); }
.step-number {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(229,57,53,0.05); border: 2px solid rgba(229,57,53,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 800; color: var(--accent-red);
    margin: 0 auto 18px; transition: 0.3s;
}
.step-card:hover .step-number { background: var(--accent-red); color: #fff; border-color: var(--accent-red); }
.step-card h4 { color: var(--text-main); font-size: 1rem; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.8; }




/* ========================================================
   ÜRÜNLER SAYFASI ÖZEL TASARIMLARI (PRODUCTS2.HTML)
   ======================================================== */

/* ===== FILTER BAR (FİLTRELEME ALANI) ===== */
.filter-section {
    position: relative; z-index: 10;
    padding: 30px 10%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #eaeaea;
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--text-muted);
    padding: 9px 20px; border-radius: 50px;
    font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: 0.3s;
}
.filter-btn:hover { border-color: var(--accent-red); color: var(--accent-red); }
.filter-btn.active {
    background: var(--accent-red); border-color: var(--accent-red);
    color: #fff; box-shadow: 0 4px 15px rgba(229,57,53,0.3);
}

/* ===== PRODUCTS GRID (ÜRÜN KARTLARI DİZİLİMİ) ===== */
.products-grid-section {
    position: relative; z-index: 10;
    padding: 70px 10%;
    background: transparent; /* DNA'nın görünmesi için */
}
.products-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media(max-width:1000px){ .products-listing { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:580px){ .products-listing { grid-template-columns: 1fr; } }

/* ===== PRODUCT CARD (ÜRÜN KARTI) ===== */
.products-listing .product-card {
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    border: 1px solid #eee;
    border-radius: 20px; overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, opacity 0.3s ease;
    opacity: 0; transform: translateY(30px);
    box-shadow: 0 10px 30px var(--shadow-light);
}
.products-listing .product-card.visible { opacity: 1 !important; transform: translateY(0) !important; }
.products-listing .product-card:hover { 
    transform: translateY(-8px) !important; 
    border-color: var(--accent-red); 
    box-shadow: 0 20px 50px rgba(229,57,53,0.15); 
}

/* RESİM KONTEYNERI - Yükseklik artırıldı ve hizalama ayarlandı */
.product-img-container {
    position: relative; 
    height: 260px; /* 220'den 260'a çıkarıldı: Resme daha fazla alan açar */
    overflow: hidden;
    background: #ffffff; /* Kenar boşluklarının sırıtmaması için düz beyaz arka plan */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RESİM DOSYASI - Uzaktan görünüm ayarı */
.product-img-file { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; /* ÖNEMLİ: Kesmeyi engeller, resmin tamamını sığdırır */
    padding: 35px;       /* ÖNEMLİ: Resmin kenarlara değmesini engeller, 'uzak çekim' hissi verir */
    transition: transform 0.5s ease; 
    filter: brightness(1); 
}

/* Hover'da aşırı yakınlaşmayı önlemek için scale değeri düşürüldü */
.products-listing .product-card:hover .product-img-file { 
    transform: scale(1.08); 
}

.product-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--accent-red); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 50px;
    box-shadow: 0 4px 12px rgba(229,57,53,0.3);
    z-index: 2;
}

.products-listing .hover-btn {
    position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
    background: var(--accent-red); color: #fff; padding: 10px 24px; border-radius: 50px;
    text-decoration: none; font-size: 13px; font-weight: 600; white-space: nowrap;
    transition: 0.35s; box-shadow: 0 4px 16px rgba(229,57,53,0.3); z-index: 2;
}
.products-listing .product-card:hover .hover-btn { bottom: 14px; }
.products-listing .hover-btn:hover { background: var(--accent-yellow); color: #fff; }

.product-img-container::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.02));
    pointer-events: none;
}

.product-info { padding: 22px 24px 26px; }
.product-info h3 { font-size: 1.05rem; color: var(--text-main); margin-bottom: 8px; font-weight: 600; }
.product-info p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.85; }

.empty-state { grid-column: 1 / -1; text-align: center; padding: 80px 20px; display: none; }
.empty-state i { font-size: 3rem; color: #ddd; margin-bottom: 16px; display: block; }
.empty-state p { color: var(--text-muted); font-size: 1rem; }

.lang-switcher {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 0 15px;
    z-index: 10000 !important; /* Her şeyin üstünde olsun */
    position: relative;
}

.lang-btn {
    background: rgba(229, 57, 53, 0.1) !important; /* Hafif kırmızımsı arka plan */
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    cursor: pointer;
    font-size: 11px !important;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
}

.lang-btn:hover {
    background: #e53935 !important;
    color: white !important;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* Mobilde butonlar kaybolmasın */
@media (max-width: 768px) {
    .lang-switcher {
        margin: 0 5px;
    }
}
/* Google Translate Barını Tamamen Gizle */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon {
    display: none !important;
}
body {
    top: 0px !important;
}

/* Çeviri sonrası metinlerin üzerine gelince çıkan balonu gizle */
.goog-te-balloon-frame {
    display: none !important;
}
font {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Butonları görünür yapalım (Kırmızı arka plan, beyaz yazı) */
.lang-switcher {
    display: flex !important;
    gap: 5px;
    margin: 0 15px;
    z-index: 9999;
}

.lang-btn {
    background: #e53935 !important; /* BioSense Kırmızısı */
    color: white !important;
    border: none !important;
    padding: 5px 10px !important;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.lang-btn:hover {
    background: #b71c1c !important;
}

/* Google'ın eklediği boşluğu ve barı kökten yok et */
html, body {
    top: 0 !important;
    position: static !important;
}

.goog-te-banner-frame, 
.goog-te-banner, 
.goog-te-menu-frame, 
.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}

/* Çeviri sonrası metinlerde çıkan vurguları siler */
font {
    background-color: transparent !important;
    box-shadow: none !important;
    position: relative !important;
}

#goog-gt-tt, .goog-te-balloon-frame {
    display: none !important;
}

/* 4. Butonların yerini ve görünürlüğünü sağlama al */
.lang-switcher {
    display: flex !important;
    gap: 8px;
    margin-left: 20px;
    z-index: 99999 !important;
}

.lang-btn {
    background: #e53935 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    cursor: pointer !important;
    text-transform: uppercase;
}
/* ===== DİL DEĞİŞTİRME BUTONU ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    margin-left: 12px;
    flex-shrink: 0;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center; /* Yazı ortalandı */
    padding: 6px 16px; /* Sağ/sol boşluklar dengelendi */
    font-size: 13px; /* Sadece metin olduğu için hafifçe büyütüldü */
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.55);
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.lang-btn.active {
    background: #e53935;
    color: #fff;
    border-radius: 18px;
}

.lang-btn:hover:not(.active) {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.08);
}

/* Karanlık nav üzerinde iyi duracak şekilde */
.glass-nav .lang-switcher {
    border-color: rgba(255,255,255,0.15);
}

/* Mobilde lang switcher konumu */
@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        margin-right: 8px;
    }
    .lang-btn {
        padding: 5px 14px;
        font-size: 12px;
    }
}

/* Çeviri sırasında geçiş animasyonu */
[data-tr], [data-en] {
    transition: opacity 0.2s ease;
}

