/*
Theme Name: Nevaeh Technology
Theme URI: https://example.com
Author: Suraj Rathaur
Author URI: https://example.com
Description: Custom Corporate Landing Page Theme
Version: 1.0
Text Domain: nevaeh
*/


/* ════════════════════════════════════════════════════
   NEVAEH — Global Stylesheet
   Sections: Root / Reset / Utilities / Navbar / Hero
════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   1. ROOT VARIABLES
────────────────────────────────────────── */
:root {
  /* Brand */
  --nvh-primary:        #FD7F20;
  --nvh-primary-dark:   #e56c10;
  --nvh-primary-light:  #ffe6d0;

  /* Neutrals */
  --nvh-black:          #0d0d0d;
  --nvh-dark:           #1a1a1a;
  --nvh-grey-900:       #222222;
  --nvh-grey-700:       #444444;
  --nvh-grey-500:       #777777;
  --nvh-grey-300:       #cccccc;
  --nvh-grey-100:       #f5f5f5;
  --nvh-white:          #ffffff;

  /* Typography */
  --nvh-font:           'Inter', sans-serif;

  /* Type scale */
  --nvh-fs-xs:    0.75rem;   /* 12px  */
  --nvh-fs-sm:    1rem;  /* 14px  */
  --nvh-fs-base:  1.3rem;      /* 16px  */
  --nvh-fs-md:    1.125rem;  /* 18px  */
  --nvh-fs-lg:    1.25rem;   /* 20px  */
  --nvh-fs-xl:    1.5rem;    /* 24px  */
  --nvh-fs-2xl:   2rem;      /* 32px  */
  --nvh-fs-3xl:   2.5rem;    /* 40px  */
  --nvh-fs-4xl:   3rem;      /* 48px  */
  --nvh-fs-5xl:   3.75rem;   /* 60px  */

  /* Spacing */
  --nvh-space-xs:  0.5rem;
  --nvh-space-sm:  1rem;
  --nvh-space-md:  1.5rem;
  --nvh-space-lg:  2rem;
  --nvh-space-xl:  3rem;
  --nvh-space-2xl: 5rem;

  /* Layout */
  --nvh-container: 1400px;
  --nvh-radius-sm: 4px;
  --nvh-radius-md: 8px;
  --nvh-radius-lg: 16px;
  --nvh-radius-full: 9999px;

  /* Nav */
  --nvh-nav-height:        76px;
  --nvh-nav-height-mobile: 64px;

  /* Transitions */
  --nvh-ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --nvh-ease-out: cubic-bezier(0, 0, 0.2, 1);
  --nvh-trans-fast:   0.15s var(--nvh-ease);
  --nvh-trans-base:   0.25s var(--nvh-ease);
  --nvh-trans-slow:   0.45s var(--nvh-ease);

  /* Shadows */
  --nvh-shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --nvh-shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --nvh-shadow-lg:  0 12px 40px rgba(0,0,0,.18);
}

/* ──────────────────────────────────────────
   2. RESET & BASE
────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
    width: 90%;
    margin: 0 auto;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--nvh-font);
  font-weight: 400;
  color: var(--nvh-dark);
  background-color: var(--nvh-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ──────────────────────────────────────────
   3. UTILITIES
────────────────────────────────────────── */


.nvh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--nvh-font);
  font-size: var(--nvh-fs-base);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--nvh-radius-md);
  padding: 0.875rem 1.75rem;
  transition: background var(--nvh-trans-base),
              color var(--nvh-trans-base),
              box-shadow var(--nvh-trans-base),
              transform var(--nvh-trans-fast);
  white-space: nowrap;
}
.nvh-btn:focus-visible {
  outline: 2px solid var(--nvh-primary);
  outline-offset: 3px;
}
.nvh-btn--primary {
  background: var(--nvh-primary);
  color: var(--nvh-white);
}
.nvh-btn--primary:hover {
  background: var(--nvh-primary-dark);
  box-shadow: 0 6px 20px rgba(253,127,32,.35);
  transform: translateY(-1px);
}
.nvh-btn--primary:active {
  transform: translateY(0);
}
.nvh-btn--outline {
  background: transparent;
  color: var(--nvh-primary);
  border: 2px solid var(--nvh-primary);
}
.nvh-btn--outline:hover {
  background: var(--nvh-primary);
  color: var(--nvh-white);
}

/* ══════════════════════════════════════════════════
   4. NAVBAR
══════════════════════════════════════════════════ */
.nvh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nvh-nav-height);
  background: var(--nvh-white);
  transition: box-shadow var(--nvh-trans-base),
              background var(--nvh-trans-base);
  will-change: box-shadow, background;
}

/* Scrolled state */
.nvh-header.nvh-header--scrolled {
  box-shadow: var(--nvh-shadow-md);
}

