/* ===========================
   Contact Page — Full CSS
   =========================== */

/* ===== Hero ===== */
.contact-hero {
  --bg1: rgba(255, 0, 0, 0.08);
  --bg2: rgba(0, 195, 255, 0.08);
  --bg3: rgba(255, 235, 59, 0.12);
  background:
    radial-gradient(60% 80% at 10% 10%, var(--bg1), transparent 60%),
    radial-gradient(60% 80% at 90% 20%, var(--bg2), transparent 60%),
    radial-gradient(60% 80% at 80% 85%, var(--bg3), transparent 60%),
    radial-gradient(60% 80% at 15% 90%, var(--bg2), transparent 60%),
    #fff;
  border-bottom: 2px solid var(--red-color);
  padding: 3.2rem 0 2.4rem;
}
.contact-hero__wrap { max-width: 90%; margin: 0 auto; }
.contact-hero__title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white-color);
  letter-spacing: .2px;
}
.contact-hero__lede {
  color: #555;
  max-width: 60ch;
  margin-top: .35rem;
}

/* ===== Grid & Cards ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Contact left, Map right */
  gap: 2rem;
  margin: 2rem auto 2.5rem;
}
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  animation: riseIn .5s ease-out both;
  animation-delay: var(--delay, 0ms);
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .contact-card { animation: none; }
}

.contact-card__title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--white-color);
}

/* ===== Info rows ===== */
.contact-info .contact-info__row {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: .8rem;
  padding: .8rem 0;
  border-bottom: 1px solid #f3f3f3;
}
.contact-info .contact-info__row:last-child { border-bottom: 0; }
.contact-info__row i {
  font-size: 1.4rem; 
}
.contact-info p,
.contact-info a {
  color: #2b2b2b;
  line-height: 1.6;
  text-decoration: none;
}
.contact-info a { text-underline-offset: .15rem; }

/* ===== Hours ===== */
.contact-hours { margin-top: .6rem; }
.contact-hours h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: .4rem;
  color: var(--white-color);
}
.contact-hours ul { list-style: none; padding: 0; margin: 0; }
.contact-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem 0;
  border-bottom: 1px dashed #eee;
}
.contact-hours li:last-child { border-bottom: 0; }

/* ===== Quick actions ===== */
.contact-quick--in-card {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f3f3;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem .9rem;
  border-radius: 999px;
  border: 1.5px solid #eee;
  background: #fff;
  color: var(--white-color);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}
.chip:hover {
  transform: translateY(-1px);
  border-color: #ffd0d0;
  box-shadow: 0 6px 18px rgba(255,0,0,.12);
  background: #fff7f7;
}
.chip__icon { width: 18px; height: 18px; display: block; }

/* ===== Map Card ===== */
.contact-map { display: flex; flex-direction: column; }
.map-embed {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}
.map-link { text-align: right; margin-top: .5rem; }
.map-link a {
  color: #7a7a7a;
  text-underline-offset: .2rem;
}
.map-link a:hover { color: var(--red-color); }

/* ===== Utilities ===== */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
