/* ============================================================
   GLOBAL HEARING AID CENTRE — Pure CSS Stylesheet
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #1a4ea2;
  --blue-dark: #12357a;
  --blue-mid: #2060c4;
  --navy: #0d2060;
  --red: #cc1a1a;
  --red-dark: #aa1414;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
}

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

body {
  font-family: 'Segoe UI', Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(26, 78, 162, .13);
}

.topbar {
  background: var(--blue);
  color: #fff;
  padding: 8px 20px;
  font-size: 16px;
}

.topbar .inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.topbar .phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.topbar .states {
  color: rgba(255, 255, 255, .72);
}

.main-header {
  background: #fff;
  border-bottom: 1px solid #dbeafe;
  padding: 10px 20px;
}

.main-header .inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: background .18s, color .18s;
}

nav a:hover {
  background: #eff6ff;
  color: var(--blue);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: background .18s;
  white-space: nowrap;
}

.btn-book:hover {
  background: var(--blue-dark);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #0d2d6b 0%, var(--blue) 55%, var(--blue-mid) 100%);
  color: #fff;
  padding: 80px 20px 90px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(96, 180, 255, .12);
}

.hero .inner {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #bfdbfe;
  margin-bottom: 22px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 55px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
}

.hero p {
  color: #bfdbfe;
  font-size: 16px;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 700;
  transition: background .18s, box-shadow .18s;
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 24px rgba(180, 20, 20, .35);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 600;
  transition: background .18s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .22);
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-size: 28px;
  font-weight: 800;
}

.hero-stat .lbl {
  font-size: 11px;
  color: #93c5fd;
  margin-top: 2px;
}

/* Right card */
.hero-card {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-2xl);
  padding: 32px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.hero-icon svg {
  width: 52px;
  height: 52px;
  fill: #fff;
}

.hero-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-card p {
  color: #bfdbfe;
  font-size: 16px;
  margin-bottom: 20px;
}

.hero-card-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 16px;
  color: #bfdbfe;
  text-align: left;
}

.check-icon {
  width: 18px;
  height: 18px;
  fill: #4ade80;
  flex-shrink: 0;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust {
  padding: 36px 20px;
  background: #fff;
  border-bottom: 1px solid #dbeafe;
}

.trust .inner {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trusts {
  padding: 36px 20px;
  background: #fff;
  border-bottom: 1px solid #dbeafe;
}

.trusts .about-visual {
  display: contents;
}

.trusts .inner {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 16px;
  background: #eff6ff;
  border-radius: var(--radius-xl);
  transition: background .2s;
}

.trust-card:hover {
  background: #dbeafe;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 78, 162, .14);
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--blue);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
}

.trust-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: 80px 20px 20px;
  background: #fff;
}

.about .inner {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Left visual */
.about-visual {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: var(--radius-2xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(26, 78, 162, .1);
  border-bottom-left-radius: 100%;
}

.about-item:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 78, 162, .14);
}

.about-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: var(--radius-xl);
  padding: 14px 16px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.about-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-item-icon.blue {
  background: var(--blue);
}

.about-item-icon.red {
  background: var(--red);
}

.about-item-icon.green {
  background: #16a34a;
}

.about-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
}

.about-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
}

.about-item p {
  font-size: 14px;
  color: var(--gray-500);
}

.about-stat {
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  border-radius: var(--radius-xl);
  padding: 18px 22px;
  color: #fff;
  text-align: center;
  margin-top: 4px;
}

.about-stat .num {
  font-size: 32px;
  font-weight: 800;
}

.about-stat .lbl {
  font-size: 16px;
  color: #93c5fd;
  margin-top: 4px;
}

/* Right content */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #eff6ff;
  color: var(--blue);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--blue);
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.22;
  color: var(--gray-900);
  margin-bottom: 18px;
}

.about-text {
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 14px;
}

.check-list {
  list-style: none;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}