/* ── Nav inner ── */
.nvh-nav {
    display: flex;
    align-items: center;
    height: 100%;
    gap: var(--nvh-space-lg);
    justify-content: space-between;
}

/* ── Logo ── */
.nvh-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity var(--nvh-trans-fast);
}
.nvh-logo:hover { opacity: 0.85; }

.nvh-logo__wordmark {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--nvh-primary);
  letter-spacing: -0.5px;
  font-style: italic;
}

.nvh-logo__tagline {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--nvh-grey-500);
  letter-spacing: 0.02em;
  margin-top: 2px;
  text-transform: none;
}

/* ── Desktop nav links ── */
.nvh-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.menu-item-type-custom a {
    font-size: 18px;
}
.nvh-nav__link {
  position: relative;
  font-size: var(--nvh-fs-base);
  font-weight: 500;
  color: var(--nvh-grey-700);
  padding: 0.5rem 0.875rem;
  border-radius: var(--nvh-radius-sm);
  transition: color var(--nvh-trans-fast);
}
.nvh-nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 1.75rem);
  height: 2px;
  background: var(--nvh-primary);
  border-radius: 2px;
  transition: transform var(--nvh-trans-base);
  transform-origin: center;
}
.nvh-nav__link:hover {
  color: var(--nvh-primary);
}
.nvh-nav__link:hover::after,
.nvh-nav__link--active::after {
  transform: translateX(-50%) scaleX(1);
}
.nvh-nav__link--active {
  color: var(--nvh-primary);
  font-weight: 600;
}

/* ── CTA button ── */
.nvh-nav__cta {
  margin-left: var(--nvh-space-sm);
  flex-shrink: 0;
  font-size: var(--nvh-fs-sm);
  padding: 1rem 1.5rem;
}

/* ── Hamburger ── */
.nvh-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border-radius: var(--nvh-radius-sm);
  flex-shrink: 0;
  transition: background var(--nvh-trans-fast);
}
.nvh-hamburger:hover { background: var(--nvh-grey-100); }

.nvh-hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--nvh-dark);
  border-radius: 2px;
  transition: transform var(--nvh-trans-base),
              opacity var(--nvh-trans-fast),
              width var(--nvh-trans-base);
  transform-origin: center;
}

/* Open state animation */
.nvh-hamburger.is-open .nvh-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nvh-hamburger.is-open .nvh-hamburger__bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nvh-hamburger.is-open .nvh-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile drawer ── */
.nvh-mobile-menu {
  position: fixed;
  top: var(--nvh-nav-height-mobile);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--nvh-white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: var(--nvh-space-lg);
  transform: translateX(100%);
  transition: transform 0.35s var(--nvh-ease-out);
  overflow-y: auto;
  pointer-events: none;
}
.nvh-mobile-menu.is-open {
  transform: translateX(0);
  pointer-events: all;
}

.nvh-mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: var(--nvh-space-sm);
}
.nvh-mobile-menu__link {
  display: block;
  font-size: var(--nvh-fs-lg);
  font-weight: 500;
  color: var(--nvh-dark);
  padding: 0.875rem var(--nvh-space-sm);
  border-radius: var(--nvh-radius-md);
  border-bottom: 1px solid var(--nvh-grey-100);
  transition: color var(--nvh-trans-fast), background var(--nvh-trans-fast);
}
.nvh-mobile-menu__link:hover {
  color: var(--nvh-primary);
  background: var(--nvh-primary-light);
}
.nvh-mobile-menu__cta {
  display: flex;
  margin-top: var(--nvh-space-lg);
  border-radius: var(--nvh-radius-md);
  font-size: var(--nvh-fs-md);
  padding: 1rem;
}

/* ══════════════════════════════════════════════════
   5. HERO / BANNER
   Layout (matches design exactly):
     - White page background
     - Top row: heading (left) + description (right)
     - Below: full-width rounded video
     - Badge: absolute over bottom-left of video
══════════════════════════════════════════════════ */

.nvh-hero {
  background: var(--nvh-white);
  padding-top: calc(var(--nvh-nav-height) + 2.5rem);
  padding-bottom: var(--nvh-space-2xl);
  overflow: hidden;
}

/* ── Top text row ── */
.nvh-hero__top {
  display: grid;
  /*grid-template-columns: 1fr 1fr;*/
  gap: var(--nvh-space-xl);
  align-items: center;
  margin-bottom: 2rem;
}

/* ── Heading column ── */
.nvh-hero__text-col {
  display: flex;
  flex-direction: column;
}

.nvh-hero__heading {
  display: flex;
  flex-direction: column;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--nvh-black);
  letter-spacing: -0.03em;
}

.nvh-hero__heading-line {
  display: block;
  /*overflow: hidden;*/
  text-align: center;
}

/* ── Description column ── */
.nvh-hero__desc-col {
  display: flex;
  align-items: center;
}

