/* CSS Reset ve Değişkenler */
:root {
    --primary-dark: #1E463A;    /* Koyu Orman Yeşili */
    --primary-light: #34A853;   /* Canlı Zümrüt Yeşili */
    --bg-color: #f7f9f8;        /* Çok açık yeşilimsi gri */
    --bg-light-green: #e8f5e9;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --white: #ffffff;
    --wa-green: #25d366;
    --wa-hover: #128c7e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1; /* Footer'ı her zaman en alta iter */
}

h1, h2, h3, h4 { line-height: 1.2; margin-bottom: 1rem; color: var(--primary-dark); }
p { margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 5rem 0; }

.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 3rem; position: relative; }
.section-title::after {
    content: ''; display: block; width: 60px; height: 4px;
    background-color: var(--primary-light); margin: 15px auto 0; border-radius: 2px;
}

/* Header / Navbar */
header { background-color: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-size: 1.4rem; font-weight: 700; color: var(--primary-dark); display: flex; align-items: center; gap: 10px; }
.logo img { height: 50px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 20px; font-weight: 500; }
.logo small {
    font-size: 0.6em;
    font-weight: normal;
    color: var(--text-muted);
}
.nav-links a { transition: color 0.3s; }
.nav-links a:hover { color: var(--primary-light); }

/* Header CTA Butonu */
.btn-cta {
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Header sağ blok: dil seçici + randevu butonu */
.header-right { display: flex; align-items: center; gap: 14px; }

/* Dil Seçici */
.lang-switcher { position: relative; }
.lang-switcher-btn {
    display: flex; align-items: center; gap: 6px;
    background-color: var(--bg-light-green);
    border: 1px solid transparent;
    padding: 8px 12px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-family: inherit;
}
.lang-switcher-btn:hover { background-color: #d7ecdb; }
.lang-switcher-btn svg { transition: transform 0.2s ease; }
.lang-switcher-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.lang-flag { display: inline-flex; align-items: center; line-height: 1; }
.lang-flag img { display: block; width: 20px; height: 15px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }
.lang-switcher-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    list-style: none;
    padding: 6px;
    min-width: 170px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 200;
}
.lang-switcher-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-switcher-menu li { margin: 0; }
.lang-switcher-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.92rem;
    font-weight: 500;
}
.lang-switcher-menu a:hover { background-color: var(--bg-light-green); }

[dir="rtl"] .lang-switcher-menu { right: auto; left: 0; }

/* Sayfa Başlığı (Cihazlarımız, İletişim vb. sayfalar için) */
.page-header {
    background: var(--primary-dark);
    color: var(--white); text-align: center; padding: 5rem 0;
}
.page-header h1, .page-header h2 { color: var(--white); }
.page-header-desc {
    margin-top: 15px; color: #cbd5e0; font-size: 1.1rem;
    max-width: 600px; margin-left: auto; margin-right: auto;
}

