/* ============================================================
   NTLF MEDICAL – Contact Page Styles  (style-contact.css)
   Design system: Sora + DM Sans, navy/blue/green palette —
   identical to index.html and about.html.
   ============================================================ */

/* ── Variables (exact match to style-home.css) ──────────── */
:root {
  --navy: #0a2540;
  --blue: #1a56db;
  --blue-dark: #1341b4;
  --blue-light: #e8f0fe;
  --green: #0d9e6e;
  --green-light: #e6f9f2;
  --amber: #f59e0b;
  --red: #e53e3e;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --text: #1e293b;
  --text-muted: #475569;
  --border: #e2e8f0;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.18);
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 9999px;
  --font-display: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --header-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-theme="dark"] {
  --bg: #0f172a;
  --bg-alt: #1e293b;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: #334155;
  --blue-light: #1e3a5f;
  --green-light: #0d3a2a;
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* ── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition:
    background var(--transition),
    color var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}
input,
select,
textarea {
  font-family: var(--font-body);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 86, 219, 0.45);
}
.btn-outline {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
  border-radius: var(--r-sm);
}
.btn-nav {
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: var(--r-sm);
  box-shadow: 0 2px 8px rgba(26, 86, 219, 0.25);
}
.btn-nav:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.btn-wa {
  background: #25d366;
  color: #fff;
  border: none;
}
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Loader ─────────────────────────────────────────────── */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition:
    opacity 0.5s,
    visibility 0.5s;
}
.loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-content {
  text-align: center;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.loader-logo .logo-ntlf {
  color: #fff;
}
.loader-logo .logo-medical {
  color: var(--green);
  margin-left: 5px;
}
.loader-bar {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--r-full);
  overflow: hidden;
  margin: 0 auto 14px;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: var(--r-full);
  animation: loadFill 1.4s ease forwards;
}
@keyframes loadFill {
  to {
    width: 100%;
  }
}
.loader-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* ── Toast ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9900;
  background: var(--gray-800);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  max-width: 340px;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast.success {
  background: var(--green);
}
.toast.error {
  background: var(--red);
}

/* ── Dark toggle ────────────────────────────────────────── */
.dark-toggle {
  position: fixed;
  top: calc(var(--header-h) + 14px);
  right: 18px;
  z-index: 800;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--bg);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.dark-toggle:hover {
  color: var(--blue);
  border-color: var(--blue);
}
[data-theme="dark"] .sun-icon {
  display: none;
}
[data-theme="light"] .moon-icon {
  display: none;
}
body:not([data-theme]) .moon-icon {
  display: none;
}

/* ── Scroll top ─────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--blue);
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  transform: translateY(-3px);
  background: var(--blue-dark);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION  (exact copy from style-about.css)
════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--bg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: all var(--transition);
}
[data-theme="dark"] .site-header {
  background: #0f172a;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--blue), var(--navy));
}
.logo-lines {
  position: absolute;
  inset: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}
.logo-lines span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: var(--r-full);
}
.logo-lines span:nth-child(1) {
  width: 100%;
}
.logo-lines span:nth-child(2) {
  width: 70%;
}
.logo-lines span:nth-child(3) {
  width: 45%;
}
.logo-mark.small {
  width: 34px;
  height: 34px;
}
.logo-mark.small .logo-circle {
  width: 34px;
  height: 34px;
}
.logo-mark.small .logo-lines {
  inset: 8px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-ntlf {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
}
.logo-medical {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.6rem;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
[data-theme="dark"] .logo-ntlf {
  color: #fff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--gray-600);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--gray-100);
  font-size: 0.95rem;
  color: var(--text);
  transition: all var(--transition);
}
.nav-cart:hover {
  background: var(--blue-light);
  color: var(--blue);
  transform: translateY(-1px);
}
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--blue);
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: var(--r-full);
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: var(--r-full);
  transition: all var(--transition);
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO  (identical to about.html)
════════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 72px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #080e20 0%, #0a2540 40%, #0d3561 80%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.phb-blob {
  position: absolute;
  border-radius: var(--r-full);
  filter: blur(80px);
  opacity: 0.2;
}
.phb-1 {
  width: 500px;
  height: 500px;
  background: var(--blue);
  top: -200px;
  right: -100px;
  animation: blobF 9s ease-in-out infinite;
}
.phb-2 {
  width: 350px;
  height: 350px;
  background: var(--green);
  bottom: -100px;
  left: -80px;
  animation: blobF 11s ease-in-out infinite reverse;
}
.phb-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
@keyframes blobF {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(15px, -20px);
  }
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
  margin-bottom: 16px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
}
.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--r-full);
  font-size: 0.77rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero .section-label {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.88);
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.page-hero-content > p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.75;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
[data-theme="dark"] .section-title {
  color: #f1f5f9;
}

/* ═══════════════════════════════════════════════════════════
   SHARED SECTION
════════════════════════════════════════════════════════════ */
.section {
  padding: 80px 0;
}

