/* ================================================================
   style.css – NBC Invisible Safety Grills
   Theme: Navy #002366 | Orange #FF8C00 | BG #F4F4F4 | Text #333333
   ================================================================ */

/* ── 1. CSS Variables ──────────────────────────────────────────── */
:root {
  --navy:        #002366;
  --navy-dark:   #001a4d;
  --navy-light:  #003a99;
  --orange:      #FF8C00;
  --orange-dark: #e07800;
  --orange-light:#ffaa33;
  --bg:          #F4F4F4;
  --white:       #ffffff;
  --text:        #333333;
  --text-muted:  #666666;
  --text-light:  #999999;
  --border:      #e0e0e0;
  --card-bg:     #ffffff;
  --shadow-sm:   0 2px 8px rgba(0,35,102,0.08);
  --shadow-md:   0 8px 32px rgba(0,35,102,0.12);
  --shadow-lg:   0 16px 48px rgba(0,35,102,0.16);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --transition:  0.3s ease;
  --font-body:   'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --font-heading:'Poppins', 'DM Sans', system-ui, sans-serif;
}

/* ── 2. Reset & Base ───────────────────────────────────────────── */
*, *::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.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: rgba(255,140,0,0.2); color: var(--navy); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ── 3. Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 0; }

/* ── 4. Layout Utilities ───────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 90px 0;
}
.section-sm { padding: 60px 0; }
/* Smooth scroll offset for fixed header (topbar 38px + nav 72px + 5px buffer) */
[id] { scroll-margin-top: 115px; }
.section-alt { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.8); }

.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ── 5. Section Header ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  background: rgba(255,140,0,0.12);
  border: 1px solid rgba(255,140,0,0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── 6. Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-cta {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255,140,0,0.35);
}
.btn-cta:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 6px 28px rgba(255,140,0,0.5);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,35,102,0.25);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── 7. Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(255,140,0,0.3);
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .card:hover { transform: none; box-shadow: var(--shadow-sm); }
}

/* ── 8. Preloader ──────────────────────────────────────────────── */
#nbc-preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#nbc-preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Wire lines decoration */
.pre-lines-h, .pre-lines-v {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pre-line-h {
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(192,192,192,0.25), transparent);
  transform: scaleX(0);
  transform-origin: left;
}
.pre-line-v {
  position: absolute;
  width: 1px;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(192,192,192,0.25), transparent);
  transform: scaleY(0);
  transform-origin: top;
}
@keyframes lineDrawH {
  0%   { transform: scaleX(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scaleX(1); opacity: 0.5; }
}
@keyframes lineDrawV {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0.5; }
}

