/* =====================================================
   NOOR FREIGHT — Premium Corporate Logistics Website
   Master Stylesheet (Merged & Sequenced)
   Version: 2.0 (2026)
   ===================================================== */

/* ---------- 1. CSS Variables & Theme ---------- */
:root {
  /* Brand palette */
  --nf-navy: #0A1F44;
  --nf-navy-2: #0E2A5C;
  --nf-navy-3: #14356F;
  --nf-teal: #14B8A6;
  --nf-teal-2: #0EA5A0;
  --nf-gold: #D4A24C;
  --nf-gold-2: #E7B85E;
  --nf-white: #ffffff;
  --nf-off: #F7F9FC;
  --nf-grey: #6B7A90;
  --nf-grey-2: #94A3B8;
  --nf-line: #E5EAF2;

  /* Semantic */
  --bg: #ffffff;
  --bg-alt: #F7F9FC;
  --bg-elev: #ffffff;
  --text: #0A1F44;
  --text-muted: #55668A;
  --heading: #0A1F44;
  --border: #E5EAF2;
  --glass: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.35);
  --shadow-sm: 0 4px 14px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 12px 30px rgba(10, 31, 68, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 31, 68, 0.18);
  --accent: var(--nf-teal);
  --accent-2: var(--nf-gold);

  /* Sizing */
  --header-h: 84px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1280px;

  /* Type */
  --font-sans: 'Inter', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

body.dark {
  --bg: #06122B;
  --bg-alt: #08183A;
  --bg-elev: #0B1E48;
  --text: #E6ECF7;
  --text-muted: #A6B3CB;
  --heading: #F3F6FB;
  --border: rgba(255,255,255,0.08);
  --glass: rgba(10, 31, 68, 0.55);
  --glass-border: rgba(255, 255, 255, 0.10);
  --shadow-sm: 0 4px 14px rgba(0,0,0,.25);
  --shadow-md: 0 12px 30px rgba(0,0,0,.35);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.55);
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(15px, 0.55vw + 13px, 17px);
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1,h2,h3,h4,h5,h6 {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 4.2vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 2.8vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 1.5vw, 1.6rem); }
p { margin: 0 0 1em; color: var(--text-muted); }
ul { padding: 0; margin: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 40px);
}
section { padding: clamp(60px, 8vw, 120px) 0; position: relative; }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 70px);
}
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(20,184,166,.12), rgba(212,162,76,.12));
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(20,184,166,.25);
}
.section-head h2 span { color: var(--accent); }
.section-head p { font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn i { transition: transform .3s var(--ease); }
.btn:hover i { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(135deg, var(--nf-teal) 0%, var(--nf-teal-2) 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(20,184,166,.35);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(20,184,166,.5); }

.btn--gold {
  background: linear-gradient(135deg, var(--nf-gold) 0%, var(--nf-gold-2) 100%);
  color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(212,162,76,.35);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(212,162,76,.5); }

.btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }

.btn--outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn--outline:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
}
.btn--whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,.5); }

