/* ============================================================
   TAILORED FOOTCARE — Redesigned 2026
   Palette: Brand Cyan (#13bfd6) · Warm Cream · Gold
   ============================================================ */

:root {
  --teal:          #13bfd6;
  --teal-dark:     #0a7a8c;
  --teal-light:    #34cce0;
  --teal-pale:     #e5f8fb;
  --gold:          #c8914a;
  --gold-light:    #dca96a;
  --cream:         #fbf7f4;
  --cream-mid:     #f0ebe2;
  --cream-dark:    #e3ddd3;
  --dark:          #1c2630;
  --text:          #374151;
  --text-muted:    #6b7280;
  --white:         #ffffff;
  --border:        #e3ddd3;
  --r-sm:          8px;
  --r:             14px;
  --r-lg:          24px;
  --shadow:        0 2px 16px rgba(0,0,0,.07);
  --shadow-md:     0 4px 28px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 48px rgba(0,0,0,.14);
  --ease:          0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); }
h4 { font-size: 1rem; }

/* ── CONTAINER ─────────────────────────── */
.container {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,145,74,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19,191,214,.35);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── TOP BAR ────────────────────────────── */
.topbar {
  background: var(--teal-dark);
  color: rgba(255,255,255,.82);
  font-size: .8rem;
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: inherit; transition: color .2s; }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.ti { opacity: .7; }

/* ── HEADER ─────────────────────────────── */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.site-logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--teal-dark);
  font-weight: 700;
  letter-spacing: -.02em;
}
.logo-tagline {
  font-size: .68rem;
  color: var(--text-muted);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ── NAV ─────────────────────────────────── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 8px 13px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--r-sm);
  transition: var(--ease);
}
.nav-link:hover, .nav-link.active {
  color: var(--teal);
  background: var(--teal-pale);
}
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 9px 20px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--teal-light) !important; }

/* ── HAMBURGER ──────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: var(--r-sm);
  z-index: 1001;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO (Homepage) ────────────────────── */
.hero {
  background: url('../images/heroimage.png') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,122,140,.88) 0%, rgba(19,191,214,.72) 60%, rgba(15,171,202,.80) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 100px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,122,140,0.5);
  border: 1px solid rgba(255,255,255,.22);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--gold-light);
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 em { color: var(--gold-light); font-style: normal; text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4); }
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-panel {
  background: rgba(10,122,140,0.5);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(20px);
  border-radius: var(--r-lg);
  padding: 32px;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.hero-stat { text-align: center; }
.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-details {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hd-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.82);
}
.hd-icon { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }

/* ── PAGE HERO (inner pages) ───────────── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 72px 0 96px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(200,145,74,.12) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: #fbf7f4;
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero-white::after {
  background: #ffffff;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero .lead {
  color: rgba(255,255,255,.8);
  font-size: 1.08rem;
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.82); }

/* ── SECTIONS ───────────────────────────── */
.section       { padding: 88px 0; }
.section-sm    { padding: 56px 0; }
.section-alt   { background: var(--cream); }
.section-dark  { background: var(--dark); color: var(--white); }

.section-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title { margin-bottom: 14px; }
.section-lead {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 560px;
}
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }
.divider { width: 44px; height: 3px; background: var(--gold); border-radius: 2px; margin: 14px 0 0; }
.divider.center { margin: 14px auto 0; }

/* ── SERVICE CARDS ──────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r);
  padding: 0;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-img { overflow: hidden; border-radius: var(--r) var(--r) 0 0; line-height: 0; }
.svc-thumb { width: 100%; height: 200px; object-fit: cover; display: block; }
.svc-body { padding: 28px 32px 32px; }
.service-card:not(:has(.svc-img)) .svc-body { padding-top: 36px; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.service-card:hover {
  border-color: var(--teal-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
  transition: var(--ease);
}
.service-card:hover .svc-icon { background: var(--teal); color: var(--white); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--text-muted); margin-bottom: 18px; }
.svc-link {
  font-size: .83rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--ease);
}
.svc-link:hover { gap: 10px; }

/* ── ABOUT SECTION ──────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.about-img-wrap { position: relative; }
.about-img-block {
  background: linear-gradient(145deg, var(--teal-pale) 0%, #d0e8e8 50%, var(--cream-mid) 100%);
  border-radius: var(--r-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-img-svg {
  width: 120px;
  height: 120px;
  color: var(--teal);
  opacity: .25;
}
.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 22px;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 110px;
}
.badge-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.badge-lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; opacity: .9; }
.cred-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 28px;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--text);
}
.cred-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 24px;
}
.cred-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--gold);
  border-radius: 50%;
  color: #fff;
}
.cred-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

/* ── FEATURE LIST ───────────────────────── */
.feat-list { display: flex; flex-direction: column; gap: 14px; }
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .92rem;
  color: var(--text);
}
.feat-check {
  width: 22px; height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--white);
}

/* ── WHY CARDS ──────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  transition: var(--ease);
}
.why-card:hover {
  border-color: var(--teal-pale);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.why-icon {
  width: 56px; height: 56px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--teal);
  transition: var(--ease);
}
.why-card:hover .why-icon { background: var(--teal); color: var(--white); }
.why-card h4 { margin-bottom: 8px; font-size: .95rem; }
.why-card p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ── TESTIMONIALS ───────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 24px; right: 28px;
  font-size: 5rem;
  line-height: 1;
  color: var(--teal-pale);
  font-family: Georgia, serif;
}
.stars { color: var(--gold); font-size: .9rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text {
  font-size: .95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 44px; height: 44px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--teal);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; color: var(--dark); }
.author-role { font-size: .78rem; color: var(--text-muted); }

/* ── ACCREDITATION STRIP ────────────────── */
.accred {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  padding: 36px 0;
}
.accred-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.accred-lbl {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.accred-badges { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.accred-badge {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-sm);
  padding: 10px 18px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal-dark);
  white-space: nowrap;
}