/* NBC logo badge */
.pre-badge {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: badgeReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}
@keyframes badgeReveal {
  0%   { transform: scale(0.3) rotate(-15deg); opacity: 0; }
  60%  { transform: scale(1.08) rotate(3deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.pre-logo-ring {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid rgba(255,140,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  box-shadow: 0 0 40px rgba(255,140,0,0.2), inset 0 0 40px rgba(0,35,102,0.5);
}
.pre-logo-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(192,192,192,0.25);
  animation: ringRotate 3s linear infinite;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.pre-logo-ring svg { filter: drop-shadow(0 0 12px rgba(255,140,0,0.6)); }
.pre-logo-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.pre-tagline {
  font-size: 0.7rem;
  color: rgba(255,140,0,0.8);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.pre-bar-wrap {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  margin: 1.5rem auto 0;
  overflow: hidden;
}
.pre-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--navy-light), var(--orange));
  border-radius: 999px;
  animation: prebarLoad 2s ease forwards 0.4s;
  width: 0;
}
@keyframes prebarLoad {
  0%   { width: 0; }
  100% { width: 100%; }
}

/* ── 9a. Fixed Top Bar (above nav) ────────────────────────────── */
.nbc-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 38px;
  background: #001a4d;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 1001;
  display: flex;
  align-items: center;
}
.nbc-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nbc-topbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nbc-topbar-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.nbc-topbar-link:hover { color: #ffaa33; }
.nbc-topbar-phone-plain {
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.03em;
}
.nbc-topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nbc-topbar-social {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.nbc-topbar-social:hover { color: #ffaa33; }
@media (max-width: 768px) {
  .nbc-topbar-link.nbc-topbar-email { display: none; }
  .nbc-topbar-left { gap: 0.5rem; }
}
@media (max-width: 640px) {
  .nbc-topbar { height: 34px; }
  .nbc-topbar-inner { justify-content: center; }
  .nbc-topbar-right { display: none; }
  .nbc-topbar-phone-plain { font-size: 0.8rem; }
  .nbc-nav { top: 34px; }
}

/* ── 9. Navigation ─────────────────────────────────────────────── */
#site-header { position: relative; z-index: 1000; }
.nbc-nav {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.nbc-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nbc-nav-transparent { background: rgba(0,35,102,0.1); backdrop-filter: blur(4px); }
.nbc-nav-scrolled {
  background: rgba(0,35,102,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.nbc-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nbc-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
  border: 1.5px solid rgba(255,140,0,0.35);
}
.nbc-logo img {
  height: 44px;
  width: auto;
  max-height: 44px;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-link:hover { color: var(--white); background: rgba(255,140,0,0.15); }
.nav-active { color: var(--orange) !important; font-weight: 600; background: rgba(255,140,0,0.12) !important; }
.nav-cta-wrap { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .nav-cta-wrap { display: flex; } }
.nav-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta-outline {
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.nav-cta-outline:hover { background: rgba(255,255,255,0.12); }
.nav-cta-fill { background: var(--orange); color: var(--white); }
.nav-cta-fill:hover { background: var(--orange-dark); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
  background: none;
  border: none;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background: var(--navy);
  z-index: 1005;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 7.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: -4px 0 24px rgba(0,0,0,0.3);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1004;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-nav-link {
  display: block;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-link:hover, .mobile-nav-active {
  color: var(--orange);
  background: rgba(255,140,0,0.1);
  font-weight: 600;
}
.mobile-cta-wrap {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s;
}
.mobile-cta-call { background: var(--orange); color: var(--white); }
.mobile-cta-wa { background: #22c55e; color: var(--white); }

/* ── 10. Hero Section ──────────────────────────────────────────── */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
  overflow: hidden;
}

/* Carousel */
.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gradient overlays */
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(0,20,70,0.92) 0%, rgba(0,30,90,0.75) 40%, transparent 100%);
  z-index: 2;
}
.hero-overlay-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to bottom, rgba(0,20,70,0.5) 0%, transparent 100%);
  z-index: 2;
}

/* Hero content */
.hero-content {
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 130px 1.5rem 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.hero-tag {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  background: rgba(255,140,0,0.25);
  border: 1px solid rgba(255,140,0,0.5);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 800;
  max-width: 820px;
  line-height: 1.2;
  margin: 0 auto 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  animation: fadeInUp 0.6s ease 0.35s both;
}
.hero-content h1 span {
  color: var(--orange);
  position: relative;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  line-height: 1.65;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.6s ease 0.5s both;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.25rem;
  animation: fadeInUp 0.6s ease 0.65s both;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 0.6s ease 0.8s both;
}
.hero-trust span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-trust span::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

/* Carousel dots */
.carousel-controls {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.2);
}
.carousel-dot.active {
  background: var(--orange);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255,140,0,0.5);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounceScroll 2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

/* ── Hero Phone H2 ── */
.hero-phone-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: fadeInUp 0.6s ease 0.55s both;
  background: rgba(255,140,0,0.18);
  border: 1.5px solid rgba(255,140,0,0.45);
  border-radius: 999px;
  padding: 0.55rem 1.75rem;
  max-width: fit-content;
}
.hero-phone-h2 a {
  color: #ffcc55;
  text-decoration: none;
  font-weight: 800;
  transition: color 0.2s;
}
.hero-phone-h2 a:hover { color: #ffffff; }
.hero-phone-h2 .hero-ph-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.85em;
  font-weight: 600;
}

/* ── Section phone CTA strip ── */
.section-phone-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background: var(--navy);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}
.section-phone-strip .sps-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.section-phone-strip a.sps-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffcc55;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.section-phone-strip a.sps-number:hover { color: #ffffff; }

/* Mobile hero */
@media (max-width: 640px) {
  .hero-section { height: 92vh; min-height: 600px; max-height: 820px; }
  .hero-content { padding: 110px 1rem 55px; }
  .hero-content h1 { margin-bottom: 0.75rem; }
  .hero-sub { font-size: 0.92rem; line-height: 1.55; margin-bottom: 1rem; }
  .hero-phone-h2 { font-size: 0.975rem; padding: 0.42rem 1.15rem; margin-bottom: 1rem; }
  .hero-ctas { gap: 0.65rem; margin-bottom: 1.2rem; }
  .hero-ctas .btn { padding: 0.72rem 1.35rem; font-size: 0.875rem; }
  .hero-trust { gap: 0.5rem 1rem; }
  .hero-trust span { font-size: 0.73rem; }
  .hero-scroll { display: none; }
  .carousel-controls { bottom: 14px; }
}
@media (max-width: 390px) {
  .hero-trust { display: none; }
  .hero-section { min-height: 560px; }
}

/* ── 11. Key Features Section ──────────────────────────────────── */
.features-section { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(255,140,0,0.25);
}
.feature-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  background: rgba(0,35,102,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: rgba(255,140,0,0.1);
  transform: scale(1.08);
}
.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .feature-card { padding: 1.25rem; }
  .feature-icon { width: 54px; height: 54px; font-size: 1.4rem; }
  .feature-card h3 { font-size: 0.9rem; }
}

/* ── 12. Gallery Section ───────────────────────────────────────── */
.gallery-section { background: var(--bg); }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.gallery-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
  transition: all 0.2s;
}
.gallery-filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.gallery-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-item { }
.gallery-item.hidden { display: none; }
.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ddd;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,20,70,0.9) 0%, rgba(0,20,70,0.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--orange);
  color: var(--white);
  margin-bottom: 0.5rem;
  align-self: flex-start;
}
.gallery-overlay h3 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.gallery-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}
.gallery-zoom {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.25s;
  cursor: pointer;
}
.gallery-card:hover .gallery-zoom { opacity: 1; }
.gallery-zoom:hover { background: var(--orange); border-color: var(--orange); }

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,10,30,0.96);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.open { display: flex; }
.lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  animation: lbIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes lbIn { from { opacity:0; transform:scale(0.88); } to { opacity:1; transform:scale(1); } }
.lb-caption {
  margin-top: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  text-align: center;
}
.lb-close {
  position: fixed;
  top: 1.25rem; right: 1.25rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10000;
}
.lb-close:hover { background: var(--orange); border-color: var(--orange); }
.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10000;
}
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }
.lb-nav:hover { background: var(--orange); border-color: var(--orange); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-overlay { opacity: 1; }
  .gallery-zoom { opacity: 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── 13. Services Section ──────────────────────────────────────── */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: all var(--transition);
  align-items: flex-start;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,35,102,0.2);
  transform: translateY(-4px);
}
.service-icon-box {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  background: rgba(0,35,102,0.06);
}
.service-card-body h3 { margin-bottom: 0.6rem; color: var(--navy); }
.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0,35,102,0.06);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-card { padding: 1.5rem; }
}