/* ---------- 4. Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--nf-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: pulse 1.4s var(--ease) infinite;
}
.preloader__mark {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--nf-teal), var(--nf-gold));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 20px 50px rgba(20,184,166,.4);
}
.preloader__text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.preloader__bar {
  position: absolute;
  bottom: 30%;
  width: 220px;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 100px;
  overflow: hidden;
}
.preloader__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--nf-teal), transparent);
  animation: loadingBar 1.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
@keyframes loadingBar { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* ---------- 5. Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
  padding: 18px 0;
}
.site-header.is-solid {
  background: var(--bg);
  box-shadow: 0 6px 24px rgba(10,31,68,.08);
  padding: 12px 0;
}
body.dark .site-header.is-solid {
  background: rgba(6,18,43,.92);
  backdrop-filter: blur(14px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--heading);
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--nf-teal), var(--nf-gold));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(20,184,166,.35);
  font-weight: 800;
  font-size: 1.15rem;
}
.site-header:not(.is-solid) .brand,
.site-header:not(.is-solid) .nav__link { color: #fff; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__item { position: relative; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav__link:hover,
.nav__link.active { color: var(--accent); }
.nav__link i.fa-chevron-down { font-size: .7rem; transition: transform .25s var(--ease); }
.nav__item:hover .nav__link i.fa-chevron-down { transform: rotate(180deg); }

/* Mega Menu */
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(920px, 90vw);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .35s var(--ease);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.nav__item:hover .mega,
.nav__item:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega__col h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.mega__link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.mega__link:hover {
  background: var(--bg-alt);
  transform: translateX(4px);
}
.mega__link i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(20,184,166,.15), rgba(212,162,76,.15));
  color: var(--accent);
  display: grid;
  place-items: center;
  flex: none;
}
.mega__link strong {
  display: block;
  color: var(--heading);
  font-size: .95rem;
  margin-bottom: 2px;
}
.mega__link span { font-size: .82rem; color: var(--text-muted); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  color: currentColor;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .3s var(--ease);
}
.site-header.is-solid .theme-toggle {
  background: var(--bg-alt);
  color: var(--text);
  border-color: var(--border);
}
.theme-toggle:hover { transform: rotate(20deg) scale(1.08); }

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.site-header.is-solid .hamburger {
  background: var(--bg-alt);
  color: var(--text);
  border-color: var(--border);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 85vw);
  background: var(--bg-elev);
  padding: 100px 26px 30px;
  z-index: 999;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__item { border-bottom: 1px solid var(--border); }
.mobile-menu__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading);
}
.mobile-menu__sub { display: none; padding-bottom: 12px; }
.mobile-menu__sub a {
  display: block;
  padding: 10px 12px;
  color: var(--text-muted);
  font-size: .92rem;
}
.mobile-menu__sub a:hover { color: var(--accent); }
.mobile-menu__item.open .mobile-menu__sub { display: block; }
.mobile-menu__item.open .mobile-menu__link i { transform: rotate(180deg); }
.mobile-menu__link i { transition: transform .3s ease; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 20px; }

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6,18,43,.55);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all .35s var(--ease);
}
.backdrop.show { opacity: 1; visibility: visible; }

/* ---------- 6. Hero Slider ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 1100px;
  overflow: hidden;
  color: #fff;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__slide.active { opacity: 1; z-index: 2; }
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s linear;
}
.hero__slide.active .hero__bg { transform: scale(1.15); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(6,18,43,.85) 0%, rgba(6,18,43,.55) 55%, rgba(6,18,43,.35) 100%);
}
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom right, rgba(20,184,166,.25), transparent 55%);
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  width: 100%;
  padding: 0 clamp(20px, 3vw, 40px);
  padding-top: var(--header-h);
}
.hero__inner { max-width: 780px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s var(--ease) .2s;
}
.hero__title {
  color: #fff;
  font-size: clamp(2.4rem, 5.4vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  opacity: 0;
  transform: translateY(30px);
  transition: all .9s var(--ease) .35s;
}
.hero__title span {
  background: linear-gradient(135deg, var(--nf-teal) 20%, var(--nf-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__desc {
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  max-width: 620px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  transition: all .9s var(--ease) .5s;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transform: translateY(30px);
  transition: all .9s var(--ease) .65s;
}
.hero__slide.active .hero__eyebrow,
.hero__slide.active .hero__title,
.hero__slide.active .hero__desc,
.hero__slide.active .hero__cta {
  opacity: 1;
  transform: translateY(0);
}
.hero__controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__dots { display: flex; gap: 10px; }
.hero__dot {
  width: 40px;
  height: 4px;
  border-radius: 100px;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.hero__dot.active { background: var(--nf-teal); width: 60px; }
.hero__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(12px);
  transition: all .3s var(--ease);
}
.hero__arrow:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.08); }
.hero__scroll {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 4;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ---------- 7. Noor Freight Highlights ---------- */
.nf-highlights {
  position: relative;
  width: 100%;
  padding: 75px 20px;
  overflow: hidden;
  background: #f7f9fc;
}
.nf-highlights__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.nf-highlights__intro {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}
.nf-highlights__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #c49b2e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nf-highlights__title {
  margin: 0 0 15px;
  color: #111827;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
}
.nf-highlights__text {
  max-width: 650px;
  margin: 0 auto;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
}
.nf-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.nf-highlight-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 145px;
  padding: 28px 22px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.nf-highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #c49b2e;
  transition: width 0.4s ease;
}
.nf-highlight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 155, 46, 0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}
.nf-highlight-card:hover::before { width: 100%; }
.nf-highlight-card__icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(196, 155, 46, 0.10);
  color: #c49b2e;
  font-size: 23px;
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}
.nf-highlight-card:hover .nf-highlight-card__icon {
  transform: scale(1.08) rotate(5deg);
  background: #c49b2e;
  color: #ffffff;
}
.nf-highlight-card__content h3 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}
.nf-highlight-card__content p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .nf-highlights { padding: 65px 20px; }
  .nf-highlights__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nf-highlights { padding: 55px 15px; }
  .nf-highlights__intro { margin-bottom: 35px; }
  .nf-highlights__title { font-size: 28px; }
  .nf-highlights__text { font-size: 14px; }
  .nf-highlights__grid { grid-template-columns: 1fr; gap: 14px; }
  .nf-highlight-card { min-height: 120px; padding: 22px 20px; }
  .nf-highlight-card__icon { flex-basis: 52px; width: 52px; height: 52px; font-size: 21px; }
  .nf-highlight-card__content h3 { font-size: 18px; }
  .nf-highlight-card__content p { font-size: 12px; }
}
@media (max-width: 380px) {
  .nf-highlights { padding: 45px 12px; }
  .nf-highlights__title { font-size: 25px; }
  .nf-highlight-card { padding: 20px 16px; }
}

