:root {
  --brand: #4f7df3;
  --bg-soft: #f6f8fc;
  --text-dark: #1f2937;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: #fff;
}

/* ================== Hero Section ================== */
.hero-with-image {
  position: relative;
  padding: 6rem 1rem;
  background-image: url("../assets/images/hero.jpg"); /* Replace with real image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Darkened overlay to soften image and improve text contrast */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
}

/* Ensures content sits above overlay */
.hero-content {
  position: relative;
  max-width: 800px;
}

/* Hero text styling */
.hero h1 {
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.125rem;
  color: #374151;
}

.section {
  padding: 4rem 1rem;
}

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.form-card {
  max-width: 600px;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
}

.btn-primary:hover {
  background-color: #3f6ae0;
}

.footer {
  background: var(--bg-soft);
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 4rem;
}

/* ================== Hero Section (Services) ================== */
.page-hero {
  position: relative;
  padding: 4.5rem 1rem;
}

.page-hero-with-image {
  background-image: url("../assets/images/services-hero.jpg"); /* Replace with real image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.78);
}

.page-hero-content {
  position: relative;
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

/* Section Banding */
.section-soft {
  background: var(--bg-soft);
}

/* Checklist Styling */
.list-check {
  padding-left: 0;
  list-style: none;
}
.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .75rem;
}
.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--brand);
}

/* ================== Page Hero (soft header) ================== */
.page-hero-soft {
  padding: 3.5rem 1rem;
  background: var(--bg-soft);
}

/* ================== Info Cards (left column) ================== */
.info-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

/* ================== Comfort Box ================== */
.comfort-box {
  border-radius: 12px;
}

/* ================== Step List (booking page) ================== */
.step-list {
  display: grid;
  gap: 1rem;
}

.step-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .75rem;
  align-items: start;
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: rgba(79, 125, 243, 0.12);
  color: var(--brand);
}

/* ================== Step Cards ================== */
.card-step {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: rgba(79, 125, 243, 0.12);
  color: var(--brand);
}

/* ================== Approach Items ================== */
.approach-item h5 {
  margin-bottom: .25rem;
}

.approach-item p {
  color: #4b5563;
}