/* ── 14. Process Section ───────────────────────────────────────── */
.process-section { background: var(--bg); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 48px; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--orange), var(--navy));
  opacity: 0.25;
}
.process-step { text-align: center; position: relative; }
.process-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0,35,102,0.3);
  transition: all var(--transition);
}
.process-step:hover .process-number {
  background: var(--orange);
  box-shadow: 0 4px 20px rgba(255,140,0,0.4);
  transform: scale(1.08);
}
.process-step h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.process-step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-grid::before { display: none; }
}

/* ── 15. Stats Section ─────────────────────────────────────────── */
.stats-section {
  background: var(--navy);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.stats-grid .divider {
  display: none;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stats-section { padding: 50px 0; }
}

/* ── 16. Testimonials ──────────────────────────────────────────── */
.testimonials-section { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(255,140,0,0.2);
}
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars span { color: #fbbf24; font-size: 1rem; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.author-loc { font-size: 0.78rem; color: var(--text-light); }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── 17. About Section ─────────────────────────────────────────── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.about-stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
}
.about-stat-card:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.about-stat-card:hover .about-stat-num { color: var(--orange); }
.about-stat-card:hover .about-stat-label { color: rgba(255,255,255,0.8); }
.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  transition: all var(--transition);
}
.about-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  transition: all var(--transition);
}
.about-text .section-tag { display: inline-block; margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-text .btn { margin-top: 1rem; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 18. Applications Section ──────────────────────────────────── */
.applications-section { background: var(--bg); }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.app-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.app-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.app-card:hover h3 { color: var(--white); }
.app-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.app-card h3 { font-size: 0.85rem; font-weight: 600; transition: color var(--transition); }

@media (max-width: 900px) { .apps-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .apps-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── 19. FAQ ───────────────────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.875rem;
  overflow: hidden;
  background: var(--card-bg);
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(0,35,102,0.25); }
.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  font-family: var(--font-heading);
  transition: background 0.2s;
  user-select: none;
}
.faq-question:hover { background: rgba(0,35,102,0.03); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
  color: var(--navy);
}
.faq-item.open .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── 20. CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.03) 39px, rgba(255,255,255,0.03) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.03) 39px, rgba(255,255,255,0.03) 40px);
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── 21. Footer ────────────────────────────────────────────────── */
.nbc-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
}
.footer-brand-logo {
  width: 40px; height: 40px;
  border-radius: 8px;
  object-fit: contain;
}
.footer-brand-name img {
  height: 40px;
  width: auto;
  max-height: 40px;
  display: block;
  object-fit: contain;
}
.footer-desc { line-height: 1.7; margin-bottom: 1.25rem; max-width: 300px; }
.footer-socials { display: flex; gap: 0.625rem; }
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social:hover { background: var(--orange); color: var(--white); }
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; font-size: 0.875rem; }
.footer-link:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-areas-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.75rem;
}
.footer-areas-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.875rem;
}
.footer-areas { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-area {
  font-size: 0.72rem;
  padding: 0.2rem 0.7rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  color: rgba(255,255,255,0.45);
  transition: all 0.2s;
}
.footer-area:hover { color: var(--orange); border-color: rgba(255,140,0,0.3); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .footer-main { grid-template-columns: repeat(2, 1fr); padding-top: 3rem; }
}
@media (max-width: 520px) {
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding-top: 2.5rem; }
}

