/* ─── Page Hero ─────────────────────────────────────────────── */

.contact-hero {
  position: relative;
  background: #f7f9fb;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #747780;
}

.page-breadcrumb a { color: #747780; transition: color 160ms ease; }
.page-breadcrumb a:hover { color: #1eb8d4; }
.page-breadcrumb .material-symbols-outlined { font-size: 1rem; color: #c4c6d0; }
.page-breadcrumb span:last-child { color: #001736; }

/* ─── Layout ─────────────────────────────────────────────────── */

.contact-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 2rem;
  }
}

/* ─── Form Card ──────────────────────────────────────────────── */

.contact-form-card {
  border-radius: 1.55rem;
  border: 1px solid rgba(196, 198, 208, 0.24);
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(25, 28, 30, 0.06);
  overflow: hidden;
}

.contact-form-head {
  padding: 2rem 2rem 0;
}

@media (min-width: 640px) {
  .contact-form-head { padding: 2.25rem 2.5rem 0; }
}

.contact-form-head h2 {
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #001736;
}

.contact-form-head p {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #747780;
}

.contact-form {
  padding: 1.5rem 2rem 2rem;
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .contact-form { padding: 1.75rem 2.5rem 2.5rem; }
}

/* ─── Form Fields ────────────────────────────────────────────── */

.form-row {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 560px) {
  .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #001736;
  letter-spacing: -0.01em;
}

.form-field label span[aria-hidden] {
  color: #1eb8d4;
  margin-left: 0.1rem;
}

.form-input-wrap {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  color: #747780;
  pointer-events: none;
}

.form-input-wrap input,
.form-input-wrap select {
  width: 100%;
  padding: 0.72rem 0.95rem 0.72rem 2.65rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(196, 198, 208, 0.55);
  background: #f7f9fb;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: #191c1e;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input-wrap input::placeholder { color: #9aa3af; }

.form-input-wrap input:focus,
.form-input-wrap select:focus {
  border-color: #1eb8d4;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(30, 184, 212, 0.12);
}

/* Select specific */
.form-select-wrap select {
  cursor: pointer;
  padding-right: 2.5rem;
}

.form-select-chevron {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #747780;
  pointer-events: none;
}

/* Textarea */
.form-field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(196, 198, 208, 0.55);
  background: #f7f9fb;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: #191c1e;
  resize: vertical;
  min-height: 130px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  outline: none;
}

.form-field textarea::placeholder { color: #9aa3af; }

.form-field textarea:focus {
  border-color: #1eb8d4;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(30, 184, 212, 0.12);
}

/* Checkbox */
.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #43474f;
}

.form-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox-box {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  border-radius: 0.35rem;
  border: 1.5px solid rgba(196, 198, 208, 0.8);
  background: #f7f9fb;
  transition: border-color 160ms ease, background-color 160ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-checkbox-label input[type="checkbox"]:checked + .form-checkbox-box {
  background: #1eb8d4;
  border-color: #1eb8d4;
}

.form-checkbox-label input[type="checkbox"]:checked + .form-checkbox-box::after {
  content: "";
  display: block;
  width: 0.32rem;
  height: 0.58rem;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg) translate(-0.5px, -1px);
}

.form-link {
  color: #1eb8d4;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(30, 184, 212, 0.4);
  transition: color 160ms ease;
}

.form-link:hover { color: #006876; }

/* Submit button */
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: #001736;
  border: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 14px 30px rgba(0, 23, 54, 0.16);
}

.form-submit .material-symbols-outlined {
  font-size: 1.1rem;
  transition: transform 200ms ease;
}

.form-submit:hover {
  background: #002b5c;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 23, 54, 0.2);
}

.form-submit:hover .material-symbols-outlined {
  transform: translateX(3px);
}

.form-submit:active { transform: translateY(0); }

.form-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  color: #9aa3af;
  justify-content: center;
}

.form-note .material-symbols-outlined { font-size: 0.95rem; }

/* ─── Sidebar Cards ──────────────────────────────────────────── */

.contact-sidebar {
  display: grid;
  gap: 1rem;
}

.contact-info-card {
  border-radius: 1.35rem;
  border: 1px solid rgba(196, 198, 208, 0.24);
  background: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(25, 28, 30, 0.05);
}

.contact-info-title {
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #001736;
  margin-bottom: 1rem;
}

/* Direct contact */
.contact-info-list {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(196, 198, 208, 0.3);
  background: #f7f9fb;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-info-item:hover {
  border-color: rgba(30, 184, 212, 0.3);
  background: rgba(30, 184, 212, 0.04);
}

.contact-info-icon {
  display: inline-flex;
  flex-shrink: 0;
  height: 2.4rem;
  width: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(30, 184, 212, 0.1);
  color: #1eb8d4;
}

.contact-info-icon .material-symbols-outlined { font-size: 1.1rem; }

.contact-info-item div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-info-item strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: #001736;
}

.contact-info-item span:not(.contact-info-icon):not(.contact-info-arrow) {
  font-size: 0.82rem;
  color: #43474f;
}

.contact-info-arrow {
  font-size: 0.9rem;
  color: #c4c6d0;
  flex-shrink: 0;
  transition: color 160ms ease, transform 160ms ease;
}

.contact-info-item:hover .contact-info-arrow {
  color: #1eb8d4;
  transform: translateX(2px);
}

/* Working hours */
.contact-hours-list {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #43474f;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(196, 198, 208, 0.25);
}

.contact-hours-list li:last-child { border-bottom: none; padding-bottom: 0; }

.contact-hours-list strong {
  font-weight: 700;
  color: #001736;
}

.contact-hours-note {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.76rem;
  line-height: 1.5;
  color: #747780;
  background: rgba(30, 184, 212, 0.06);
  border-radius: 0.65rem;
  padding: 0.6rem 0.75rem;
}

.contact-hours-note .material-symbols-outlined {
  font-size: 0.95rem;
  color: #1eb8d4;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* Social grid */
.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.contact-social-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(196, 198, 208, 0.35);
  font-size: 0.8rem;
  font-weight: 700;
  color: #001736;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.contact-social-item:hover {
  border-color: rgba(30, 184, 212, 0.35);
  background: rgba(30, 184, 212, 0.06);
  color: #0f92a9;
}

.contact-social-icon {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.contact-social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ─── FAQ ────────────────────────────────────────────────────── */

.faq-section {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(196, 198, 208, 0.3);
}

.faq-head {
  margin-bottom: 1.75rem;
}

.faq-head h2 {
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #001736;
}

.faq-head p {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: #747780;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
  max-width: 820px;
}

.faq-item {
  border-radius: 1.1rem;
  border: 1px solid rgba(196, 198, 208, 0.3);
  background: #ffffff;
  overflow: hidden;
  transition: border-color 180ms ease;
}

.faq-item:has(.faq-trigger[aria-expanded="true"]) {
  border-color: rgba(30, 184, 212, 0.25);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #001736;
  letter-spacing: -0.01em;
}

.faq-chevron {
  font-size: 1.1rem;
  color: #747780;
  flex-shrink: 0;
  transition: transform 240ms ease, color 180ms ease;
}

.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: #1eb8d4;
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-body.is-open {
  grid-template-rows: 1fr;
}

.faq-body > div {
  overflow: hidden;
}

.faq-body p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.87rem;
  line-height: 1.7;
  color: #43474f;
}

.faq-body a {
  color: #1eb8d4;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(30, 184, 212, 0.35);
}

.faq-body a:hover { color: #006876; }
