/**
 * Homepage Modern Layout CSS
 * Düzenli, modern ve temiz ana sayfa tasarımı
 */

/* ========== BODY & GENERAL LAYOUT ========== */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Ana sayfa içerik container'ı - Ortalanmış ve sağ-sol boşluklu */
body .main-content,
body > section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Tüm section container'ları - Ortalanmış */
section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Section content wrapper - İçerik ortalaması */
.section-content-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

/* Responsive container ayarları */
@media (max-width: 1400px) {
    section .container {
        max-width: 1200px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .section-content-wrapper {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    section .container {
        max-width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .section-content-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 992px) {
    section .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .section-content-wrapper {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-content-wrapper {
        padding: 0 0.75rem;
    }
}

@media (max-width: 576px) {
    section .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .section-content-wrapper {
        padding: 0 0.5rem;
    }
}

/* ========== HERO SECTION ========== */
.hero-section-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title-modern {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle-modern {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.featured-hostings-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.featured-hosting-card-modern {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-hosting-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-hosting-card-modern.top-rated {
    border: 2px solid #ffc107;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.rank-badge-modern {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.rank-badge-gold {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #000;
}

.top-badge-modern {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

.expert-choice-badge-modern {
    position: absolute;
    top: 3rem; /* top-badge-modern'in altına yerleştir (yaklaşık 2rem yükseklik + 1rem top) */
    left: 1rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    white-space: nowrap;
}

/* Eğer top-badge-modern yoksa expert-choice-badge-modern üstte olsun (modern tarayıcılar için) */
@supports selector(:has(*)) {
    .featured-hosting-card-modern:not(:has(.top-badge-modern)) .expert-choice-badge-modern {
        top: 1rem;
    }
}

/* Fallback: expert-choice-badge-modern her zaman 3rem'de (top-badge-modern varsa altında, yoksa boşluk olur ama sorun değil) */

.hosting-logo-container-modern {
    margin: 2rem 0 1rem;
    text-align: center;
}

/* Badge'ler varsa hosting-logo-container için daha fazla üst margin */
.featured-hosting-card-modern:has(.top-badge-modern) .hosting-logo-container-modern,
.featured-hosting-card-modern:has(.expert-choice-badge-modern) .hosting-logo-container-modern {
    margin-top: 3.5rem;
}

/* Her ikisi de varsa daha fazla margin */
.featured-hosting-card-modern:has(.top-badge-modern):has(.expert-choice-badge-modern) .hosting-logo-container-modern {
    margin-top: 4.5rem;
}

.hosting-logo-fallback-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.hosting-rating-wrapper-modern {
    text-align: center;
    margin: 1rem 0;
}

.hosting-rating-value-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.hosting-rating-modern {
    color: #ffc107;
    font-size: 0.875rem;
}

.hosting-feature-modern {
    text-align: center;
    color: #6c757d;
    font-size: 0.875rem;
    margin: 1rem 0;
}

.visit-site-btn-modern {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.visit-site-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* ========== HOSTING TYPES NAV ========== */
.hosting-types-nav-modern {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 1.5rem 0;
}

.hosting-types-nav-modern .container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
}

.hosting-types-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.hosting-types-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex: 1;
}

.hosting-type-btn-modern {
    padding: 0.625rem 1.25rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #495057;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.hosting-type-btn-modern:hover,
.hosting-type-btn-modern.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.advanced-filters-btn-modern {
    padding: 0.625rem 1.25rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #495057;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.advanced-filters-btn-modern:hover {
    background: #f8f9fa;
    border-color: #667eea;
    color: #667eea;
}

/* ========== SECTION HEADERS & CONTENT WRAPPER ========== */
/* Container ve section-content-wrapper tanımları yukarıda genel layout bölümünde yapıldı */

.section-header-modern {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-modern {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #212529;
    margin-bottom: 1rem;
}

.flag-icon {
    font-size: 1.5em;
    margin-right: 0.5rem;
}

.section-subtitle-modern {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== TOP HOSTING SECTION ========== */
.top-hosting-section {
    padding: 5rem 0;
    background: white;
}

.top-hosting-section .section-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.best-overall-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
}

.best-overall-content-modern {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
}

.best-overall-badge-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge-rank-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.badge-text-modern {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
    max-width: 80px;
}

.best-overall-info-modern {
    flex: 1;
}

.best-overall-name-modern {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.best-overall-offer-modern {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.best-overall-feature-modern {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #495057;
}

.best-overall-rating-modern {
    text-align: center;
    min-width: 200px;
}

.rating-value-modern {
    margin-bottom: 1rem;
}

.stars-modern {
    color: #ffc107;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.price-modern {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.hosting-listings-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

.hosting-listing-item-modern {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

.hosting-listing-item-modern:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.listing-badge-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
}

.listing-info-modern {
    flex: 1;
}

.listing-name-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.listing-feature-modern {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #495057;
}

.listing-rating-modern {
    text-align: center;
    min-width: 150px;
}

/* ========== PROVIDERS SHOWCASE ========== */
.providers-showcase-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.providers-showcase-section .section-content-wrapper {
    max-width: 1400px;
    padding: 0 1rem;
}

@media (min-width: 992px) {
    .providers-showcase-section .section-content-wrapper {
        padding: 0 2rem;
    }
}

.providers-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

/* Desktop: 4 sütun (4+4 yapısı) */
@media (min-width: 992px) {
    .providers-grid-modern {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2rem;
    }
}

/* Tablet: 2 sütun */
@media (min-width: 768px) and (max-width: 991px) {
    .providers-grid-modern {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

/* Mobil: 2 sütun */
@media (max-width: 767px) {
    .providers-grid-modern {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
}

/* Küçük mobil: 1 sütun */
@media (max-width: 576px) {
    .providers-grid-modern {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
}

/* ========== FEATURES SECTION ========== */
.features-section-modern {
    padding: 5rem 0;
    background: white;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

@media (min-width: 992px) {
    .features-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card-modern {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.feature-card-modern:hover::before {
    transform: scaleY(1);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-icon-1 {
    background: linear-gradient(135deg, #0d6efd 0%, #00c6ff 100%);
}

.feature-icon-2 {
    background: linear-gradient(135deg, #6f42c1 0%, #8a2be2 100%);
}

.feature-icon-3 {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

.feature-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.feature-description-modern {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ========== PRICE COMPARISON ========== */
.price-comparison-section-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.update-time-modern {
    display: block;
    color: #6c757d;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.tld-selection-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.tld-btn-modern {
    padding: 0.625rem 1.5rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tld-btn-modern:hover,
.tld-btn-modern.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.price-table-wrapper-modern {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
}

.table-responsive-modern {
    overflow-x: auto;
}

.price-table-modern {
    width: 100%;
    border-collapse: collapse;
}

.price-table-modern thead {
    background: #f8f9fa;
}

.price-table-modern th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #e9ecef;
}

.price-table-modern td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.price-table-modern tbody tr:hover {
    background: #f8f9fa;
}

.price-table-footer-modern {
    padding: 1.5rem;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-legend-modern {
    color: #6c757d;
    font-size: 0.875rem;
}

/* ========== HOSTING SERVER SECTION ========== */
.hosting-server-section-modern {
    padding: 5rem 0;
    background: white;
}

.hosting-server-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    width: 100%;
}

@media (min-width: 992px) {
    .hosting-server-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hosting-server-card-modern {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.hosting-server-card-modern:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card-header-modern {
    padding: 1.5rem;
    color: white;
    font-weight: 600;
}

.bg-primary-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-success-modern {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

.card-body-modern {
    padding: 1.5rem;
}

.hosting-preview-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hosting-preview-item-modern {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* ========== QUICK LINKS ========== */
.quick-links-section-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.quick-links-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 992px) {
    .quick-links-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .quick-links-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quick-link-card-modern {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: #212529;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quick-link-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
    color: #212529;
}

.quick-link-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.quick-link-title-modern {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quick-link-desc-modern {
    color: #6c757d;
    font-size: 0.875rem;
}

/* ========== STATS SECTION ========== */
.stats-section-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(50px, 50px);
    }
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .stats-grid-modern {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 1);
}

.stat-icon-modern {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.stat-value-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label-modern {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ========== FAQ SECTION ========== */
.faq-section-modern {
    padding: 3.5rem 0;
    background: white;
}

.faq-container-modern {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-modern {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.accordion-item-modern {
    background: white;
    border: 0.5px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.accordion-item-modern:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-color: #dee2e6;
}

.accordion-button-modern {
    width: 100%;
    padding: 0.875rem 1.125rem;
    background: white;
    border: none;
    text-align: left;
    font-weight: 500;
    font-size: 0.9375rem;
    color: #212529;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
}

.accordion-button-modern:hover {
    background: #f8f9fa;
}

.accordion-button-modern.active {
    background: #f8f9fa;
    color: #667eea;
}

.accordion-button-modern i {
    font-size: 0.875rem;
    opacity: 0.7;
}

.accordion-body-modern {
    padding: 1rem 1.125rem 1.125rem;
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.65;
}

.accordion-body-modern i {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* ========== BUTTONS ========== */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-outline-modern {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline-modern:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
/* Container responsive ayarları yukarıda genel layout bölümünde yapıldı */

@media (max-width: 991px) {
    .best-overall-content-modern {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hosting-listing-item-modern {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hosting-server-grid-modern {
        grid-template-columns: 1fr;
    }
    
    /* providers-grid-modern için ayrı media query'de tanımlı */
    
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section-modern {
        padding: 3rem 0 4rem;
    }
    
    .top-hosting-section,
    .providers-showcase-section,
    .features-section-modern,
    .price-comparison-section-modern,
    .hosting-server-section-modern,
    .quick-links-section-modern,
    .stats-section-modern {
        padding: 3rem 0;
    }
    
    .faq-section-modern {
        padding: 2.5rem 0;
    }
    
    .accordion-modern {
        gap: 0.5rem;
    }
    
    .accordion-button-modern {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-body-modern {
        padding: 0.875rem 1rem 1rem;
        font-size: 0.875rem;
    }
    
    .featured-hostings-modern {
        grid-template-columns: 1fr;
    }
    
    .hosting-types-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Badge positioning on mobile */
    .top-badge-modern,
    .expert-choice-badge-modern {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
    
    .expert-choice-badge-modern {
        top: 2.5rem; /* Mobilde daha yakın */
    }
    
    @supports selector(:has(*)) {
        .featured-hosting-card-modern:not(:has(.top-badge-modern)) .expert-choice-badge-modern {
            top: 0.75rem; /* Mobilde top-badge yoksa daha üstte */
        }
    }
    
    .hosting-logo-container-modern {
        margin-top: 3.5rem; /* Badge'ler için yeterli alan */
    }
    
    .featured-hosting-card-modern:not(:has(.top-badge-modern)):not(:has(.expert-choice-badge-modern)) .hosting-logo-container-modern {
        margin-top: 2rem; /* Badge yoksa normal margin */
    }
    
    .hosting-types-list {
        justify-content: center;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .providers-grid-modern {
        grid-template-columns: 1fr !important;
    }
    
    .quick-links-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header-modern {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section-modern {
        padding: 2rem 0 3rem;
    }
    
    .top-hosting-section,
    .providers-showcase-section,
    .features-section-modern,
    .price-comparison-section-modern,
    .hosting-server-section-modern,
    .quick-links-section-modern,
    .stats-section-modern,
    .faq-section-modern {
        padding: 2.5rem 0;
    }
    
    .quick-links-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .price-table-footer-modern {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .tld-selection-modern {
        gap: 0.5rem;
    }
    
    .tld-btn-modern {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .hosting-types-list {
        gap: 0.5rem;
    }
    
    .hosting-type-btn-modern {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

/* ========== DARK MODE ========== */
[data-theme="dark"] .hero-section-modern {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

[data-theme="dark"] .hosting-types-nav-modern {
    background: #1f2937;
    border-top-color: #374151;
}

[data-theme="dark"] .hosting-type-btn-modern {
    background: #374151;
    border-color: #4b5563;
    color: #e5e7eb;
}

[data-theme="dark"] .hosting-type-btn-modern:hover,
[data-theme="dark"] .hosting-type-btn-modern.active {
    background: #667eea;
    color: white;
}

[data-theme="dark"] .top-hosting-section,
[data-theme="dark"] .features-section-modern,
[data-theme="dark"] .hosting-server-section-modern,
[data-theme="dark"] .faq-section-modern {
    background: #111827;
}

[data-theme="dark"] .section-title-modern {
    color: #f9fafb;
}

[data-theme="dark"] .section-subtitle-modern {
    color: #9ca3af;
}

[data-theme="dark"] .best-overall-card,
[data-theme="dark"] .hosting-listing-item-modern,
[data-theme="dark"] .feature-card-modern,
[data-theme="dark"] .hosting-server-card-modern,
[data-theme="dark"] .quick-link-card-modern,
[data-theme="dark"] .accordion-item-modern {
    background: #1f2937;
    border-color: #374151;
}

[data-theme="dark"] .best-overall-name-modern,
[data-theme="dark"] .listing-name-modern,
[data-theme="dark"] .feature-title-modern,
[data-theme="dark"] .quick-link-title-modern {
    color: #f9fafb;
}

[data-theme="dark"] .price-comparison-section-modern,
[data-theme="dark"] .providers-showcase-section,
[data-theme="dark"] .quick-links-section-modern {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

[data-theme="dark"] .price-table-wrapper-modern {
    background: #1f2937;
}

[data-theme="dark"] .price-table-modern thead {
    background: #374151;
}

[data-theme="dark"] .price-table-modern th {
    color: #f9fafb;
}

[data-theme="dark"] .price-table-modern td {
    color: #e5e7eb;
    border-color: #374151;
}

[data-theme="dark"] .price-table-modern tbody tr:hover {
    background: #374151;
}

[data-theme="dark"] .accordion-button-modern {
    background: #1f2937;
    color: #f9fafb;
}

[data-theme="dark"] .accordion-button-modern:hover,
[data-theme="dark"] .accordion-button-modern.active {
    background: #374151;
}

[data-theme="dark"] .accordion-body-modern {
    color: #d1d5db;
}