/* Yasal Sayfalar (KVKK / Çerez Politikası) */
.legal-section { background-color: var(--white); }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin-top: 2.2rem; color: var(--primary-dark); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-dark); line-height: 1.8; }
.legal-content ul { padding-left: 22px; margin-bottom: 1rem; }
[dir="rtl"] .legal-content ul { padding-left: 0; padding-right: 22px; }
.legal-content a { color: var(--primary-light); text-decoration: underline; }
.legal-updated { margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid #e2e8f0; color: var(--text-muted); font-size: 0.9rem; }

/* Butonlar */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 50px; font-size: 1.1rem; font-weight: 600; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-wa { background-color: var(--wa-green); color: var(--white); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
.btn-wa:hover { background-color: var(--wa-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
.btn-light { background-color: var(--white); color: var(--primary-dark); }
.btn-light:hover { background-color: #f0f0f0; }
.btn-primary { background-color: var(--primary-light); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); }
.btn-dark { background-color: var(--primary-dark); color: var(--white); }
.btn-dark:hover { background-color: var(--primary-light); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-lg svg { margin-left: 10px; }

/* Hizmetler ve Gridler */
.about, .why-us { background-color: var(--white); }
.about-content { max-width: 800px; margin: 0 auto; text-align: center; font-size: 1.15rem; color: var(--text-muted); }
.products-summary .section-subtitle { max-width: 700px; margin: -10px auto 30px; font-size: 1.15rem; color: var(--text-muted); }
.bg-white { background-color: var(--white); }
.text-center { text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eef2f0;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
}
.service-icon {
    width: 60px; height: 60px; margin: 0 auto 20px;
    background-color: var(--bg-light-green); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.service-icon svg {
    width: 30px; height: 30px; fill: var(--primary-light);
}
.service-card-image {
    width: 100%;
    height: 180px; /* Resim için sabit bir yükseklik */
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmin orantısını bozmadan alanı kaplamasını sağlar */
}

/* CTA Section */
.cta-section { background-color: var(--primary-dark); color: var(--white); text-align: center; padding: 6rem 0; }
.cta-section h2 { color: var(--white); margin-bottom: 20px; }
.cta-section p { color: #cbd5e0; max-width: 600px; margin: 0 auto 30px; font-size: 1.1rem; }

/* Footer */
/* --- YENİLENMİŞ FOOTER STİLLERİ --- */
.site-footer { 
    background-color: var(--primary-dark);
    color: #94a3b8; 
    padding: 5rem 0 0 0; 
    margin-top: auto; 
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-light);
    border-radius: 2px;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Sosyal Medya İkonları */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: #94a3b8;
    transition: fill 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.social-links a:hover svg {
    fill: var(--white);
}

/* İletişim Listesi (Adres, Tel, Email) */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-list svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-list a {
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--white);
}

/* Önemli Bağlantılar */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(8px); /* Üzerine gelince sağa kayma efekti */
}

/* Footer Alt (Telif Hakkı) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.copyright {
    font-size: 0.95rem;
}

/* Footer İçi WhatsApp Butonu */
.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--wa-green);
    color: var(--white) !important; /* Diğer link renklerinden etkilenmesin */
    padding: 10px 20px;
    border-radius: 6px;
    margin-top: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-wa-btn:hover {
    background-color: var(--wa-hover);
    transform: translateY(-3px);
}

/* WhatsApp Floating */
.wa-float { position: fixed; bottom: 30px; right: 30px; background-color: var(--wa-green); color: var(--white); width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 1000; transition: all 0.3s ease; animation: wa-pulse 2.5s infinite; }
.wa-float:hover { background-color: var(--wa-hover); transform: scale(1.1); animation: none; box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.wa-float svg { width: 35px; height: 35px; fill: currentColor; }

/* --- YENİLENMİŞ BÖLÜMLER --- */

/* Müşteri Deneyimleri (Testimonials) */
.testimonial-track-wrapper {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.testimonial-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: testimonial-scroll 35s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes testimonial-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 15px)); }
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-track { animation: none; }
}

.testimonial-card {
    flex: 0 0 320px;
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eef2f0;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
}

.testimonial-card .stars {
    color: #f59e0b; /* Altın Sarısı */
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin: 0;
}

/* --- SSS (Akordiyon) Stilleri --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.05);
}

.faq-btn {
    background-color: transparent;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-btn:hover {
    background-color: #f8fafc;
}

.faq-btn.active {
    background-color: var(--bg-light-green);
    color: var(--primary-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-light);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    background-color: #fff;
}

.faq-content p {
    padding: 0 25px 20px 25px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* --- BİLGİ KÖŞESİ (Afiş Galerisi) --- */
.info-gallery .section-subtitle {
    max-width: 700px;
    margin: -2rem auto 3rem;
    font-size: 1.15rem;
    color: var(--text-muted);
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.info-card {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f0;
}
.info-card img {
    display: block;
    width: 100%;
    height: auto;
    cursor: zoom-in;
    transition: transform 0.4s ease;
}
.info-card:hover img {
    transform: scale(1.04);
}

/* Lightbox (Büyük Görsel Pop-up) */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.88);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.lightbox.active {
    display: flex;
    animation: lightboxFade 0.25s ease;
}
.lightbox-img {
    max-width: 92%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    cursor: default;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}
@keyframes lightboxFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- YENİ HERO BÖLÜMÜ (ANA SAYFA) --- */
.hero {
    background-color: var(--white);
    padding: 5rem 0;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}
.hero-content .badge {
    display: inline-block;
    background-color: var(--bg-light-green);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.hero-content h1 {
    font-size: 3.2rem; /* Boyut ayarlandı */
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}
.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2.5rem;
}
.hero-image {
    position: relative;    
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--bg-light-green), var(--white));
    border-radius: 16px;
}
.hero-image img {
    max-width: 90%; /* Resmin kenarlardan biraz içeride durması için */
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(20, 40, 30, 0.1);
}

/* --- İLETİŞİM SAYFASI ÖZEL STİLLERİ --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Yarı yarıya bölünmüş yapı */
    gap: 40px;
    align-items: start;
}

.contact-section {
    padding: 4rem 0;
}

.contact-info-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detail-item strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contact-form-container h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.form-hr {
    margin: 2rem 0; border: 0; border-top: 1px solid #eee;
}

