/* ============================================================
   NTLF MEDICAL – Homepage Styles  (style-home.css)
   Design: Clean corporate medical — deep navy hero, crisp
   white content areas, emerald green accents.
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Brand colours */
  --navy: #0a2540;
  --blue: #1a56db;
  --blue-dark: #1341b4;
  --blue-light: #e8f0fe;
  --green: #0d9e6e;
  --green-light: #e6f9f2;
  --amber: #f59e0b;
  --red: #e53e3e;

  /* Neutrals */
  --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;
  --gray-900: #0f172a;

  /* Semantic aliases */
  --bg: var(--white);
  --bg-alt: var(--gray-50);
  --text: var(--gray-800);
  --text-muted: var(--gray-600);
  --border: var(--gray-200);

  /* Shadows */
  --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);

  /* Border radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* Typography */
  --font-display: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;

  /* Layout */
  --header-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode overrides */
[data-theme="dark"] {
  --bg: #0f172a;
  --bg-alt: #1e293b;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: #334155;
  --white: #0f172a;
  --gray-50: #1e293b;
  --gray-100: #334155;
  --gray-200: #475569;
  --gray-600: #cbd5e1;
  --gray-800: #f1f5f9;
  --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;
  -webkit-text-size-adjust: 100%;
}
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);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── 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;
  line-height: 1;
  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-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);
}

/* Hero-specific button variants */
.btn-hero {
  padding: 15px 32px;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(26, 86, 219, 0.5);
}
.btn-outline-hero {
  padding: 15px 32px;
  font-size: 0.95rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--r-md);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}
.btn-wa-hero {
  padding: 15px 28px;
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  background: #25d366;
  color: #fff;
  border-radius: var(--r-md);
  transition: all var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-wa-hero:hover {
  background: #1da851;
  transform: translateY(-2px);
}
.btn-nl {
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--green);
  border-radius: var(--r-md);
  flex-shrink: 0;
  transition: all var(--transition);
}
.btn-nl:hover {
  background: var(--navy);
  color: #fff;
}

/* ── 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 ease,
    visibility 0.5s ease;
}
.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;
  letter-spacing: -0.02em;
}
.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 16px;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: var(--r-full);
  animation: loadFill 1.6s ease forwards;
}
@keyframes loadFill {
  to {
    width: 100%;
  }
}
.loader-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

/* ── Toast ──────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9900;
  background: var(--gray-800);
  color: #fff;
  padding: 14px 24px;
  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) + 16px);
  right: 20px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--bg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.dark-toggle:hover {
  transform: scale(1.12) rotate(15deg);
}
[data-theme="dark"] .sun-icon {
  display: none;
}
[data-theme="light"] .moon-icon,
body:not([data-theme]) .moon-icon {
  display: none;
}

/* ── Scroll Top ─────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--blue);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.35);
  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 ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: transparent;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--bg);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}
[data-theme="dark"] .site-header.scrolled {
  background: #0f172a;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

/* Logo mark */
.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) 0%, var(--navy) 100%);
}
.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;
}

/* On dark bg hero, make logo white */
.site-header:not(.scrolled) .logo-ntlf {
  color: #fff;
}
.site-header:not(.scrolled) .logo-medical {
  color: rgba(255, 255, 255, 0.7);
}
.site-header:not(.scrolled) .logo-lines span {
  background: #fff;
}
[data-theme="dark"] .logo-ntlf {
  color: #fff;
}

/* Nav links */
.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);
}
.site-header:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.75);
}
.site-header:not(.scrolled) .nav-links a:hover,
.site-header:not(.scrolled) .nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  font-size: 1.1rem;
  justify-content: center;
  transition: all var(--transition);
}
.nav-cart:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}
.site-header.scrolled .nav-cart {
  background: var(--gray-100);
}
.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);
}
.site-header:not(.scrolled) .hamburger span {
  background: #fff;
}

/* ── Section Shared Styles ──────────────────────────────────── */
.section {
  padding: 96px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.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;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
[data-theme="dark"] .section-title {
  color: var(--gray-800);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ═══════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
/* UPDATED HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
  background-image: url("/room2.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* NEW STYLES ADDED — overlay so image is subtle, text stays clear */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    145deg,
    rgba(8, 14, 32, 0.93) 0%,
    rgba(10, 37, 64, 0.9) 40%,
    rgba(13, 53, 97, 0.88) 70%,
    rgba(6, 24, 40, 0.95) 100%
  );
}

