/* Blog Yazıları için Temel CSS */
.blog-content {
    line-height: 1.6;
    color: #333;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Başlıklar */
.blog-content h1 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
}

.blog-content h2 {
    color: #34495e;
    font-size: 24px;
    margin: 30px 0 15px 0;
    padding-left: 10px;
    border-left: 4px solid #3498db;
}

.blog-content h3 {
    color: #2c3e50;
    font-size: 20px;
    margin: 25px 0 10px 0;
}

.blog-content h4 {
    color: #34495e;
    font-size: 18px;
    margin: 20px 0 10px 0;
}

/* Paragraflar ve Metin */
.blog-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.blog-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.blog-content em {
    font-style: italic;
    color: #666;
}

/* Listeler */
.blog-content ul, .blog-content ol {
    margin: 15px 0 15px 20px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.blog-content ul li {
    list-style-type: disc;
}

.blog-content ol li {
    list-style-type: decimal;
}

/* Tablolar */
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.blog-content table th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
    padding: 12px 15px;
    text-align: left;
}

.blog-content table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.blog-content table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.blog-content table tr:hover {
    background-color: #f1f8ff;
}

/* Özel Bölümler - Genel */
.faq-intro, .expert-intro, .solution-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 5px solid #3498db;
}

.faq-item {
    margin: 25px 0;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

/* Uyarı ve Acil Durum Kutuları */
.urgent-alert, .warning-box, .emergency-notice {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.urgent-alert h2, .warning-box h3, .emergency-notice h3 {
    color: #856404;
    margin-top: 0;
}

.urgant-alert p, .warning-box p, .emergency-notice p {
    color: #856404;
    margin-bottom: 15px;
}

/* Butonlar */
.cta-button, .emergency-button, .action-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin: 10px 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover, .emergency-button:hover, .action-button:hover {
    background-color: #2980b9;
    text-decoration: none;
}

.emergency-button {
    background-color: #e74c3c;
}

.emergency-button:hover {
    background-color: #c0392b;
}

.cta-button.whatsapp {
    background-color: #25D366;
}

.cta-button.whatsapp:hover {
    background-color: #1da851;
}

/* Marka ve Ürün Gösterimi */
.brand-comparison, .brand-showcase, .brand-price-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.brand-item, .brand-card {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #3498db;
    text-align: center;
}

.brand-card h4 {
    color: #3498db;
    margin-top: 0;
}

.price-range {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin: 10px 0;
}

/* Garanti ve Avantaj Kartları */
.guarantee-table {
    margin: 20px 0;
}

.guarantee-cards, .advantages-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.guarantee-card, .advantage, .benefit {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-top: 4px solid #3498db;
}

/* Süreç Adımları */
.process-step, .step {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    background-color: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content, .step h3 {
    margin-top: 0;
}

/* İletişim Bölümleri */
.contact-section, .contact-cta, .contact-for-quote {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.contact-section h2, .contact-cta h2, .contact-for-quote h2 {
    color: white;
    border-left: none;
    padding-left: 0;
}

.contact-methods, .contact-options, .contact-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.contact-method, .option, .benefit {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.option-button {
    display: inline-block;
    background: white;
    color: #3498db;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: transform 0.3s;
}

.option-button:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.option-button.whatsapp {
    background: #25D366;
    color: white;
}

/* Müşteri Yorumları */
.testimonial, .customer-testimonial, .testimonial-impact {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 5px solid #2ecc71;
    font-style: italic;
}

.testimonial p, .customer-testimonial p, .testimonial-impact p {
    margin-bottom: 10px;
}

.testimonial strong, .customer-testimonial strong, .testimonial-impact strong {
    color: #2c3e50;
    font-style: normal;
}

/* Fiyat Açıklama Bölümleri */
.price-explanation, .price-factors, .price-transparency {
    background: #fff9e6;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border: 2px dashed #f1c40f;
}

.factor {
    margin: 15px 0;
    padding: 15px;
    background: white;
    border-radius: 5px;
    border-left: 4px solid #3498db;
}

.free-inspection, .free-quote {
    background: #e8f4fc;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid #3498db;
}

/* Eylem Butonları Grupları */
.action-buttons, .cta-buttons, .action-buttons-final {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
    justify-content: center;
}

.action-button, .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    font-size: 16px;
}

.action-button.call { background-color: #3498db; }
.action-button.whatsapp { background-color: #25D366; }
.action-button.appointment { background-color: #9b59b6; }

/* Küçük Notlar ve Dipnotlar */
.small-note, .disclaimer, .final-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 20px;
    text-align: center;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .blog-content {
        padding: 15px;
    }
    
    .blog-content h1 {
        font-size: 26px;
    }
    
    .blog-content h2 {
        font-size: 22px;
    }
    
    .brand-comparison,
    .brand-showcase,
    .brand-price-cards,
    .guarantee-cards,
    .advantages-grid,
    .benefits-grid,
    .contact-methods,
    .contact-options,
    .contact-benefits {
        grid-template-columns: 1fr;
    }
    
    .action-buttons,
    .cta-buttons,
    .action-buttons-final {
        flex-direction: column;
    }
    
    .action-button,
    .cta-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .process-step,
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Print Stilleri */
@media print {
    .blog-content {
        color: black;
        max-width: 100%;
    }
    
    .cta-button,
    .emergency-button,
    .action-button,
    .contact-section,
    .contact-cta,
    .contact-for-quote {
        display: none;
    }
    
    .blog-content h1,
    .blog-content h2,
    .blog-content h3 {
        color: black;
    }
}