/* ============================================================
   VAN CITY VETERINARY HOSPITAL — style.css
   Mobile-first responsive CSS
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --yellow:  #F5C800;
  --teal:    #2A7A8C;
  --navy:    #1C2B3A;
  --grey:    #6B7280;
  --white:   #FFFFFF;
  --light-bg: #F8F9FA;
  --border:  #E5E7EB;
  --teal-dark: #1f5f6e;
  --yellow-dark: #d4aa00;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container-max: 1200px;
  --container-pad: 1.25rem;
  --radius:  0.5rem;
  --radius-lg: 1rem;
  --shadow:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);

  --transition: 0.2s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.btn-full { width: 100%; display: block; }

/* ── Section base ───────────────────────────────────────────── */
section {
  padding: 4rem 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-intro h2 { margin-bottom: 1rem; }

/* ── Placeholder images ─────────────────────────────────────── */
.placeholder-img {
  background: linear-gradient(135deg, #e8f4f7 0%, #d0eaf0 100%);
  border: 2px dashed var(--teal);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: var(--teal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  min-height: 280px;
}

/* ── HEADER / NAV ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

/* Square logo crop — image content occupies ~70% width, ~28% height, centered */
.header-logo {
  display: block;
  width: 150px;
  height: 50px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.header-logo img {
  position: absolute;
  width: 182px;
  height: 182px;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-coming-soon {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  white-space: nowrap;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--teal); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--yellow);
  padding: 4rem 0;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-content h1 {
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--navy);
  opacity: 0.85;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-ctas .btn-secondary {
  color: var(--navy);
  border-color: var(--navy);
}
.hero-ctas .btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.hero-visual {
  flex: 0 0 420px;
  max-width: 420px;
}

.hero-visual .placeholder-img {
  min-height: 340px;
  background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.2) 100%);
  border-color: rgba(42,122,140,0.4);
}

/* ── ABOUT / INTRO ──────────────────────────────────────────── */
.about {
  background: var(--white);
}

.about-text {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-text h2 { margin-bottom: 1.25rem; }

.about-text p {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.75;
}

.sister-clinic-note {
  font-size: 0.9rem !important;
  color: var(--grey) !important;
  margin-top: 1.25rem !important;
}

.sister-clinic-note a {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 600;
}

/* Trust signals */
.trust-signals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.trust-signal-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-signal-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-signal-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services {
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(42,122,140,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.55;
  margin: 0;
}

.services-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--grey);
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  max-width: 700px;
  margin: 0 auto;
}

.services-note a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
}

/* ── APPOINTMENT FORM SECTION ───────────────────────────────── */
.appointment {
  background: #F0F4F5;
}

.appointment .section-intro {
  margin-bottom: 2.5rem;
}

.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Progress bar */
.form-progress {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--navy);
  gap: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  cursor: default;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}

.step-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}

.progress-step.active .step-num {
  background: var(--teal);
  color: var(--white);
}
.progress-step.active .step-label {
  color: var(--white);
}

.progress-step.completed .step-num {
  background: rgba(42,122,140,0.5);
  color: var(--white);
}
.progress-step.completed .step-label {
  color: rgba(255,255,255,0.6);
}

.progress-connector {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 0 0.5rem;
  margin-bottom: 1.15rem;
}

/* Form steps */
.form-step {
  padding: 2rem;
}

.form-step.hidden {
  display: none;
}

.form-thankyou {
  padding: 2.5rem 2rem;
  text-align: center;
}

.form-thankyou.hidden {
  display: none;
}

.form-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-step-sub {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 1.75rem;
}

/* Storefront in step 1 */
.step1-storefront {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.step1-storefront img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.step1-storefront-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(28,43,58,0.85));
  padding: 1rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Form fields */
.field-group {
  margin-bottom: 1.25rem;
}

.field-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.field-group input[type="text"],
.field-group input[type="email"],
.field-group input[type="tel"],
.field-group input[type="date"],
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,122,140,0.12);
}

.field-group input:disabled,
.field-group select:disabled {
  background: #f3f4f6;
  color: var(--grey);
  cursor: not-allowed;
}

.field-group textarea {
  resize: vertical;
  min-height: 100px;
}

.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.field-required::after {
  content: ' *';
  color: #dc2626;
}

.field-error {
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 0.3rem;
  display: none;
}

.field-error.visible {
  display: block;
}

/* Radio buttons */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.25rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
}