.nvh-hero__desc {
  font-size: var(--nvh-fs-base);
  font-weight: 400;
  color: var(--nvh-grey-700);
  line-height: 1.75;
}


/* Hide all video controls */
video {
  /* Remove default controls */
  pointer-events: none;
  
  /* Chrome, Safari, Edge - hide Picture-in-Picture and other overlay buttons */
  -webkit-media-controls: none;
}

/* Hide ALL WebKit media controls (Chrome, Safari, Edge) */
video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-enclosure {
  display: none !important;
}

video::-webkit-media-controls-panel {
  display: none !important;
}

video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}

video::-webkit-media-controls-start-overlay-button {
  display: none !important;
}

/* Hide Picture-in-Picture button specifically */
video::-webkit-media-controls-picture-in-picture-button {
  display: none !important;
}

video::-webkit-media-controls-toggle-closed-captions-button {
  display: none !important;
}

/* Firefox */
video::-moz-media-controls {
  display: none !important;
}

/* ── Video block ── */
.nvh-hero__media-wrap {
  /* keeps the video within the same horizontal padding as text */
}

.nvh-hero__media {
  position: relative;
  width: 100%;
  border-radius: var(--nvh-radius-lg);
  overflow: hidden;
  /* Match the screenshot aspect ratio ~16:6.5 */
  aspect-ratio: 16 / 6.5;
  background: var(--nvh-grey-900);
  height: 750px;
}

.nvh-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Badge */
.nvh-hero__badge{
    position:absolute;
    left:1.5rem;
    bottom:1.5rem;
    width:150px;
    height:150px;
    z-index:2;
    animation:nvhBadgeSpin 18s linear infinite;
}

.nvh-badge__svg{
    width:100%;
    height:100%;
    display:block;
}

/* Circular Text */
.nvh-badge__text{
    fill:#111;
    font-size:11px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    font-family:inherit;
}

/* Center Number */
.nvh-badge__number{
    fill:#111;
    font-size:30px;
    font-weight:800;
    text-anchor:middle;
    dominant-baseline:middle;
    font-family:inherit;
}

/* YEARS text */
.nvh-badge__years{
    fill:#111;
    font-size:12px;
    font-weight:700;
    letter-spacing:6px;
    text-anchor:middle;
    dominant-baseline:middle;
    font-family:inherit;
}

/* Rotation */
@keyframes nvhBadgeSpin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* ══════════════════════════════════════════════════
   6. RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════ */

/* ── Large screens (≥1400px) ── */
@media (min-width: 1400px) {
  .nvh-hero__heading {
    font-size: 3.5rem;
  }
  .nvh-hero__media {
    aspect-ratio: 16 / 6;
  }
  .menu-item-type-custom a {
    font-size: 24px;
}
}

/* ── Tablets (≤1024px) ── */
@media (max-width: 1024px) {
/*   .nvh-nav__links { gap: 0; } */
  .nvh-nav__link { padding: 0.5rem 0.625rem; font-size: var(--nvh-fs-sm); }
  .nvh-nav__cta  { padding: 0.625rem 1.125rem; font-size: var(--nvh-fs-sm); }
  .nvh-hero__media {
    aspect-ratio: 16 / 7.5;
  }
  .nvh-hero__badge {
    width: 108px;
    height: 108px;
  }
  .container {
  width: 100%;
  max-width: var(--nvh-container);
  margin-inline: auto;
  padding-inline: var(--nvh-space-lg);
}
}

/* ── Tablet portrait / large mobile (≤768px) ── */
@media (max-width: 768px) {
  :root { --nvh-nav-height: var(--nvh-nav-height-mobile); }

  /* Hide desktop links & CTA; show hamburger */
  .nvh-nav__links,
  .nvh-nav__cta  { display: none; }
  .nvh-hamburger  { display: flex; }

  /* Hero: stack text columns */
  .nvh-hero {
    padding-top: calc(var(--nvh-nav-height-mobile) + 1.75rem);
    padding-bottom: var(--nvh-space-xl);
  }
  .nvh-hero__top {
    grid-template-columns: 1fr;
    gap: var(--nvh-space-md);
    margin-bottom: 1.5rem;
  }
  .nvh-hero__media {
    aspect-ratio: 16 / 9;
    border-radius: var(--nvh-radius-md);
  }
  .nvh-hero__badge {
    width: 96px;
    height: 96px;
    bottom: 1rem;
    left: 1rem;
  }
	.nvh-clients {
    background: var(--nvh-white);
    padding: 40px 0px;
}
.nvh-hero__media {
  height: 480px;
}
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
  .container { padding-inline: var(--nvh-space-sm); }

  .nvh-hero__heading {
    font-size: clamp(1.75rem, 7.5vw, 2.25rem);
  }
  .nvh-hero__media {
    aspect-ratio: 4 / 3;
    border-radius: var(--nvh-radius-sm);
  }
  .nvh-hero__badge {
    width: 80px;
    height: 80px;
  }
}

