/*
 * Style reminder: preserve Alanwar Travel's existing dark navy, warm paper,
 * saffron-gold, RTL-friendly visual language. This file styles only the
 * additive location section and must not alter existing site selectors.
 */
.location-section {
  padding-block: 105px;
  background: #0c151d;
  border-top: 1px solid var(--rule);
  color: var(--paper);
}

.location-section .location-heading {
  margin-block-end: 41px;
}

.location-section .location-title {
  max-width: 720px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.15rem, 4.1vw, 4.1rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.location-section .location-intro {
  max-width: 470px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.95;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
  align-items: stretch;
}

.location-card,
.location-map-frame {
  border: 1px solid var(--rule);
  background: #101b24;
}

.location-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 32px;
}

.location-card-label {
  display: block;
  margin-block-end: 14px;
  color: var(--saffron-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-card-address {
  max-width: 320px;
  margin: 0;
  color: var(--paper);
  font-size: 1.05rem;
  line-height: 2;
}

.location-card-note {
  max-width: 320px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.8;
}

.location-map-frame {
  min-height: 370px;
  overflow: hidden;
  background: #14212c;
  box-shadow: var(--shadow);
}

.location-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 370px;
  border: 0;
}

.location-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: fit-content;
  padding: 11px 18px;
  border: 1px solid var(--saffron);
  color: var(--paper);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.location-map-link:hover {
  color: var(--ink);
  background: var(--saffron);
}

.location-map-link:focus-visible {
  outline: 2px solid var(--saffron-light);
  outline-offset: 4px;
}

.location-map-link:active {
  transform: scale(0.98);
}

@media (max-width: 960px) {
  .location-layout {
    grid-template-columns: 1fr;
  }

  .location-card,
  .location-map-frame,
  .location-map-frame iframe {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .location-section {
    padding-block: 69px;
  }

  .location-section .location-heading {
    margin-block-end: 27px;
  }

  .location-section .location-title {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .location-card {
    min-height: 0;
    padding: 22px 17px;
  }

  .location-map-frame,
  .location-map-frame iframe {
    min-height: 300px;
  }
}