/* ═══════════════════════════════════════════════════════════
   QUICK CONTACT CARDS
════════════════════════════════════════════════════════════ */
.quick-section {
  padding: 60px 0;
  background: var(--bg-alt);
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.quick-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 22px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-xs);
}
.quick-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.quick-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 8px;
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(26, 86, 219, 0.28);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.quick-card:hover .quick-icon {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(26, 86, 219, 0.38);
}
.quick-card:nth-child(2) .quick-icon {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
}
.quick-card:nth-child(2):hover .quick-icon {
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38);
}
.quick-card:nth-child(3) .quick-icon {
  background: linear-gradient(135deg, var(--green) 0%, #0a7a52 100%);
  box-shadow: 0 6px 18px rgba(13, 158, 110, 0.28);
}
.quick-card:nth-child(3):hover .quick-icon {
  box-shadow: 0 10px 28px rgba(13, 158, 110, 0.38);
}
.quick-card:nth-child(4) .quick-icon {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.25);
}
.quick-card:nth-child(4):hover .quick-icon {
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.35);
}
.featured-card {
  background: linear-gradient(145deg, var(--navy) 0%, #0d3561 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.featured-card h3 {
  color: #fff !important;
}
.featured-card p {
  color: rgba(255, 255, 255, 0.7) !important;
}
.featured-card .quick-icon {
  background: rgba(255, 255, 255, 0.15) !important;
  box-shadow: none !important;
}
.quick-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
[data-theme="dark"] .quick-card h3 {
  color: #f1f5f9;
}
.quick-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.quick-link {
  display: block;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.quick-link:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM + MAP
════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--bg);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: start;
}
.col-header {
  margin-bottom: 28px;
}
.col-sub {
  color: var(--text-muted);
  margin-top: 10px;
  font-size: 0.95rem;
}

/* Form */
.contact-form {
  background: var(--bg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 0;
}
.form-group {
  margin-bottom: 18px;
}
.form-group.full {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-bottom: 7px;
  font-family: var(--font-display);
}
.req {
  color: var(--red);
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap > i {
  position: absolute;
  left: 14px;
  color: var(--gray-400);
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 1;
}
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg-alt);
  color: var(--text);
  font-size: 0.9rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  font-family: var(--font-body);
  resize: vertical;
}
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--blue);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}
.input-wrap.textarea-wrap {
  align-items: flex-start;
}
.input-wrap.textarea-wrap > i {
  top: 14px;
}
.field-error {
  display: block;
  font-size: 0.8rem;
  color: var(--red);
  min-height: 16px;
  margin-top: 4px;
  font-weight: 500;
}
.char-count {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
}

/* Checkbox */
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.check-label input[type="checkbox"] {
  display: none;
}
.check-custom {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: all var(--transition);
}
.check-label input:checked + .check-custom {
  background: var(--blue);
  border-color: var(--blue);
}
.check-label input:checked + .check-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.check-label a {
  color: var(--blue);
  font-weight: 600;
}

/* Submit */
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
  margin-top: 4px;
}

/* Success */
.form-success {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
}
.success-icon-wrap {
  font-size: 3.5rem;
  color: var(--green);
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
[data-theme="dark"] .form-success h3 {
  color: #f1f5f9;
}
.form-success p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Info column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Map card */
.map-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.map-card-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
[data-theme="dark"] .map-card-header h3 {
  color: #f1f5f9;
}
.map-card-header h3 i {
  color: var(--blue);
}
.map-embed {
  overflow: hidden;
}
.map-embed iframe {
  display: block;
}
.map-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
}
.map-addr-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--blue), #1e40af);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.map-address strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 3px;
}
[data-theme="dark"] .map-address strong {
  color: #f1f5f9;
}
.map-address p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Hours card */
.hours-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.hours-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
[data-theme="dark"] .hours-card h3 {
  color: #f1f5f9;
}
.hours-card h3 i {
  color: var(--blue);
}
.hours-list {
  display: flex;
  flex-direction: column;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.hours-list li:last-child {
  border: none;
}
.hours-badge {
  font-weight: 700;
  font-size: 0.8rem;
  font-family: var(--font-display);
  padding: 3px 12px;
  border-radius: var(--r-full);
}
.hours-badge.open {
  background: var(--green-light);
  color: var(--green);
}
.hours-badge.closed {
  background: rgba(229, 62, 62, 0.1);
  color: var(--red);
}
.policy-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--r-sm);
}
.notice-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.policy-notice p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER  (exact match to style-about.css)
════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 52px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo .logo-ntlf {
  color: #fff;
}
.footer-logo .logo-medical {
  color: var(--green);
}
.footer-logo .logo-circle {
  background: linear-gradient(135deg, var(--blue), var(--green));
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.social-link.wa:hover {
  background: #25d366;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.footer-contact li a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer-contact li a:hover {
  color: var(--green);
}
.fc-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  text-align: center;
  color: var(--green);
  font-size: 0.88rem;
}
.footer-notice {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  background: rgba(229, 62, 62, 0.12);
  border: 1px solid rgba(229, 62, 62, 0.25);
  color: #fca5a5;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.83rem;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.83rem;
  transition: color var(--transition);
}
.footer-legal a:hover {
  color: #fff;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--green);
    gap: 2px;
    z-index: 400;
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .btn-nav {
    display: none;
  }
  .section {
    padding: 56px 0;
  }
  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .quick-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-content h1 {
    font-size: 2rem;
  }
}

/* UPDATED HERO SECTION — background image with dark overlay */
.page-hero {
  background-image: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1920&q=80&auto=format&fit=crop") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
/* NEW STYLES ADDED — pseudo-element overlay keeps text readable */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(8, 14, 32, 0.9) 0%,
    rgba(10, 37, 64, 0.87) 40%,
    rgba(13, 53, 97, 0.85) 80%
  );
  z-index: 1;
}
.page-hero-bg,
.page-hero-content,
.page-hero__container {
  position: relative;
  z-index: 2;
}