.contact-cta-box h3 { margin-bottom: 10px; font-size: 1.5rem; }
.contact-cta-box p { color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.contact-cta-buttons .btn { flex: 1 1 220px; }

.form-group {
    margin-bottom: 15px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-light);
}
.w-100 { width: 100%; }

.form-footer-note {
    font-size: 0.85rem; color: #718096; margin-top: 15px; text-align: center;
}

.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
}
.form-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.form-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.contact-map {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
}

.contact-map-iframe {
    border:0;
    min-height: 450px;
}

/* Mobilde harita alta insun */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-map {
        height: 400px;
    }
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Aktif Nav Linki */
.nav-links a.nav-active {
    color: var(--primary-light);
    font-weight: 700;
}

/* Masaüstünde Hamburger Butonunu Gizle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* --- CİHAZLARIMIZ SAYFASI (ÜRÜN KARTLARI) --- */
.products {
    padding: 4rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);    
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eef2f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
}

.product-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 25px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 { margin-bottom: 10px; }
.product-info p { color: var(--text-muted); flex-grow: 1; }
.btn-outline { border: 2px solid var(--primary-light); color: var(--primary-light); background-color: transparent; padding: 12px 28px; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; display: inline-block; margin-top: auto; }
.btn-outline:hover { background-color: var(--primary-light); color: var(--white); transform: translateY(-2px); }
.product-features {
    text-align: left;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding-left: 20px;
}

.mb-0 { margin-bottom: 0; }

/* ----------------------------------- */
/* SCROLL PROGRESS BAR                 */
/* ----------------------------------- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    z-index: 99999;
    pointer-events: none;
    transition: width 0.08s linear;
}

/* ----------------------------------- */
/* KVKK / ÇEREZ BANNER                 */
/* ----------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #162f28;
    color: #94a3b8;
    padding: 18px 24px;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(110%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 0.88rem; line-height: 1.5; }
.cookie-banner a { color: var(--primary-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
    background: var(--primary-light);
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.2s;
}
.cookie-accept:hover { background: var(--primary-dark); }
.cookie-decline {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 9px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.2s;
}
.cookie-decline:hover { color: white; border-color: rgba(255,255,255,0.4); }

/* ----------------------------------- */
/* RANDEVU FORMU EKLENTİLERİ           */
/* ----------------------------------- */
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    color: var(--text-dark);
    background-color: white;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23718096' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}
.form-group select:focus { border-color: var(--primary-light); }

.form-check {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
}
.form-check input[type="checkbox"] {
    width: auto !important;
    flex-shrink: 0;
    margin-top: 4px;
    accent-color: var(--primary-light);
    cursor: pointer;
}
.form-check label {
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.5;
}

/* ----------------------------------- */
/* KARŞILAŞTIRMA TABLOSU               */
/* ----------------------------------- */
.comparison-section { padding: 5rem 0; background: var(--white); }
.comparison-section .section-subtitle {
    max-width: 600px;
    margin: -2rem auto 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.comparison-wrapper { overflow-x: auto; border-radius: 12px; }
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 560px;
}
.comparison-table thead th {
    background: var(--primary-dark);
    color: white;
    padding: 16px 18px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.3;
}
.comparison-table thead th small {
    display: block;
    font-weight: 400;
    font-size: 0.78rem;
    opacity: 0.8;
    margin-top: 3px;
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table thead th.col-highlight { background: #2a5c4e; }
.comparison-table td {
    padding: 13px 18px;
    text-align: center;
    border-bottom: 1px solid #eef2f0;
    color: var(--text-dark);
}
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--primary-dark);
    background: #f8faf9;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) td { background: #f8faf9; }
.comparison-table tbody tr:nth-child(even) td:first-child { background: #f0f4f2; }
.comparison-table tbody tr:hover td { background: var(--bg-light-green) !important; transition: background 0.2s; }
.comparison-table .check  { color: var(--primary-light); font-weight: 700; }
.comparison-table .cross  { color: #e53e3e; font-weight: 700; }
.comparison-table .partial { color: #d97706; font-weight: 600; }

/* ----------------------------------- */
/* BLOG SAYFASI                        */
/* ----------------------------------- */
.blog-section { padding: 5rem 0; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.05);
    border: 1px solid #eef2f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.07), 0 4px 6px -4px rgba(0,0,0,0.07);
}
.blog-card-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}
.blog-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-category {
    display: inline-block;
    background: var(--bg-light-green);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}
.blog-card-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.35;
    color: var(--primary-dark);
}
.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 0;
}
.blog-card-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.blog-card-date { font-size: 0.82rem; color: var(--text-muted); }
.blog-read-btn {
    background: none;
    border: none;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    padding: 0;
    transition: letter-spacing 0.2s;
    white-space: nowrap;
}
.blog-read-btn:hover { letter-spacing: 0.04em; }

