:root {
    --p-navy: #001226;
    --p-navy-gradient: #f4f8fb;
    --p-orange: #FF8C3E;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --card-border: #e2e8f0;
    --text-muted: #64748b;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: #f4f8fb;
}
/* Sayfa Alan Düzenlemesi */
.network-page {
    width: 100%;
    overflow-x: hidden;
    background: var(--p-navy-gradient);
    font-family: var(--font-main);
}

.network-container {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
}

/* =====================================================
   HERO MAP ANIMATION AREA
   ===================================================== */
.map-section {
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 140, 62, .16), transparent 34%),
        radial-gradient(circle at 20% 18%, rgba(14, 165, 233, .18), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #eef6fb 48%, #ffffff 100%);
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#aralisNetworkCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.map-content {
    position: relative;
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.map-tag {
    color: var(--p-orange);
    letter-spacing: 5px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    animation: aralisFadeIn 2s forwards 0.5s;
    text-shadow: 0 8px 22px rgba(255, 140, 62, .20);
}

/* =====================================================
   CARDS LIST AREA
   SADECE ALT İÇERİK ALANI
   ===================================================== */

.content-after-map {
    background:
        radial-gradient(circle at top center, rgba(255, 140, 62, .08) 0%, rgba(255, 140, 62, 0) 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 105px 0 115px;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 64px auto;
    position: relative;
}

.section-header::before {
    content: "";
    display: block;
    width: 58px;
    height: 5px;
    border-radius: 999px;
    margin: 0 auto 22px;
    background: linear-gradient(90deg, var(--p-orange), #ffb27c);
    box-shadow: 0 10px 26px rgba(255, 140, 62, .25);
}

.section-header h2 {
    font-size: clamp(2rem, 3.4vw, 3.25rem);
    color: var(--p-navy);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin: 0 0 18px;
}

.section-header p {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: clamp(.98rem, 1.2vw, 1.12rem);
    font-weight: 400;
    margin: 0;
}

/* Grid Yapısı */
.dealer-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

/* Kart Tasarımları */
.dealer-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 100%);
    border-radius: 22px;
    padding: 26px;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 1px 0 rgba(15, 23, 42, .04);
    transition:
        transform .32s ease,
        border-color .32s ease,
        box-shadow .32s ease,
        background .32s ease;
    text-align: left;
}

.dealer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 140, 62, .14) 0%, rgba(255, 140, 62, 0) 32%),
        radial-gradient(circle at 100% 100%, rgba(0, 18, 38, .08) 0%, rgba(0, 18, 38, 0) 34%);
    opacity: 0;
    transition: opacity .32s ease;
}

.dealer-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 26px;
    right: 26px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, transparent, var(--p-orange), transparent);
    opacity: 0;
    transition: opacity .32s ease;
}

.dealer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 62, .42);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.dealer-card:hover::before,
.dealer-card:hover::after {
    opacity: 1;
}

.dealer-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(226, 232, 240, .9);
}

.dealer-flag {
    width: 42px;
    height: 30px;
    object-fit: cover;
    border-radius: 8px;
    flex: 0 0 auto;
    box-shadow:
        0 10px 22px rgba(15, 23, 42, .10),
        0 0 0 1px rgba(15, 23, 42, .06);
}

.dealer-country {
    display: block;
    font-weight: 800;
    color: var(--p-navy);
    text-transform: uppercase;
    font-size: .93rem;
    line-height: 1.25;
    letter-spacing: .04em;
}

.dealer-info {
    display: flex;
    flex-direction: column;
    gap: 13px;
    font-size: .92rem;
    color: #475569;
}

.info-row {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    line-height: 1.55;
}

.info-row i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: -3px;
    border-radius: 12px;
    color: var(--p-orange) !important;
    background: rgba(255, 140, 62, .13);
    font-size: 14px;
    text-align: center;
    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.dealer-card:hover .info-row i {
    transform: scale(1.04);
    background: var(--p-orange);
    color: #ffffff !important;
}

.info-row strong {
    display: inline-block;
    color: var(--p-navy);
    font-weight: 700;
}

.info-row a {
    color: #475569;
    text-decoration: none;
    transition: color .2s ease;
    word-break: break-word;
}

.info-row a:hover {
    color: var(--p-orange);
}

/* Responsive */
@media (max-width: 1180px) {
    .dealer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .content-after-map {
        padding: 70px 0 76px;
    }

    .section-header {
        margin-bottom: 38px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: .96rem;
        line-height: 1.75;
    }

    .dealer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .dealer-card {
        padding: 22px;
        border-radius: 20px;
    }

    .dealer-head {
        margin-bottom: 18px;
        padding-bottom: 15px;
    }
}

@media (max-width: 420px) {
    .dealer-card {
        padding: 20px 18px;
    }

    .dealer-flag {
        width: 38px;
        height: 27px;
    }

    .info-row {
        grid-template-columns: 31px 1fr;
        gap: 9px;
        font-size: .88rem;
    }

    .info-row i {
        width: 31px;
        height: 31px;
        border-radius: 10px;
        font-size: 13px;
    }
}