/* =========================================
   1. GENEL AYARLAR VE DEĞİŞKENLER
   ========================================= */
:root {
    --primary: #0f172a;       /* Koyu Lacivert (Ana Renk) */
    --accent: #f97316;        /* Turuncu (Vurgu) */
    --accent-hover: #ea580c;
    --light: #f8fafc;         
    --white: #ffffff;
    --text: #334155;          
    --gray-soft: #e2e8f0;
    --whatsapp: #25D366;      
    
    /* Instagram Gradyanı */
    --instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    
    /* Koyu Hero Gradyanı */
    --gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    
    /* Gölgelendirmeler */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; scroll-behavior: smooth; }
body { background-color: var(--white); color: var(--text); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
a { text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* =========================================
   2. NAVBAR (MENÜ)
   ========================================= */
.navbar { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(12px); position: fixed; width: 100%; top: 0; z-index: 1000; transition: 0.3s ease; border-bottom: 1px solid rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-size: 1.8rem; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.logo span { color: var(--accent); }

.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-menu a { color: var(--primary); font-weight: 500; font-size: 1rem; transition: 0.3s; position: relative; }
.nav-menu a:not(.nav-btn)::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--accent); transition: width 0.3s; }
.nav-menu a:not(.nav-btn):hover::after { width: 100%; }

/* Aktif Sayfa Rengi */
.active-link { color: var(--accent) !important; }
.nav-icon { font-size: 1.4rem; color: var(--primary); }
.nav-icon:hover { color: var(--accent); }

.nav-btn { background: var(--primary); color: white !important; padding: 12px 28px; border-radius: 50px; transition: 0.3s; font-weight: 600; box-shadow: var(--shadow-sm); }
.nav-btn:hover { background: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hamburger { display: none; font-size: 1.6rem; cursor: pointer; color: var(--primary); }

/* =========================================
   3. HERO (GİRİŞ) ALANI - ANASAYFA
   ========================================= */
.hero-section { 
    padding: 180px 0 140px; 
    text-align: center; 
    position: relative; 
    color: white; 
    background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gradient-hero);
    opacity: 0.9;
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }

.badge-seo { display: inline-block; background: rgba(249, 115, 22, 0.15); color: #fdba74; padding: 8px 20px; border-radius: 30px; font-size: 0.95rem; font-weight: 600; margin-bottom: 25px; border: 1px solid rgba(249, 115, 22, 0.3); backdrop-filter: blur(5px); }

.hero-content h1 { font-size: 4rem; margin-bottom: 25px; line-height: 1.1; font-weight: 800; letter-spacing: -1px; }

/* DÜZELTİLEN KISIM: Highlight artık sabit yazı içermiyor */
.highlight { 
    color: var(--accent); 
    display: inline-block; 
    position: relative; 
}

.hero-content p { font-size: 1.3rem; opacity: 0.9; max-width: 750px; margin: 0 auto 40px; font-weight: 300; line-height: 1.7; }

.cta-group { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; }
.trust-badges { display: flex; justify-content: center; gap: 30px; font-size: 0.95rem; opacity: 0.8; flex-wrap: wrap; }
.trust-badges i { color: var(--accent); margin-right: 8px; }

/* =========================================
   4. BUTONLAR
   ========================================= */
.btn { padding: 16px 36px; border-radius: 50px; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; font-size: 1rem; border: none; cursor: pointer; }

.btn-whatsapp { background: var(--whatsapp); color: white; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-4px); box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4); }

.btn-primary { background: var(--primary); color: white; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: white; }

.btn-outline-light { border: 2px solid rgba(255,255,255,0.3); color: white; background: transparent; }
.btn-outline-light:hover { background: white; color: var(--primary); border-color: white; }

.btn-small { background: var(--accent); color: white; padding: 10px 20px; font-size: 0.9rem; border-radius: 8px; font-weight: 600; }
.btn-small:hover { background: var(--accent-hover); }