/* Background decorations */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.hero-blob {
  position: absolute;
  border-radius: var(--r-full);
  filter: blur(90px);
  opacity: 0.18;
}
.hero-blob-1 {
  width: 700px;
  height: 700px;
  background: var(--blue);
  top: -250px;
  right: -150px;
  animation: blobFloat 9s ease-in-out infinite;
}
.hero-blob-2 {
  width: 500px;
  height: 500px;
  background: var(--green);
  bottom: -180px;
  left: -150px;
  animation: blobFloat 11s ease-in-out infinite reverse;
}
.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: #7c3aed;
  top: 40%;
  left: 40%;
  opacity: 0.08;
  animation: blobFloat 14s ease-in-out infinite;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(15px, -25px) scale(1.04);
  }
  66% {
    transform: translate(-10px, 15px) scale(0.97);
  }
}

/* Content grid */
.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: var(--green);
  animation: dotPulse 2.5s ease infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* Hero title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.13;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-highlight {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero subtitle */
.hero-subtitle {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

/* Hero CTA row */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  display: inline;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
}
.stat-label {
  display: block;
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  letter-spacing: 0.03em;
}
.stat-div {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* Hero visual column */
.hero-visual {
  position: relative;
  min-height: 420px;
}
.hero-img-block {
  width: 100%;
  min-height: 320px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.07);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-display);
  font-size: 0.9rem;
}
.hero-cross {
  font-size: 4rem;
  font-weight: 200;
  opacity: 0.35;
  line-height: 1;
}
.hero-img-sub {
  font-size: 0.75rem;
  opacity: 0.5;
}

/* Floating cards */
.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(16px);
  z-index: 3;
}
[data-theme="dark"] .hero-card {
  background: #1e293b;
}
.hero-card-1 {
  bottom: 20px;
  left: -24px;
  animation: cardFloat 4.5s ease-in-out infinite;
}
.hero-card-2 {
  top: 24px;
  right: -24px;
  animation: cardFloat 5.5s ease-in-out infinite reverse;
}
.hero-card-3 {
  top: 50%;
  left: -24px;
  animation: cardFloat3 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes cardFloat3 {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 10px));
  }
}

.hcard-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
  flex-shrink: 0;
}
.hero-card-2 .hcard-icon {
  background: linear-gradient(135deg, var(--green) 0%, #0a7a52 100%);
  box-shadow: 0 4px 12px rgba(13, 158, 110, 0.3);
}
.hero-card-3 .hcard-icon {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}
.hcard-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hcard-body strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}
[data-theme="dark"] .hcard-body strong {
  color: var(--gray-800);
}
.hcard-body small {
  font-size: 0.72rem;
  color: var(--gray-500);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  border: 2px solid rgba(255, 255, 255, 0.25);
  z-index: 2;
  animation: bounce 2.5s ease infinite;
}
.scroll-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg) translate(-2px, -2px);
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════════════════════════ */
.trust-bar {
  position: relative;
  z-index: 3;
  background: var(--navy);
  padding: 18px 0;
  border-bottom: 3px solid var(--green);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.83rem;
  font-weight: 500;
  font-family: var(--font-display);
}
.trust-check {
  color: var(--green);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.trust-item .fa-triangle-exclamation {
  color: #fca5a5;
}
.alert-item {
  color: #fca5a5;
}
.alert-item span {
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   FEATURED SLIDER
════════════════════════════════════════════════════════════ */
.featured-section {
  background: var(--bg-alt);
}
.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.slider-outer {
  flex: 1;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: 12px 0;
}
.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide card */
.slide-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.slide-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.slide-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  border-radius: var(--r-md);
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gray-400);
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--blue);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.slide-cat {
  font-size: 0.72rem;
  color: var(--blue);
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.slide-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}
[data-theme="dark"] .slide-name {
  color: var(--gray-800);
}
.slide-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
}
.slide-qty {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
}
.slide-btn {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: var(--r-sm);
  text-align: center;
  background: var(--blue-light);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.83rem;
  transition: all var(--transition);
}
.slide-btn:hover {
  background: var(--blue);
  color: #fff;
}

/* Slider controls */
.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: var(--r-full);
  background: var(--bg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
  color: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: var(--gray-200);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active {
  width: 24px;
  background: var(--blue);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.55rem;
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(26, 86, 219, 0.28);
  flex-shrink: 0;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 10px 28px rgba(26, 86, 219, 0.38);
}
/* Alternate icon colours per card position */
.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, #0d9e6e 0%, #0a7a52 100%);
  box-shadow: 0 6px 18px rgba(13, 158, 110, 0.28);
}
.service-card:nth-child(2):hover .service-icon {
  box-shadow: 0 10px 28px rgba(13, 158, 110, 0.38);
}
.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.28);
}
.service-card:nth-child(3):hover .service-icon {
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.38);
}
.service-card:nth-child(4) .service-icon {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.25);
}
.service-card:nth-child(4):hover .service-icon {
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.35);
}
.service-card:nth-child(5) .service-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.28);
}
.service-card:nth-child(5):hover .service-icon {
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.38);
}
.service-card:nth-child(6) .service-icon {
  background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
  box-shadow: 0 6px 18px rgba(8, 145, 178, 0.28);
}
.service-card:nth-child(6):hover .service-icon {
  box-shadow: 0 10px 28px rgba(8, 145, 178, 0.38);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 12px;
}
[data-theme="dark"] .service-card h3 {
  color: var(--gray-800);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-link {
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--blue);
  transition: gap var(--transition);
  display: inline-block;
}
.service-link:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════════════════════ */
.why-section {
  background: var(--bg-alt);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Visual side */
.why-visual {
  position: relative;
  min-height: 400px;
}
.why-img-wrap {
  height: 380px;
}
.why-img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  border-radius: var(--r-xl);
  border: 2px dashed var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue);
  font-family: var(--font-display);
}
.why-cross {
  font-size: 3.5rem;
  font-weight: 200;
  opacity: 0.35;
  line-height: 1;
}
.why-img-ph p {
  font-weight: 600;
  font-size: 0.95rem;
}
.why-img-ph small {
  font-size: 0.78rem;
  opacity: 0.6;
}