/* ── 22. Genie / Chatbot Widget ────────────────────────────────── */
.genie-wrap {
  position: fixed;
  z-index: 9999;
  bottom: 100px;
  left: 24px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  will-change: transform;
}
.genie-wrap.dragging { cursor: grabbing; }
@keyframes genieFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes genieEntrance {
  0%   { opacity: 0; transform: translateY(60px) scale(0.5); }
  60%  { opacity: 1; transform: translateY(-10px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.genie-float { animation: genieFloat 3s ease-in-out infinite; transform: translate3d(0,0,0); }
.genie-entrance { animation: genieEntrance 0.8s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.genie-wrap.dragging .genie-float { animation: none; }

/* Glassmorphism Popup */
.genie-popup {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 0;
  width: 230px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.3);
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all 0.28s ease;
}
.genie-popup.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.genie-popup::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 22px;
  width: 16px; height: 16px;
  background: rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255,255,255,0.28);
  border-bottom: 1px solid rgba(255,255,255,0.28);
  transform: rotate(45deg);
  backdrop-filter: blur(24px);
}
.genie-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.genie-social-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.genie-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 7px;
  transition: all 0.2s;
  color: var(--white);
}
.genie-btn:last-child { margin-bottom: 0; }
.genie-btn-call { background: rgba(255,140,0,0.85); }
.genie-btn-call:hover { background: var(--orange); box-shadow: 0 4px 16px rgba(255,140,0,0.4); }
.genie-btn-wa { background: rgba(34,197,94,0.85); }
.genie-btn-wa:hover { background: #16a34a; box-shadow: 0 4px 16px rgba(34,197,94,0.4); }
.genie-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  aspect-ratio: 1;
}
.genie-btn-fb { background: rgba(24,119,242,0.85); color: var(--white); }
.genie-btn-fb:hover { background: #1877f2; }
.genie-btn-ig { background: linear-gradient(135deg, rgba(245,133,41,0.85), rgba(221,42,123,0.85)); color: var(--white); }
.genie-btn-ig:hover { opacity: 0.9; }

/* Fixed bottom-right buttons */
.boss-fixed-btns {
  position: fixed;
  bottom: 26px;
  right: 22px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.boss-fixed-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: transform 0.2s, box-shadow 0.2s;
}
.boss-btn-call { background: var(--orange); color: var(--white); }
.boss-btn-call:hover { background: var(--orange-dark); transform: scale(1.12); box-shadow: 0 6px 24px rgba(255,140,0,0.45); }
.boss-btn-wa { background: #22c55e; color: var(--white); }
.boss-btn-wa:hover { background: #16a34a; transform: scale(1.12); box-shadow: 0 6px 24px rgba(34,197,94,0.45); }

/* Mobile genie adjustment — safe zone above floating action buttons */
@media (max-width: 640px) {
  .genie-wrap {
    bottom: 148px; /* clear the stacked Call+WA buttons (2×58px + 12px gap + 18px margin) */
    left: 14px;
  }
  .boss-fixed-btns { bottom: 18px; right: 14px; gap: 10px; }
  .boss-fixed-btn  { width: 54px; height: 54px; }
  .boss-fixed-btn svg { width: 24px; height: 24px; }
}

/* ── 23. Animations / Scroll Reveal ────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes bounceScroll {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── 24. Blog Cards ────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(0,35,102,0.15);
}
.blog-thumb {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-thumb { transform: scale(1.04); }
.blog-thumb-wrap { overflow: hidden; }
.blog-body { padding: 1.5rem; }
.blog-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.blog-title {
  font-size: 1rem;
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.blog-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--text-light); }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
  margin-top: 0.875rem;
}
.blog-read-more:hover { color: var(--orange); gap: 0.65rem; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── 25. Contact Page ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,35,102,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info-text h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 0.25rem; }
.contact-info-text a { color: var(--text-muted); font-size: 0.9rem; text-decoration: none; }
.contact-info-text a:hover { color: var(--orange); }
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: all 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,35,102,0.08);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem; }
}

/* ── 26. Page Hero (Inner Pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 150px 0 65px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.025) 39px, rgba(255,255,255,0.025) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.025) 39px, rgba(255,255,255,0.025) 40px);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; position: relative; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; position: relative; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── 27. Utility helpers ───────────────────────────────────────── */
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── 28. Blog Post ─────────────────────────────────────────────── */
.post-body { max-width: 780px; margin: 0 auto; padding: 60px 1.5rem 80px; }
.post-body h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; color: var(--navy); }
.post-body h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; color: var(--navy); }
.post-body p  { font-size: 0.97rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.2rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.post-body li { font-size: 0.97rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.4rem; }
.post-body ul li { list-style: disc; }
.post-body ol li { list-style: decimal; }
.post-date { font-size: 0.82rem; color: var(--text-light); margin-bottom: 2rem; }

/* ── 29. About Story Grid (2-col: image + text) ────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-story-grid.reverse { direction: rtl; }
.about-story-grid.reverse > * { direction: ltr; }
.about-story-grid h2 { margin-bottom: 1rem; }
.about-story-grid p  { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.97rem; line-height: 1.8; }
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story-grid.reverse { direction: ltr; }
}

/* ── 30. Service Detail List ────────────────────────────────────── */
.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
.service-detail-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
@media (max-width: 640px) { .service-detail-list { grid-template-columns: 1fr; } }

/* ── 31. Comparison Table ───────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 1.5rem 0;
}
.compare-table thead { background: var(--navy); }
.compare-table thead th {
  padding: 1rem 1.25rem;
  color: var(--white);
  font-weight: 600;
  text-align: left;
  font-family: var(--font-heading);
}
.compare-table thead th:first-child { color: rgba(255,255,255,0.7); }
.compare-table tbody tr:nth-child(odd) { background: var(--bg); }
.compare-table tbody tr:nth-child(even) { background: var(--white); }
.compare-table td {
  padding: 0.85rem 1.25rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table td:first-child { font-weight: 600; color: var(--navy); }

/* ── 32. Contact Cards ──────────────────────────────────────────── */
.contact-section { background: var(--bg); }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: rgba(0,35,102,0.2); }
.contact-card-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,35,102,0.05);
  border-radius: 10px;
}
.contact-card h3 { font-size: 0.95rem; margin-bottom: 0.2rem; color: var(--navy); }
.contact-card p  { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.contact-card a  { font-size: 0.95rem; color: var(--navy); font-weight: 600; transition: color 0.2s; }
.contact-card a:hover { color: var(--orange); }
.contact-hours {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-hours h3 { font-size: 0.95rem; margin-bottom: 0.75rem; color: var(--navy); }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.hours-row:last-of-type { border-bottom: none; }
.hours-row span:last-child { font-weight: 600; color: var(--navy); }

/* ── 33. Contact Form Box ───────────────────────────────────────── */
.contact-form-wrap { }
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-box h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-form-box p  { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group label span { color: var(--orange); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,35,102,0.07);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.25rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  margin-top: 2px;
}
.form-consent a { color: var(--navy); font-weight: 600; }
.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-top: 0.25rem;
}
.submit-text   { display: inline; }
.submit-success { display: none; }
.form-submit.success .submit-text    { display: none !important; }
.form-submit.success .submit-success { display: inline !important; }
.form-submit.success { background: #16a34a; border-color: #16a34a; }
@media (max-width: 600px) {
  .contact-form-box { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── 34. Service Areas Cloud ────────────────────────────────────── */
.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.area-tag {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.area-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── 35. Blog Listing ───────────────────────────────────────────── */
.blog-card-img-link {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.blog-card-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img-link img { transform: scale(1.04); }
.blog-card-body {
  padding: 1.75rem;
}
.blog-card-body h2 {
  font-size: 1.05rem;
  margin: 0.5rem 0 0.75rem;
  line-height: 1.4;
}
.blog-card-body h2 a { color: var(--navy); transition: color 0.2s; }
.blog-card-body h2 a:hover { color: var(--orange); }
.blog-card-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.blog-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.25rem; }
.blog-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--navy);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  z-index: 2;
  font-family: var(--font-heading);
}
.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s;
  display: inline-block;
}
.blog-read-more:hover { color: var(--orange-dark); }

/* ── 36. Blog Post Layout (post + sidebar) ─────────────────────── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.post-body {
  max-width: none;
  margin: 0;
  padding: 0;
}
.post-body h2 { font-size: 1.45rem; margin: 2rem 0 0.75rem; color: var(--navy); border-bottom: 2px solid var(--border); padding-bottom: 0.5rem; }
.post-body h3 { font-size: 1.1rem; margin: 1.5rem 0 0.45rem; color: var(--navy); }
.post-body p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.2rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body li { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.4rem; }
.post-body ul li { list-style: disc; }
.post-body ol li { list-style: decimal; }
.post-body strong { color: var(--navy); font-weight: 600; }
.post-body address a { color: var(--navy); font-weight: 600; }
.post-body blockquote {
  border-left: 4px solid var(--orange);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(255,140,0,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.post-body blockquote p { font-style: italic; margin-bottom: 0.5rem; }
.post-body blockquote cite { font-size: 0.82rem; color: var(--text-light); font-style: normal; }
.post-lead {
  font-size: 1.05rem !important;
  color: var(--navy) !important;
  font-weight: 500;
  line-height: 1.7 !important;
}
.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  position: relative;
}
.post-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2.5rem 0 1rem;
}
.post-cta-box h3 { color: var(--white); margin-bottom: 0.6rem; font-size: 1.15rem; }
.post-cta-box p  { color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; font-size: 0.92rem; }
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 115px;
}
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.75rem; }
.sidebar-widget p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.sidebar-widget p a { color: var(--navy); font-weight: 600; }
.sidebar-links { display: flex; flex-direction: column; gap: 0.6rem; }
.sidebar-links li a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color 0.2s;
  padding-left: 0.75rem;
  position: relative;
  display: block;
}
.sidebar-links li a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}
.sidebar-links li a:hover { color: var(--navy); }
@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}

/* ── Page hero phone number \u2500\u2500 */
.page-hero-phone {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85) !important;
  position: relative;
}
.page-hero-phone a {
  color: #ffcc55 !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  border-bottom: 1.5px solid rgba(255,204,85,0.4);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.page-hero-phone a:hover {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.5);
}

/* ── 37. Privacy Policy Body ────────────────────────────────────── */
.policy-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 1.5rem 80px;
}
.policy-body h2 {
  font-size: 1.3rem;
  margin: 2.25rem 0 0.6rem;
  color: var(--navy);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.4rem;
}
.policy-body h3 { font-size: 1.05rem; margin: 1.25rem 0 0.4rem; color: var(--navy); }
.policy-body p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.policy-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-body ul li { list-style: disc; font-size: 0.95rem; color: var(--text-muted); }
.policy-body address { font-size: 0.95rem; color: var(--text-muted); line-height: 2; }
.policy-body address a { color: var(--navy); font-weight: 600; }