/* ── Extra small (≤360px) ── */
@media (max-width: 360px) {
  .nvh-logo__wordmark { font-size: 1.4rem; }
}






/*** =================================
About Us Section 
==================================*/
/* ══════════════════════════════════════════════════
   ABOUT US SECTION
══════════════════════════════════════════════════ */

.nvh-about {
    background: var(--nvh-grey-100);
    padding: var(--nvh-space-2xl) 0 0;
    overflow: hidden;
    padding-bottom: 5rem !important;
}

.nvh-about__inner {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* ── Heading ── */
.nvh-about__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--nvh-black);
  letter-spacing: -0.025em;
  margin-bottom: 2.25rem;
}

/* ── Body paragraphs ── */
.nvh-about__body {
  font-size: var(--nvh-fs-base);
  font-weight: 400;
  color: var(--nvh-grey-700);
  line-height: 1.8;
  max-width: 100%;
  padding: 0.5rem 0 2rem;
}

/* ── Divider ── */
.nvh-about__divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--nvh-grey-300);
  margin: 0 0 1.5rem;
}

/* ── Ambition block ── */
.nvh-about__ambition {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
}

.nvh-about__ambition-intro {
  font-size: var(--nvh-fs-base);
  color: var(--nvh-grey-700);
  line-height: 1.7;
}


.nvh-about__ambition-list {
    margin: 0;
    padding-left: 1.25rem;
    column-gap: 2rem;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 2rem;
}

.nvh-about__ambition-list li {
    margin: 0;
}

@media (max-width: 768px) {
    .nvh-about__ambition-list {
        grid-template-columns: 1fr;
    }
}

.nvh-about__ambition-list li {
    font-size: var(--nvh-fs-base);
    color: var(--nvh-grey-700);
    line-height: 1.7;
    text-align: left;
    list-style: disc;
}

.nvh-about__ambition-closing {
  font-size: var(--nvh-fs-base);
  color: var(--nvh-grey-700);
  line-height: 1.7;
  margin-top: 0.5rem;
}



/* ── Responsive ── */
@media (max-width: 768px) {
  .nvh-about__heading {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  .nvh-about__inner {
    max-width: 100%;
  }
  .nvh-about__ambition-list {
    padding-left: 1rem;
  }

}

@media (max-width: 480px) {
  .nvh-about {
    padding-top: var(--nvh-space-xl);
    padding-bottom: 3rem !important;
  }
  .nvh-about__body {
    font-size: var(--nvh-fs-sm);
  }
  .nvh-about__ambition-list li {
    font-size: var(--nvh-fs-sm);
  }
}




/* ══════════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════════ */

.nvh-services {
  background: var(--nvh-white);
  padding: var(--nvh-space-2xl) 0;
}

/* ── Section header ── */
.nvh-services__header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto var(--nvh-space-xl);
}



.nvh-services__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--nvh-black);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.nvh-services__subheading {
  font-size: var(--nvh-fs-base);
  color: var(--nvh-grey-700);
  line-height: 1.75;
}

/* ── Cards grid ── */
.nvh-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ── Individual card ── */
.nvh-svc-card {
  background: var(--nvh-grey-100);
  border-radius: var(--nvh-radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow var(--nvh-trans-base), transform var(--nvh-trans-base);
  cursor: default;
  border: 1px solid transparent;
}
.nvh-svc-card:hover {
  box-shadow: var(--nvh-shadow-md);
  transform: translateY(-4px);
  border-color: rgba(253,127,32,.15);
}

/* ── Icon wrap ── */
.nvh-svc-card__icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.nvh-svc-card__icon {
  font-size: 1.75rem;
  color: var(--nvh-dark);
}

/* ── Card title ── */
.nvh-svc-card__title {
  font-size: var(--nvh-fs-md);
  font-weight: 700;
  color: var(--nvh-black);
  line-height: 1.3;
  margin-bottom: 0.625rem;
}

/* ── Card excerpt ── */
.nvh-svc-card__excerpt {
  font-size: var(--nvh-fs-base);
  color: var(--nvh-grey-700);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Read More link button ── */
.nvh-svc-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--nvh-font);
  font-size: var(--nvh-fs-sm);
  font-weight: 600;
  color: var(--nvh-primary);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: gap var(--nvh-trans-fast), opacity var(--nvh-trans-fast);
  margin-top: auto;
  width: fit-content;
}
.nvh-svc-card__readmore::after {
  content: '→';
  font-size: 0.9em;
  transition: transform var(--nvh-trans-fast);
}
.nvh-svc-card__readmore:hover {
  opacity: 0.8;
}
.nvh-svc-card__readmore:hover::after {
  transform: translateX(3px);
}
.nvh-svc-card__readmore:focus-visible {
  outline: 2px solid var(--nvh-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════
   SERVICES MODAL / POPUP
══════════════════════════════════════════════════ */

.nvh-svc-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--nvh-trans-base);
}
.nvh-svc-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Backdrop */
.nvh-svc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