/* Instagram Promo Alanı için Beyaz Buton */
.btn-white { background: white; color: #cc2366 !important; padding: 15px 40px; border-radius: 50px; font-weight: 700; font-size: 1.1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-white:hover { transform: scale(1.05); background: #fff1f2; }

/* =========================================
   5. İSTATİSTİKLER
   ========================================= */
.stats-counter { background: var(--white); padding: 40px 0; position: relative; z-index: 5; margin-top: -30px; width: 90%; margin-left: auto; margin-right: auto; border-radius: 15px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.stats-wrapper { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 30px; }
.stat-box { text-align: center; color: var(--primary); }
.stat-box i { font-size: 2rem; color: var(--accent); margin-bottom: 10px; background: #fff7ed; padding: 15px; border-radius: 50%; }
.stat-box h3 { font-size: 2rem; font-weight: 800; margin-bottom: 5px; }
.stat-box p { font-size: 0.9rem; color: #64748b; font-weight: 600; text-transform: uppercase; }

/* =========================================
   6. SECTIONS GENEL
   ========================================= */
.section-padding { padding: 100px 0; }
.bg-light { background-color: #f8fafc; }
.bg-white { background-color: #fff; }
.pattern-bg {
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 30px 30px;
}
.mt-50 { margin-top: 50px; }

.section-header { text-align: center; margin-bottom: 70px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.8rem; color: var(--primary); margin-bottom: 20px; font-weight: 800; letter-spacing: -1px; }
.section-header p { color: #64748b; font-size: 1.2rem; }

/* =========================================
   7. FİYAT KARTLARI
   ========================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.price-card { background: white; padding: 50px 35px; border-radius: 20px; box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9; transition: all 0.4s ease; position: relative; display: flex; flex-direction: column; overflow: hidden; }
.card-top-accent { height: 5px; width: 100%; background: var(--primary); position: absolute; top: 0; left: 0; }

.price-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); border-color: transparent; }

.price-card.featured { border: 2px solid var(--accent); transform: scale(1.05); z-index: 2; box-shadow: var(--shadow-md); }
.price-card.featured:hover { transform: scale(1.08); box-shadow: var(--shadow-lg); }

.popular-tag { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; padding: 8px 25px; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; }

.price-header { text-align: center; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px dashed #e2e8f0; }
.price-header h3 { color: var(--primary); font-size: 1.4rem; margin-bottom: 15px; font-weight: 700; }
.price { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.per-month { font-size: 1rem; color: #94a3b8; font-weight: 400; }
.service-fee-note { font-size: 0.85rem; color: #94a3b8; margin-top: 5px; }

.price-features { margin-bottom: 35px; flex-grow: 1; }
.price-features li { margin-bottom: 15px; font-size: 1rem; display: flex; align-items: flex-start; gap: 12px; color: #475569; }
.price-features i { color: var(--accent); font-size: 1.1rem; margin-top: 4px; }

/* =========================================
   8. EK HİZMETLER (Banner)
   ========================================= */
.extra-services { margin-top: 70px; }
.ecommerce-banner { border-radius: 20px; display: flex; align-items: center; padding: 40px; color: white; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); gap: 30px; }
.ecommerce-banner .cart-icon { font-size: 3.5rem; color: var(--accent); }
.banner-text { flex: 1; }
.banner-text h3 { font-size: 1.8rem; margin-bottom: 10px; font-weight: 700; }
.banner-text p { opacity: 0.9; }

/* =========================================
   9. GOOGLE ADS SÜREÇ
   ========================================= */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.process-step { background: white; padding: 30px 20px; border-radius: 15px; text-align: center; transition: 0.3s; border: 1px solid #e2e8f0; }
.process-step:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-icon { width: 70px; height: 70px; background: #fff7ed; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; color: var(--accent); }
.process-step h4 { margin-bottom: 10px; color: var(--primary); font-size: 1.2rem; }
.process-step p { font-size: 0.95rem; color: #64748b; }

/* =========================================
   10. LEAD MAGNET (FORM - SPLIT LAYOUT)
   ========================================= */
.offer-section { background: var(--gradient-hero); padding: 80px 0; color: white; }
.offer-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: white; border-radius: 25px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.25); max-width: 1100px; margin: 0 auto; }

/* Sol Taraf (Görsel) */
.offer-visual { 
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=800&q=80') no-repeat center center; 
    background-size: cover; 
    position: relative; 
    display: flex; 
    align-items: center; 
    padding: 50px;
}
.offer-visual::before { content: ''; position: absolute; inset: 0; background: rgba(15, 23, 42, 0.85); }
.offer-text-block { position: relative; z-index: 2; color: white; }

.discount-badge { background: var(--accent); color: white; padding: 6px 15px; border-radius: 6px; font-weight: 700; font-size: 0.85rem; display: inline-block; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.offer-text-block h2 { font-size: 2.2rem; margin-bottom: 15px; line-height: 1.2; }
.offer-text-block p { margin-bottom: 30px; opacity: 0.9; line-height: 1.6; }
.offer-list li { margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
.offer-list i { color: var(--accent); }

/* Sağ Taraf (Form) */
.offer-form-wrapper { padding: 50px; background: white; color: var(--text); display: flex; flex-direction: column; justify-content: center; }
.offer-form-wrapper h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 5px; }
.form-subtext { color: #64748b; margin-bottom: 25px; font-size: 0.95rem; }

.form-group { position: relative; margin-bottom: 20px; }
.form-group i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #94a3b8; font-size: 1rem; transition: 0.3s; }
.form-group input, .form-group select { width: 100%; padding: 16px 16px 16px 50px; border: 2px solid #e2e8f0; border-radius: 12px; font-size: 1rem; outline: none; transition: 0.3s; background: #f8fafc; color: var(--primary); font-weight: 500; appearance: none; }
.form-group input:focus, .form-group select:focus { border-color: var(--accent); background: white; box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1); }
.form-group input:focus + i { color: var(--accent); }

.btn-submit { width: 100%; padding: 18px; background: var(--primary); color: white; border: none; border-radius: 12px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 10px; }
.btn-submit:hover { background: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.form-note { text-align: center; font-size: 0.8rem; color: #94a3b8; margin-top: 20px; }

/* =========================================
   11. FAQ (SSS)
   ========================================= */
.faq-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; }
.faq-card { background: #fff; border: 1px solid #e2e8f0; padding: 35px; border-radius: 15px; display: flex; align-items: flex-start; gap: 20px; transition: 0.3s; }
.faq-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.faq-icon { color: var(--accent); font-size: 1.5rem; background: #fff7ed; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 10px; flex-shrink: 0; }
.faq-text h4 { color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; font-weight: 700; }
.faq-text p { color: #64748b; font-size: 0.95rem; line-height: 1.6; }

/* =========================================
   12. BLOG SAYFASI ÖZEL TASARIMLARI
   ========================================= */

/* Blog Hero Alanı */
.blog-hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.blog-hero-content { position: relative; z-index: 2; }
.blog-hero-content h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.blog-hero-content p { font-size: 1.3rem; max-width: 600px; margin: 0 auto; opacity: 0.9; }

/* YENİ EKLENEN: Blog Hero Koyu Filtre */
.blog-hero-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

/* YENİ EKLENEN: Blog Hero Cam Kutu */
.blog-content-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

/* YENİ EKLENEN: Blog Başlık Rengi */
.text-orange {
    color: var(--accent);
    display: inline-block;
    position: relative;
    text-shadow: none;
}

/* Blog Kartları (Makaleler) */
.blog-card {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
}

.blog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: var(--accent); }

/* Görseli sağa alma (Reverse) */
.blog-card.reverse { flex-direction: row-reverse; }

.blog-img { flex: 1; min-height: 350px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.1); }

.blog-content { flex: 1; padding: 50px; display: flex; flex-direction: column; justify-content: center; }

.blog-tag { 
    color: var(--accent); font-weight: 800; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 15px; 
    text-transform: uppercase; display: inline-block;
}

.blog-content h3 { font-size: 2rem; color: var(--primary); margin-bottom: 20px; line-height: 1.2; }
.blog-content p { color: #64748b; margin-bottom: 25px; font-size: 1.1rem; }

.blog-list { margin-bottom: 30px; }
.blog-list li { margin-bottom: 12px; position: relative; padding-left: 20px; color: #475569; }
.blog-list li::before { content: '•'; color: var(--accent); position: absolute; left: 0; font-size: 1.5rem; line-height: 1rem; top: 2px; }
.blog-list li strong { color: var(--primary); }

.read-more { 
    display: inline-flex; align-items: center; gap: 10px; color: var(--primary); font-weight: 700; transition: 0.3s;
    border-bottom: 2px solid transparent; width: fit-content;
}
.read-more:hover { color: var(--accent); gap: 15px; border-bottom-color: var(--accent); }

/* Instagram Promo Alanı */
.instagram-promo {
    background: var(--instagram);
    padding: 60px 0;
    color: white;
    margin-bottom: -5px; /* Footer boşluğunu silmek için */
}

.insta-content { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.insta-icon-box { font-size: 4rem; display: flex; align-items: center; }
.insta-text h2 { font-size: 2rem; margin-bottom: 10px; }
.insta-text p { font-size: 1.1rem; opacity: 0.9; }

/* =========================================
   13. FOOTER
   ========================================= */
.footer { background: var(--primary); color: white; padding: 90px 0 30px; border-top: 5px solid var(--accent); }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-left { max-width: 450px; }
.footer-left p { opacity: 0.7; margin: 20px 0; }
.social-links-footer { display: flex; gap: 15px; margin-bottom: 25px; }
.social-links-footer a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: white; transition: 0.3s; }
.social-links-footer a:hover { background: var(--accent); transform: translateY(-3px); }

.contact-details { display: flex; flex-direction: column; gap: 15px; }
.contact-link { color: white; font-weight: 500; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.contact-link:hover { color: var(--accent); }

.footer-right h3 { font-size: 1.6rem; margin-bottom: 15px; }
.footer-right p { opacity: 0.7; margin-bottom: 25px; max-width: 350px; }
.footer-buttons { display: flex; gap: 15px; }

.copyright { text-align: center; padding-top: 30px; font-size: 0.9rem; color: #94a3b8; }
.copyright a { color: #cbd5e1; }

/* =========================================
   14. YÜZEN ÖGELER (WHATSAPP & KVKK)
   ========================================= */
.whatsapp-sticky { position: fixed; bottom: 30px; right: 30px; background: var(--whatsapp); color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 999; transition: 0.3s; }
.whatsapp-sticky:hover { transform: scale(1.1); }
.pulse-anim { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

.tooltip { position: absolute; right: 75px; background: white; color: var(--primary); padding: 8px 15px; border-radius: 8px; font-size: 14px; font-weight: 700; opacity: 0; pointer-events: none; transition: 0.3s; white-space: nowrap; box-shadow: var(--shadow-md); transform: translateX(10px); }
.whatsapp-sticky:hover .tooltip { opacity: 1; transform: translateX(0); }

/* KVKK Banner */
.cookie-banner { position: fixed; bottom: -120px; left: 20px; right: 20px; max-width: 1000px; margin: 0 auto; background: white; padding: 20px 30px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: space-between; gap: 20px; z-index: 9999; transition: bottom 0.5s ease; border: 1px solid #e2e8f0; }
.cookie-banner.show { bottom: 20px; }
.cookie-content { display: flex; align-items: center; gap: 15px; color: var(--primary); font-size: 0.95rem; }
.cookie-icon { font-size: 1.5rem; color: var(--accent); }
.btn-cookie { background: var(--primary); color: white; border: none; padding: 10px 25px; border-radius: 8px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: 0.3s; }
.btn-cookie:hover { background: var(--accent); }


/* =========================================
   15. MOBİL UYUM (RESPONSIVE)
   ========================================= */
@media (max-width: 992px) {
    .offer-layout { grid-template-columns: 1fr; max-width: 600px; }
    .offer-visual { padding: 40px; text-align: center; }
    .offer-list { justify-content: center; display: inline-block; text-align: left; }
    .hero-content h1 { font-size: 3rem; }
    .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    
    /* Blog Mobil */
    .blog-card, .blog-card.reverse { flex-direction: column; }
    .blog-img { min-height: 250px; }
    .blog-content { padding: 30px; }
    .blog-hero-content h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-menu { position: fixed; left: -100%; top: 80px; flex-direction: column; background: white; width: 100%; text-align: center; padding: 40px 0; transition: 0.3s; box-shadow: 0 5px 10px rgba(0,0,0,0.1); border-top: 1px solid #f1f5f9; height: calc(100vh - 80px); justify-content: flex-start; gap: 40px; }
    .nav-menu.active { left: 0; }
    .hamburger { display: block; }
    
    .hero-section { padding: 140px 0 100px; background-attachment: scroll; } 
    .hero-content h1 { font-size: 2.2rem; line-height: 1.2; }
    .hero-content p { font-size: 1.1rem; padding: 0 15px; }
    
    .cta-group { flex-direction: column; width: 100%; padding: 0 20px; }
    .btn { justify-content: center; width: 100%; padding: 18px; font-size: 1.1rem; }
    
    .price-card.featured { transform: scale(1); }
    .ecommerce-banner { flex-direction: column; text-align: center; padding: 30px 20px; }
    
    .stats-counter { width: 100%; border-radius: 0; margin-top: 0; }
    .stats-wrapper { gap: 40px; }
    
    .offer-form-wrapper { padding: 30px 20px; }
    .footer-content { flex-direction: column; text-align: center; gap: 40px; }
    .social-links-footer { justify-content: center; }
    .footer-buttons { flex-direction: column; }
    .contact-details { align-items: center; }
    
    .faq-container { grid-template-columns: 1fr; }
    .faq-card { flex-direction: column; align-items: center; text-align: center; }
    
    .cookie-banner { flex-direction: column; padding: 20px; text-align: center; }
    .cookie-content { flex-direction: column; }
    .btn-cookie { width: 100%; padding: 15px; }
    
    .insta-content { flex-direction: column; text-align: center; }
    .btn-white { width: 100%; justify-content: center; }

    /* YENİ: Blog Kutusunun mobilde kenar boşlukları */
    .blog-content-box { padding: 20px; margin: 0 15px; }
}
/* =========================================
   16. BİLGİ KUTULARI (TERİMLER SÖZLÜĞÜ)
   ========================================= */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--accent);
}

.icon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.icon-header i {
    font-size: 1.8rem;
    color: var(--accent);
    background: #fff7ed;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.icon-header h3 {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
}

.info-box p {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-box ul {
    list-style: none;
    margin-left: 5px;
}

.info-box ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #334155;
}

.info-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--whatsapp);
    font-weight: bold;
}

.info-box .note {
    font-size: 0.8rem;
    background: #f1f5f9;
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid var(--primary);
    margin-top: 15px;
    font-weight: 600;
}

.detail-list li strong {
    color: var(--accent);
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .info-grid { grid-template-columns: 1fr; }
}
/* =========================================
   17. GOOGLE ADS SÖZLÜK TASARIMI
   ========================================= */

.dictionary-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
    width: fit-content;
    padding-right: 30px;
}

.category-title i {
    color: var(--accent);
    background: rgba(249, 115, 22, 0.1);
    padding: 10px;
    border-radius: 8px;
    font-size: 1.2rem;
}

.dictionary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.dict-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.dict-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.dict-card h4 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.dict-sub {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.dict-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Mobilde başlıkların tam genişlik olması için */
@media (max-width: 768px) {
    .category-title {
        width: 100%;
        font-size: 1.3rem;
    }
}
/* =========================================
   18. PAKET DETAYLARI VE KARŞILAŞTIRMA
   ========================================= */

.package-explain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.pkg-explain-card {
    border-radius: 20px;
    background: white;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    position: relative;
}

/* Giriş Paketi Stili */
.pkg-explain-card.bronze {
    border-top: 5px solid #cd7f32; /* Bronz renk */
}

/* Büyüme Paketi Stili */
.pkg-explain-card.silver {
    border-top: 5px solid var(--accent); /* Turuncu renk */
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
    transform: scale(1.02); /* Biraz daha büyük durur */
    z-index: 2;
}

.pkg-header {
    background: #f8fafc;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.icon-badge {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.pkg-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.fee-note {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 400;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pkg-body {
    padding: 30px;
}

.explain-item {
    margin-bottom: 25px;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 15px;
}

.explain-item:last-child {
    border-bottom: none;
}

.explain-item h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.explain-item p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

.who-is-this-for {
    background: #fff7ed;
    padding: 15px;
    border-radius: 10px;
    color: var(--accent);
    font-size: 0.95rem;
    margin-top: 10px;
    border-left: 4px solid var(--accent);
}

/* Mobil Ayarı */
@media (max-width: 768px) {
    .package-explain-grid { grid-template-columns: 1fr; }
    .pkg-explain-card.silver { transform: scale(1); }
}
/* =========================================
   19. BİLGİLENDİRME KARTLARI RENKLERİ
   ========================================= */

/* Hizmet Bedeli Kartı (Mavi) */
.pkg-explain-card.info-blue {
    border-top: 5px solid #3b82f6;
}
.pkg-explain-card.info-blue .icon-badge {
    color: #3b82f6;
}

/* Komisyon Kartı (Altın) */
.pkg-explain-card.info-gold {
    border-top: 5px solid #eab308;
}
.pkg-explain-card.info-gold .icon-badge {
    color: #eab308;
}

/* Teknik Kart (Mor) */
.pkg-explain-card.info-purple {
    border-top: 5px solid #a855f7;
}
.pkg-explain-card.info-purple .icon-badge {
    color: #a855f7;
}

/* Kartların içindeki listelerin hizası */
.pkg-body ul.blog-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
}
/* =========================================
   22. MOBİL VE TABLET ÖZEL OPTİMİZASYON (BLOG DAHİL)
   ========================================= */

@media (max-width: 992px) {
    /* Tablet ve Küçük Laptoplar için */
    .blog-hero-content h1 { font-size: 2.8rem; }
    .package-explain-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* --- GENEL AYARLAR --- */
    .container { padding: 0 15px; } /* Kenar boşluklarını daralt */
    .section-header h2 { font-size: 2rem; } /* Başlıkları küçült */
    
    /* --- BLOG HERO ALANI MOBİL --- */
    .blog-hero { 
        padding: 120px 0 60px; /* Üst boşluğu azalt */
        background-attachment: scroll; /* Mobilde sabit arka planı kapat (performans için) */
    }
    
    .blog-content-box { 
        padding: 25px 20px; 
        margin: 0; 
        backdrop-filter: blur(5px); /* Mobilde bluru biraz azalt */
    }
    
    .blog-hero-content h1 { 
        font-size: 2rem; /* Başlığı telefona uygun yap */
        line-height: 1.2;
    }
    
    .blog-hero-content p { font-size: 1rem; }

    /* --- BLOG KARTLARI (EN ÖNEMLİ KISIM) --- */
    .blog-card {
        flex-direction: column; /* Yan yana değil alt alta olsun */
        height: auto;
        margin-bottom: 30px;
    }

    /* Ters duran kartı (Ads) düzelt: Resim her zaman üstte olsun */
    .blog-card.reverse {
        flex-direction: column; 
    }

    .blog-img {
        width: 100%;
        min-height: 220px; /* Resim yüksekliğini sabitle */
        max-height: 220px;
    }

    .blog-content {
        padding: 25px 20px; /* İç boşluğu rahatlat */
    }

    .blog-content h3 { font-size: 1.5rem; margin-bottom: 15px; }

    /* --- BİLGİ VE PAKET KARTLARI MOBİL --- */
    .package-explain-grid, .info-grid, .dictionary-grid {
        grid-template-columns: 1fr; /* Tek sütuna düşür */
        gap: 20px;
    }

    .pkg-explain-card, .info-box, .dict-card {
        padding: 20px; /* İç boşlukları azalt */
    }
    
    .pkg-header { padding: 20px; }
    .price-tag { font-size: 1.5rem; }

    /* --- INSTAGRAM ALANI MOBİL --- */
    .insta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .insta-text h2 { font-size: 1.6rem; }
    .btn-white { width: 100%; justify-content: center; }

    /* --- KARŞILAŞTIRMA TABLOSU --- */
    .comparison-table-wrapper {
        margin: 0 -15px; /* Ekranın kenarlarına yapışsın */
        border-radius: 0;
        width: calc(100% + 30px);
    }
    
    /* Mobilde tabloyu kaydırılabilir yap */
    .comparison-table th, .comparison-table td {
        padding: 15px 10px;
        font-size: 0.85rem;
    }
}
/* ============================================================
   🚑 MOBİL KURTARMA PAKETİ (TÜM SORUNLARI GİDEREN KOD)
   ============================================================ */

@media (max-width: 768px) {
    
    /* 1. GENEL YAZI BOYUTLARINI KÜÇÜLTME (ZORUNLU) */
    html, body {
        font-size: 14px; /* Temel yazı boyutunu düşürdük */
        overflow-x: hidden; /* Sağa sola kaymayı engelle */
    }

    h1, .hero-content h1, .blog-hero-content h1 {
        font-size: 2rem !important; /* Dev başlıkları küçült */
        line-height: 1.2 !important;
    }

    h2, .section-header h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    h3, .blog-content h3, .price-header h3 {
        font-size: 1.3rem !important;
    }

    p, .hero-content p, .blog-hero-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
    }

    /* 2. KENAR BOŞLUKLARINI VE KONTEYNERLERİ DÜZELTME */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
    }

    .section-padding {
        padding: 50px 0 !important; /* Boşlukları yarıya indirdik */
    }

    /* 3. HERO (GİRİŞ) ALANLARI MOBİL AYARI */
    .hero-section, .blog-hero {
        padding: 120px 0 60px !important; /* Üstten çok boşluk kalmasın */
        height: auto !important;
        min-height: auto !important;
        background-attachment: scroll !important; /* Sabit resmi serbest bırak (Telefonda kasmasın) */
    }

    .blog-content-box {
        padding: 20px !important;
        margin: 0 !important;
        width: 100% !important;
        background: rgba(0, 0, 0, 0.6) !important; /* Cam efektini koyu yaptık, yazı okunsun */
        border: none !important;
    }

    /* 4. BLOG KARTLARI (RESİM ÜSTTE - YAZI ALTTA) */
    .blog-card, .blog-card.reverse {
        flex-direction: column !important; /* Alt alta diz */
        display: flex !important;
        height: auto !important;
        margin-bottom: 30px !important;
    }

    .blog-img {
        width: 100% !important;
        height: 200px !important; /* Resim yüksekliğini sabitledik */
        min-height: 200px !important;
    }
    
    .blog-img img {
        height: 100% !important;
        object-fit: cover !important;
    }

    .blog-content {
        padding: 20px !important;
        width: 100% !important;
    }

    /* 5. BUTONLARI MOBİLDE TAM GENİŞLİK YAPMA */
    .btn, .nav-btn, .btn-primary, .btn-outline, .read-more {
        width: 100% !important;
        justify-content: center !important;
        display: flex !important;
        margin-bottom: 10px !important;
        box-sizing: border-box !important;
    }

    .cta-group {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }

    /* 6. PAKET VE BİLGİ KARTLARI */
    .pricing-grid, .info-grid, .package-explain-grid, .dictionary-grid {
        grid-template-columns: 1fr !important; /* Tek sütun */
        gap: 20px !important;
    }

    .price-card, .info-box, .pkg-explain-card {
        padding: 25px 20px !important;
        transform: none !important; /* Hover efektlerini iptal et */
    }

    .price-card.featured {
        transform: scale(1) !important; /* Büyütmeyi iptal et */
    }

    /* 7. INSTAGRAM ALANI MOBİL */
    .insta-content {
        flex-direction: column !important;
        text-align: center !important;
    }
    .insta-icon-box { font-size: 3rem !important; margin-bottom: 10px !important; }

    /* 8. KARŞILAŞTIRMA TABLOSU KAYDIRMA */
    .comparison-table-wrapper {
        margin: 0 -15px !important; /* Ekran kenarlarına yapıştır */
        width: calc(100% + 30px) !important;
        border-radius: 0 !important;
    }
    .comparison-table th, .comparison-table td {
        padding: 10px 5px !important;
        font-size: 0.8rem !important; /* Tablo yazısını küçült */
    }
    
    /* 9. NAVIGATION (MENÜ) DÜZELTMESİ */
    .nav-container { padding: 0 15px !important; }
    .nav-menu {
        padding-top: 80px !important; /* Menü açılınca üstte boşluk bırak */
        background: #fff !important;
        width: 100% !important;
    }
}