/* ── 38. About Page – Certifications + Why Us ──────────────────── */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.cert-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.cert-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.cert-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--navy); }
.cert-card p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 768px) { .certifications-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) and (min-width: 769px) { .certifications-grid { grid-template-columns: 1fr 1fr; } }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}
.why-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}
.why-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

/* ── 39. Page Hero (Content wrapper + grid overlay) ────────────── */
.page-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.03) 59px, rgba(255,255,255,0.03) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.03) 59px, rgba(255,255,255,0.03) 60px);
  pointer-events: none;
}

/* ── 40. Screen Reader Utility ──────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── 41. Gallery badge (standalone, not inside overlay) ─────────── */
.gallery-item { position: relative; }

/* ── 42. Blog grid col override (for 2-col related posts) ───────── */
.blog-grid[style*="--blog-cols:2"] {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .blog-grid[style*="--blog-cols:2"] { grid-template-columns: 1fr; }
}

/* ── 43. Blog post hero tweaks ──────────────────────────────────── */
.page-hero[style*="min-height:50vh"] { padding-top: 150px; padding-bottom: 3rem; }
.page-hero[style*="min-height:40vh"] { min-height: 40vh; padding-top: 148px; padding-bottom: 2.5rem; }

/* ── 44. Badge override: inline use inside post-meta-bar ─────────── */
/* .blog-badge inside a flexbox bar should not use absolute positioning */
.post-meta-bar .blog-badge {
  position: static;
  display: inline-flex;
  align-items: center;
}

