/* ── DELIVERY MAP SECTION ── */

#delivery {
  padding: 88px 24px;
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,0.15);
}

#delivery .dm-mandala {
  position: absolute;
  top: 50%; left: 50%;
  width: 70vmin; height: 70vmin;
  transform: translate(-50%,-50%);
  opacity: 0.03;
  pointer-events: none;
  animation: mandalaSpin 120s linear infinite;
}

/* ── STATS — full width row, centred, ABOVE the map ── */
.dm-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 auto 44px;
  max-width: 700px;
  width: 100%;
}
.dm-stat {
  text-align: center;
  padding: 0 44px;
  position: relative;
  flex: 1;
  min-width: 160px;
}
.dm-stat + .dm-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(223,183,76,0.2);
}
.dm-stat-num {
  font-family: 'Alestyn', 'Palatino Linotype', 'Book Antiqua', Palatino, serif, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold);
  display: block;
  line-height: 1;
  text-shadow: 0 0 30px rgba(223,183,76,0.3);
}
.dm-stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.42);
  margin-top: 8px;
  display: block;
}

/* ── MAP — full width below stats ── */
.dm-map-wrap {
  position: relative;
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(223,183,76,0.14);
  border-radius: 12px;
  overflow: hidden;
  background: #031a10;
  box-shadow: 0 0 60px rgba(0,0,0,0.5), inset 0 0 80px rgba(4,57,39,0.4);
}

#delivery-map-container {
  width: 100%;
  position: relative;
}

#delivery-map-svg {
  display: block;
  width: 100%;
}

/* Tooltip */
#map-tooltip {
  position: absolute;
  background: rgba(4,57,39,0.96);
  border: 1px solid rgba(223,183,76,0.4);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  white-space: nowrap;
  z-index: 10;
  backdrop-filter: blur(8px);
}

/* Pulse animations — uses transform:scale() for GPU compositing (fixes PageSpeed warning) */
@keyframes pulseIndia {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(3);   opacity: 0;   }
  100% { transform: scale(1);   opacity: 0;   }
}
@keyframes pulseIntl {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(3.5); opacity: 0;   }
  100% { transform: scale(1);   opacity: 0;   }
}
.pulse-ring {
  fill: none;
  stroke-width: 1;
  transform-origin: center;
  transform-box: fill-box;
}
.pulse-india   { stroke: #DFB74C; animation: pulseIndia 2.8s ease-out infinite; }
.pulse-intl    { stroke: #f0cc6e; animation: pulseIntl  2.2s ease-out infinite; }
.dot-group:nth-child(3n+1) .pulse-ring { animation-delay: 0s;   }
.dot-group:nth-child(3n+2) .pulse-ring { animation-delay: 0.9s; }
.dot-group:nth-child(3n+3) .pulse-ring { animation-delay: 1.8s; }

/* Caption */
.dm-caption {
  text-align: center;
  margin-top: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(232,220,200,0.3);
  letter-spacing: 0.06em;
  font-style: italic;
}

/* Responsive */
@media (max-width: 640px) {
  .dm-stat        { padding: 0 20px; min-width: 100px; }
  .dm-stat-num    { font-size: 2rem; }
  .dm-stat-label  { font-size: 0.7rem; letter-spacing: 0.14em; }
  .dm-stats       { margin-bottom: 28px; }
}