.blog-cta-box {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--primary-dark), #2a5c4e);
    border-radius: 16px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: white;
}
.blog-cta-box h3 { color: white; margin-bottom: 8px; }
.blog-cta-box p  { color: #cbd5e0; margin: 0; }
.blog-cta-box .btn-primary { flex-shrink: 0; }

/* ----------------------------------- */
/* BLOG MAKALE MODALI                  */
/* ----------------------------------- */
.blog-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.blog-modal.active {
    display: flex;
    animation: lightboxFade 0.25s ease;
}
.blog-modal-inner {
    background: white;
    border-radius: 16px;
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    padding: 48px;
    position: relative;
}
.blog-modal-inner .modal-meta {
    display: block;
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blog-modal-inner .modal-title {
    font-size: 1.9rem;
    color: var(--primary-dark);
    margin-bottom: 24px;
    line-height: 1.25;
}
.blog-modal-inner .modal-body-content p  { margin-bottom: 1rem; color: var(--text-dark); line-height: 1.75; }
.blog-modal-inner .modal-body-content ul { padding-left: 22px; margin-bottom: 1rem; }
.blog-modal-inner .modal-body-content li { margin-bottom: 8px; line-height: 1.65; }
.blog-modal-inner .modal-body-content strong { color: var(--primary-dark); }
.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
    padding: 4px 8px;
}
.modal-close:hover { color: var(--primary-dark); }

/* ----------------------------------- */
/* WA FLOAT — PULSE ANİMASYON          */
/* ----------------------------------- */
@keyframes wa-pulse {
    0%   { box-shadow: 0 4px 15px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
    70%  { box-shadow: 0 4px 15px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ----------------------------------- */
/* MOBİL VE TABLET GÖRÜNÜMÜ SIKILAŞTIRMA */
/* ----------------------------------- */
@media (max-width: 768px) {
    .nav-container {
        height: 75px;
    }

    .menu-toggle {
        display: block; /* Hamburger ikonunu göster */
    }

    /* Mobil Menü (Gizli Halde Başlar) */
    .nav-links {
        display: none; /* Başlangıçta gizli */
        position: absolute;
        top: 75px; /* Header yüksekliğine göre ayarlanabilir */
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        gap: 0;
    }

    .header-cta {
        display: none; /* Mobilde üstteki butonu gizle */
    }

    .lang-switcher-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    /* Menü açıldığında devreye girecek class */
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #f1f5f9;
        font-size: 1.1rem;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Yeni Hero Mobil Görünüm */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-image {
        margin-top: 3rem;
        grid-row: 1; /* Resmi üste taşı */
    }
    .wa-float { bottom: 20px; right: 20px; width: 55px; height: 55px; }
    .wa-float svg { width: 30px; height: 30px; }
    
    /* Footer mobilde ortalansın */
    .footer-col { text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    .contact-list li { flex-direction: column; align-items: center; text-align: center; gap: 5px; }

    /* Cookie banner mobil */
    .cookie-banner { flex-direction: column; text-align: center; gap: 14px; }
    .cookie-btns { justify-content: center; width: 100%; }
    .cookie-accept, .cookie-decline { flex: 1; }

    /* Blog mobil */
    .blog-cta-box { flex-direction: column; text-align: center; padding: 30px 24px; }
    .blog-modal-inner { padding: 30px 20px; }
    .blog-modal-inner .modal-title { font-size: 1.4rem; }

    /* Karşılaştırma tablosu */
    .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 0.88rem; }
}

/* ----------------------------------- */
/* RTL DESTEĞİ (Arapça)                */
/* ----------------------------------- */
[dir="rtl"] {
    text-align: right;
}
[dir="rtl"] .faq-btn { text-align: right; }
[dir="rtl"] .product-features {
    text-align: right;
    padding-left: 0;
    padding-right: 20px;
}
[dir="rtl"] .comparison-table thead th:first-child,
[dir="rtl"] .comparison-table td:first-child {
    text-align: right;
}
[dir="rtl"] .btn-lg svg,
[dir="rtl"] .products-summary svg {
    margin-left: 0;
    margin-right: 10px;
    transform: scaleX(-1);
}
[dir="rtl"] .page-header-desc,
[dir="rtl"] .section-subtitle,
[dir="rtl"] .about-content {
    margin-left: auto;
    margin-right: auto;
}
[dir="rtl"] .footer-col h4::after {
    left: auto;
    right: 0;
}
[dir="rtl"] .wa-float { right: auto; left: 30px; }
[dir="rtl"] .lightbox-close { right: auto; left: 30px; }
[dir="rtl"] .modal-close { right: auto; left: 20px; }