/* ===== BLOG STYLES ===== */

/* Blog Header Section */
.blog-header {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1b5e20;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(27, 94, 32, 0.1);
}

.blog-subtitle {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #4caf50;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Blog Categories */
.blog-categories {
    padding: 4rem 0;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1b5e20;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(76, 175, 80, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #66bb6a, #81c784);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(76, 175, 80, 0.25);
    border-color: rgba(76, 175, 80, 0.3);
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(76, 175, 80, 0.3));
}

.category-title {
    font-size: 1.4rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.category-stats {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 10px;
}

.article-count,
.read-time {
    font-size: 0.85rem;
    color: #4caf50;
    font-weight: 600;
}

.category-link {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.category-link:hover {
    background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Featured Articles */
.featured-articles {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.article-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.article-card.featured {
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 24px rgba(0, 0, 0, 0.1);
}

.article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.article-category {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
}

.article-date,
.read-time {
    color: #6b7280;
}

.article-title {
    font-size: 1.3rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 700;
}

.article-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-link {
    display: inline-block;
    color: #4caf50;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.article-link:hover {
    color: #2e7d32;
    border-bottom-color: #4caf50;
}

/* Recent Articles */
.recent-articles {
    padding: 4rem 0;
}

.recent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.recent-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #4caf50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.recent-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.recent-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
}

.recent-category {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-weight: 600;
}

.recent-date {
    color: #6b7280;
}

.recent-title {
    font-size: 1.1rem;
    color: #1b5e20;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    font-weight: 600;
}

.recent-excerpt {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.recent-link {
    color: #4caf50;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.recent-link:hover {
    color: #2e7d32;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8ff 100%);
}

.newsletter-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(76, 175, 80, 0.15);
}

.newsletter-title {
    font-size: 1.8rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-text {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.newsletter-btn {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.newsletter-privacy {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Blog CTA */
.blog-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: white;
    text-align: center;
}

.blog-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ===== ARTICLE PAGE STYLES ===== */

.blog-article {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    border-radius: 20px;
}

.article-header h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #1b5e20;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-meta span {
    background: rgba(76, 175, 80, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2e7d32;
}

.article-intro {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Table of Contents */
.table-of-contents {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: sticky;
    top: 20px;
    z-index: 10;
}

.table-of-contents h3 {
    color: #1b5e20;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #2e7d32;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
}

.table-of-contents a:hover {
    background: #4caf50;
    color: white;
    transform: translateX(5px);
}

/* Content Sections */
.content-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.content-section h2 {
    color: #1b5e20;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #4caf50;
    padding-bottom: 0.5rem;
}

.content-section h3 {
    color: #2e7d32;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.content-section h4 {
    color: #388e3c;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem 0;
}

.content-section p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #333;
}

.content-section ul, .content-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-left: 5px solid #4caf50;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}

.highlight-box.organic {
    background: linear-gradient(135deg, #e8f5e9 0%, #f9fbe7 100%);
    border-left-color: #689f38;
}

.highlight-box h3 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.comparison-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #4caf50;
}

.comparison-item.anadolu {
    border-top-color: #2196f3;
}

.comparison-item.avrupa {
    border-top-color: #ff9800;
}

/* Seasonal Calendar */
.seasonal-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.season-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.season-card.spring {
    border-top: 5px solid #8bc34a;
}

.season-card.summer {
    border-top: 5px solid #ff9800;
}

.season-card.autumn {
    border-top: 5px solid #ff5722;
}

.season-card.winter {
    border-top: 5px solid #2196f3;
}

/* District Guide */
.district-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.district-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4caf50;
}

/* Price Info */
.price-info {
    background: linear-gradient(135deg, #fff3e0 0%, #fce4ec 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.pricing-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.price-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ff9800;
}

.cost-factors {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

/* Expert Tips */
.expert-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #4caf50;
}

/* Conclusion */
.conclusion {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.key-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.point-number {
    background: #4caf50;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.point-content h4 {
    margin-bottom: 0.5rem;
    color: #1b5e20;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 3rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.cta-btn.secondary {
    background: white;
    color: #4caf50;
    border: 2px solid #4caf50;
}

.cta-btn.secondary:hover {
    background: #4caf50;
    color: white;
    transform: translateY(-2px);
}

/* Benefits Grid for Organic */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #8bc34a;
}

.benefit-item h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* Istanbul Advantages */
.istanbul-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #4caf50;
}

/* Fertilizer Types */
.fertilizer-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.fertilizer-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #689f38;
}

/* Corporate Benefits */
.corporate-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #2196f3;
}

/* Corporate Types */
.corporate-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.corporate-type {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ff9800;
}

.type-details {
    margin-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 2rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-grid,
    .seasonal-calendar,
    .district-guide,
    .pricing-categories,
    .expert-tips,
    .key-points {
        grid-template-columns: 1fr;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .table-of-contents {
        position: static;
        margin: 1rem 0;
    }
}

/* Category Page Styles */
.category-header {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
}

.category-header .category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.category-header h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 800;
}

.category-header p {
    font-size: 1.2rem;
    color: #2e7d32;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.category-cta {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.category-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.coming-soon {
    opacity: 0.7;
    position: relative;
}

.coming-soon-badge {
    background: #ff9800;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.read-more {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.read-more:hover {
    border-bottom-color: #4caf50;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: #f5f5f5;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #4caf50;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== KENE ACİL DURUM STİLLERİ ===== */

/* Acil durum badge'leri */
.article-badge.urgent {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    animation: pulse-urgent 2s infinite;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.4);
}

.tag.urgent {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    animation: glow-urgent 2s infinite;
}

.article-link.urgent {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    animation: pulse-urgent 2s infinite;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.4);
}

.article-card.urgent {
    border: 2px solid #f44336;
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.3);
}

/* Acil durum animasyonları */
@keyframes pulse-urgent {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(244, 67, 54, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(244, 67, 54, 0.6);
    }
}

@keyframes glow-urgent {
    0%, 100% {
        box-shadow: 0 0 5px rgba(244, 67, 54, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(244, 67, 54, 0.8);
    }
}

/* Kene makale özel stilleri */
.alert-box {
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    border-left: 5px solid;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-box.urgent {
    background: linear-gradient(135deg, #fff8f6, #ffebee);
    border-left-color: #f44336;
    color: #d32f2f;
}

.alert-box h3 {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-card {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
}

.info-card.danger {
    background: linear-gradient(135deg, #fff8f6, #ffebee);
    border-left-color: #f44336;
    color: #d32f2f;
}

.info-card.warning {
    background: linear-gradient(135deg, #fffdf6, #fff8e1);
    border-left-color: #ff9800;
    color: #e65100;
}

.info-card.info {
    background: linear-gradient(135deg, #f6f9ff, #e3f2fd);
    border-left-color: #2196f3;
    color: #1565c0;
}

.info-card h4 {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    font-weight: 700;
}

.comparison-table tbody tr:hover {
    background: rgba(76, 175, 80, 0.05);
}

.step-guide {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #4caf50;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 0.5rem 0;
    color: #1b5e20;
    font-weight: 700;
}

.step-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.cta-box {
    background: linear-gradient(135deg, #fff3e0, #ffecb3);
    border: 2px solid #ff9800;
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.cta-box h3 {
    color: #e65100;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.cta-box p {
    color: #bf360c;
    margin: 0 0 1.5rem 0;
}

.related-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.related-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-left: 4px solid #4caf50;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-card h4 {
    margin: 0 0 0.5rem 0;
    color: #1b5e20;
    font-weight: 700;
}

.related-card p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Sidebar widget stilleri */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
}

.article-main {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 100vh;
}

.article-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.article-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
    animation: pulse-subtle 3s infinite;
}

@keyframes pulse-subtle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1b5e20;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.meta-icon {
    font-size: 1.1rem;
}

.article-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-widget.emergency {
    background: linear-gradient(135deg, #fff3e0, #ffecb3);
    border: 2px solid #ff9800;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.2);
}

.sidebar-widget h3 {
    color: #1b5e20;
    margin: 0 0 1rem 0;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-widget.emergency h3 {
    color: #e65100;
}

.table-of-contents {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin: 0.5rem 0;
}

.table-of-contents a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
    border-radius: 8px;
    padding-left: 1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.table-of-contents a:hover {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border-left-color: #4caf50;
    padding-left: 1.2rem;
}

.emergency-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

.emergency-btn.secondary {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4);
}

.emergency-btn.secondary:hover {
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* İçerik stilleri iyileştirmeleri */
.article-main h2 {
    color: #1b5e20;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #4caf50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-main h3 {
    color: #2e7d32;
    font-weight: 600;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-main h4 {
    color: #388e3c;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
}

.article-main p {
    color: #333;
    line-height: 1.8;
    margin: 1.2rem 0;
    font-size: 1rem;
}

.article-main ul, .article-main ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-main li {
    color: #333;
    line-height: 1.7;
    margin: 0.8rem 0;
}

.article-main strong {
    color: #1b5e20;
    font-weight: 600;
}

/* Alert box iyileştirmeleri */
.alert-box {
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 16px;
    border-left: 6px solid;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.alert-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.alert-box.urgent {
    background: linear-gradient(135deg, #fff5f5, #ffebee);
    border-left-color: #f44336;
    color: #c62828;
}

.alert-box h3 {
    margin: 0 0 1rem 0;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.alert-box p {
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Info grid iyileştirmeleri */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.info-card {
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 6px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.info-card:hover::before {
    transform: translateX(100%);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.info-card.danger {
    background: linear-gradient(135deg, #fff5f5, #ffebee);
    border-left-color: #f44336;
    color: #c62828;
}

.info-card.warning {
    background: linear-gradient(135deg, #fffbf0, #fff8e1);
    border-left-color: #ff9800;
    color: #e65100;
}

.info-card.info {
    background: linear-gradient(135deg, #f3f8ff, #e3f2fd);
    border-left-color: #2196f3;
    color: #1565c0;
}

.info-card h4 {
    margin: 0 0 1rem 0;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.info-card p {
    margin: 0.8rem 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.info-card strong {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Table iyileştirmeleri */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(76, 175, 80, 0.08);
    transform: scale(1.01);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Step guide iyileştirmeleri */
.step-guide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #4caf50;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(76, 175, 80, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.step:hover::before {
    transform: translateX(100%);
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h4 {
    margin: 0 0 0.8rem 0;
    color: #1b5e20;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA box iyileştirmeleri */
.cta-box {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    border: 3px solid #ff9800;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.2);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer-cta 4s infinite;
}

@keyframes shimmer-cta {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.cta-box h3 {
    color: #e65100;
    margin: 0 0 1rem 0;
    font-weight: 800;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: #e65100;
    margin: 0 0 2rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.cta-btn.secondary {
    background: white;
    color: #4caf50;
    border: 2px solid #4caf50;
}

.cta-btn.secondary:hover {
    background: #4caf50;
    color: white;
    transform: translateY(-3px);
}

/* Related articles iyileştirmeleri */
.related-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.related-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.related-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(76, 175, 80, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.related-card:hover::before {
    transform: translateX(100%);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #4caf50;
}

.related-card h4 {
    margin: 0 0 0.8rem 0;
    color: #1b5e20;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.related-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Mobile responsive iyileştirmeleri */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .article-main {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        gap: 1rem;
        justify-content: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }
    
    .related-articles {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
    }
    
    .sidebar-widget {
        margin-bottom: 1rem;
    }
}

/* Fiyat İletişim Stilleri */
.pricing-contact-info {
    background: linear-gradient(135deg, #f3f4f6, #e5f3ff);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 2px solid #4caf50;
}

.pricing-contact-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

.pricing-contact-item:last-child {
    border-bottom: none;
}

.pricing-contact-item strong {
    color: #1b5e20;
    margin-right: 0.5rem;
    min-width: 120px;
}

.pricing-contact-item a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
}

.pricing-contact-item a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

/* Kene sayfası için contact card stilleri */
.contact-pricing-info {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #4caf50;
    max-width: 600px;
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #1b5e20;
    margin: 0 0 1rem 0;
    font-weight: 700;
    font-size: 1.5rem;
}

.contact-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-features {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 8px;
}

.contact-feature .feature-icon {
    font-size: 1.2rem;
    color: #4caf50;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-btn.primary {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.contact-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.contact-btn.secondary {
    background: white;
    color: #4caf50;
    border: 2px solid #4caf50;
}

.contact-btn.secondary:hover {
    background: #4caf50;
    color: white;
    transform: translateY(-2px);
}

.pricing-note {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4caf50;
    padding: 1rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.pricing-note p {
    margin: 0;
    color: #1b5e20;
    font-style: italic;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ===== EKS RAN TAŞMA DÜZELTMELER İ ===== */

/* Container genel düzeltmesi */
.container {
    max-width: 100%;
    overflow-x: hidden;
}

.article-content .container {
    padding: 0 1rem;
}

/* Content wrapper taşma önleme */
.content-wrapper {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.article-main {
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
    box-sizing: border-box;
}

/* Tablo responsive düzeltmesi */
.comparison-table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
    box-sizing: border-box;
}

.comparison-table thead,
.comparison-table tbody,
.comparison-table tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
    word-wrap: break-word;
    white-space: normal;
    min-width: 80px;
    max-width: 150px;
}

/* Table scroll wrapper */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

/* Pricing contact info responsive */
.pricing-contact-info {
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
    box-sizing: border-box;
}

.pricing-contact-item {
    flex-wrap: wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.pricing-contact-item strong {
    min-width: auto;
    flex-shrink: 0;
}

/* CTA buttons responsive düzeltmesi */
.cta-buttons {
    max-width: 100%;
    overflow-x: hidden;
}

.cta-btn {
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
}

/* Info grid responsive */
.info-grid {
    max-width: 100%;
    overflow-x: hidden;
}

.info-card {
    max-width: 100%;
    word-wrap: break-word;
    box-sizing: border-box;
}

/* Step guide responsive */
.step-guide {
    max-width: 100%;
    overflow-x: hidden;
}

.step {
    max-width: 100%;
    word-wrap: break-word;
    box-sizing: border-box;
}

/* Related articles responsive */
.related-articles {
    max-width: 100%;
    overflow-x: hidden;
}

.related-card {
    max-width: 100%;
    word-wrap: break-word;
    box-sizing: border-box;
}

/* Alert box responsive */
.alert-box {
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
    box-sizing: border-box;
}

/* CTA box responsive */
.cta-box {
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
    box-sizing: border-box;
}

/* Sidebar responsive */
.article-sidebar {
    max-width: 100%;
    overflow-x: hidden;
}

.sidebar-widget {
    max-width: 100%;
    word-wrap: break-word;
    box-sizing: border-box;
}

/* Emergency buttons responsive */
.emergency-btn {
    word-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
}

/* Contact buttons responsive */
.contact-btn {
    word-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
}

/* Article meta responsive */
.article-meta {
    max-width: 100%;
    overflow-x: hidden;
}

.meta-item {
    word-wrap: break-word;
    white-space: normal;
    flex-shrink: 1;
}

/* Typography responsive */
.article-title {
    word-wrap: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.article-subtitle {
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    /* Container mobile düzeltmesi */
    .container {
        padding: 0 0.5rem;
    }
    
    .article-content .container {
        padding: 0 0.5rem;
    }
    
    /* Content wrapper mobile */
    .content-wrapper {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    /* Article main mobile */
    .article-main {
        padding: 1rem;
        margin: 0;
        border-radius: 12px;
    }
    
    /* Tablo mobile düzeltmesi */
    .comparison-table {
        font-size: 0.8rem;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.4rem;
        min-width: 60px;
        max-width: none;
        white-space: normal;
        word-break: break-word;
    }
    
    /* Table wrapper mobile */
    .table-wrapper {
        margin: 1rem -0.5rem;
        border-radius: 12px;
    }
    
    /* Pricing contact mobile */
    .pricing-contact-info {
        margin: 1rem -0.5rem;
        border-radius: 12px;
        padding: 1rem;
    }
    
    .pricing-contact-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0.6rem 0;
    }
    
    .pricing-contact-item strong {
        margin-bottom: 0.3rem;
        margin-right: 0;
        width: 100%;
    }
    
    /* CTA buttons mobile */
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-btn {
        width: 100%;
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    /* Info grid mobile */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .info-card {
        padding: 1.5rem;
        margin: 0;
        border-radius: 12px;
    }
    
    /* Step guide mobile */
    .step {
        padding: 1.2rem;
        gap: 1rem;
        margin: 0;
        border-radius: 12px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Related articles mobile */
    .related-articles {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .related-card {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    /* Alert box mobile */
    .alert-box {
        padding: 1.5rem;
        margin: 1.5rem -0.5rem;
        border-radius: 12px;
    }
    
    /* CTA box mobile */
    .cta-box {
        padding: 2rem 1.5rem;
        margin: 2rem -0.5rem;
        border-radius: 16px;
    }
    
    .cta-box h3 {
        font-size: 1.3rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
    
    /* Article title mobile */
    .article-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Article meta mobile */
    .article-meta {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }
    
    .meta-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Typography mobile */
    .article-main h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .article-main h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .article-main h4 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem 0;
    }
    
    .article-main p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 1rem 0;
    }
    
    .article-main li {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0.6rem 0;
    }
    
    /* Sidebar mobile */
    .article-sidebar {
        order: -1;
        margin-bottom: 1.5rem;
    }
    
    .sidebar-widget {
        margin-bottom: 1rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .content-wrapper {
        padding: 0 0.25rem;
    }
    
    .article-main {
        padding: 0.8rem;
    }
    
    .comparison-table {
        font-size: 0.75rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.4rem 0.2rem;
        min-width: 50px;
    }
    
    .article-title {
        font-size: 1.6rem;
    }
    
    .cta-btn {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .info-card,
    .step,
    .alert-box {
        padding: 1rem;
    }
    
    .cta-box {
        padding: 1.5rem 1rem;
    }
}

/* Large screens optimization */
@media (min-width: 1200px) {
    .content-wrapper {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .comparison-table {
        font-size: 1rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1.2rem;
        max-width: 200px;
    }
} 