/**
 * Seaplast Theme Global Presence Map Section Stylesheet
 * 100% Identical to reference target design: Soft ambient container backdrop, white rounded card with badge, dark navy & teal text, dark teal CTA button, & 3D world map.
 */

.sp-map-section {
  position: relative;
  background: linear-gradient(180deg, #F8FAFC 0%, #EDF4F8 100%);
  padding: 64px 0 80px 0;
  overflow: hidden;
  color: #0F172A;
}

.sp-map-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-map-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 28px;
  padding: 48px 56px;
  box-shadow: 0 16px 40px rgba(15, 43, 72, 0.05);
}

.sp-map-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

/* Left Text Content */
.sp-map-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sp-map-badge {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #00A8C6;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sp-map-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: #0F2B48;
  margin: 0 0 16px 0;
}

.sp-map-title .sp-text-teal {
  color: #00A8C6;
  font-weight: 900;
}

.sp-map-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #64748B;
  margin: 0 0 28px 0;
}

.sp-btn-map-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00768C;
  color: #FFFFFF;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 118, 140, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-btn-map-cta:hover {
  background: #00A8C6;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 168, 198, 0.4);
  color: #FFFFFF;
}

/* Right 3D World Map Visual */
.sp-map-visual-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.sp-map-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 168, 198, 0.12));
}

/* -------------------------------------------------------------
 * RESPONSIVE MEDIA QUERIES
 * ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .sp-map-card {
    padding: 36px 32px;
  }

  .sp-map-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .sp-map-content {
    align-items: center;
  }

  .sp-map-title {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .sp-map-section {
    padding: 40px 0 48px 0;
  }

  .sp-map-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .sp-map-title {
    font-size: 22px;
  }

  .sp-map-desc {
    font-size: 14px;
  }
}