/* ── CTA BAND ───────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -200px; right: -100px;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(200,145,74,.08);
  bottom: -120px; left: -60px;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.78); margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FEES TABLE ─────────────────────────── */
.fees-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-dark);
}
.fees-thead {
  background: var(--teal);
  color: var(--white);
  padding: 18px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.fees-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 18px 28px;
  border-bottom: 1px solid var(--cream-dark);
  align-items: center;
  transition: background var(--ease);
  gap: 16px;
}
.fees-row:last-child { border-bottom: none; }
.fees-row:hover { background: var(--cream); }
.fees-name { font-size: .95rem; font-weight: 500; }
.fees-note { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.fees-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}

/* ── DETAIL SECTIONS (service pages) ──── */
.detail-block {
  padding: 72px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.detail-block:last-child { border-bottom: none; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.detail-grid.flip { direction: rtl; }
.detail-grid.flip > * { direction: ltr; }
.detail-visual {
  background: linear-gradient(135deg, var(--teal-pale), var(--cream-mid));
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  position: relative;
  overflow: hidden;
}
.detail-visual::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 2px dashed rgba(19,191,214,.22);
  border-radius: var(--r);
}
.detail-visual svg { width: 72px; height: 72px; opacity: .3; }
.detail-content h2 { margin-bottom: 16px; }
.detail-content p { color: var(--text-muted); }

/* ── HIGHLIGHT BOX ──────────────────────── */
.hl-box {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 18px 22px;
  margin: 20px 0;
  font-size: .92rem;
  color: var(--teal-dark);
  line-height: 1.6;
}

/* ── CONTACT ────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  background: var(--teal-dark);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 44px 36px;
}
.contact-info h3 { color: var(--white); margin-bottom: 28px; }
.ci-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.ci-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  opacity: .6;
  margin-bottom: 3px;
}
.ci-value { font-size: .92rem; color: rgba(255,255,255,.88); }
.ci-value a { color: rgba(255,255,255,.88); transition: color .2s; }
.ci-value a:hover { color: var(--gold-light); }
.hours-list { display: flex; flex-direction: column; gap: 6px; margin-top: 6px; }
.hours-row { display: flex; justify-content: space-between; font-size: .85rem; }
.hours-day { color: rgba(255,255,255,.65); }
.hours-time { color: var(--gold-light); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 44px 36px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(19,191,214,.2);
  background: var(--white);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  height: 260px;
  margin-top: 24px;
  border: 1px solid var(--cream-dark);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.map-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.map-note-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.mn-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.map-note-item strong { display: block; margin-bottom: 4px; font-size: .9rem; }
.map-note-item p { margin: 0; font-size: .85rem; color: var(--text-muted); }
.btn-full { width: 100%; }
.form-note { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: 12px; margin-bottom: 0; }

/* ── NOTICE BOX ─────────────────────────── */
.notice-box {
  background: linear-gradient(135deg, #fff8ef, #fff3e0);
  border: 1px solid #f0c97a;
  border-radius: var(--r);
  padding: 22px 26px;
  font-size: .9rem;
  color: #7a5a1a;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 24px;
}
.notice-icon { color: #c8914a; flex-shrink: 0; margin-top: 2px; }

/* ── SCROLL REVEAL ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── FOOTER ─────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); }
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,.4); }
.footer-brand p {
  font-size: .85rem;
  margin-top: 14px;
  color: rgba(255,255,255,.55);
  max-width: 260px;
  line-height: 1.75;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.soc-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: var(--ease);
}
.soc-link:hover { background: var(--teal); color: var(--white); }
.footer-col h5 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--gold-light); }
.fc-item {
  display: flex;
  gap: 10px;
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  align-items: flex-start;
}
.fc-item a { color: inherit; transition: color .2s; }
.fc-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255,255,255,.38);
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }

/* ── LOGO IMAGE ─────────────────────────── */
.logo-img { height: 52px; width: auto; display: block; }
.footer-logo-img { height: 44px; width: auto; display: block; margin-bottom: 12px; }

/* ── REAL IMAGES ─────────────────────────── */
.detail-visual img,
.about-img-block img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}
.detail-visual img { position: absolute; inset: 0; border-radius: var(--r-lg); }
.svc-thumb {
  width: 100%; height: 180px;
  object-fit: cover;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  margin: -32px -32px 20px;
  width: calc(100% + 64px);
}

/* ── ACCREDITATION LOGOS ─────────────────── */
.accred-strip { text-align: center; }
.accred-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px; }
.accred-logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.accred-logo {
  height: 66px;
  width: auto;
  display: block;
  opacity: 1;
  transition: var(--ease);
}
.accred-logo:hover { opacity: .8; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: block; height: 420px; max-height: 420px; overflow: hidden; border-radius: var(--r-lg); }
  .about-img-block { height: 420px; aspect-ratio: unset; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-grid.flip { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar .topbar-left { display: none; }
  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 999;
    padding: 80px 32px 32px;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1.1rem; padding: 12px 24px; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { padding: 28px 20px; }
  .contact-form-wrap { padding: 28px 20px; }
  .map-notes { grid-template-columns: 1fr; }
  .map-wrap { height: 220px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 60px 0; }
  .hero { padding: 72px 0 100px; }
  .fees-thead { display: none; }
  .fees-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
}
