/* ============================================================
   LOCATIONS PAGE STYLES
   ============================================================ */

/* ----- SERVICE AREAS ----- */
.areas-section { background: var(--black); }

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.areas-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(202, 138, 4, 0.08);
  transition: border-color var(--transition), background var(--transition);
  cursor: default;
}

.area-item:hover {
  border-color: rgba(202, 138, 4, 0.2);
  background: rgba(202, 138, 4, 0.03);
}

.area-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.area-dot-dim { background: var(--stone); }

.area-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 400;
}

.area-item span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ----- MAP ----- */
.areas-map { position: sticky; top: calc(var(--nav-height) + 2rem); }

.map-frame {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(202, 138, 4, 0.12);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 10;
  color: var(--gold);
  width: 36px;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
  animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -100%); }
  50%       { transform: translate(-50%, -110%); }
}

/* ----- EVENTS ----- */
.events-section { background: var(--black-soft); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(202, 138, 4, 0.06);
}

.event-card {
  background: var(--black-soft);
  padding: 3rem 2.5rem;
  transition: background var(--transition);
  cursor: default;
}

.event-card:hover { background: var(--black-mid); }

.event-icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.75;
}

.event-icon svg { width: 100%; height: 100%; }

.event-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.event-card p { font-size: 0.875rem; }

/* ----- PROCESS ----- */
.process-section {
  background: var(--black);
  padding-top: 0;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.process-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(202,138,4,0.4), rgba(202,138,4,0.4));
  margin-top: 2rem;
  flex-shrink: 0;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

.process-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(202, 138, 4, 0.15);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.process-step p { font-size: 0.85rem; line-height: 1.7; }

/* ----- CTA CARD ----- */
.loc-cta-section {
  background: var(--black-soft);
  padding: 5rem 0;
  border-top: 1px solid rgba(202, 138, 4, 0.08);
}

.loc-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.5rem 4rem;
  border: 1px solid rgba(202, 138, 4, 0.2);
  background: rgba(202, 138, 4, 0.03);
  flex-wrap: wrap;
}

.loc-cta-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.loc-cta-card p {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ----- CITY SECTIONS ----- */
.cities-section { background: var(--black); }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(202, 138, 4, 0.08);
}

.city-card {
  background: var(--black);
  padding: 3rem 2.5rem;
}

.city-card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(202, 138, 4, 0.12);
}

.city-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.city-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.2;
}

.city-card p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--stone-light);
}

/* ----- LOCATIONS FAQ ----- */
.loc-faq-section { background: var(--black-soft); }

.loc-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}

.loc-faq-item {
  padding: 2rem;
  border: 1px solid rgba(202, 138, 4, 0.15);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition);
}

.loc-faq-item:hover { border-color: rgba(202, 138, 4, 0.35); }

.loc-faq-item h3 {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 400;
  line-height: 1.3;
}

.loc-faq-item p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--stone-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .areas-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .areas-map       { position: relative; top: auto; }
  .map-frame       { height: 380px; }
  .events-grid     { grid-template-columns: repeat(2, 1fr); }
  .cities-grid     { grid-template-columns: 1fr; }
  .process-steps   { flex-direction: column; align-items: center; }
  .process-connector { width: 1px; height: 40px; margin: 0; }
  .process-connector::after { bottom: -4px; top: auto; left: -3px; right: auto; }
  .loc-cta-card    { padding: 2.5rem; justify-content: center; text-align: center; }
}

@media (max-width: 768px) {
  .events-grid  { grid-template-columns: 1fr; }
  .map-frame    { height: 300px; }
  .loc-faq-grid { grid-template-columns: 1fr; }
}
