/* ==========================================================================
   Locations page only.
   ========================================================================== */
.page-hero {
  min-height: 60vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 100px 5% 80px; position: relative; overflow: hidden;
  background-color: var(--black); /* photo layer is set inline from the Page Content admin field */
}
.page-hero-title { font-size: clamp(36px, 5vw, 64px); font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px; }

.locations-large { display: flex; flex-direction: column; gap: 24px; }
.location-large-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 20px; overflow: hidden; background: var(--grey-dark); min-height: 500px; }
.location-large-card:nth-child(even) { direction: rtl; }
.location-large-card:nth-child(even) > * { direction: ltr; }
.location-image { position: relative; overflow: hidden; }
.location-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%); transition: all .6s ease; }
.location-large-card:hover .location-image img { filter: grayscale(0%); transform: scale(1.05); }
.location-content { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.location-flag { font-size: 48px; margin-bottom: 24px; }
.location-city { font-size: 42px; font-weight: 700; letter-spacing: -1px; margin-bottom: 8px; }
.location-country { font-size: 16px; color: var(--grey-light); margin-bottom: 24px; }
.location-description { font-size: 16px; color: var(--grey-light); line-height: 1.7; margin-bottom: 32px; }
.location-details { display: flex; flex-direction: column; gap: 16px; }
.location-detail { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--grey-light); }
.location-detail-icon { width: 40px; height: 40px; background: rgba(255,255,255,.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }

.map-section { position: relative; height: 500px; background: var(--dark); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.map-placeholder { text-align: center; }
.map-dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px 100px; margin-bottom: 40px; }
.map-dot { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.map-dot-circle { width: 24px; height: 24px; background: var(--white); border-radius: 50%; position: relative; animation: mapPulse 2s ease-in-out infinite; }
.map-dot-circle::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; animation: mapRipple 2s ease-in-out infinite; }
@keyframes mapPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes mapRipple { 0% { transform: translate(-50%, -50%) scale(.8); opacity: 1; } 100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; } }
.map-dot-label { font-size: 14px; font-weight: 600; }
.map-text { font-size: 16px; color: var(--grey); }

.reach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reach-card { background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05); border-radius: 16px; padding: 40px; text-align: center; transition: all .4s ease; }
.reach-card:hover { background: rgba(255,255,255,.05); transform: translateY(-4px); }
.reach-icon { font-size: 40px; margin-bottom: 20px; }
.reach-title { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.reach-text { font-size: 14px; color: var(--grey-light); line-height: 1.6; }

.cta-section { background-color: var(--black); /* photo layer is set inline from the Page Content admin field */ }

@media (max-width: 900px) {
  .location-large-card { grid-template-columns: 1fr; }
  .location-large-card:nth-child(even) { direction: ltr; }
  .location-image { height: 300px; }
  .reach-grid { grid-template-columns: 1fr; }
  .map-dots { flex-direction: column; gap: 40px; }
}
@media (max-width: 600px) {
  .location-content { padding: 40px 24px; }
}