/* ── 45. Services page: reverse grid row order on mobile ──────────── */
@media (max-width: 900px) {
  .about-story-grid.reverse > *:first-child { order: 2; }
  .about-story-grid.reverse > *:last-child  { order: 1; }
}

/* ── 46. Gallery grid responsive ──────────────────────────────────── */
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ── 47. Text-center utility ───────────────────────────────────────── */
.text-center { text-align: center; }

/* ── 48. Hero tag (small label above H1) ────────────────────────── */
/* Dark navy backing ensures legibility on every carousel slide background */
.hero-tag  {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  background: rgba(0, 12, 55, 0.72);
  border: 1.5px solid rgba(255,140,0,0.85);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

/* ── 49. Global mobile & tablet responsive fixes ────────────────── */

/* Section padding: reduce on tablet and mobile */
@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .section-sm { padding: 45px 0; }
  .section-header { margin-bottom: 48px; }
}
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .section-sm { padding: 36px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }
}

/* Page hero: tighten top padding on mobile */
@media (max-width: 640px) {
  .page-hero { padding: 120px 0 50px; }
  .page-hero[style*="min-height:50vh"] { padding-top: 120px; padding-bottom: 2.5rem; }
  .page-hero[style*="min-height:40vh"] { padding-top: 118px; padding-bottom: 2rem; }
  .page-hero h1 { font-size: clamp(1.45rem, 6.5vw, 2rem); }
}