.radio-label:hover {
  border-color: var(--teal);
  background: rgba(42,122,140,0.05);
}

.radio-label input[type="radio"] {
  accent-color: var(--teal);
  width: 1rem;
  height: 1rem;
}

.radio-label input[type="radio"]:checked + span {
  color: var(--teal);
  font-weight: 600;
}

/* Checkbox no-vet row */
.date-with-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.date-with-checkbox input[type="date"] {
  flex: 1;
  min-width: 140px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--grey);
  cursor: pointer;
  white-space: nowrap;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--teal);
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

/* Step 3 — reasons grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.reason-option {
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--navy);
  text-align: center;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  user-select: none;
}

.reason-option:hover:not(.disabled) {
  border-color: var(--teal);
  background: rgba(42,122,140,0.05);
}

.reason-option.selected {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
}

.reason-option.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Step 4 — summary */
.summary-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.summary-table tr {
  border-bottom: 1px solid var(--border);
}

.summary-table tr:last-child {
  border-bottom: none;
}

.summary-table td {
  padding: 0.65rem 0.5rem;
  vertical-align: top;
}

.summary-table td:first-child {
  font-weight: 600;
  color: var(--grey);
  width: 45%;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-right: 1rem;
}

.summary-table td:last-child {
  color: var(--navy);
  font-weight: 500;
}

.confirmation-callout {
  background: var(--yellow);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.confirm-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--navy);
  cursor: pointer;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.confirm-checkbox-label input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: var(--teal);
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

/* Disclaimer */
.form-disclaimer {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Form navigation buttons */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-nav .btn-back {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--grey);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.form-nav .btn-back:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.form-nav .btn-next {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  flex: 1;
  max-width: 320px;
}

.form-nav .btn-next:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.form-nav.first-step .btn-next {
  max-width: 100%;
}

/* Submit button */
.btn-submit {
  display: block;
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* Thank you */
.thankyou-icon {
  width: 72px;
  height: 72px;
  background: rgba(42,122,140,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.thankyou-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--teal);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-thankyou h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.form-thankyou p {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.7;
}

.thankyou-clinic-info {
  margin-top: 1.75rem;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--navy);
  text-align: left;
}

.thankyou-clinic-info a {
  color: var(--teal);
  font-weight: 600;
}

/* ── LOCATION ───────────────────────────────────────────────── */
.location {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.location-details h2 { margin-bottom: 1.5rem; }

.location-item {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.location-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(42,122,140,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-item-text {
  padding-top: 0.35rem;
}

.location-item-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 0.2rem;
}

.location-item-value {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

.location-item-value a {
  color: var(--teal);
  font-weight: 700;
}

.location-item-value a:hover {
  text-decoration: underline;
}

.location-cta {
  margin-top: 2rem;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {}

.footer-logo {
  margin-bottom: 1rem;
  width: 155px;
  height: 52px;
  overflow: hidden;
  position: relative;
}

.footer-logo img {
  position: absolute;
  width: 188px;
  height: 188px;
  top: -66px;
  left: 50%;
  transform: translateX(-50%);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}

.footer-brand a {
  color: var(--yellow);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  align-items: flex-start;
}

.footer-contact-item a {
  color: var(--yellow);
  font-weight: 600;
}

.footer-contact-item a:hover {
  text-decoration: underline;
}

.sister-callout {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-top: 1rem;
}

.sister-callout a {
  color: var(--teal);
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.social-icon:hover {
  background: rgba(255,255,255,0.18);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── MEDIA QUERIES ──────────────────────────────────────────── */

/* Tablet — ≥ 640px */
@media (min-width: 640px) {
  .trust-signals {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Desktop — ≥ 900px */
@media (min-width: 900px) {
  section { padding: 5.5rem 0; }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Below tablet — ≤ 768px */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-visual {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }

  .hero-visual .placeholder-img {
    min-height: 220px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-photo img {
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-signals {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile — ≤ 480px */
@media (max-width: 480px) {
  .nav-coming-soon {
    display: none;
  }

  .header-phone {
    font-size: 0.9rem;
  }

  .header-actions .btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    text-align: center;
  }

  .form-step {
    padding: 1.5rem;
  }

  .form-progress {
    padding: 1.25rem 1rem;
  }

  .step-label {
    display: none;
  }

  .step-num {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .trust-signals {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .form-nav .btn-next {
    max-width: 100%;
  }
}

/* ── Utilities ──────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.text-center { text-align: center; }
