/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --primary:   #1a6fc4;
  --primary-d: #155fa8;
  --teal:      #0ea5a0;
  --teal-d:    #0b8c88;
  --light-bg:  #f0f7ff;
  --soft-bg:   #f8fafc;
  --card-bg:   #ffffff;
  --text:      #1e293b;
  --muted:     #64748b;
  --border:    #e2e8f0;
}

/* ─── Base ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light-bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
a { text-decoration: none; }
.text-teal { color: var(--teal) !important; }
.bg-soft { background: var(--soft-bg); }

/* ─── Navbar ────────────────────────────────────────────────────────────────── */
.navbar-custom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  padding: 10px 0;
}
.brand-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
}
.brand-name { font-size: 1.2rem; font-weight: 700; color: #fff; }
.active-nav { border-bottom: 2px solid rgba(255,255,255,.7); }

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  padding: 80px 0 60px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.hero-eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 20px;
}
.hero-title-accent { color: #a8e6e4; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,.85); max-width: 480px; margin-bottom: 0; }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-label { font-size: .72rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.3); }

.hero-illustration {
  position: relative; height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.hero-circle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.hero-circle-1 { width: 280px; height: 280px; }
.hero-circle-2 { width: 200px; height: 200px; background: rgba(255,255,255,.06); }
.hero-icon-center {
  width: 100px; height: 100px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: #fff;
  z-index: 2;
}
.hero-card-float {
  position: absolute; z-index: 3;
  background: #fff; border-radius: 12px;
  padding: 10px 16px; box-shadow: 0 8px 24px rgba(0,0,0,.15);
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: var(--text);
  white-space: nowrap;
}
.hero-card-1 { top: 30px; right: 20px; }
.hero-card-2 { bottom: 50px; left: 10px; }

/* ─── Section titles ─────────────────────────────────────────────────────────── */
.section-title { font-size: 1.5rem; font-weight: 800; color: var(--text); }

/* ─── Spec pills ─────────────────────────────────────────────────────────────── */
.spec-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.spec-pill {
  padding: 6px 16px; border-radius: 20px;
  background: var(--light-bg); border: 1.5px solid var(--border);
  font-size: .82rem; font-weight: 600; color: var(--muted);
  transition: all .15s;
}
.spec-pill:hover, .spec-pill.active-pill {
  background: var(--primary); border-color: var(--primary); color: #fff;
}

/* ─── Doctor card ────────────────────────────────────────────────────────────── */
.doctor-card {
  background: #fff; border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.doctor-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.doctor-card-accent { height: 4px; background: var(--teal); }
.doctor-card-body { padding: 16px; }
.doctor-avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; margin: 0 auto 10px; }
.doctor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.doctor-avatar-placeholder {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--light-bg); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--primary); margin: 0 auto 10px;
}
.doctor-name { font-size: .95rem; font-weight: 700; text-align: center; margin-bottom: 2px; color: var(--text); }
.doctor-designation { font-size: .75rem; color: var(--muted); text-align: center; margin-bottom: 6px; }
.doctor-spec-badge {
  display: inline-block; padding: 3px 10px; border-radius: 10px;
  background: #eff6ff; color: var(--primary); font-size: .72rem; font-weight: 600;
}
.doctor-spec-badge-sm {
  display: inline-block; padding: 2px 8px; border-radius: 8px;
  background: #eff6ff; color: var(--primary); font-size: .7rem; font-weight: 600;
}
.doctor-meta { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.doctor-meta-item { font-size: .72rem; color: var(--muted); font-weight: 500; }
.doctor-fee { color: var(--primary); font-weight: 700; }

/* ─── How it works ───────────────────────────────────────────────────────────── */
.how-card {
  padding: 28px 20px; background: #fff; border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); position: relative;
}
.how-step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); color: #fff; font-size: .8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.how-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: #eff6ff; color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto;
}
.how-icon-teal { background: #f0fdfa; color: var(--teal); }
.how-icon-green { background: #f0fdf4; color: #16a34a; }

/* ─── Why section ────────────────────────────────────────────────────────────── */
.why-card { padding: 20px 12px; }
.why-icon { font-size: 2rem; margin-bottom: 10px; }

/* ─── Page header ────────────────────────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  padding: 40px 0; color: #fff;
}
.page-header h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 4px; }
.page-header p { color: rgba(255,255,255,.8); margin: 0; font-size: .9rem; }
.page-header-sm { padding: 24px 0; }
.page-header-sm h4 { margin-bottom: 0; }

/* ─── Auth ───────────────────────────────────────────────────────────────────── */
.auth-wrapper {
  min-height: calc(100vh - 140px);
  display: flex; align-items: center; justify-content: center;
  padding: 32px 16px;
}
.auth-card {
  background: #fff; border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  padding: 36px 32px; width: 100%; max-width: 440px;
}
.auth-logo-icon {
  width: 64px; height: 64px; border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff; margin: 0 auto;
}
.alert-sm { font-size: .85rem; padding: 8px 12px; border-radius: 8px; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(135deg, #0f3a6e 0%, #0b6b68 100%);
  margin-top: auto;
}
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a, .footer-link-btn {
  color: rgba(255,255,255,.65) !important;
  font-size: .875rem; transition: color .15s;
  background: none; border: none; text-align: left; padding: 0; cursor: pointer;
}
.footer-links a:hover, .footer-link-btn:hover { color: #fff !important; }
.brand-icon-sm {
  width: 32px; height: 32px; background: rgba(255,255,255,.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
}

/* ─── Empty state ────────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-icon { font-size: 3rem; color: var(--border); margin-bottom: 16px; }

/* ─── Doctor profile ─────────────────────────────────────────────────────────── */
.profile-card {
  background: #fff; border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08); padding: 28px 20px;
}
.profile-avatar {
  width: 100px; height: 100px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--light-bg);
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-avatar-placeholder {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--light-bg); display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--primary);
}
.profile-stat-box {
  background: var(--light-bg); border-radius: 12px; padding: 10px 8px; text-align: center;
}
.profile-stat-num { font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.profile-stat-label { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.detail-card {
  background: #fff; border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06); padding: 18px 20px;
}
.detail-card-title { font-size: .9rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.days-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.day-badge {
  padding: 4px 12px; border-radius: 8px; font-size: .78rem; font-weight: 600;
}
.day-available { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.day-unavailable { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.slot-badge {
  padding: 4px 12px; border-radius: 8px;
  background: #eff6ff; color: var(--primary); font-size: .78rem; font-weight: 600;
  border: 1px solid #bfdbfe;
}

/* ─── Booking flow ───────────────────────────────────────────────────────────── */
.step-indicator {
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.step {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.step span {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--border); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; transition: all .2s;
}
.step small { font-size: .68rem; color: var(--muted); font-weight: 600; }
.step.active span { background: var(--primary); color: #fff; }
.step.active small { color: var(--primary); }
.step.done span { background: #16a34a; color: #fff; }
.step.done small { color: #16a34a; }
.step-line {
  flex: 1; height: 2px; background: var(--border); max-width: 60px; margin: 0 8px; margin-bottom: 16px;
}
.step-line.active { background: #16a34a; }

.booking-card {
  background: #fff; border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08); padding: 24px;
}
.booking-sidebar-card {
  background: #fff; border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08); padding: 20px;
}
.booking-summary-bar {
  background: #fff; border-radius: 12px; padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  font-size: .85rem; color: var(--muted); font-weight: 500;
}

.booking-doctor-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.booking-doctor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.booking-avatar-placeholder {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--light-bg); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary);
}

/* Date strip */
.date-strip { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.date-card {
  min-width: 64px; border-radius: 12px; padding: 10px 8px; text-align: center;
  background: var(--light-bg); border: 2px solid transparent; cursor: pointer; transition: all .15s;
  display: flex; flex-direction: column; align-items: center;
}
.date-card:hover { border-color: var(--primary); }
.date-card.selected { background: var(--primary); border-color: var(--primary); }
.date-day { font-size: .68rem; font-weight: 600; color: var(--muted); text-transform: uppercase; }
.date-num { font-size: 1.3rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.date-month { font-size: .68rem; font-weight: 600; color: var(--muted); }
.date-card.selected .date-day,
.date-card.selected .date-num,
.date-card.selected .date-month { color: #fff; }

/* Slot grid */
.slot-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.slot-option {
  padding: 8px 16px; border-radius: 10px; font-size: .82rem; font-weight: 600;
  background: var(--light-bg); border: 2px solid transparent; cursor: pointer; transition: all .15s;
}
.slot-option:hover { border-color: var(--primary); color: var(--primary); }
.slot-option.selected { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Type selector */
.type-selector { display: flex; gap: 12px; }
.type-option { flex: 1; cursor: pointer; }
.type-option input[type="radio"] { display: none; }
.type-option-content {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 16px 8px; border-radius: 12px; border: 2px solid var(--border);
  transition: all .15s; text-align: center;
}
.type-option-content i { font-size: 1.4rem; color: var(--muted); }
.type-option-content span { font-size: .82rem; font-weight: 600; color: var(--text); }
.type-option-content small { font-size: .75rem; color: var(--primary); font-weight: 700; }
.type-option-content.selected, .type-option input:checked + .type-option-content {
  border-color: var(--primary); background: #eff6ff;
}
.type-option-content.selected i { color: var(--primary); }

/* Patient selector */
.patient-list { display: flex; flex-direction: column; gap: 8px; }
.patient-option { cursor: pointer; }
.patient-option input[type="radio"] { display: none; }
.patient-option-content {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  border-radius: 12px; border: 2px solid var(--border); transition: all .15s;
}
.patient-option input:checked + .patient-option-content { border-color: var(--primary); background: #eff6ff; }
.patient-initial {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.check-icon { color: var(--border); font-size: 1.1rem; }
.patient-option input:checked + .patient-option-content .check-icon { color: var(--primary); }

.add-patient-form {
  background: var(--light-bg); border-radius: 12px; padding: 16px; margin-top: 8px;
}

/* Summary rows */
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: .85rem; border-bottom: 1px solid var(--border); }
.summary-row:last-child { border-bottom: none; }

/* Confirm page */
.confirm-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: .88rem; border-bottom: 1px solid var(--border); }
.confirm-row:last-child { border-bottom: none; }
.confirm-label { color: var(--muted); font-size: .82rem; }
.confirm-row-total { padding-top: 12px; margin-top: 4px; }
.confirm-summary-card { background: var(--light-bg); border-radius: 14px; padding: 20px; }
.consent-box { background: var(--light-bg); border-radius: 10px; padding: 14px; }

/* ─── Status badges ──────────────────────────────────────────────────────────── */
.status-badge {
  display: inline-block; padding: 3px 10px; border-radius: 8px;
  font-size: .72rem; font-weight: 700; white-space: nowrap;
}
.status-booked   { background: #eff6ff; color: var(--primary); }
.status-confirmed { background: #f0fdf4; color: #16a34a; }
.status-completed { background: #f0fdf4; color: #166534; }
.status-cancelled { background: #fef2f2; color: #dc2626; }

/* ─── Account dashboard ──────────────────────────────────────────────────────── */
.stat-card {
  background: #fff; border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06); padding: 16px;
  transition: transform .15s, box-shadow .15s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.stat-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 10px; }
.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: .72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

.quick-action-card {
  background: #fff; border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06); padding: 16px 10px;
  transition: transform .15s; color: var(--text) !important;
}
.quick-action-card:hover { transform: translateY(-2px); }
.quick-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #fff; margin: 0 auto 8px; }

.appt-list-item { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.appt-list-item:last-child { border-bottom: none; }
.appt-date-block { width: 44px; text-align: center; background: var(--light-bg); border-radius: 10px; padding: 6px 4px; }
.appt-date-day { display: block; font-size: 1.1rem; font-weight: 800; color: var(--primary); line-height: 1; }
.appt-date-mon { display: block; font-size: .62rem; font-weight: 600; color: var(--muted); text-transform: uppercase; }

/* ─── Appointments list ──────────────────────────────────────────────────────── */
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tab {
  padding: 6px 16px; border-radius: 20px; font-size: .82rem; font-weight: 600;
  background: #fff; border: 1.5px solid var(--border); color: var(--muted);
  transition: all .15s;
}
.filter-tab:hover, .filter-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.appt-card {
  background: #fff; border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06); padding: 14px 16px;
  transition: box-shadow .15s; color: var(--text);
}
.appt-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.appt-date-block-lg { width: 54px; text-align: center; background: var(--light-bg); border-radius: 12px; padding: 8px 6px; }
.appt-date-day-lg { display: block; font-size: 1.4rem; font-weight: 800; color: var(--primary); line-height: 1; }
.appt-date-mon-lg { display: block; font-size: .65rem; font-weight: 600; color: var(--muted); text-transform: uppercase; }
.appt-date-yr-lg { display: block; font-size: .62rem; color: var(--muted); }

/* ─── Patients page ──────────────────────────────────────────────────────────── */
.patient-card {
  background: #fff; border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.patient-card-initial {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff; font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.patient-card-info { flex-grow: 1; min-width: 0; }

/* ─── Appointment detail ─────────────────────────────────────────────────────── */
.doctor-avatar-sm {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--light-bg); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary);
}
.medicine-row {
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.medicine-row:last-child { border-bottom: none; }
.alert-info-soft { background: #f0f9ff; color: #0369a1; border: none; border-radius: 10px; font-size: .85rem; }

/* ─── Success page ───────────────────────────────────────────────────────────── */
.success-icon { font-size: 5rem; color: #16a34a; line-height: 1; }

/* ─── Error page ─────────────────────────────────────────────────────────────── */
.error-page { min-height: calc(100vh - 140px); display: flex; align-items: center; }
.error-code { font-size: 7rem; font-weight: 900; color: var(--border); line-height: 1; }

/* ─── Section typography ─────────────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--primary); margin-bottom: 8px;
}
.section-title { font-size: 2rem; font-weight: 800; color: var(--text); }

/* ─── Page title / breadcrumb ────────────────────────────────────────────────── */
.page-title-area {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  padding: 48px 0 40px; color: #fff;
}
.page-title-area h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.breadcrumb-nav { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb-nav li { font-size: .875rem; color: rgba(255,255,255,.75); }
.breadcrumb-nav li a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb-nav li a:hover { color: #fff; }

/* ─── Service cards ──────────────────────────────────────────────────────────── */
.service-card {
  background: #fff; border-radius: 14px;
  overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }

/* ─── Testimonials ───────────────────────────────────────────────────────────── */
.testimonial-card { background: var(--soft-bg); border-radius: 16px; }
.testimonial-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 4px 12px rgba(0,0,0,.1); }
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next { width: 40px; top: 50%; transform: translateY(-50%); }
#testimonialCarousel .carousel-indicators { bottom: -2rem; }
#testimonialCarousel .carousel-indicators button { width: 8px; height: 8px; border-radius: 50%; border: none; opacity: .4; }
#testimonialCarousel .carousel-indicators button.active { opacity: 1; }

/* ─── Contact page ───────────────────────────────────────────────────────────── */
.contact-info-card { border-radius: 14px; box-shadow: 0 4px 16px rgba(0,0,0,.07); padding: 28px 20px; text-align: center; background: #fff; height: 100%; }
.contact-info-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--light-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; color: var(--primary); }
.contact-form-wrapper { background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,.08); padding: 32px; }
.contact-form-wrapper .form-control, .contact-form-wrapper textarea { border-radius: 10px; border: 1px solid var(--border); padding: 12px 16px; font-size: .9rem; }
.contact-form-wrapper .form-control:focus, .contact-form-wrapper textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,111,196,.12); }
.gmap-wrapper iframe { width: 100%; height: 400px; border: none; border-radius: 16px; }

/* ─── Mission cards (about page) ─────────────────────────────────────────────── */
.mission-card { border: none; border-radius: 14px; box-shadow: 0 4px 16px rgba(0,0,0,.06); padding: 24px; height: 100%; }
.mission-card h5 { color: var(--primary); }

/* ─── FAQ page ───────────────────────────────────────────────────────────────── */
.myths-grid .myth-card { border-radius: 12px; overflow: hidden; }
.accordion-button { font-weight: 600; }
.accordion-button:not(.collapsed) { color: var(--primary); background: var(--light-bg); }
.accordion-button:focus { box-shadow: none; }

/* ─── Policy pages ───────────────────────────────────────────────────────────── */
.policy-content h4 { color: var(--primary); margin-top: 1.5rem; margin-bottom: .5rem; }
.policy-content ul { padding-left: 1.25rem; }
.policy-content li { margin-bottom: .4rem; }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 576px) {
  .auth-card { padding: 24px 16px; }
  .hero { padding: 48px 0 40px; }
  .hero-illustration { height: 200px; }
  .hero-card-float { font-size: .72rem; padding: 8px 12px; }
  .step-line { max-width: 32px; }
  .type-selector { flex-direction: column; }
  .booking-card, .booking-sidebar-card { padding: 16px; }
}