/* ---------- 8. Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.service-card {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,184,166,.05), rgba(212,162,76,.05));
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(20,184,166,.18), transparent 45%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before,
.service-card:hover::after { opacity: 1; }
.service-card__icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--nf-teal), var(--nf-teal-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  box-shadow: 0 12px 26px rgba(20,184,166,.35);
  transition: transform .4s var(--ease);
}
.service-card:hover .service-card__icon { transform: rotate(-6deg) scale(1.05); }
.service-card:nth-child(even) .service-card__icon {
  background: linear-gradient(135deg, var(--nf-gold), var(--nf-gold-2));
  box-shadow: 0 12px 26px rgba(212,162,76,.35);
}
.service-card h3 { position: relative; z-index: 1; margin-bottom: 12px; }
.service-card p { position: relative; z-index: 1; font-size: .95rem; }
.service-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 8px;
}
.service-card__link i { transition: transform .3s var(--ease); }
.service-card:hover .service-card__link i { transform: translateX(6px); }

/* ---------- 9. Why Choose / Timeline ---------- */
.why { background: var(--bg-alt); }
.why__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.why__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.why__image img { width: 100%; height: 100%; object-fit: cover; }
.why__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,18,43,.6));
}
.why__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 16px;
}
body.dark .why__badge { color: #fff; }
.why__badge i {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--nf-teal), var(--nf-gold));
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.timeline__item {
  display: flex;
  gap: 20px;
  padding: 22px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.timeline__item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20,184,166,.3);
}
.timeline__num {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex: none;
  background: linear-gradient(135deg, var(--nf-teal), var(--nf-teal-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(20,184,166,.3);
}
.timeline__item:nth-child(even) .timeline__num {
  background: linear-gradient(135deg, var(--nf-gold), var(--nf-gold-2));
  box-shadow: 0 8px 20px rgba(212,162,76,.3);
}
.timeline__title {
  color: var(--heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline__desc { color: var(--text-muted); font-size: .93rem; margin: 0; }

/* ---------- 10. Fleet ---------- */
.fleet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.fleet-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: var(--shadow-md);
}
.fleet-card:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
  box-shadow: var(--shadow-lg);
}
.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.fleet-card:hover img { transform: scale(1.08); }
.fleet-card__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 30%, rgba(6,18,43,.9) 100%);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.fleet-card__tag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: 12px;
}
.fleet-card h3 { color: #fff; margin-bottom: 8px; }
.fleet-card__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.fleet-card:hover .fleet-card__details { max-height: 200px; }
.fleet-card__details ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
  margin-top: 10px;
}
.fleet-card__details li {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 6px;
}
.fleet-card__details li i { color: var(--nf-teal); font-size: .8rem; }

