/* =====================================================================
   Ridhaan Travels — Contact Us template
   Additive only: tokens, buttons, .section, .page-hero, .enquiry-form
   family etc. all come from the shared assets/css/site.css. Scoped
   under .rt for the same specificity reasons as site.css.
===================================================================== */

/* Info cards float up over the hero's bottom edge */
.rt .info-overlap { padding-top: 0; margin-top: -56px; position: relative; z-index: 2; }

.rt .info-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .rt .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .rt .info-grid { grid-template-columns: repeat(4, 1fr); } }

.rt .info-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}
.rt .info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.rt .info-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 999px;
  margin: 0 auto 18px;
  background: var(--secondary);
  color: var(--accent);
}
.rt .info-card-icon-whatsapp { background: oklch(60% .14 152 / .12); color: var(--whatsapp); }
.rt .info-card h3 { font-size: 1rem; margin-bottom: 6px; }
.rt .info-card-value { display: block; font-weight: 600; color: var(--foreground); margin-bottom: 4px; }
.rt .info-card p { color: var(--muted-foreground); font-size: .9rem; margin: 0; }

/* Form card wrapper (Forminator renders its own fields inside) */
.rt .form-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.rt .form-card h2 { font-size: 1.4rem; }
.rt .form-card > p { color: var(--muted-foreground); font-size: .9rem; margin: 0 0 24px; }

.rt .form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: var(--muted-foreground);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.rt .form-divider::before,
.rt .form-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* Office / map card */
.rt .office-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.rt .office-card-map { width: 100%; height: 240px; border: 0; display: block; filter: grayscale(.15); }
.rt .office-card-body { padding: 28px; }

.rt .hours { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; font-size: .88rem; color: var(--muted-foreground); }
.rt .hours div { display: flex; justify-content: space-between; gap: 12px; }
.rt .hours span:last-child { color: var(--foreground); font-weight: 600; text-align: right; }

/* Form + office grid */
.rt .form-office-grid { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) { .rt .form-office-grid { grid-template-columns: 1.1fr .9fr; } }

/* FAQ accordion */
.rt .faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.rt .faq-item {
  border: 1px solid var(--border);
  border-radius: .85rem;
  background: var(--card);
  padding: 4px 20px;
}
.rt .faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.rt .faq-item summary::-webkit-details-marker { display: none; }
.rt .faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--accent); font-weight: 400; }
.rt .faq-item[open] summary::after { content: "\2212"; }
.rt .faq-item p { margin: 0 0 18px; color: var(--muted-foreground); font-size: .9rem; line-height: 1.6; }
