/* Temel Ayarlar ve Renk Paleti */
:root {
    --top-bar-bg: #4b5563; 
    --hero-bg: #fff5f3; 
    --primary-color: #df7a78; 
    --text-dark: #20364b; 
    --text-gray: #5e6d77; 
    --whatsapp-green: #25d366;
    --footer-bg: #2c3e50;
    --light-pink: #fdf2f4; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    color: var(--text-gray);
    background-color: #ffffff; /* Tüm site arka planı bembeyaz */
}

/* EN ÜST BİLGİ ÇUBUĞU */
.top-bar {
    background-color: var(--top-bar-bg);
    color: #e5e7eb;
    font-size: 13px;
    padding: 10px 0;
}
.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.top-contact a, .top-social a, .lang-selector a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s;
}
.top-contact a:hover, .top-social a:hover, .lang-selector a:hover {
    color: var(--primary-color);
}
.divider { margin: 0 10px; opacity: 0.5; }
.top-social-lang { display: flex; align-items: center; }
.top-social a { margin-left: 15px; font-size: 14px; }
.lang-selector { margin-left: 5px; }

/* ANA MENÜ (HEADER) */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo-area { display: flex; align-items: center; gap: 20px; }
.logo-img { height: 70px; object-fit: contain; }
.logo-text {
    font-family: 'Georgia', serif;
    font-size: 22px;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: 0.5px;
}
.logo-text span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-gray);
    display: block;
    margin-top: 4px;
}

/* MASAÜSTÜ MENÜ STİLLERİ */
.main-nav {
    display: block;
}
.main-nav ul { list-style: none; display: flex; gap: 30px; }
.main-nav a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary-color); }

/* ORTAK BUTONLAR */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(223, 122, 120, 0.3);
    transition: transform 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); }

/* HERO ALANI */
.hero-section {
    background-color: var(--hero-bg);
    padding: 80px 0;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}
.hero-image-wrapper { flex: 1; position: relative; }
.image-frame {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    max-width: 400px;
}
.image-frame img { width: 100%; border-radius: 5px; display: block; }
.hero-content { flex: 1.2; }
.hero-content h1 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: 'Georgia', serif;
}
.subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 20px;
}
.feature-list { margin-bottom: 40px; }
.feature-item { display: flex; gap: 15px; margin-bottom: 25px; }
.check-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}
.feature-text h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.feature-text p { font-size: 14px; line-height: 1.6; }

/* KVKK & GİZLİLİK BANDI + İLETİŞİM */
.privacy-section {
    padding: 60px 20px 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.privacy-container {
    background-color: var(--light-pink);
    border-left: 6px solid var(--primary-color);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}
.privacy-title {
    color: var(--primary-color);
    font-family: 'Georgia', serif;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.privacy-container p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.kvkk-contact-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(223, 122, 120, 0.4);
    text-align: center;
}
.kvkk-contact-grid div { flex: 1; }
.kvkk-contact-grid h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}
.kvkk-contact-grid h4 i { margin-right: 5px; }
.kvkk-contact-grid p {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* TÜM HİZMET VE KONU KARTLARI (BEYAZ ARKA PLAN) */
.services-section {
    padding: 20px 0 80px;
    background-color: #ffffff; /* Arka plan tamamen beyaz */
}
.services-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 20px;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    border: 1px solid #f0f0f0;
}
.service-card:hover { transform: translateY(-5px); }
.service-img { width: 100%; height: 220px; object-fit: cover; }
.service-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.service-content h3 {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}
.service-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}
.btn-light {
    display: block;
    text-align: center;
    background-color: var(--light-pink);
    color: var(--primary-color);
    padding: 12px 0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(223, 122, 120, 0.2);
    transition: all 0.3s;
    margin-top: auto; 
}
.btn-light:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* YENİLENMİŞ FOOTER */
footer { background: var(--footer-bg); color: #fff; padding: 60px 20px 20px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; }
.footer-col { flex: 1; }
.contact-link { text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,0.3); transition: color 0.3s; }
.contact-link:hover { color: var(--primary-color) !important; }

/* Footer Sosyal Medya İkonları */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}
.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* SABİT WHATSAPP */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}
.floating-whatsapp:hover { transform: scale(1.05); }

/* MOBİL MENÜ STİLLERİ (HAMBURGER) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001; 
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-dark); 
    transition: 0.3s;
    border-radius: 3px;
}

/* GENEL MOBİL UYUMLULUK */
@media (max-width: 900px) {
    .hero-container, .footer-grid { flex-direction: column; }
    .kvkk-contact-grid { flex-direction: column; gap: 30px; }
    .top-bar-container { flex-direction: column; gap: 10px; text-align: center; }
    .services-container { grid-template-columns: 1fr; }
    
    /* Mobil Menü Aktivasyonu */
    .menu-toggle { 
        display: flex; 
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Başlangıçta ekranın sağında gizli */
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        transition: right 0.4s ease;
        padding-top: 90px;
        z-index: 1000;
        display: block; /* Önceki hatayı düzelten kısım: block olmalı */
    }
    
    .main-nav.active { 
        right: 0; 
    }
    
    .main-nav ul { 
        flex-direction: column; 
        align-items: flex-start; 
        padding: 0 30px;
    }
    
    .main-nav ul li { 
        margin: 15px 0; 
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 10px;
    }
}