/* Box */
.nvh-svc-modal__box {
  position: relative;
  z-index: 1;
  background: var(--nvh-white);
  border-radius: var(--nvh-radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--nvh-shadow-lg);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s var(--nvh-ease-out);
  scrollbar-width: thin;
  scrollbar-color: var(--nvh-grey-300) transparent;
}
.nvh-svc-modal.is-open .nvh-svc-modal__box {
  transform: translateY(0) scale(1);
}
.nvh-svc-modal__box::-webkit-scrollbar { width: 5px; }
.nvh-svc-modal__box::-webkit-scrollbar-track { background: transparent; }
.nvh-svc-modal__box::-webkit-scrollbar-thumb { background: var(--nvh-grey-300); border-radius: 4px; }

/* Modal header */
.nvh-svc-modal__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--nvh-grey-100);
  position: sticky;
  top: 0;
  background: var(--nvh-white);
  z-index: 1;
  border-radius: var(--nvh-radius-lg) var(--nvh-radius-lg) 0 0;
}
.nvh-svc-modal__header-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}
.nvh-svc-modal__header-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--nvh-radius-md);
  background: var(--nvh-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nvh-svc-modal__header-icon-wrap i {
  font-size: 1.25rem;
  color: var(--nvh-primary);
}
.nvh-svc-modal__tag {
  display: block;
  font-size: var(--nvh-fs-xs);
  font-weight: 600;
  color: var(--nvh-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.nvh-svc-modal__title {
  font-size: var(--nvh-fs-xl);
  font-weight: 800;
  color: var(--nvh-black);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Close button */
.nvh-svc-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--nvh-grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--nvh-grey-700);
  transition: background var(--nvh-trans-fast), color var(--nvh-trans-fast);
  margin-left: auto;
}
.nvh-svc-modal__close:hover {
  background: var(--nvh-dark);
  color: var(--nvh-white);
}
.nvh-svc-modal__close:focus-visible {
  outline: 2px solid var(--nvh-primary);
  outline-offset: 2px;
}

/* Modal body */
.nvh-svc-modal__body {
  padding: 1.75rem;
}

/* ── Body content styles (injected via JS) ── */

/* intro paragraph */
.nvh-svc-modal__intro {
  font-size: var(--nvh-fs-base);
  color: var(--nvh-grey-700);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

/* list block */
.nvh-svc-modal__list-block {
  margin-bottom: 1.75rem;
}
.nvh-svc-modal__list-title {
  font-size: var(--nvh-fs-base);
  font-weight: 700;
  color: var(--nvh-black);
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nvh-svc-modal__list-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--nvh-primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.nvh-svc-modal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.nvh-svc-modal__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: var(--nvh-fs-sm);
  color: var(--nvh-grey-700);
  line-height: 1.65;
}
.nvh-svc-modal__list li i {
  color: var(--nvh-primary);
  font-size: 0.7rem;
  margin-top: 0.35em;
  flex-shrink: 0;
}
.nvh-svc-modal__list li span {
  flex: 1;
}

/* highlights row */
.nvh-svc-modal__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  background: var(--nvh-grey-100);
  border-radius: var(--nvh-radius-md);
  padding: 1.25rem 1rem;
  margin-bottom: 1.75rem;
}
.nvh-svc-modal__hl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}
.nvh-svc-modal__hl-num {
  font-size: var(--nvh-fs-lg);
  font-weight: 800;
  color: var(--nvh-primary);
  line-height: 1;
}
.nvh-svc-modal__hl-label {
  font-size: var(--nvh-fs-xs);
  color: var(--nvh-grey-500);
  font-weight: 500;
  line-height: 1.3;
}

/* footer CTA inside modal */
.nvh-svc-modal__footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.5rem;
  border-top: 1px solid var(--nvh-grey-100);
}
.nvh-svc-modal__cta {
  font-size: var(--nvh-fs-sm);
  padding: 0.75rem 1.5rem;
  border-radius: var(--nvh-radius-md);
}

.nvh-svc-modal__overview {
  font-size: var(--nvh-fs-base);
  color: var(--nvh-grey-700);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.nvh-svc-modal__section-title {
  font-size: var(--nvh-fs-base);
  font-weight: 700;
  color: var(--nvh-black);
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nvh-svc-modal__section-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--nvh-primary);
  border-radius: 2px;
}

.nvh-svc-modal__feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}
.nvh-svc-modal__feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--nvh-fs-sm);
  color: var(--nvh-grey-700);
  line-height: 1.65;
}
.nvh-svc-modal__feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nvh-primary);
  flex-shrink: 0;
  margin-top: 0.45em;
}

