/* ─── PAGE HERO ─── */
.page-hero {
  background: linear-gradient(135deg, #1e4a22 0%, #2d6635 40%, #398141 100%);
  color: #fff;
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
.page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #c8e6c8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: normal;
  color: #9ed9a0;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── CONTACT SECTION ─── */
.contact-section {
  background: var(--cream);
  padding: 80px 24px;
}
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ─── CONTACT CARDS ─── */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 26px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.contact-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.contact-card-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-detail a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}
.contact-detail a:hover { color: var(--green); }
.contact-detail span {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.detail-dot {
  width: 6px;
  height: 6px;
  background: var(--green-mid);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── WHATSAPP PANEL ─── */
.whatsapp-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.whatsapp-panel-header {
  background: linear-gradient(135deg, #1e4a22 0%, #398141 100%);
  padding: 28px 28px 24px;
  color: #fff;
  text-align: center;
}
.whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #c8e6c8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.whatsapp-panel-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.whatsapp-panel-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}
.whatsapp-panel-body { padding: 28px; }

.wa-message-area {
  width: 100%;
  min-height: 130px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--text);
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
  background: var(--cream);
  line-height: 1.55;
}
.wa-message-area::placeholder { color: var(--text-light); }
.wa-message-area:focus {
  border-color: var(--green);
  background: var(--white);
}
.wa-hint {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.4;
}
.wa-numbers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.wa-number-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
}
.wa-primary {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
}
.wa-primary:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.36);
}
.wa-secondary {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid var(--green-mid);
}
.wa-secondary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}
.wa-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wa-divider::before,
.wa-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── MAP STRIP ─── */
.map-strip {
  background: var(--white);
  padding: 0 24px 80px;
}
.map-inner { max-width: 1000px; margin: 0 auto; }
.map-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.map-label h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.map-label-icon {
  width: 36px;
  height: 36px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 760px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .whatsapp-panel {
    position: static;
  }
}
@media (max-width: 480px) {
  .contact-section { padding: 48px 20px; }
  .map-strip { padding: 0 20px 56px; }
}
