/* ---------- Breadcrumb (self-contained; contact.php doesn't load shop.css/blog.css) ---------- */
.breadcrumb {
  padding: 16px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--blue); font-weight: 500; }
.breadcrumb .sep { margin: 0 6px; }

/* ---------- Page head ---------- */
.contact-page-head {
  background: var(--bg-tint);
  padding: 34px 0 30px;
  text-align: center;
}
.contact-eyebrow {
  display: inline-block;
  background: white;
  color: var(--purple);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.contact-page-head h1 {
  font-size: 32px;
  margin: 0 0 10px;
  color: var(--navy-text);
  line-height: 1.25;
}
.contact-page-head h1 em,
.faq-head h2 em {
  font-family: 'Caveat', cursive;
  font-style: normal;
  color: var(--blue);
  font-size: 36px;
}
.contact-page-head p {
  max-width: 520px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ---------- Layout ---------- */
.contact-layout {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0 60px;
}
.contact-main { flex: 1; min-width: 0; }

/* ---------- Form card ---------- */
.contact-form-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--card-shadow);
}
.contact-form-card h2 {
  font-size: 21px;
  margin: 0 0 6px;
  color: var(--navy-text);
}
.form-subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-text);
}
.req { color: var(--red); }

.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 13px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--navy-text);
  background: white;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,76,253,0.12);
}
.form-field select { appearance: auto; cursor: pointer; }

.btn-send {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.ico-send {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success {
  display: none;
  margin: 16px 0 0;
  padding: 12px 16px;
  background: #eaf6ee;
  color: var(--green);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ---------- Sidebar ---------- */
.contact-sidebar {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.widget {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--card-shadow);
}
.widget h3 {
  font-size: 14px;
  margin: 0 0 14px;
  color: var(--navy-text);
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.info-row:first-of-type { border-top: none; padding-top: 0; }
.info-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.info-row strong { display: block; font-size: 13px; color: var(--navy-text); margin-bottom: 2px; }
.info-row p { margin: 0; font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.info-row p a { color: var(--text-muted); transition: color .15s ease; }
.info-row p a:hover { color: var(--blue); }

.contact-social {
  display: flex;
  gap: 10px;
}
.contact-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.contact-social a:hover { background: var(--blue); }
.contact-social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .15s ease;
}
.contact-social a:hover svg { stroke: white; }

.contact-quick-widget {
  background: var(--navy);
  border: none;
  color: white;
  text-align: center;
}
.quick-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  font-size: 19px;
  margin-bottom: 10px;
}
.contact-quick-widget h3 { color: white; }
.contact-quick-widget p { font-size: 12.5px; color: rgba(255,255,255,0.75); margin: 0 0 16px; }
.btn-quick-chat {
  display: block;
  background: var(--green);
  color: white;
  padding: 11px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13.5px;
  transition: background .15s ease;
}
.btn-quick-chat:hover { background: #025c29; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--bg-tint); padding: 50px 0 60px; }
.faq-head { text-align: center; max-width: 560px; margin: 0 auto 32px; }
.faq-head h2 { font-size: 26px; margin: 0 0 10px; color: var(--navy-text); }
.faq-head p { font-size: 14px; color: var(--text-muted); margin: 0; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 20px;
  box-shadow: 0 2px 8px rgba(11,21,80,0.05);
  transition: border-color .15s ease;
}
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform .2s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p {
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #4a5178;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .contact-layout { flex-direction: column; }
  .contact-sidebar { width: 100%; position: static; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 22px; }
  .contact-page-head h1 { font-size: 26px; }
}