.nvh-svc-modal__highlight-box {
  background: var(--nvh-primary-light);
  border-left: 3px solid var(--nvh-primary);
  border-radius: 0 var(--nvh-radius-md) var(--nvh-radius-md) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}
.nvh-svc-modal__highlight-box p {
  font-size: var(--nvh-fs-sm);
  color: var(--nvh-dark);
  line-height: 1.7;
  font-weight: 500;
}

.nvh-svc-modal__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.nvh-svc-modal__stat {
  background: var(--nvh-grey-100);
  border-radius: var(--nvh-radius-md);
  padding: 1rem;
  text-align: center;
}
.nvh-svc-modal__stat-value {
  font-size: var(--nvh-fs-xl);
  font-weight: 800;
  color: var(--nvh-primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.nvh-svc-modal__stat-label {
  font-size: var(--nvh-fs-xs);
  color: var(--nvh-grey-500);
  font-weight: 500;
}

/* ── Services section responsive ── */
@media (max-width: 1024px) {
  .nvh-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nvh-services__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .nvh-svc-card {
    padding: 1.5rem;
  }
  .nvh-svc-modal__box {
    max-height: 95vh;
    border-radius: var(--nvh-radius-md);
  }
  .nvh-svc-modal__header {
    padding: 1.25rem;
  }
.nvh-svc-modal__body {
    padding: .5em 1.75rem 1.75rem 1.75rem;
}
  .nvh-svc-modal__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }
  .nvh-svc-modal__title {
    font-size: var(--nvh-fs-lg);
  }
}

@media (max-width: 420px) {
  .nvh-svc-modal {
    padding: 0.5rem;
    align-items: flex-end;
  }
  .nvh-svc-modal__box {
    max-height: 92vh;
    border-radius: var(--nvh-radius-lg) var(--nvh-radius-lg) 0 0;
  }
  .nvh-svc-modal__stats {
    grid-template-columns: 1fr 1fr;
  }
}



/* ══════════════════════════════════════════════════
   CLIENTS SECTION
══════════════════════════════════════════════════ */
.nvh-clients {
    background: var(--nvh-white);
    padding: 50px 0px 80px 0px;
}

/* ── Header ── */
.nvh-clients__header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 3.5rem;
}

.nvh-clients__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--nvh-black);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.nvh-clients__desc {
  font-size: var(--nvh-fs-base);
  color: var(--nvh-grey-700);
  line-height: 1.8;
  max-width: 100%;
  margin: 0 auto;
}

/* ── Ticker wrapper ── */
.nvh-clients__ticker-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0rem 0 1rem 0px;
}

/* Soft fade edges */
.nvh-clients__fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 5;
  pointer-events: none;
}
.nvh-clients__fade--l {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}
.nvh-clients__fade--r {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}

/* ── Moving ticker ── */
.nvh-clients__ticker {
  display: flex;
  align-items: center;
  width: max-content;           /* natural width of all items */
  animation: nvh-ticker 100s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.nvh-clients__ticker-wrap:hover .nvh-clients__ticker {
  animation-play-state: paused;
}

/* Keyframe: slide exactly -50% (= one full set of logos) */
@keyframes nvh-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Individual item ── */
.nvh-clients__item {
  flex-shrink: 0;
  padding: 0rem;
}

/* ── Logo wrapper ── */
.nvh-clients__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 160px;
}

.nvh-clients__logo-wrap img {
  max-height: 90px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  /* greyscale by default, colour on hover */
  /*filter: grayscale(100%) opacity(0.5);*/
  transition: filter 0.4s ease, transform 0.35s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.nvh-clients__item:hover .nvh-clients__logo-wrap img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nvh-clients__item { padding: 0 2rem; }
  .nvh-clients__logo-wrap { height: 80px; width: 130px; }
  .nvh-clients__logo-wrap img { max-height: 70px; max-width: 120px; }
  .nvh-clients__fade { width: 100px; }
}
@media (max-width: 768px) {
  .nvh-clients__item { padding: 0 1.5rem; }
  .nvh-clients__logo-wrap { height: 68px; width: 110px; }
  .nvh-clients__logo-wrap img { max-height: 58px; max-width: 100px; }
  .nvh-clients__fade { width: 70px; }
}
@media (max-width: 480px) {
  .nvh-clients__item { padding: 0 1rem; }
  .nvh-clients__logo-wrap { height: 56px; width: 90px; }
.nvh-clients__logo-wrap img {
    max-height: 200px;
    max-width: 80px;
    object-fit: cover;
}
	.nvh-contact__desc {
    margin-bottom: 0rem;
}
  .nvh-clients__fade { width: 40px; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .nvh-clients__ticker { animation: none; }
}



/* ══════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════ */

.nvh-contact {
  background: var(--nvh-grey-100);
  padding: var(--nvh-space-2xl) 0;
}

/* ── Two-column layout ── */
.nvh-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: var(--nvh-space-2xl);
/*   align-items: center; */
}
#main-form-wrapper textarea {
    height: 100px !important;
    padding: 12px;
}

