@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

* { box-sizing: border-box; }
body {
  background: #f0f4f8;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* ─── PAGE HEADER ─────────────────────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, #020617 0%, #0c1a35 35%, #1a3a6e 65%, #0f172a 100%);
  padding: 90px 0 80px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-header-orb-1 {
  position: absolute; top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 65%);
  border-radius: 50%; z-index: 0; pointer-events: none;
}
.page-header-orb-2 {
  position: absolute; bottom: -150px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.10) 0%, transparent 65%);
  border-radius: 50%; z-index: 0; pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(99,179,255,0.28);
  color: #93c5fd; border-radius: 50px;
  padding: 7px 18px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.6px; margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.page-header h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.8px;
  line-height: 1.12; margin-bottom: 1rem; font-family: inherit;
}
.page-header h1 .highlight {
  background: linear-gradient(90deg, #60a5fa, #818cf8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p {
  color: #94a3b8; font-size: 1.05rem;
  max-width: 520px; margin: 0 auto; line-height: 1.75;
}

/* ─── RESPONSE PROMISE BAR ────────────────────────────────────────────────── */
.promise-bar {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-bottom: 1.5px solid #bfdbfe;
  padding: 14px 0;
}
.promise-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.845rem; font-weight: 600; color: #1e3a8a;
}
.promise-item i { color: #2563eb; font-size: 1rem; }

/* ─── INFO CARDS ──────────────────────────────────────────────────────────── */
.info-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
  border: 1.5px solid #f1f5f9;
  display: flex; align-items: flex-start; gap: 18px;
  margin-bottom: 14px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37,99,235,0.10);
  border-color: #bfdbfe;
}
.info-icon {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.info-title {
  font-size: 0.78rem; font-weight: 800; color: #64748b;
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 5px; font-family: inherit;
}
.info-value {
  color: #0f172a; font-size: 0.9rem; font-weight: 600;
  line-height: 1.6; font-family: inherit;
}
.info-value a { color: #2563eb; text-decoration: none; font-weight: 600; }
.info-value a:hover { text-decoration: underline; }
.info-note { font-size: 0.78rem; color: #94a3b8; margin-top: 3px; font-weight: 400; }

/* Hours card */
.hours-card {
  background: linear-gradient(135deg, #0c1a35, #1e3a8a);
  border-radius: 18px; padding: 26px 24px; color: #fff;
  margin-top: 6px; position: relative; overflow: hidden; isolation: isolate;
}
.hours-card::after {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
  border-radius: 50%; z-index: 0; pointer-events: none;
}
.hours-card .card-content { position: relative; z-index: 1; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.875rem;
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-day { color: rgba(255,255,255,0.65); font-weight: 500; }
.hours-time { color: #fff; font-weight: 700; }
.hours-time.closed { color: #f87171; }

/* ─── FORM CARD ───────────────────────────────────────────────────────────── */
.form-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 36px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.08);
  border: 1.5px solid #f1f5f9;
}
.form-card-title {
  font-size: 1.1rem; font-weight: 800; color: #0f172a;
  letter-spacing: -0.2px; margin-bottom: 6px; font-family: inherit;
}
.form-card-subtitle { color: #64748b; font-size: 0.875rem; margin-bottom: 1.75rem; }

.form-card .form-label {
  font-size: 0.73rem; font-weight: 800; color: #374151;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 7px; font-family: inherit;
}
.form-card .form-control,
.form-card .form-select {
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 0.9rem;
  color: #0f172a;
  background: #f8fafc;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.10);
  background: #fff; outline: none;
}
.form-card textarea.form-control { resize: none; }

.btn-submit {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none; border-radius: 12px; color: #fff;
  padding: 14px 0; font-weight: 700; font-size: 0.95rem;
  width: 100%; justify-content: center;
  font-family: inherit;
  box-shadow: 0 5px 16px rgba(37,99,235,0.38);
  transition: all 0.2s; cursor: pointer;
}
.btn-submit:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.48);
}

/* Success alert */
.success-alert {
  background: rgba(22,163,74,0.07);
  border: 1.5px solid rgba(22,163,74,0.28);
  border-radius: 14px; padding: 20px 22px;
  color: #15803d;
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 24px;
}
.success-alert i { font-size: 1.4rem; margin-top: 2px; }

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-section-title {
  font-size: 1.25rem; font-weight: 800; color: #0f172a;
  letter-spacing: -0.2px; font-family: inherit;
}
.faq-card {
  background: #fff;
  border-radius: 14px; border: 1.5px solid #f1f5f9;
  overflow: hidden; margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-card:hover { border-color: #bfdbfe; box-shadow: 0 6px 18px rgba(37,99,235,0.08); }
.faq-btn {
  width: 100%; background: #fff; border: none; text-align: left;
  padding: 18px 20px; font-weight: 700; font-size: 0.9rem;
  color: #0f172a; font-family: inherit; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; transition: background 0.15s;
}
.faq-btn:hover { background: #f8fafc; }
.faq-btn .faq-icon {
  width: 28px; height: 28px; min-width: 28px; border-radius: 8px;
  background: #eff6ff; color: #2563eb;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: transform 0.2s, background 0.2s;
}
.faq-btn.collapsed .faq-icon { background: #f1f5f9; color: #64748b; }
.faq-body {
  padding: 0 20px 18px; font-size: 0.875rem;
  color: #475569; line-height: 1.8;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .page-header { padding: 65px 0 55px; }
  .form-card { padding: 26px 20px; }
  .promise-bar .d-flex { flex-wrap: wrap; gap: 10px; justify-content: center; }
}
