/**
 * =============================================================================
 * NUR ENERJİ — YETKİLİ BAYİLER & DAĞITIM NOKTALARI MİKRO-MODÜLÜ
 * -----------------------------------------------------------------------------
 * @module      : bayiler.css
 * @description : Türkiye interaktif SVG haritası ve bayi kartları hafif stilleri.
 * @version     : 1.0.0
 * =============================================================================
 */

.business-section {
    padding: 60px 0 90px;
    background-color: #f8fafc;
    position: relative;
}

/* ==========================================================================
   TÜRKİYE İNTERAKTİF HARİTASI
   ========================================================================== */
.turkey-map-drawing {
    position: relative;
    max-width: 1050px;
    margin: 0 auto 40px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.turkey-map-drawing svg {
    width: 100%;
    height: auto;
    display: block;
}

.turkey-map-drawing path {
    fill: #e2e8f0;
    stroke: #ffffff;
    stroke-width: 1;
    stroke-linejoin: round;
    transition: all 0.25s ease;
    cursor: pointer;
}

.turkey-map-drawing path:hover {
    fill: #059669 !important;
    filter: drop-shadow(0 2px 8px rgba(5, 150, 105, 0.4));
}

.turkey-map-drawing g.is-completed path {
    fill: #10b981;
}

.turkey-map-drawing g.is-completed path:hover {
    fill: #047857 !important;
}

/* Harita İl Tooltip Etiketi */
.turkey-map-name {
    position: fixed;
    display: none;
    pointer-events: none;
    z-index: 9999;
}

.turkey-map-name div {
    background: #0f172a;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   BAYİ BİLGİ KARTLARI
   ========================================================================== */
.turkey-map-list {
    margin-top: 30px;
}

.card.bayiler {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    position: relative;
}

.card.bayiler:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #10b981;
}

.card.bayiler .box-header .title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.card.bayiler .box-header .title.small {
    font-size: 0.95rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 10px;
}

.card.bayiler .box-header .text {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
}

.card.bayiler .box-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card.bayiler .box-footer a {
    font-size: 0.86rem;
    color: #334155;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card.bayiler .box-footer a:hover {
    color: #059669;
}

.card.bayiler .box-footer a.name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.card.bayiler .box-footer .icon {
    color: #10b981;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}
