/* ── PAGE HERO ───────────────────────── */
.page-hero {
  min-height: 340px;
  background: linear-gradient(135deg, var(--dark) 0%, #163e38 55%, #1a5249 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 8% 80px;
  position: relative; overflow: hidden;
}
.page-hero-orb1 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 65%);
  right: -100px; top: -100px; pointer-events: none;
}
.page-hero-orb2 {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,158,138,.15) 0%, transparent 65%);
  left: 5%; bottom: -50px; pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 600px; }
.page-hero-content .hero-badge { margin-bottom: 20px; }
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 700;
  color: #fff; line-height: 1.1; margin-bottom: 16px;
}
.page-hero-content h1 em { color: var(--gold); font-style: italic; }
.page-hero-content p {
  font-size: 1.05rem; color: rgba(255,255,255,.72);
  font-weight: 500; line-height: 1.7;
}

/* ── CONTACT SECTION ─────────────────── */
.contact-section { padding: 90px 8%; background: var(--light); }

/* Info Cards */
.contact-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 70px;
}
.contact-info-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  border: 1px solid rgba(10,126,110,.08);
  transition: all .3s; position: relative; overflow: hidden;
}
.contact-info-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(10,126,110,.10); }
.contact-info-card:hover::before { transform: scaleX(1); }

.contact-card-icon {
  font-size: 2rem; margin-bottom: 16px; display: block;
}
.contact-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 10px;
}
.contact-info-card p {
  font-size: .9rem; line-height: 1.75; font-weight: 500;
  color: var(--grey); margin-bottom: 18px;
}
.card-link {
  font-size: .875rem; font-weight: 700; color: var(--teal);
  text-decoration: none; display: inline-flex; align-items: center;
  gap: 4px; transition: gap .2s;
}
.card-link:hover { gap: 8px; }

/* Main 2-col layout */
.contact-main {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start;
}

/* Form */
.contact-form-wrap {
  background: #fff; border-radius: 24px; padding: 44px 40px;
  border: 1px solid rgba(10,126,110,.08);
  box-shadow: 0 8px 40px rgba(10,126,110,.06);
}
.form-header { margin-bottom: 32px; }
.form-header .section-title { font-size: 2rem; margin-bottom: 10px; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: .85rem; font-weight: 700; color: var(--text); letter-spacing: .3px;
}
.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(10,126,110,.15);
  border-radius: 12px; font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 500; color: var(--text);
  background: var(--light); transition: border .2s, box-shadow .2s;
  outline: none; resize: none; width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,126,110,.10);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); font-weight: 400; }

.btn-whatsapp {
  grid-column: 1 / -1;
  background: #25D366; color: #fff;
  padding: 15px 30px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; border: none;
  cursor: pointer; transition: all .25s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
  width: 100%;
}
.btn-whatsapp:hover {
  background: #20c05a; transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
}

.form-note {
  grid-column: 1 / -1; text-align: center;
  font-size: .85rem; color: var(--grey); font-weight: 500;
}
.form-note a { color: var(--teal); font-weight: 700; text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

/* Map */
.map-wrap { display: flex; flex-direction: column; gap: 0; }
.map-header { margin-bottom: 24px; }
.map-header .section-title { font-size: 2rem; }

.map-container {
  width: 100%; height: 380px; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(10,126,110,.10);
  box-shadow: 0 8px 30px rgba(10,126,110,.08);
}
.map-container iframe { display: block; }

.quick-btns {
  display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap;
}
.quick-btns .btn-primary,
.quick-btns .btn-teal { flex: 1; justify-content: center; text-align: center; }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .contact-section { padding: 60px 6%; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 24px; }
  .contact-form { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: 1; }
  .btn-whatsapp { grid-column: 1; }
  .form-note { grid-column: 1; }
  .map-container { height: 280px; }
  .quick-btns { flex-direction: column; }
  .quick-btns .btn-primary,
  .quick-btns .btn-teal { text-align: center; }
  .page-hero { padding: 110px 6% 60px; }
}
@media (max-width: 480px) {
  .page-hero-content h1 { font-size: 2.4rem; }
}

/* ── BOTH LOCATIONS SECTION ──────────────────────── */
.locations-section {
  padding: 90px 8%;
  background: linear-gradient(180deg, #f0f7f6 0%, #fff 100%);
}
.locations-header {
  text-align: center;
  margin-bottom: 56px;
}
.locations-header .section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}
.locations-header .section-sub {
  max-width: 520px;
  margin: 0 auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.location-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(10,126,110,.10);
  box-shadow: 0 10px 40px rgba(10,126,110,.08);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(10,126,110,.13);
}

.location-card-header {
  padding: 28px 28px 20px;
}
.location-badge {
  display: inline-block;
  background: rgba(10,126,110,.10);
  color: var(--teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.location-badge--gold {
  background: rgba(201,168,76,.12);
  color: var(--gold);
}
.location-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.location-card-header p {
  font-size: .875rem;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 500;
}

.location-map {
  width: 100%;
  height: 300px;
  flex-shrink: 0;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.location-card-footer {
  padding: 20px 28px 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.location-card-footer .btn-primary,
.location-card-footer .btn-teal {
  flex: 1;
  text-align: center;
  justify-content: center;
  font-size: .875rem;
  padding: 12px 16px;
}

@media (max-width: 900px) {
  .locations-grid { grid-template-columns: 1fr; }
  .locations-section { padding: 60px 6%; }
}
@media (max-width: 480px) {
  .location-card-footer { flex-direction: column; }
}

/* Form now full-width since map is removed from beside it */
.contact-main {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
}