#main-form-wrapper .iv-form-submit:hover {
    background-color: #b74f00 !important;
}
/* ══ LEFT COLUMN ══ */


/* Heading */
.nvh-contact__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--nvh-black);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

/* Description */
.nvh-contact__desc {
  font-size: var(--nvh-fs-base);
  color: var(--nvh-grey-700);
  line-height: 1.75;
  max-width: 100%;
  margin-bottom: 2.5rem;
}

/* reCAPTCHA area */
.nvh-contact__captcha-label {
  font-size: var(--nvh-fs-sm);
  color: var(--nvh-grey-700);
  margin-bottom: 0.6rem;
}

.nvh-contact__captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nvh-white);
  border: 1px solid var(--nvh-grey-300);
  border-radius: var(--nvh-radius-md);
  padding: 0.875rem 1rem;
  width: 240px;
  gap: 1rem;
}

.nvh-contact__captcha-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.nvh-contact__captcha-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--nvh-grey-500);
  border-radius: 3px;
  cursor: pointer;
  accent-color: var(--nvh-primary);
  flex-shrink: 0;
}

.nvh-contact__captcha-checkbox label {
  font-size: var(--nvh-fs-sm);
  color: var(--nvh-dark);
  cursor: pointer;
  white-space: nowrap;
  font-weight: 400;
}

.nvh-contact__captcha-logo {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.nvh-contact__captcha-logo svg {
  width: 100%;
  height: 100%;
}

/* ══ RIGHT COLUMN — Card ══ */

.nvh-contact__card {
  background: var(--nvh-white);
  border-radius: var(--nvh-radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--nvh-shadow-sm);
}

/* ── Form layout ── */
.nvh-contact__form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Two-column row (Name + Email) */
.nvh-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Field wrapper */
.nvh-contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Label */
.nvh-contact__field-label {
  font-size: var(--nvh-fs-sm);
  font-weight: 500;
  color: var(--nvh-dark);
}

/* Input */
.nvh-contact__input {
  width: 100%;
  height: 44px;
  padding: 0 0.875rem;
  border: 1.5px solid var(--nvh-grey-300);
  border-radius: var(--nvh-radius-md);
  font-family: var(--nvh-font);
  font-size: var(--nvh-fs-base);
  color: var(--nvh-dark);
  background: var(--nvh-white);
  transition: border-color var(--nvh-trans-fast), box-shadow var(--nvh-trans-fast);
  outline: none;
}
.nvh-contact__input:focus {
  border-color: var(--nvh-primary);
  box-shadow: 0 0 0 3px rgba(253,127,32,0.12);
}
.nvh-contact__input::placeholder { color: transparent; }

/* Textarea */
.nvh-contact__textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1.5px solid var(--nvh-grey-300);
  border-radius: var(--nvh-radius-md);
  font-family: var(--nvh-font);
  font-size: var(--nvh-fs-base);
  color: var(--nvh-dark);
  background: var(--nvh-white);
  resize: vertical;
  min-height: 140px;
  transition: border-color var(--nvh-trans-fast), box-shadow var(--nvh-trans-fast);
  outline: none;
  line-height: 1.6;
}
.nvh-contact__textarea:focus {
  border-color: var(--nvh-primary);
  box-shadow: 0 0 0 3px rgba(253,127,32,0.12);
}
.nvh-contact__textarea::placeholder { color: transparent; }

/* Submit button */
.nvh-contact__submit {
  width: 100%;
  height: 50px;
  font-size: var(--nvh-fs-base);
  font-weight: 600;
  border-radius: var(--nvh-radius-md);
  letter-spacing: 0.01em;
  margin-top: 0.25rem;
  cursor: pointer;
  border: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nvh-contact__inner {
    grid-template-columns: 1fr;
    gap: var(--nvh-space-xl);
  }
  .nvh-contact__desc {
    max-width: 100%;
    margin-bottom: 0px;
}
  .nvh-contact__card { padding: 1.75rem 1.5rem; }
}

@media (max-width: 560px) {
  .nvh-contact__row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .nvh-contact__captcha-box { width: 100%; max-width: 280px; }
  .nvh-contact__card { padding: 1.5rem 1.125rem; }
  .nvh-contact__heading { font-size: 1.75rem; }
}

@media (max-width: 380px) {
  .nvh-contact__captcha-box { width: 100%; }
}

