/* ====================================
   LOCATION MAP - LogicMind
   ==================================== */

.lm-location {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Header */
.lm-location__header {
  margin-bottom: 48px;
  text-align: center;
}

.lm-location__label {
  color: var(--logicmind-secondary) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem !important;
}

.lm-location__title {
  font-weight: 800 !important;
  font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
  color: var(--logicmind-primary) !important;
  line-height: 1.3 !important;
}

.lm-location__subtitle {
  color: #64748b !important;
  max-width: 550px;
  font-size: 1.05rem !important;
}

/* Map Card */
.lm-location__map-card {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.lm-location__map-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* Map Wrapper */
.lm-location__map-wrapper {
  width: 100%;
  height: 400px;
  position: relative;
  background: #e2e8f0;
}

.lm-location__map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Info Bar */
.lm-location__info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 24px;
  background: var(--logicmind-primary);
  flex-wrap: wrap;
}

.lm-location__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lm-location__info-icon {
  color: var(--logicmind-accent2) !important;
}

.lm-location__info-text {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
}

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 768px) {
  .lm-location {
    padding: 60px 0;
  }

  .lm-location__header {
    margin-bottom: 32px;
  }

  .lm-location__map-wrapper {
    height: 300px;
  }

  .lm-location__info-bar {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    text-align: center;
  }

  .lm-location__map-card {
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .lm-location__map-wrapper {
    height: 250px;
  }

  .lm-location__info-text {
    font-size: 0.8rem !important;
  }
}
