/* ===== LOCATION PAGE STYLES ===== */

/* Hero */
.loc-hero {
  background: linear-gradient(135deg, #0D1F35 0%, #1F4275 60%, #2A5298 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.loc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.loc-hero__content { position: relative; z-index: 1; max-width: 720px; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(240,244,250,0.65);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(240,244,250,0.65); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #E8A020; }
.breadcrumb__sep { color: rgba(240,244,250,0.3); }
.breadcrumb__current { color: #E8A020; font-weight: 600; }

.loc-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800; color: #fff;
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 20px;
}
.loc-hero__sub {
  font-size: 1.1rem; color: rgba(240,244,250,0.85);
  line-height: 1.75; margin-bottom: 32px; max-width: 600px;
}
.loc-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Info band */
.info-band { background: #fff; border-bottom: 1px solid #D1D9E6; padding: 28px 0; }
.info-band__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.info-band__item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; color: #0D1F35;
}
.info-band__item svg { color: #E8A020; width: 22px; height: 22px; flex-shrink: 0; }

/* Main layout */
.loc-main { padding: 72px 0; background: #fff; }
.loc-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }

/* Content */
.loc-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700; color: #0D1F35;
  margin: 52px 0 14px;
  padding-bottom: 12px;
  border-bottom: 3px solid #E8A020;
}
.loc-content h2:first-child { margin-top: 0; }
.loc-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem; font-weight: 600; color: #1F4275;
  margin: 28px 0 10px;
}
.loc-content p { font-size: 1rem; line-height: 1.82; color: #3A3A3C; margin-bottom: 16px; }
.loc-content ul { list-style: none; padding: 0; margin: 0 0 24px; }
.loc-content ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid #F2F2F7;
  font-size: 0.97rem; color: #3A3A3C; line-height: 1.65;
}
.loc-content ul li::before {
  content: '';
  width: 18px; height: 18px; min-width: 18px;
  border-radius: 50%; margin-top: 2px;
  background: #E8A020 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D1F35' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/11px no-repeat;
}

/* FAQ */
.loc-faq { margin-top: 8px; }
.faq-item { border: 1px solid #D1D9E6; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.faq-item__question {
  width: 100%; background: none; border: none;
  padding: 18px 20px; text-align: left;
  font-family: 'Inter', sans-serif; font-size: 0.97rem; font-weight: 600; color: #0D1F35;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background 0.2s;
}
.faq-item__question:hover { background: #F5F7FA; }
.faq-item__question.is-open { background: #F5F7FA; color: #1F4275; }
.faq-item__icon { width: 20px; height: 20px; min-width: 20px; color: #E8A020; transition: transform 0.3s; }
.faq-item__question.is-open .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item__answer-inner { padding: 0 20px 18px; font-size: 0.95rem; line-height: 1.78; color: #636366; }

/* Other regions */
.regions-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 16px; }
.region-card {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border: 1px solid #D1D9E6; border-radius: 8px;
  text-decoration: none; color: #1F4275; font-weight: 600; font-size: 14px;
  transition: all 0.2s;
}
.region-card:hover { border-color: #E8A020; background: #FFF9EE; color: #0D1F35; }
.region-card svg { color: #E8A020; width: 16px; height: 16px; flex-shrink: 0; }

/* Contact card */
.contact-card {
  background: #fff; border: 1px solid #D1D9E6; border-radius: 12px;
  padding: 28px; box-shadow: 0 4px 24px rgba(13,31,53,0.08);
  position: sticky; top: 90px;
}
.contact-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: #0D1F35;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid #F2F2F7;
}
.contact-card__item { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.contact-card__label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #AEAEB2; }
.contact-card__value { font-size: 1rem; font-weight: 600; color: #0D1F35; text-decoration: none; }
.contact-card__value:hover { color: #E8A020; }
.contact-card__wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px; background: #E8A020; color: #0D1F35;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px;
  border-radius: 6px; text-decoration: none; margin: 18px 0 16px;
  transition: background 0.2s;
}
.contact-card__wa-btn:hover { background: #C4841A; }
.contact-card__checks { list-style: none; padding: 0; margin: 0; }
.contact-card__checks li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #636366; padding: 5px 0; }
.contact-card__checks li::before { content: '✓'; color: #E8A020; font-weight: 700; }

/* Responsive */
@media (max-width: 1023px) {
  .loc-layout { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  .info-band__grid { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 767px) {
  .regions-grid { grid-template-columns: 1fr; }
  .loc-hero__cta { flex-direction: column; }
  .loc-hero { padding: 100px 0 48px; }
}