/* ── WordPress CF7 compatibility overrides ──
   When CF7 renders, its fields will inherit these styles.
   Add wpcf7-form class targeting below if needed.
──────────────────────────────────────────── */
.wpcf7-form .nvh-contact__form-wrap,
.wpcf7 .nvh-contact__form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 0 0.875rem;
  border: 1.5px solid var(--nvh-grey-300);
  border-radius: var(--nvh-radius-md);
  font-family: var(--nvh-font);
  font-size: var(--nvh-fs-base);
  color: var(--nvh-dark);
  background: var(--nvh-white);
  outline: none;
  transition: border-color var(--nvh-trans-fast), box-shadow var(--nvh-trans-fast);
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
  border-color: var(--nvh-primary);
  box-shadow: 0 0 0 3px rgba(253,127,32,0.12);
}
.wpcf7-form input[type="submit"] {
  width: 100%;
  height: 50px;
  background: var(--nvh-primary);
  color: var(--nvh-white);
  font-family: var(--nvh-font);
  font-size: var(--nvh-fs-base);
  font-weight: 600;
  border: none;
  border-radius: var(--nvh-radius-md);
  cursor: pointer;
  transition: background var(--nvh-trans-base);
}
.wpcf7-form input[type="submit"]:hover {
  background: var(--nvh-primary-dark);
}



/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */

.nvh-footer__address-col {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.nvh-footer {
    background: #ffffff;
    color: var(--nvh-grey-700);
    font-family: var(--nvh-font);
}

/* ── Top bar: logo + socials ── */
.nvh-footer__top {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 2.75rem 0 .5rem;
    width: 90%;
    margin: 0 auto;
}
.nvh-footer__top-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    text-align: center;
}

/* Logo */
.nvh-footer__brand { max-width: 100%; }
.nvh-footer__logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}
.nvh-footer__logo-word {
  font-size: 2rem;
  font-weight: 600;
  color: var(--nvh-primary);
  font-style: italic;
  letter-spacing: -0.5px;
  line-height: 1;
}
.nvh-footer__logo-tag {
  font-size: 0.62rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}
.nvh-footer__brand-desc {
  font-size: var(--nvh-fs-base);
  color: var(--nvh-grey-700);
  line-height: 1.75;
}


/* ── Info panels ── */
.nvh-footer__panels {
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nvh-footer__panels-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
}

/* Panel card */
.nvh-footer__panel {
    background: var(--nvh-grey-100);
    border: 1px solid rgb(255 255 255 / 43%);
    border-radius: var(--nvh-radius-md);
    overflow: hidden;
}
.nvh-footer__panel-title {
    font-size: var(--nvh-fs-sm);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nvh-primary);
    background: #dddddd;
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid rgba(253,127,32,0.15);
    text-align: center;
}
.nvh-footer__panel-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    background: var(--nvh-grey-100);
}

/* Address two-column layout */
.nvh-footer__addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Info row: icon + content */
.nvh-footer__info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.nvh-footer__icon {
  color: var(--nvh-primary);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.nvh-footer__info-row p,
.nvh-footer__info-row div {
  font-size: var(--nvh-fs-sm);
  color: var(--nvh-grey-700);
  line-height: 1.7;
}

/* Emails row */
.nvh-footer__emails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Links */
.nvh-footer__link {
  font-size: var(--nvh-fs-sm);
  color: var(--nvh-primary);
  transition: color var(--nvh-trans-fast);
}
.nvh-footer__link:hover { color: var(--nvh-primary); }

/* Jobs list */
.nvh-footer__jobs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  counter-reset: nvh-jobs;
  padding: 0;
}
.nvh-footer__jobs-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: var(--nvh-fs-sm);
  color: var(--nvh-grey-700);
  line-height: 1.55;
  counter-increment: nvh-jobs;
}
.nvh-footer__jobs-list li::before {
  content: counter(nvh-jobs) ")";
  color: var(--nvh-primary);
  font-weight: 600;
  flex-shrink: 0;
  min-width: 1.6rem;
}
.nvh-footer__jobs-note {
  font-size: var(--nvh-fs-sm);
  color: var(--nvh-grey-700);
  line-height: 1.7;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Bottom copyright bar ── */
.nvh-footer__bottom {
    padding: 1.25rem 0;
    background: #fd7f20;
}
.nvh-footer__copy {
    font-size: var(--nvh-fs-sm);
    color: #fff;
    text-align: center;
    line-height: normal;
}

/* ── Footer responsive ── */
@media (max-width: 900px) {
  .nvh-footer__panels-grid {
    grid-template-columns: 1fr;
  }
  .nvh-footer__top-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .nvh-footer__socials { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .nvh-footer__addresses { grid-template-columns: 1fr; }
  .nvh-footer__emails    { grid-template-columns: 1fr; }
  .nvh-footer__panel-body { padding: 1.25rem 1rem; }
  .nvh-footer__logo-word { font-size: 1.6rem; }
  .nvh-footer__brand { max-width: 100%; }
}
@media (max-width: 480px) {
  .nvh-footer__social-link { width: 38px; height: 38px; font-size: 0.8rem; }
  .nvh-footer__top { padding: 2rem 0 1.75rem; }
  .nvh-footer__address-col {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
}
