/* Page tone */
.contact h1, .contact h2, .contact h3 { color:#0f172a; }
.contact p, .contact li { color:#334155; }

/* Hero */
.contact-hero{
  border-radius:16px;
  padding:22px 24px;
  background: linear-gradient(135deg, rgba(2,132,199,.10), rgba(99,102,241,.10));
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 12px 28px rgba(15,23,42,.06);
  margin-bottom:18px;
}
.contact-hero h1{ margin:0 0 6px 0; font-size: clamp(1.4rem, 2.4vw, 2rem); }
.contact-hero .lede{ margin:6px 0 10px; line-height:1.7; }
.hero-tags{ display:flex; gap:8px; flex-wrap:wrap; }
.hero-tags span{
  font-size:.85rem; font-weight:600; color:#065f46;
  background:rgba(2,132,199,.10); border:1px solid rgba(2,132,199,.28);
  padding:6px 10px; border-radius:999px;
}

/* Grid of contact cards */
.contact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 24px;
  align-items: stretch; /* ensures equal height */
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes button(s) to bottom */
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}
.card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:12px;
  box-shadow:0 8px 20px rgba(15,23,42,.06);
  padding:14px;
}
.card h3{ margin-top:0; font-size:1.05rem; }

.list{ display:flex; gap:8px; flex-wrap:wrap; margin-top:8px; }
.chip{
  display:inline-block; text-decoration:none; font-weight:600; color:#0f172a;
  background:#f1f5f9; border:1px solid rgba(15,23,42,.10);
  padding:6px 12px; border-radius:999px; transition:transform .15s ease, box-shadow .15s ease;
}
.chip:hover{ transform:translateY(-1px); box-shadow:0 6px 14px rgba(15,23,42,.10); }

/* Location + map */
.location-head{ margin:8px 0 8px; }
.location-head .muted{ color:#64748b; }

.location-grid{
  display:grid; gap:12px; grid-template-columns: 1.1fr 1.4fr;
}

.address address{ font-style: normal; line-height:1.6; }
.btn-row{ display:flex; gap:8px; margin:10px 0 6px; }
.btn-ghost{
  display:inline-block; text-decoration:none; font-weight:600; color:#0f172a;
  background:#fff; border:1px solid rgba(15,23,42,.16);
  padding:8px 12px; border-radius:10px;
}
.travel{ margin:8px 0 0 16px; line-height:1.55; }

.map iframe{
  width:100%; height:360px; border:0; border-radius:10px;
}

/* FAQ */
.faq{ margin: 18px 0 8px; }
.faq details{
  background:#fff; border:1px solid rgba(15,23,42,.08);
  border-radius:10px; padding:10px 12px;
  box-shadow:0 6px 16px rgba(15,23,42,.05); margin-bottom:10px;
}
.faq summary{ cursor:pointer; font-weight:600; color:#0f172a; }

/* Responsive */
@media (max-width: 1100px){
  .contact-grid{ grid-template-columns: 1fr 1fr; }
  .location-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-hero{ padding:18px; }
}
/* Section wrapper */
.contact-section {
  margin: 40px 0;
}

/* Grid layout matching Visit Us */
.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Contact card styling (same as Visit Us cards) */
.contact-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(15,23,42,0.06);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;  /* uniform height */
}

.contact-card h3 {
  margin: 0 0 10px;
  color: #0f766e; /* teal accent */
  font-size: 1.1rem;
}

.contact-card p {
  color: #475569; /* slate-600 */
  font-size: 0.95rem;
  margin-bottom: 14px;
}

/* Buttons / links */
.contact-card a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #111827;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-card a:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}
