.reach {
    padding: 120px 0;
    background-color: var(--background);
    overflow: hidden;
}

.reach-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.reach-left {
    flex: 0 0 30%;
}

.reach-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 24px;
    display: block;
}

.reach-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 24px;
}

.reach-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 500px;
}

.reach-right {
    flex: 0 0 70%;
    display: flex;
    justify-content: center;
}

.reach-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 750px;
}

.reach-map-svg,
.reach-map-img {
    width: 100%;
    height: auto;
    display: block;
    will-change: transform, opacity;
}

.reach-map-img {
    filter: drop-shadow(0 8px 24px rgba(184, 134, 11, 0.12));
}

.india-outline {
    /* Dash values set dynamically by JS via getTotalLength() */
    transition: stroke-dashoffset 2.5s ease;
}

.india-outline.drawn {
    stroke-dashoffset: 0;
}

/* Floating dots */
.reach-dot {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.reach-dot.visible {
    opacity: 1;
    transform: scale(1);
}

.dot-pulse {
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.dot-pulse::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 18px;
    height: 18px;
    background: rgba(184, 134, 11, 0.25);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0; }
}

.dot-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
