/* TAMSIC — contact.css  (extracted from base.css; tokens defined in base.css) */
/* ---------- CONTACT ---------- */
.contact-method {
  background: var(--charcoal);
  border: 1px solid rgba(232, 230, 227, 0.05);
  padding: 28px 24px;
  text-align: center;
  transition:
    border-color 0.3s,
    transform 0.3s;
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.contact-method:hover {
  border-color: rgba(140, 0, 15, 0.3);
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.35),
    0 0 24px var(--crimson-glow);
}
.contact-method-icon {
  width: 56px;
  height: 56px;
  background: rgba(140, 0, 15, 0.12);
  color: var(--crimson-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
  border: 1px solid var(--crimson-dark);
  border-radius: var(--radius-lg);
}
.contact-method-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 8px;
}
.contact-method-val {
  font-size: 14px;
  color: var(--bone-dim);
}

/* ---------- CONTACT (extended) ---------- */
.contact-method-note {
  font-size: 11px;
  color: #909090;
  margin-top: 6px;
}
.contact-method-value {
  font-size: 14px;
  color: var(--crimson-text);
}
.contact-form-card {
  background: var(--charcoal);
  border: 1px solid rgba(232, 230, 227, 0.05);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.info-card {
  background: var(--charcoal);
  border: 1px solid rgba(232, 230, 227, 0.05);
  padding: 24px;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.info-card-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson-text);
  margin-bottom: 12px;
}
.info-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
}
.info-row svg {
  color: var(--crimson-text);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.info-row span {
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.5;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}
.status-dot.online {
  background: #27ae60;
  box-shadow: 0 0 6px rgba(39, 174, 96, 0.6);
  animation: pulse-green 2s infinite;
}
.status-dot.busy {
  background: var(--gold);
}
.map-wrap {
  background: var(--charcoal);
  border: 1px solid rgba(232, 230, 227, 0.05);
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.map-wrap iframe {
  display: block;
  filter: grayscale(1) brightness(0.4) contrast(1.1);
}
.faq-item {
  border-bottom: 1px solid rgba(232, 230, 227, 0.07);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--bone-dim);
  text-align: left;
  transition: color 0.2s;
  font-family: var(--font-body);
}
.faq-q:hover {
  color: var(--bone);
}
.faq-q svg {
  transition: transform 0.3s;
  font-size: 10px;
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--crimson-text);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding-bottom: 16px;
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.8;
}
.faq-item.open .faq-q {
  color: var(--bone);
}
.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}
@media (max-width: 768px) {

  /* Contact form card: reduce padding */
  .contact-form-card {
    padding: 24px 16px;
  }

  /* Info cards: reduce padding */
  .info-card {
    padding: 16px;
  }
}