.why-float-card {
  position: absolute;
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-xl);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: cardFloat 5s ease-in-out infinite;
}
.why-float-top {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}
.why-float-bottom {
  bottom: -20px;
  left: -20px;
  animation-delay: 0.8s;
}
.wfc-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.wfc-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Text side */
.why-text {
}
.why-lead {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 16px 0 32px;
  line-height: 1.7;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green) 0%, #0a7a52 100%);
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 3px 10px rgba(13, 158, 110, 0.3);
}
.why-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}
[data-theme="dark"] .why-item h4 {
  color: var(--gray-800);
}
.why-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.why-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ═══════════════════════════════════════════════════════════
   STATS SECTION
════════════════════════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(
    145deg,
    var(--navy) 0%,
    #0d3561 60%,
    #081525 100%
  );
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.sc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.sc-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  display: block;
}
.sc-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--bg-alt);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.tcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.tcard-featured {
  background: linear-gradient(145deg, var(--navy) 0%, #0d3561 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.tcard-featured .tcard-text {
  color: rgba(255, 255, 255, 0.82);
}
.tcard-featured .tcard-author strong {
  color: #fff;
}
.tcard-featured .tcard-author span {
  color: rgba(255, 255, 255, 0.55);
}
.tcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.tcard-stars {
  color: var(--amber);
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.tcard-featured .tcard-stars {
  color: #fbbf24;
}
.tcard-quote {
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 0.5;
  color: var(--blue-light);
  display: block;
}
[data-theme="dark"] .tcard-quote {
  color: rgba(26, 86, 219, 0.35);
}
.tcard-featured .tcard-quote {
  color: rgba(255, 255, 255, 0.15);
}
.tcard-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}
.tcard-featured .tcard-author {
  border-color: rgba(255, 255, 255, 0.12);
}
.author-av {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tcard-author strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 2px;
}
[data-theme="dark"] .tcard-author strong {
  color: var(--gray-800);
}
.tcard-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(135deg, var(--green) 0%, #0a7a52 100%);
  padding: 72px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.newsletter-text p {
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.95rem;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.newsletter-form input {
  width: 280px;
  padding: 14px 20px;
  border-radius: var(--r-md);
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.25);
}

/* ═══════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.07);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
  gap: 12px;
}
[data-theme="dark"] .faq-q {
  color: var(--gray-800);
}
.faq-q:hover {
  background: var(--bg-alt);
}
.faq-arrow {
  color: var(--blue);
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: transform var(--transition);
  display: flex;
  align-items: center;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a {
  max-height: 220px;
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}
.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.52);
  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.7);
  font-weight: 700;
  font-size: 0.82rem;
  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);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  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.4);
  font-size: 0.83rem;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.83rem;
  transition: color var(--transition);
}
.footer-legal a:hover {
  color: #fff;
}

/* ── Entry Animations ───────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* ── Responsive Breakpoints ─────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding-top: 48px;
  }
  .hero-text {
    max-width: 640px;
    margin: 0 auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-visual {
    display: none;
  }
  .why-inner {
    grid-template-columns: 1fr;
  }
  .why-visual {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .newsletter-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .newsletter-form {
    justify-content: center;
    flex-wrap: wrap;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .slide-card {
    flex: 0 0 calc(50% - 12px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  /* Nav */
  .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;
  }
  .nav-links a {
    padding: 12px 16px;
    border-radius: var(--r-sm);
  }
  .hamburger {
    display: flex;
  }
  .btn-nav {
    display: none;
  }
  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }
  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  /* Hero */
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .btn-hero,
  .btn-outline-hero,
  .btn-wa-hero {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  /* Slider */
  .slide-card {
    flex: 0 0 calc(100%);
  }
  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .newsletter-form input {
    width: 100%;
  }
  .btn-nl {
    width: 100%;
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .stat-div {
    display: none;
  }
  .trust-inner {
    gap: 16px;
    justify-content: flex-start;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