.check-list .tick {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-list .tick svg {
  width: 12px;
  height: 12px;
  fill: #16a34a;
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 700;
  transition: background .18s;
}

.btn-blue:hover {
  background: var(--blue-dark);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 80px 20px;
  background: var(--gray-50);
}

.services .inner {
  max-width: 1152px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header p {
  color: var(--gray-500);
  font-size: 15px;
  max-width: 480px;
  margin: 10px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: 26px 22px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  transition: transform .22s, box-shadow .22s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 78, 162, .14);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  fill: none;
}

.bg-blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.bg-red {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.bg-indigo {
  background: linear-gradient(135deg, #6366f1, #4338ca);
}

.bg-green {
  background: linear-gradient(135deg, #22c55e, #15803d);
}

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations {
  padding: 80px 20px;
  background: #fff;
}

.locations .inner {
  max-width: 1152px;
  margin: 0 auto;
}

.state-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 3px 12px rgba(26, 78, 162, .25);
}

.state-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 2px solid #dbeafe;
  margin-bottom: 28px;
}

.state-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
}

.state-count {
  background: #eff6ff;
  color: var(--blue);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
}

.area-group {
  margin-bottom: 28px;
}

.area-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gray-500);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.area-label svg {
  width: 14px;
  height: 14px;
  fill: var(--blue);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.branch-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 16px;
  transition: border-color .2s, box-shadow .2s;
}

.branch-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(26, 78, 162, .10);
}

.branch-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.branch-ico {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.branch-ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
}

.branch-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
}

.branch-city {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 2px;
}

.branch-addr, .branch-phone {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 6px;
  line-height: 1.5;
}

.branch-addr svg {
  width: 13px;
  height: 13px;
  fill: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.branch-phone svg {
  width: 13px;
  height: 13px;
  stroke: var(--blue);
  fill: none;
  flex-shrink: 0;
  margin-top: 1px;
}

.branch-phone a {
  color: var(--blue);
  font-weight: 600;
}

.btn-map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 0;
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-md);
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  background: none;
  cursor: pointer;
  transition: background .18s;
}

.btn-map:hover {
  background: #eff6ff;
}

.btn-map svg {
  width: 13px;
  height: 13px;
  stroke: var(--blue);
  fill: none;
}

/* Mobile carousel */
.branches-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.branches-carousel::-webkit-scrollbar {
  display: none;
}

.branches-carousel .branch-card {
  flex-shrink: 0;
  width: 240px;
  scroll-snap-align: start;
}

.locations-cta {
  text-align: center;
  margin-top: 36px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0d2d6b 0%, var(--blue) 55%, var(--blue-mid) 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.why::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.why .inner {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #bfdbfe;
}

.star {
  font-size: 16px;
}

.why-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 16px;
}

.why-sub {
  color: #93c5fd;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 28px;
}

.why-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--blue);
  padding: 12px 22px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 700;
  transition: background .18s;
}

.btn-white:hover {
  background: #dbeafe;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 600;
  transition: background .18s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
}

/* Points grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-card {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-xl);
  padding: 20px;
  transition: background .2s;
}

.why-card:hover {
  background: rgba(255, 255, 255, .16);
}

.why-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
}

.why-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 14px;
  color: #93c5fd;
  line-height: 1.55;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 80px 20px;
  background: var(--gray-50);
}

.contact .inner {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  margin-bottom: 14px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon.blue {
  background: #eff6ff;
}

.contact-info-icon.red {
  background: #fef2f2;
}

.contact-info-icon.green {
  background: #f0fdf4;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-icon.blue svg {
  stroke: var(--blue);
  fill: none;
}

.contact-info-icon.red svg {
  stroke: var(--red);
  fill: none;
}

.contact-info-icon.green svg {
  stroke: #16a34a;
  fill: none;
}

.contact-lbl {
  font-size: 11px;
  color: var(--gray-500);
}

.contact-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

/* Form */
.form-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
}

