/* Location (موقعنا) — Figma 2176:432 */
.location {
  direction: ltr;                 /* match Figma LTR auto-layout */
  background: #f4f6fa;
  padding: 96px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  font-family: "Tajawal", sans-serif;
}
.location__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.location__eyebrow { margin: 0; color: #241b4f; font-size: 14px; font-weight: 700; letter-spacing: 0.56px; }
.location__title   { margin: 0; color: #241b4f; font-size: 40px; font-weight: 700; }
.location__sub     { margin: 0; color: #6b6790; font-size: 18px; font-weight: 400; }

.location__content {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

/* ---- map card ---- */
.location__map {
  position: relative;
  width: 548px;
  height: 502px;
  flex-shrink: 0;
  background: #f1f5f9;
  border: 1px solid rgba(55, 40, 115, 0.18);
  border-radius: 20px;
  overflow: hidden;
}
/* interactive embedded map */
.location__map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.05);
}

.location__map-badge {
  position: absolute;
  left: 15px; top: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 22, 30, 0.88);
  border: 1px solid rgba(74, 222, 128, 0.35);
  padding: 7px 12px;
  border-radius: 8px;
  color: #f4f6fa;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.location__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: locPulse 1.9s ease-in-out infinite;
}
@keyframes locPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70%      { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
}

/* title + description card floating on the map */
.location__map-card {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(55, 40, 115, 0.14);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(36, 27, 79, 0.2);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.location__map-card-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(99, 153, 34, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.location__map-card-icon img { width: 22px; height: 22px; }
.location__map-card-text { display: flex; flex-direction: column; gap: 2px; text-align: right; }
.location__map-card-title { margin: 0; color: #241b4f; font-size: 15px; font-weight: 700; }
.location__map-card-sub { margin: 0; color: #6b6790; font-size: 13px; font-weight: 500; }

@media (prefers-reduced-motion: reduce) {
  .location__badge-dot { animation: none; }
}

/* ---- info card ---- */
.location__info {
  width: 577px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(55, 40, 115, 0.14);
  border-radius: 20px 8px 20px 8px;
  padding: 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}
.location__info-head { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; text-align: right; }
.location__info-eyebrow { margin: 0; color: #372873; font-size: 13px; font-weight: 700; }
.location__info-title   { margin: 0; color: #241b4f; font-size: 22px; font-weight: 700; }

.location__rows { display: flex; flex-direction: column; gap: 16px; width: 100%; }
.location__row  { display: flex; align-items: center; gap: 14px; width: 100%; }
.location__row-text { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 3px; text-align: right; }
.location__row-label { margin: 0; color: #6b6790; font-size: 13px; font-weight: 500; }
.location__row-value { margin: 0; color: #241b4f; font-size: 16px; font-weight: 700; }
.location__row-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location__row-icon img { width: 20px; height: 20px; }
.location__row-icon--lime  { background: rgba(172, 217, 26, 0.12); }
.location__row-icon--green { background: rgba(99, 153, 34, 0.12); }

.location__badges { display: flex; flex-direction: column; gap: 10px; width: 100%; align-items: flex-end; }
.location__badges-row { display: flex; gap: 10px; justify-content: flex-end; width: 100%; }
.location__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(55, 40, 115, 0.12);
  color: #2a1e59;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
}
.location__badge img { width: 14px; height: 14px; }

.location__cta {
  width: 170px;
  height: 50px;
  background: #372873;
  color: #fff;
  font-family: "Tajawal", sans-serif;
  font-size: 17px;
  font-weight: 700;
  border: 0;
  border-radius: 25px 10px 25px 10px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.18s ease;
}
.location__cta:hover { filter: brightness(1.12); transform: translateY(-1px); }

@media (max-width: 1180px) {
  .location__content { flex-direction: column; align-items: center; }
  .location__map, .location__info { width: 100%; max-width: 620px; }
}
@media (max-width: 900px) {
  .location { padding: 64px 24px; }
  .location__title { font-size: 30px; }
}
@media (max-width: 560px) {
  .location__title { font-size: 23px; }
  .location__map { height: 360px; }
  .location__info { padding: 22px 20px; }
  .location__badge { font-size: 12px; padding: 7px 10px; }
}