/* ---------- 11. Process ---------- */
.process { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--nf-teal), var(--nf-teal) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--bg-elev);
  border: 2px solid var(--nf-teal);
  color: var(--nf-teal);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.6rem;
  box-shadow: 0 0 0 8px rgba(20,184,166,.1), 0 12px 30px rgba(20,184,166,.15);
  transition: all .3s var(--ease);
}
.step:hover .step__num {
  background: linear-gradient(135deg, var(--nf-teal), var(--nf-gold));
  color: #fff;
  border-color: transparent;
}
.step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .9rem; margin: 0; }

/* ---------- 12. Industries ---------- */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.industry-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nf-teal), var(--nf-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.industry-card:hover::before { transform: scaleX(1); }
.industry-card i {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(20,184,166,.15), rgba(212,162,76,.15));
  color: var(--nf-teal);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.industry-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.industry-card p { font-size: .88rem; margin: 0; }

/* ---------- 13. Testimonials ---------- */
.testimonials { background: var(--bg-alt); overflow: hidden; }
.testi__carousel { position: relative; padding: 20px 0 40px; }
.testi__track {
  display: flex;
  gap: 24px;
  transition: transform .5s var(--ease);
  cursor: grab;
}
.testi__track:active { cursor: grabbing; }
.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  min-width: 280px;
}
.testi-card__quote {
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--accent);
  opacity: .18;
  font-size: 3.5rem;
  line-height: 1;
}
.testi-card__stars { color: var(--nf-gold); margin-bottom: 14px; display: flex; gap: 4px; }
.testi-card p {
  font-size: .98rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 22px;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nf-teal), var(--nf-gold));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex: none;
}
.testi-card__name { font-weight: 700; color: var(--heading); font-size: .95rem; }
.testi-card__role { font-size: .82rem; color: var(--text-muted); }

.testi__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.testi__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--heading);
  display: grid;
  place-items: center;
  transition: all .3s var(--ease);
}
.testi__arrow:hover {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
}
.testi__dots { display: flex; gap: 8px; }
.testi__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all .3s var(--ease);
  cursor: pointer;
}
.testi__dot.active { background: var(--accent); width: 24px; border-radius: 100px; }

/* ---------- 14. Quote Form ---------- */
.quote {
  position: relative;
  background: linear-gradient(135deg, var(--nf-navy) 0%, var(--nf-navy-3) 100%);
  color: #fff;
  overflow: hidden;
}
.quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-3.jpg') center/cover;
  opacity: .12;
}
.quote::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20,184,166,.3), transparent 60%);
  filter: blur(40px);
}
.quote .container { position: relative; z-index: 1; }
.quote__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.quote__intro h2 { color: #fff; }
.quote__intro h2 span {
  background: linear-gradient(135deg, var(--nf-teal), var(--nf-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.quote__intro p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.quote__perks { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.quote__perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
}
.quote__perks i { color: var(--nf-teal); }
.quote__form {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { position: relative; }
.field.full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
  transition: all .3s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--nf-teal);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 4px rgba(20,184,166,.18);
}
.field select option { background: var(--nf-navy); color: #fff; }
.field .err { color: #ff8a8a; font-size: .78rem; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #ff8a8a; }
.form-submit { grid-column: 1 / -1; margin-top: 10px; display: flex; gap: 12px; align-items: center; }
.form-msg { margin-top: 12px; grid-column: 1 / -1; font-size: .9rem; color: var(--nf-teal); }

/* ---------- 15. Footer ---------- */
.footer {
  background: #05102A;
  color: rgba(255,255,255,.75);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nf-teal), var(--nf-gold));
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.footer__about { font-size: .95rem; line-height: 1.7; margin-bottom: 20px; }
.footer h5 {
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--nf-teal), var(--nf-gold));
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  color: rgba(255,255,255,.72);
  font-size: .93rem;
  transition: color .3s ease, padding-left .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__links a:hover { color: #fff; padding-left: 6px; }
.footer__links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--nf-teal);
  font-size: .75rem;
}
.footer__contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .92rem;
}
.footer__contact i { color: var(--nf-teal); margin-top: 4px; flex: none; }
.newsletter {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.newsletter input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
}
.newsletter input:focus { outline: none; border-color: var(--nf-teal); }
.newsletter button {
  padding: 12px 18px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--nf-teal), var(--nf-teal-2));
  color: #fff;
  font-weight: 600;
}
.social {
  display: flex;
  gap: 10px;
}
.social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  display: grid;
  place-items: center;
  transition: all .3s var(--ease);
}
.social a:hover {
  background: var(--nf-teal);
  border-color: var(--nf-teal);
  transform: translateY(-4px);
}
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
}

