/**
 * =============================================================================
 *  NUR ENERJİ - ANASAYFA MODÜLER STİL SAYFASI (anasayfa.css)
 * -----------------------------------------------------------------------------
 *  @description : Yalnızca anasayfada yüklenen hafif, modern ve optimize CSS modülü.
 *  @author      : Doğan GÖKÇE (BihostNet & Nur Enerji Mimarisi)
 * =============================================================================
 */

/* 1. HERO SLIDER */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: #070d18;
}
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 1;
}
.hero-slider-pills {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 25px;
}
.hero-pill {
    width: 28px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-pill.active {
    width: 48px;
    background: #10b981;
    box-shadow: 0 0 10px rgba(16,185,129,0.5);
}

/* 2. STATS FLOATING */
.stats-floating-section {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    padding: 0 20px;
}
.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(15,23,42,0.12);
}
.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(16,185,129,0.12);
    color: #10b981;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}
.stat-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
    margin: 4px 0 0;
}

/* 3. KALİTE BELGELERİ VİTRİNİ */
.home-certs-section {
    background: #f8fafc;
    padding: 75px 0 85px;
}
.home-certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.home-cert-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(15,23,42,0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1) !important;
}

/* 4. DEPODAKİ GÜÇ EKİPMANLARI */
.home-depo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.home-depo-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-depo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* 5. EKİP VİTRİNİ */
.home-team-section {
    background: #ffffff;
    padding: 80px 0;
}
.home-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.home-team-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15,23,42,0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1) !important;
}

/* 6. S.S.S. AKORDEON */
.home-faq-section {
    background: #f8fafc;
    padding: 75px 0 85px;
}
.home-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.home-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(15,23,42,0.03);
    transition: border-color 0.2s ease;
}
.home-faq-item .home-faq-body {
    display: none;
    padding: 20px 24px;
    color: #475569;
    font-size: 14.5px;
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
    background: #fcfdfd;
}
.home-faq-item.active .home-faq-body {
    display: block;
}
.home-faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
    background: #166534;
    color: #ffffff;
}
.home-faq-header {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}
.faq-icon-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

/* 7. AKILLI KEŞİF SİHİRBAZI */
.smart-wizard-section {
    background: linear-gradient(135deg, #070d18 0%, #0d1e3a 100%);
    padding: 85px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.wizard-opt-card {
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 22px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
}
.wizard-opt-card:hover {
    border-color: rgba(16,185,129,0.5);
    background: rgba(16,185,129,0.06);
}
.wizard-opt-card.selected {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.12) !important;
}

/* 8. CTA BANNER */
.cta-banner-section {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    padding: 60px 0;
    color: #ffffff;
}
.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px;
}
.cta-text p {
    font-size: 15.5px;
    color: rgba(255,255,255,0.88);
    margin: 0;
    max-width: 650px;
}
.cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .stats-floating-section {
        margin-top: 20px;
    }
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }
}