.form-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.form-card .sub {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 7px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 14px;
  color: var(--gray-900);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  background: #fff;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 78, 162, .12);
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .18s;
}

.btn-submit:hover {
  background: var(--blue-dark);
}

.form-note {
  font-size: 11px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: #fff;
}

.footer-top {
  max-width: 1152px;
  margin: 0 auto;
  padding: 48px 20px 36px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 16px;
  color: #93c5fd;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 16px;
  color: #93c5fd;
  transition: color .18s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: #93c5fd;
  margin-bottom: 10px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 20px;
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 11px;
  color: #60a5fa;
  max-width: 640px;
  line-height: 1.6;
}

.footer-copy {
  font-size: 11px;
  color: #4b72b0;
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero .inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .about .inner {
    grid-template-columns: 1fr;
  }

  .about-visual {
    display: none;
  }

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

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

  .trusts .inner {
    grid-template-columns: 1fr 1fr;
  }

  .why .inner {
    grid-template-columns: 1fr;
  }

  .why-right {
    display: none;
  }

  .contact .inner {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width:320px) and (max-width: 999px) {
  .topbar .inner {
    justify-content: center !important;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .trusts .inner {
    grid-template-columns: 1fr;
  }

  .topbar .states {
    display: none;
  }

  nav {
    display: none;
  }

  .btn-book {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  /* mobile carousel: hide grid, show scroll */
  .branches-grid {
    display: none;
  }

  .branches-carousel {
    display: flex;
  }

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

@media (min-width: 601px) {
  .branches-carousel {
    display: none;
  }
}

/* ── Consent checkbox (.agree-box) ── */
.agree-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.agree-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  padding: 10px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--blue);
}

.agree-box label {
  font-size: 12px;
  line-height: 1.6;
  color: #333;
  cursor: pointer;
}

/* .form-error matches the class used in the user's form HTML */
.form-error, .field-error {
  display: none;
  font-size: .76rem;
  color: var(--red);
  font-weight: 600;
  margin-top: .25rem;
  padding-left: .1rem;
}

#agree-error {
  display: none;
  font-size: .76rem;
  color: var(--red);
  font-weight: 600;
  margin-top: -.25rem;
  margin-bottom: .25rem;
}

/* ── Success state ── */
.success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .85rem;
  padding: 2rem 1.5rem;
}

.success-icon {
  width: 64px;
  height: 64px;
}

.success-icon svg {
  width: 64px;
  height: 64px;
  stroke: #22c55e;
  fill: none;
}

.success-state h3 {
  font-size: 1.2rem;
  color: var(--text);
}

.success-state p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

.success-state strong {
  color: var(--blue);
}

.success-redirect {
  font-size: .85rem;
  color: var(--muted);
}

.success-redirect strong {
  color: var(--blue);
  font-size: 1rem;
}

/* ── Spinner ── */
.spinner {
  width: 18px;
  height: 18px;
  display: inline-block;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-hint {
  text-align: center;
  font-size: .75rem;
  color: var(--muted);
}

.form-card-footer {
  display: flex;
  justify-content: space-around;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: .85rem 1.5rem;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
}

.stat span {
  font-size: .72rem;
  color: var(--muted);
}

/* ===== MENU BUTTON ===== */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===== MOBILE SIDEBAR ===== */

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  transition: 0.4s;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
}

.mobile-sidebar.active {
  left: 0;
}

.sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.sidebar-top img {
  height: 50px;
}

.close-sidebar {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-links a {
  text-decoration: none;
  color: #222;
  font-size: 18px;
  font-weight: 500;
}

/* ===== OVERLAY ===== */

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1500;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== MOBILE ===== */

@media(max-width:991px) {

  .desktop-nav,
  .desktop-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-left, .about-content, .service-card, .area-label, .why-left, .contact-left, .footer-brand, .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  .footer-brand img {
    display: inline-flex;
  }

  .contact-info-card {
    text-align: left;
  }

  .service-icon {
    display: inline-flex;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
  }
}