/* ---------- 16. Floating Buttons ---------- */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  animation: floatY 3s ease-in-out infinite;
}
.fab-whatsapp::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,.4);
  z-index: -1;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fab-whatsapp:hover { transform: scale(1.1); }
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 30px;
  z-index: 500;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--nf-navy);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(10,31,68,.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .35s var(--ease);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--nf-teal); transform: translateY(-4px); }

/* ---------- 17. Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ---------- 18. Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,18,43,.88), rgba(14,53,111,.7));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 12px; font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
.page-hero p { color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.crums {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.crums a:hover { color: var(--nf-teal); }
.crums i { font-size: .6rem; align-self: center; opacity: .7; }

/* ---------- 19. About Page ---------- */
.about__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.about__stat {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.about__stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 800;
}
.about__stat span { font-size: .85rem; color: var(--text-muted); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.value-card {
  padding: 32px 26px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nf-teal), var(--nf-gold));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
}

/* ---------- 20. Contact Page ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}
.contact__info {
  background: linear-gradient(135deg, var(--nf-navy), var(--nf-navy-3));
  color: #fff;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact__info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20,184,166,.3), transparent 60%);
  filter: blur(30px);
}
.contact__info > * { position: relative; z-index: 1; }
.contact__info h3 { color: #fff; }
.contact__list { margin-top: 20px; }
.contact__list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact__list li i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--nf-teal);
  display: grid;
  place-items: center;
  flex: none;
}
.contact__list strong { color: #fff; display: block; margin-bottom: 4px; }
.contact__list span { color: rgba(255,255,255,.8); font-size: .92rem; }
.contact__form {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 42px);
}
.contact__form .field label {
  color: var(--heading);
  text-transform: none;
  letter-spacing: 0;
  font-size: .88rem;
  font-weight: 600;
}
.contact__form .field input,
.contact__form .field select,
.contact__form .field textarea {
  background: var(--bg-alt);
  color: var(--text);
  border-color: var(--border);
}
.contact__form .field input::placeholder,
.contact__form .field textarea::placeholder {
  color: var(--text-muted);
  opacity: .7;
}
.contact__form .field input:focus,
.contact__form .field select:focus,
.contact__form .field textarea:focus {
  background: var(--bg-elev);
  border-color: var(--nf-teal);
  box-shadow: 0 0 0 4px rgba(20,184,166,.15);
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- 21. Services Page ---------- */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.svc-detail:nth-child(even) .svc-detail__img { order: 2; }
.svc-detail__img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.svc-detail ul {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.svc-detail li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.svc-detail li i {
  color: var(--nf-teal);
  margin-top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(20,184,166,.12);
  display: grid;
  place-items: center;
  font-size: .7rem;
  flex: none;
}

/* ---------- 22. Utilities ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }

/* ---------- 23. Responsive ---------- */
@media (max-width: 1080px) {
  .nav__menu { display: none; }
  .hamburger { display: inline-flex; }
  .nav__cta .btn { display: none; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .process__grid::before { display: none; }
  .quote__grid, .contact__grid, .why__grid, .about__intro { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 30px; }
  .svc-detail:nth-child(even) .svc-detail__img { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .testi-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 100%; }
  .hero__scroll { display: none; }
  .about__stats { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .back-to-top { bottom: 96px; right: 20px; }
  .fab-whatsapp { bottom: 24px; right: 20px; }
  .hero__controls { bottom: 24px; }
  section { padding: 60px 0; }
}
@media (max-width: 380px) {
  .nf-highlights { padding: 45px 12px; }
  .nf-highlights__title { font-size: 25px; }
  .nf-highlight-card { padding: 20px 16px; }
}
/* ---------- 24. Focus & Accessibility ---------- */
:focus-visible {
  outline: 3px solid var(--nf-teal);
  outline-offset: 3px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}