/* Utility grids: stack on mobile */
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 900px) and (min-width: 641px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Nav CTA buttons: reduce padding on small desktop breakpoints */
@media (max-width: 1024px) and (min-width: 768px) {
  .nav-cta { padding: 0.45rem 0.9rem; font-size: 0.78rem; }
  .nav-link { padding: 0.45rem 0.75rem; font-size: 0.82rem; }
  .nbc-nav-inner { padding: 0 1rem; }
  .nbc-topbar-inner { padding: 0 1rem; }
}

/* Container: tighten on small screens */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
}

/* Section-phone-strip: compact on mobile */
@media (max-width: 640px) {
  .section-phone-strip { padding: 0.875rem 1rem; gap: 0.5rem; margin-top: 1.75rem; }
  .section-phone-strip .sps-label { font-size: 0.83rem; }
  .section-phone-strip a.sps-number { font-size: 1rem; }
}

/* Page-hero-phone: slightly smaller on mobile */
@media (max-width: 640px) {
  .page-hero-phone { font-size: 0.92rem; margin-top: 1rem; }
  .page-hero-phone a { font-size: 1.05rem; }
}

/* Blog post body: tighten padding on mobile */
@media (max-width: 640px) {
  .post-body { padding: 40px 1rem 60px; }
  .policy-body { padding: 40px 1rem 60px; }
}

/* Topbar: add WhatsApp link visible on tablet (641–767px) */
@media (min-width: 641px) and (max-width: 767px) {
  .nbc-topbar-inner { gap: 0.75rem; }
}

