        /* COVERAGE SECTION */
        .coverage {
            padding: 100px 0;
        }

        .coverage-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .coverage-info h2 {
            font-size: 2.3rem;
            margin-bottom: 20px;
        }

        .coverage-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 30px;
        }

        .coverage-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 14px;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: var(--transition);
        }

        .coverage-card:hover {
            border-color: var(--primary);
            transform: translateX(4px);
        }

        .coverage-card svg {
            width: 24px;
            height: 24px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .coverage-card-text h4 {
            font-size: 1rem;
            color: var(--text-main);
        }

        .coverage-card-text p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .coverage-map-box {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 30px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .map-header h3 {
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        .map-illustration {
            width: 100%;
            height: 280px;
            background: #0d1322;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .map-svg {
            width: 100%;
            height: 100%;
        }

        /* MAP STYLING & INTERACTIVITY */
        .map-point {
            cursor: pointer;
            transition: var(--transition);
        }

        .map-point circle.glow {
            r: 16px;
            transition: r 0.3s cubic-bezier(0.4, 0, 0.2, 1), fill 0.3s;
        }

        .map-point circle.pin {
            r: 8px;
            transition: r 0.3s cubic-bezier(0.4, 0, 0.2, 1), fill 0.3s, stroke 0.3s, stroke-width 0.3s;
        }

        .map-point text {
            transition: var(--transition);
            opacity: 0.85;
            pointer-events: none;
        }

        .map-point:hover text,
        .map-point.active text {
            opacity: 1;
            fill: var(--primary) !important;
            font-weight: 700;
        }

        .map-point:hover circle.pin,
        .map-point.active circle.pin {
            r: 11px;
            fill: #fff !important;
            stroke: var(--primary);
            stroke-width: 2.5px;
            filter: drop-shadow(0 0 6px var(--primary));
        }

        .map-point:hover circle.glow,
        .map-point.active circle.glow {
            r: 24px;
            fill: rgba(16, 185, 129, 0.45);
        }

        /* Syncing with coverage cards */
        .coverage-card {
            cursor: pointer;
            transition: var(--transition);
        }

        .coverage-card.active {
            border-color: var(--primary);
            background: var(--bg-card-hover);
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
            transform: translateY(-2px);
        }

        .map-road-m25 {
            stroke: rgba(245, 158, 11, 0.25);
            stroke-width: 3.5px;
            stroke-dasharray: 6 5;
            fill: none;
        }

        .map-road-major {
            stroke: rgba(255, 255, 255, 0.16);
            stroke-width: 2px;
            fill: none;
        }

        .map-road-label {
            font-family: var(--font-headings);
            font-size: 7.5px;
            font-weight: 600;
            fill: rgba(255, 255, 255, 0.22);
            letter-spacing: 0.05em;
            pointer-events: none;
        }

        .map-region-label {
            font-family: var(--font-headings);
            font-size: 9px;
            font-weight: 700;
            fill: rgba(255, 255, 255, 0.12);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            pointer-events: none;
        }
