/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-on-light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors */
  --dark-navy: #0d1b2a;
  --dark-charcoal: #1b2838;
  --primary-blue: #2a6db5;
  --blue-hover: #1e5a9a;
  --silver-light: #e8ecf1;
  --light-gray: #f4f6f8;
  --white: #ffffff;
  --text-on-dark: #e0e6ed;
  --text-on-light: #1a1a2e;
  --accent-silver: #9eafc0;
  --accent-coral: #ff4d4d;
  --coral-hover: #e63e3e;
  --dark-gradient-end: #223044;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-padding: 80px;
  --section-padding-mobile: 48px;
  --container-max: 1200px;

  /* Shapes */
  --radius-card: 8px;
  --radius-btn: 4px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--section-padding) 0;
}

/* ===== SHARED PARALLAX (LIGHT SECTIONS) ===== */
.parallax-light {
  position: relative;
  overflow: hidden;
}

.parallax-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/houston-skyline-2.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  z-index: 0;
}

.parallax-light::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.parallax-light>.container,
.parallax-light>[class*="__container"],
.parallax-light>[class*="__grid"] {
  position: relative;
  z-index: 1;
}

/* Each segment shows a progressive vertical slice of the skyline */
.parallax--seg1::before {
  background-position: center 0%;
}

.parallax--seg2::before {
  background-position: center 50%;
}

.parallax--seg3::before {
  background-position: center 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--blue-hover);
  transform: translateY(-1px);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-blue);
}

.btn-white:hover {
  background-color: var(--silver-light);
  transform: translateY(-1px);
}

.btn-accent {
  background-color: var(--accent-coral);
  color: var(--white);
}

.btn-accent:hover {
  background-color: var(--coral-hover);
  transform: translateY(-1px);
}

/* ===== HEADINGS ===== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 {
  font-size: 56px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(13, 27, 42, 0.9);
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease;
}

.header.scrolled {
  background-color: var(--dark-navy);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
}

.header__logo-img {
  display: none;
}

/* ===== BRAND LOCKUP (Header B) ===== */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-lockup__icon {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
  transition: transform .25s ease;
}

.header__logo:hover .brand-lockup__icon {
  transform: translateY(-1px);
}

.brand-lockup__divider {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.22);
}

.brand-lockup__type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-lockup__type strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.brand-lockup__type span {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  color: var(--accent-silver);
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-on-dark);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary-blue);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.3s ease, opacity 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);
}

/* ===== WHITE DESIGN: HERO ===== */
.hero-white {
  position: relative;
  min-height: 98vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.hero-white__bg {
  position: absolute;
  inset: 0;
  background: url('../images/skyline-houston.jpg') center/cover no-repeat;
  background-attachment: scroll;
}

.hero-white__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(13, 27, 42, 0.15) 0%,
      rgba(13, 27, 42, 0.2) 40%,
      rgba(13, 27, 42, 0.35) 100%);
}


.hero-white__container {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ===== HERO COMPOSED (Hero F) ===== */
.hero-mark {
  height: 160px;
  width: auto;
  margin: 0 auto 26px;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.9)) drop-shadow(0 4px 22px rgba(0, 0, 0, 0.55)) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
  animation: heroRise 1s cubic-bezier(.2, .7, .2, 1) both;
}

.hero-wordmark {
  font-family: var(--font-heading);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 42px;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
  animation: heroRise 1s cubic-bezier(.2, .7, .2, 1) .15s both;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.42em;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 28px;
  animation: heroRise 1s cubic-bezier(.2, .7, .2, 1) .25s both;
}

.hero-rule {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--accent-coral);
  margin: 0 auto 32px;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 77, 77, 0.55);
  animation: heroRule 1s cubic-bezier(.2, .7, .2, 1) .35s both;
}

.hero-white h1.hero-subheading {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
  animation: heroRise 1s cubic-bezier(.2, .7, .2, 1) .45s both;
}

.hero-white .hero-white__sub {
  max-width: 560px;
  animation: heroRise 1s cubic-bezier(.2, .7, .2, 1) .55s both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRule {
  from {
    opacity: 0;
    transform: scaleX(0.4);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-white__logo {
  height: 90px;
  width: auto;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 8px;
  padding: 12px 20px;
  object-fit: contain;
}

.hero-white h1 {
  color: var(--white);
  font-size: 52px;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.15;
}

.hero-white__sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 32px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.6;
}




.hero-white__btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--dark-navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-btn);
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero-white__btn:hover {
  background: var(--dark-charcoal);
  transform: translateY(-1px);
}

/* ===== WHITE DESIGN: FAST DEPENDABLE PROVEN (DARK) ===== */
.fdp {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.fdp__bg {
  position: absolute;
  inset: 0;
  background: url('../images/houston-skyline.jpg') center/cover no-repeat;
  background-attachment: scroll;
}

.fdp__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.95);
  /* Thora dark overlay for better readability */
}

.fdp__container {
  position: relative;
  z-index: 1;
}

.fdp__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.fdp__text h2 {
  color: var(--white) !important;
  font-size: 42px;
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 800;
}

.fdp__text p {
  color: var(--accent-silver) !important;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 90%;
}

/* Right Side: Company Info Wrapper */
.fdp__company-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Individual Company Card */
.company-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.4s ease;
}

.company-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--primary-blue);
  transform: translateY(-5px);
}

.company-card__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.fdp__icon {
  width: 32px;
  height: 32px;
  color: var(--primary-blue);
  stroke-width: 2;
}

.company-card h4 {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.company-card p {
  color: var(--accent-silver);
  font-size: 15px;
  line-height: 1.6;
}

.company-card p strong {
  color: var(--white);
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Link inside Card */
.company-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: gap 0.3s ease;
}

.company-link:hover {
  gap: 8px;
  color: var(--accent-silver);
}


.page-hero__quick-info a:hover {
  color: #2a6db5;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .fdp__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fdp__text h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .company-card {
    padding: 20px;
  }

  .company-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Landing Page Link Style */
.company-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-link:hover {
  text-decoration: underline;
}

/* Responsive Fix */
@media (max-width: 992px) {
  .fdp__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== WHITE DESIGN: MOVE FREIGHT CTA (DARK) ===== */
.move-freight {
  background: var(--dark-navy);
  padding: 64px 0 72px;
  text-align: center;
}

.move-freight h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 10px;
}

.move-freight__sub {
  color: var(--accent-silver);
  font-size: 16px;
  margin-bottom: 28px;
}

.move-freight__btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--primary-blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-btn);
  transition: background 0.3s ease, transform 0.2s ease;
}

.move-freight__btn:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}

.move-freight__info {
  margin-top: 20px;
  color: var(--accent-silver);
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.move-freight__info span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.move-freight__info span a:hover {
    color: #2a6db5;
}
.move-freight__icon {
  width: 16px;
  height: 16px;
  color: var(--accent-silver);
}

/* ===== WHITE DESIGN: DARK FOOTER ===== */
.footer-dark {
  background: linear-gradient(180deg, #0a1628 0%, #060e1a 100%);
  padding: 56px 0 24px;
  color: var(--accent-silver);
  font-size: 14px;
}

.footer-dark__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-dark__logo {
  margin-bottom: 16px;
}

.footer-dark__logo-img {
  height: 96px;
  width: auto;
  max-width: 280px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.7)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.55));
}

.footer-dark__brand p {
  color: var(--accent-silver);
  line-height: 1.7;
}

.footer-dark__col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-dark__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-dark__col a {
  color: var(--accent-silver);
  transition: color 0.3s ease;
}

.footer-dark__col a:hover {
  color: var(--primary-blue);
}

.footer-dark__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

/* ===== DARK PAGE HERO (inner pages) ===== */
.page-hero-dark {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.page-hero-dark__bg {
  position: absolute;
  inset: 0;
  background: url('../images/skyline-houston.jpg') center/cover no-repeat;
  background-attachment: scroll;
}

.page-hero-dark__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(13, 27, 42, 0.15) 0%,
      rgba(13, 27, 42, 0.2) 40%,
      rgba(13, 27, 42, 0.35) 100%);
}

.page-hero-dark__container {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 40px;
}

.page-hero-dark h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 12px;
}

.page-hero-dark__sub {
  color: var(--accent-silver);
  font-size: 17px;
}

/* ===== DARK SERVICES PAGE ===== */
.services-dark {
  background: var(--dark-charcoal);
  padding: 80px 0;
}

.services-dark__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-dark-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  transition: transform 0.2s ease, border-color 0.3s ease, background 0.3s ease;
}

.svc-dark-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.07);
}

.svc-dark-card__icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.svc-dark-card__icon {
  width: 24px;
  height: 24px;
  color: var(--primary-blue);
  stroke-width: 1.8;
}

.svc-dark-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
}

.svc-dark-card p {
  color: var(--accent-silver);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== DARK ABOUT PAGE ===== */
.about-dark {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.about-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/houston-skyline.jpg') center/cover no-repeat;
  background-attachment: scroll;
}

.about-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 40, 56, 0.92);
}

.about-dark .container {
  position: relative;
  z-index: 1;
}

.about-dark__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-dark__content {
  text-align: left;
}

.about-dark__content p {
  color: var(--accent-silver);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-dark__team-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.about-dark__team-placeholder-icon {
  width: 64px;
  height: 64px;
  color: var(--accent-silver);
  margin-bottom: 12px;
}

.about-dark__team-img p {
  color: var(--accent-silver);
  font-size: 15px;
}

/* Values section */
.values-dark {
  background: var(--dark-navy);
  padding: 80px 0;
}

.values-dark h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

.values-dark__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.values-dark__item {
  text-align: center;
}

.values-dark__item .fdp__icon-circle {
  margin: 0 auto 14px;
}

.values-dark__item h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 18px;
}

.values-dark__item p {
  color: var(--accent-silver);
  font-size: 14px;
  line-height: 1.7;
}

.values-dark__cta {
  text-align: center;
  margin-top: 48px;
}

/* Leadership */
.leadership-dark {
  background: var(--dark-charcoal);
  padding: 80px 0;
}

.leadership-dark h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}

.leadership-dark__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.leader-dark-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 40px 24px;
  text-align: center;
}

.leader-dark-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-dark-card__placeholder {
  width: 40px;
  height: 40px;
  color: var(--accent-silver);
}

.leader-dark-card h3 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 20px;
}

.leader-dark-card p {
  color: var(--accent-silver);
  font-size: 15px;
}

/* ===== DARK CONTACT PAGE ===== */
.contact-dark {
  background: var(--dark-charcoal);
  padding: 80px 0;
}

.contact-dark__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-dark__form-wrap h2,
.contact-dark__info h2 {
  color: var(--white);
  margin-bottom: 32px;
}

.form-dark-group {
  margin-bottom: 20px;
}

.form-dark-group--full {
  grid-column: 1 / -1;
}

.form-dark-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-silver);
  margin-bottom: 6px;
}

.form-dark-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: border-color 0.3s ease;
}

.form-dark-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-dark-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(42, 109, 181, 0.2);
}

textarea.form-dark-input {
  resize: vertical;
  min-height: 120px;
}

.contact-dark__info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-dark__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-dark__info-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-dark__info-item h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 2px;
}

.contact-dark__info-item p {
  color: var(--accent-silver);
  font-size: 15px;
}

.contact-dark__info-item a {
  color: var(--accent-silver);
  transition: color 0.3s ease;
}

.contact-dark__info-item a:hover {
  color: var(--primary-blue);
}

/* ===== WHITE DESIGN: RESPONSIVE ===== */
@media (max-width: 1024px) {
  .fdp__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-dark__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .services-dark__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-dark__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-dark__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-dark__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .header .container {
    height: 76px;
  }

  .brand-lockup__icon {
    height: 44px;
  }

  .brand-lockup__divider {
    height: 36px;
  }

  .brand-lockup__type strong {
    font-size: 14px;
  }

  .brand-lockup__type span {
    font-size: 9px;
    letter-spacing: 0.24em;
  }

  .hero-mark {
    height: 110px;
  }

  .hero-wordmark {
    font-size: 28px;
    letter-spacing: 0.04em;
  }

  .hero-tagline {
    font-size: 11px;
    letter-spacing: 0.32em;
  }

  .hero-white h1.hero-subheading {
    font-size: 22px;
  }

  .footer-dark__logo-img {
    height: 72px;
    max-width: 220px;
  }

  .hero-white h1 {
    font-size: 32px;
  }

  .hero-white__sub {
    font-size: 14px;
  }

  .fdp__text h2 {
    font-size: 28px;
  }

  .fdp__cards {
    grid-template-columns: 1fr;
  }

  .move-freight h2 {
    font-size: 26px;
  }

  .move-freight__info {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-dark__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-dark__grid,
  .values-dark__grid,
  .leadership-dark__grid {
    grid-template-columns: 1fr;
  }

  .page-hero-dark h1 {
    font-size: 32px;
  }

}

@media (max-width: 460px) {
  .brand-lockup__divider {
    display: none;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-lockup__type strong {
    font-size: 12px;
  }

  .brand-lockup__type span {
    display: none;
  }
}

/* ===== FOOTER (LEGACY) ===== */
.footer {
  background-color: var(--dark-navy);
  padding: 48px 0 24px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 32px;
}

.footer__logo {
  margin-bottom: 12px;
}

.footer__logo-img {
  height: 70px;
  width: auto;
  border-radius: 4px;
}

.footer__tagline {
  color: var(--accent-silver);
  font-size: 14px;
  max-width: 280px;
}

.footer__nav-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-link {
  color: var(--accent-silver);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer__nav-link:hover {
  color: var(--primary-blue);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: var(--accent-silver);
  transition: color 0.3s ease;
}

.footer__social a:hover {
  color: var(--primary-blue);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: var(--accent-silver);
  font-size: 13px;
}

/* ===== HOME: HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Dual background: skyline left, truck right */
.hero__bg-skyline {
  position: absolute;
  inset: 0;
  background: url('../images/houston-skyline.jpg') center/cover no-repeat;
}

.hero__bg-truck {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: url('../images/hero-highway.jpg') center/cover no-repeat;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Diagonal overlay: solid dark left → transparent right */
.hero__diagonal {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(13, 27, 42, 0.97) 0%,
      rgba(13, 27, 42, 0.95) 38%,
      rgba(13, 27, 42, 0.6) 55%,
      rgba(13, 27, 42, 0.3) 75%,
      rgba(13, 27, 42, 0.15) 100%);
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.hero__text {
  max-width: 580px;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-coral);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 77, 77, 0.3);
  border-radius: 20px;
  background: rgba(255, 77, 77, 0.08);
}

.hero__text h1 {
  color: var(--white);
  font-size: 62px;
  margin-bottom: 16px;
  line-height: 1.08;
}

.hero__accent {
  width: 80px;
  height: 4px;
  background: var(--accent-coral);
  margin-bottom: 24px;
  border-radius: 2px;
}

.hero__sub {
  color: var(--accent-silver);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__center-logo {
  height: 100px;
  width: auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 12px 20px;
  object-fit: contain;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* Stats bar at bottom of hero */
.hero__stats-bar {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat strong {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-coral);
  line-height: 1;
}

.hero__stat span {
  font-size: 13px;
  color: var(--accent-silver);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* ===== HOME: RESULTS (LIGHT SECTION) ===== */
.results {
  padding: var(--section-padding) 0;
}

.results::after {
  background: rgba(255, 255, 255, 0.85);
}

.results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Left column: stacked stats */
.results__stats {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.results__stat {}

.results__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--accent-coral);
  line-height: 1;
  margin-bottom: 8px;
}

.results__stat h4 {
  color: var(--text-on-light);
  font-size: 18px;
  margin-bottom: 12px;
}

.results__stat p {
  color: #5a6a7a;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.results__link {
  color: var(--accent-coral);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.results__link:hover {
  color: var(--coral-hover);
}

/* Center column: editorial photos */
.results__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-self: stretch;
}

.results__photo-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 360px;
}

.results__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results__photo-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

/* Right column: text block */
.results__text {
  padding-top: 8px;
}

.results__text h2 {
  color: var(--text-on-light);
  font-size: 32px;
  margin-bottom: 24px;
  line-height: 1.3;
}

.results__text p {
  color: #5a6a7a;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== HOME: SERVICES SHOWCASE (DARK) ===== */
.svc-showcase {
  position: relative;
  overflow: hidden;
}

/* Background: two side-by-side images visible behind header */
.svc-showcase__bg {
  position: absolute;
  inset: 0;
  display: flex;
}

.svc-showcase__bg img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

/* Header: text over visible background images */
.svc-showcase__header {
  position: relative;
  padding: var(--section-padding) 0 60px;
  text-align: center;
  background: linear-gradient(180deg,
      rgba(13, 27, 42, 0.55) 0%,
      rgba(13, 27, 42, 0.65) 100%);
}

.svc-showcase__title {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.svc-showcase__sub {
  color: var(--text-on-dark);
  font-size: 16px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  line-height: 1.6;
}

/* Cards area: solid dark background */
.svc-showcase__cards {
  position: relative;
  background: var(--dark-navy);
  padding: 48px 0 var(--section-padding);
}

.svc-showcase__cards::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/warehouse-bg.jpg') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.svc-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.svc-card {
  background: #142337;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-card);
  padding: 36px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: background 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
  cursor: pointer;
}

.svc-card:hover {
  background: #1a2d45;
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.svc-card__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(42, 109, 181, 0.35) 0%, rgba(42, 109, 181, 0.12) 100%);
  border: 1px solid rgba(42, 109, 181, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.svc-card:hover .svc-card__icon-wrap {
  background: linear-gradient(135deg, rgba(42, 109, 181, 0.5) 0%, rgba(42, 109, 181, 0.25) 100%);
  border-color: rgba(42, 109, 181, 0.5);
}

.svc-card__icon {
  width: 36px;
  height: 36px;
  color: var(--white);
  stroke-width: 1.5;
}

.svc-card__name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}

.svc-card p {
  color: var(--silver);
  font-size: 14px;
  line-height: 1.75;
  flex: 1;
  text-align: left;
}

.svc-card__arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  margin-top: auto;
}

.svc-card__arrow i {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.svc-card:hover .svc-card__arrow {
  background: var(--blue-hover);
}

/* ===== HOME: TESTIMONIALS (LIGHT SECTION) ===== */
.testimonials {
  padding: var(--section-padding) 0;
}

.testimonials::after {
  background: rgba(244, 246, 248, 0.88);
}

.testimonials__title {
  text-align: center;
  color: var(--text-on-light);
  margin-bottom: 48px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--accent-coral);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card__star {
  width: 18px;
  height: 18px;
  color: var(--accent-coral);
  fill: var(--accent-coral);
}

.testimonial-card__quote {
  color: #5a6a7a;
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__author strong {
  color: var(--text-on-light);
  font-size: 15px;
}

.testimonial-card__author span {
  color: #5a6a7a;
  font-size: 13px;
}

/* ===== HOME: VALUES (DARK) ===== */
.values {
  position: relative;
  background: url('../images/warehouse-bg.jpg') center/cover no-repeat;
  padding: var(--section-padding) 0;
}

.values__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(13, 27, 42, 0.93) 0%,
      rgba(27, 40, 56, 0.9) 100%);
}

.values .container {
  position: relative;
  z-index: 1;
}

.values__heading {
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
  font-size: 40px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.values__item {
  text-align: center;
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-card);
  padding: 32px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, transform 0.2s ease;
}

.values__item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.values__icon {
  width: 48px;
  height: 48px;
  color: var(--accent-coral);
  margin-bottom: 16px;
}

.values__item h4 {
  color: var(--white);
  margin-bottom: 8px;
}

.values__item p {
  font-size: 14px;
  color: var(--accent-silver);
}

.values__text {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-on-dark);
}

.values__text p {
  margin-bottom: 16px;
  font-size: 17px;
}

.values__link {
  color: var(--accent-coral);
  font-weight: 500;
  transition: color 0.3s ease;
}

.values__link:hover {
  color: var(--coral-hover);
}

/* ===== HOME: HOW IT WORKS ===== */
.how-it-works {
  background-color: var(--light-gray);
  padding: var(--section-padding) 0;
}

.how-it-works__title {
  text-align: center;
  color: var(--text-on-light);
  margin-bottom: 8px;
}

.how-it-works__sub {
  text-align: center;
  color: #5a6a7a;
  font-size: 17px;
  margin-bottom: 48px;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.how-it-works__step {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.how-it-works__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.how-it-works__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-coral);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.how-it-works__step h3 {
  color: var(--text-on-light);
  margin-bottom: 12px;
  font-size: 20px;
}

.how-it-works__step p {
  color: #5a6a7a;
  font-size: 15px;
  line-height: 1.7;
}

/* ===== HOME: INDUSTRIES WE SERVE ===== */
.industries {
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.industries::after {
  background: rgba(244, 246, 248, 0.78);
}

.industries__container {
  position: relative;
  z-index: 1;
}

.industries__header {
  text-align: center;
  margin-bottom: 48px;
}

.industries__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-coral);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 77, 77, 0.2);
  border-radius: 20px;
  background: rgba(255, 77, 77, 0.06);
}

.industries__title {
  color: var(--text-on-light);
  margin-bottom: 12px;
  font-size: 40px;
}

.industries__sub {
  color: #5a6a7a;
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto;
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.industries__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.industries__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

.industries__icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(42, 109, 181, 0.12) 0%, rgba(42, 109, 181, 0.05) 100%);
  border: 1px solid rgba(42, 109, 181, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industries__icon {
  width: 26px;
  height: 26px;
  color: var(--primary-blue);
  stroke-width: 1.8;
}

.industries__text h4 {
  color: var(--text-on-light);
  font-size: 17px;
  margin-bottom: 6px;
}

.industries__text p {
  color: #5a6a7a;
  font-size: 14px;
  line-height: 1.6;
}

.industries__grid {
  margin-bottom: 0;
}

/* ===== HOME: FAQ ===== */
.faq {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.faq__bg {
  position: absolute;
  inset: 0;
  background: url('../images/freight-trucks.jpg') center/cover no-repeat;
}

.faq__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(13, 27, 42, 0.96) 0%,
      rgba(13, 27, 42, 0.92) 50%,
      rgba(27, 40, 56, 0.95) 100%);
}

.faq__container {
  position: relative;
  z-index: 1;
}

.faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-coral);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 77, 77, 0.3);
  border-radius: 20px;
  background: rgba(255, 77, 77, 0.08);
}

.faq__title {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 40px;
}

.faq__sub {
  color: var(--accent-silver);
  font-size: 17px;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.faq__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.faq__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.faq__item[open] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(42, 109, 181, 0.4);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s ease;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  display: none;
  content: '';
}

.faq__chevron {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--accent-coral);
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 24px 22px;
  color: var(--accent-silver);
  font-size: 15px;
  line-height: 1.75;
}

/* ===== HOME: CONTACT TEASER ===== */
.contact-teaser {
  position: relative;
  background: var(--silver-light);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.contact-teaser__overlay {
  display: none;
}

.contact-teaser__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-teaser__content {
  text-align: left;
}

.contact-teaser__content h2 {
  color: var(--text-on-light);
  margin-bottom: 16px;
  font-size: 40px;
}

.contact-teaser__content>p {
  color: #5a6a7a;
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-teaser__info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #5a6a7a;
  font-size: 15px;
}

.contact-teaser__info span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-teaser__icon {
  width: 18px;
  height: 18px;
  color: var(--accent-coral);
}

.contact-teaser__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.contact-teaser__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background-color: var(--silver-light);
  padding-top: calc(72px + var(--section-padding));
  padding-bottom: var(--section-padding);
  text-align: center;
}

.page-hero h1 {
  color: var(--text-on-light);
  font-size: 48px;
}

/* ===== SERVICES GRID ===== */
.services {
  background-color: var(--light-gray);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid transparent;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.service-card:hover {
  border-left-color: var(--primary-blue);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--text-on-light);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--accent-silver);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background-color: var(--primary-blue);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 32px;
}

/* ===== ABOUT: MISSION ===== */
.mission {
  background-color: var(--white);
}

.mission__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.mission__content h2 {
  color: var(--text-on-light);
  margin-bottom: 24px;
}

.mission__content p {
  color: var(--text-on-light);
  font-size: 20px;
  line-height: 1.8;
}

/* ===== ABOUT: CORE VALUES ===== */
.about-values {
  background-color: var(--light-gray);
}

.about-values__title {
  text-align: center;
  color: var(--text-on-light);
  margin-bottom: 48px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.about-values__item {
  text-align: center;
}

.about-values__icon {
  width: 48px;
  height: 48px;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.about-values__item h3 {
  color: var(--text-on-light);
  margin-bottom: 12px;
}

.about-values__item p {
  color: var(--accent-silver);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== ABOUT: VALUE PROPOSITION ===== */
.value-prop {
  background-color: var(--white);
}

.value-prop__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.value-prop__text h2 {
  color: var(--text-on-light);
  margin-bottom: 24px;
}

.value-prop__text p {
  color: var(--text-on-light);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.value-prop__text .btn {
  margin-top: 16px;
}

.value-prop__image img {
  border-radius: var(--radius-card);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===== ABOUT: LEADERSHIP ===== */
.leadership {
  background-color: var(--light-gray);
}

.leadership__title {
  text-align: center;
  color: var(--text-on-light);
  margin-bottom: 48px;
}

.leadership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.leader-card {
  background-color: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 40px 24px;
  text-align: center;
}

.leader-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--silver-light);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.leader-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card__placeholder {
  width: 48px;
  height: 48px;
  color: var(--accent-silver);
}

.leader-card h3 {
  color: var(--text-on-light);
  margin-bottom: 4px;
}

.leader-card p {
  color: var(--accent-silver);
  font-size: 15px;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact__form-wrap h2,
.contact__info h2 {
  color: var(--text-on-light);
  margin-bottom: 32px;
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-on-light);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-btn);
  background-color: var(--white);
  color: var(--text-on-light);
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(42, 109, 181, 0.15);
}

.form-input.error {
  border-color: #e74c3c;
}

.form-error {
  display: block;
  color: #e74c3c;
  font-size: 13px;
  margin-top: 4px;
}

.form-success {
  background-color: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: var(--radius-btn);
  margin-top: 16px;
  font-size: 15px;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* ===== CONTACT INFO ===== */
.contact__info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__info-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__info-item h4 {
  color: var(--text-on-light);
  font-size: 16px;
  margin-bottom: 2px;
}

.contact__info-item p {
  color: var(--accent-silver);
  font-size: 15px;
}

/* ===== MAP PLACEHOLDER ===== */
.contact__map-placeholder {
  background-color: var(--light-gray);
  border-radius: var(--radius-card);
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.contact__map-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-silver);
}

.contact__map-placeholder p {
  color: var(--accent-silver);
  font-size: 14px;
}

/* ===== RESPONSIVE: TABLET (768-1024px) ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }

  .hero__bg-truck {
    width: 100%;
    clip-path: none;
    opacity: 0.3;
  }

  .hero__diagonal {
    background: linear-gradient(180deg,
        rgba(13, 27, 42, 0.92) 0%,
        rgba(13, 27, 42, 0.8) 100%);
  }

  .hero__text {
    max-width: 100%;
    text-align: center;
  }

  .hero__text h1 {
    font-size: 48px;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__stats-bar {
    justify-content: center;
  }

  .results__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .results__photos {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .results__photo-wrap {
    min-height: 280px;
  }

  .svc-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .how-it-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq__grid {
    grid-template-columns: 1fr;
  }

  .contact-teaser__container {
    grid-template-columns: 1fr;
  }

  .contact-teaser__content {
    text-align: center;
  }

  .contact-teaser__info {
    align-items: center;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-prop__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .leadership__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ===== RESPONSIVE: MOBILE (<768px) ===== */
@media (max-width: 768px) {
  :root {
    --section-padding: 48px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .hero__text h1 {
    font-size: 34px;
  }

  .hero__sub {
    font-size: 15px;
  }

  .hero__stats-bar {
    gap: 20px;
  }

  .hero__stat strong {
    font-size: 22px;
  }

  .svc-showcase__title {
    font-size: 28px;
  }

  .contact-teaser__content h2 {
    font-size: 30px;
  }

  .contact-teaser__image img {
    height: 280px;
  }

  /* Mobile nav */
  .hamburger {
    display: flex;
  }

  .nav__list {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background-color: var(--dark-navy);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .nav__list.open {
    display: flex;
  }

  /* Results */
  .results__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .results__photos {
    grid-template-columns: 1fr 1fr;
    min-height: 240px;
  }

  .results__photo-wrap {
    min-height: 240px;
  }

  .results__number {
    font-size: 40px;
  }

  /* Grids to single column */
  .svc-showcase__grid,
  .values__grid,
  .services__grid,
  .about-values__grid,
  .leadership__grid,
  .testimonials__grid,
  .how-it-works__grid,
  .industries__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .values__heading {
    font-size: 30px;
  }

  .testimonials__grid .testimonial-card:last-child {
    max-width: 100%;
  }

  .value-prop__grid {
    grid-template-columns: 1fr;
  }

  .value-prop__image {
    order: -1;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  /* Contact teaser */
  .contact-teaser__info {
    flex-direction: column;
    gap: 8px;
  }

  /* Footer */
  .footer__content {
    flex-direction: column;
    gap: 32px;
  }


  .section-header {
    margin-bottom: 36px;
  }




}


/* ── TEAM SECTIONS ── */
.team-section {
  padding: 80px 0;
}

.team-section--a {
  background: var(--charcoal);
}

.team-section--b {
  background: var(--navy);
}

.team-section__header {
  margin-bottom: 48px;
}

.team-section__eyebrow {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-section__eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--coral);
  opacity: 0.5;
}

.team-section__header h2 {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

/* ── TEAM CARD ── */
.team-grid {
  display: grid;
  gap: 28px;
}

.team-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.team-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.team-card {
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color .3s, transform .25s;
}

.team-card:hover {
  border-color: rgba(42, 109, 181, 0.45);
  transform: translateY(-4px);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.team-card__photo-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.team-card__photo-ph i {
  width: 36px;
  height: 36px;
  color: rgba(158, 175, 192, 0.3);
}

.team-card__photo-ph span {
  font-size: 11px;
  color: rgba(158, 175, 192, 0.35);
  letter-spacing: 0.08em;
}

.team-card__info {
  padding: 18px 20px 22px;
}

.team-card__name {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.team-card__title {
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
}

/* ── TEAM RESPONSIVE (grids had no mobile collapse) ── */
@media (max-width: 992px) {
  .team-grid--3,
  .team-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 56px 0;
  }

  .team-section__header {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .team-grid--3,
  .team-grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   GRAVITY FORMS - GLOBAL dark form theme.
   Keyed off .gform_wrapper, so EVERY Gravity Form on the site is styled
   automatically - no per-page scoping, nothing to wire up when a new form is
   added. All form sections on this site are dark navy; this re-skins GF's
   Orbital theme dark: uppercase steel-blue labels, translucent inputs, blue
   submit. Overrides Orbital via its --gf-* vars + !important so order is moot.
   ============================================================================ */

/* Orbital CSS-variable overrides. */
.gform_wrapper.gform-theme {
  --gf-color-primary: #2a6db5;
  --gf-color-primary-rgb: 42, 109, 181;
  --gf-color-primary-contrast: #ffffff;
  --gf-color-primary-darker: #1e5a9a;
  --gf-color-primary-lighter: #3f86d0;
  --gf-color-in-ctrl: rgba(255, 255, 255, 0.04);
  --gf-color-in-ctrl-contrast: #ffffff;
  --gf-color-out-ctrl-light: rgba(255, 255, 255, 0.12);
  --gf-color-out-ctrl-dark: #9eafc0;
}

/* Field spacing - tighten Orbital's large default row gap. */
.gform_wrapper .gform_fields {
  row-gap: 18px !important;
  grid-row-gap: 18px !important;
}
.gform_wrapper .gfield { margin-top: 0 !important; margin-bottom: 0 !important; }

/* Title / description. */
.gform_wrapper .gform_title { color: #fff !important; }
.gform_wrapper .gform_description,
.gform_wrapper .gform_required_legend { color: var(--silver) !important; }

/* Labels - uppercase steel-blue. */
.gform_wrapper .gfield_label {
  display: block !important;
  font-family: var(--font-h) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #6f9fc7 !important;
  margin-bottom: 8px !important;
}
.gform_wrapper .gfield_required,
.gform_wrapper .gfield_required_text { color: rgba(255, 255, 255, 0.4) !important; font-weight: 400 !important; }

/* Inputs / textarea / select - dark translucent. */
.gform_wrapper input[type=text],
.gform_wrapper input[type=email],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=url],
.gform_wrapper input[type=number],
.gform_wrapper textarea,
.gform_wrapper select {
  width: 100% !important;
  padding: 14px 16px !important;
  font-family: var(--font-b) !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder { color: rgba(255, 255, 255, 0.35) !important; }
.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  outline: none !important;
  border-color: var(--blue) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 0 0 3px rgba(42, 109, 181, 0.20) !important;
}
.gform_wrapper textarea { min-height: 150px !important; resize: vertical; }
.gform_wrapper select option { color: #112337; }

/* Select - custom light chevron + vertically centered text. */
.gform_wrapper select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-color: rgba(255, 255, 255, 0.04) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239eafc0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 16px 16px !important;
  padding-right: 44px !important;
  height: auto !important;
  min-height: 0 !important;
}

/* Validation + confirmation. */
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select { border-color: #ff6b6b !important; }
.gform_wrapper .gfield_validation_message,
.gform_wrapper .validation_message {
  color: #ff6b6b !important; background: transparent !important; border: 0 !important;
  margin: 6px 0 0 !important;
  padding: 0 !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
}
.gform_wrapper .gform_validation_errors {
  background: rgba(255, 107, 107, 0.1) !important;
  border: 1px solid rgba(255, 107, 107, 0.4) !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  display: none !important;
}
.gform_wrapper .gform_validation_errors h2 { color: #ff6b6b !important; }
.gform_confirmation_message {
  background: rgba(42, 109, 181, 0.12); border: 1px solid rgba(42, 109, 181, 0.4);
  color: #fff; padding: 16px; border-radius: 8px; font-size: 15px;
}

/* Submit button - full-width solid blue. */
.gform_wrapper .gform_footer { margin: 28px 0 0 !important; padding: 0 !important; }
.gform_wrapper .gform_footer input[type=submit],
.gform_wrapper .gform_footer button,
.gform_wrapper .gform_button {
  width: 100% !important;
  padding: 17px 24px !important;
  background: var(--blue) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: var(--font-h) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gform_wrapper .gform_footer input[type=submit]:hover,
.gform_wrapper .gform_button:hover { background: var(--blue-hover) !important; transform: translateY(-1px); }

/* ===== LOYALTY FREIGHT GROUP PAGE (.a-* ) — moved from template-lfg-landing.php ===== */

/* ── HERO ── */
.a-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 88px;
}

.a-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, #0d1b2a 0%, transparent 12%),
    linear-gradient(to top, #0d1b2a 0%, transparent 22%),
    linear-gradient(to bottom, #020810 0%, transparent 30%),
    var(--hero-img) right center / cover no-repeat,
    #0d1b2a;
}

.a-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13, 27, 42, 1.0) 0%, rgba(13, 27, 42, 0.92) 38%, rgba(13, 27, 42, 0.35) 65%, rgba(13, 27, 42, 0.08) 100%);
}

.a-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.a-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 28px;
}

.a-hero__badge::before,
.a-hero__badge::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--coral);
  opacity: .7;
}

.a-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .5);
}

.a-hero h1 em {
  color: var(--coral);
  font-style: normal;
}

.a-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.a-hero__cta {
  display: inline-block;
  padding: 16px 36px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background .2s;
}

.a-hero__cta:hover {
  background: #e63c3c;
}

.a-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .4);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.a-hero__scroll svg {
  animation: bounce 1.8s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(6px)
  }
}

/* ── SECTIONS ── */
.a-section {
  padding: 100px 0;
}

.a-section .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.a-eyebrow {
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.a-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--coral);
}

.a-section-title {
  font-family: var(--font-h);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

/* ── ABOUT ── */
.about {
  background: var(--charcoal);
}

.a-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.a-about__lead {
  font-size: 20px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.a-about__body {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.75;
}

.a-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.a-value {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  padding: 24px;
  border-radius: 8px;
  transition: border-color .2s;
}

.a-value:hover {
  border-color: rgba(42, 109, 181, .4);
}

.a-value__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 109, 181, .15);
  border: 1px solid rgba(42, 109, 181, .3);
  color: var(--blue);
}

.a-value__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.a-value__title {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.a-value__desc {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
}

.a-mission {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--navy);
  border-left: 4px solid var(--coral);
  border-radius: 4px;
}

.a-mission__label {
  font-family: var(--font-h);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}

.a-mission__text {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

/* ── SERVICES ── */
.services {
  background: var(--navy);
}

.a-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.a-svc-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: 32px 28px;
  transition: border-color .2s, transform .2s;
}

.a-svc-card:hover {
  border-color: rgba(42, 109, 181, .4);
  transform: translateY(-4px);
}

.a-svc-icon {
  margin-bottom: 20px;
  color: var(--blue);
  line-height: 0;
}

.a-svc-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.a-svc-card h3 {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.a-svc-card p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.65;
}

.a-svc-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-family: var(--font-h);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(42, 109, 181, .4);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ── TEAM ── */
.team {
  background: var(--charcoal);
}

.a-team__tier {
  margin-bottom: 60px;
}

.a-team__tier:last-child {
  margin-bottom: 0;
}

.a-tier-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.a-tier-label span {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--coral);
}

.a-tier-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 77, 77, .25);
}

.a-team__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(274px, 1fr));
  gap: 20px;
}

.a-member {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}

.a-member:hover {
  border-color: rgba(42, 109, 181, .4);
}

.a-member__photo {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(42, 109, 181, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(42, 109, 181, .5);
}

.a-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.a-member__info {
  padding: 16px;
}

.a-member__name {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.a-member__role {
  font-size: 12px;
  color: var(--silver);
}

/* ── CONTACT ── */
.contact {
  background: var(--navy);
}

.a-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
}

.a-contact__info h3 {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.a-contact__info p {
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 32px;
}

.a-contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.a-contact__item-icon {
  font-size: 20px;
  margin-top: 2px;
}

.a-contact__item-label {
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
}

.a-contact__item-val {
  font-size: 16px;
  color: var(--white);
}

.a-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.a-form input,
.a-form textarea,
.a-form select {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
}

.a-form input:focus,
.a-form textarea:focus {
  border-color: var(--blue);
}

.a-form input::placeholder,
.a-form textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.a-form textarea {
  min-height: 130px;
  resize: vertical;
}

.a-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.a-form__submit {
  padding: 16px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

.a-form__submit:hover {
  background: #1e5a9a;
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {

  .a-section {
    padding: 64px 0;
  }

  .a-about__grid,
  .a-contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .a-services__grid {
    grid-template-columns: 1fr 1fr;
  }

.a-team__cards {
  grid-template-columns: repeat(auto-fill, minmax(214px, 1fr));
}


}

@media (max-width: 600px) {
  .a-section {
    padding: 48px 0;
  }

  .a-team__cards {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .a-services__grid {
    grid-template-columns: 1fr;
  }

  .a-form__row {
    grid-template-columns: 1fr;
  }

  .a-hero__bg {

    background: linear-gradient(to left, #0d1b2a 0%, transparent 12%),
      linear-gradient(to top, #0d1b2a 0%, transparent 22%),
      linear-gradient(to bottom, #020810 0%, transparent 30%),
      var(--hero-img) right center / cover no-repeat,
      #0d1b2a
  }

  .a-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgb(0 0 0) 0%, rgba(13, 27, 42, 0.92) 18%, rgb(13 27 42 / 62%) 65%, rgb(13 27 42 / 78%) 100%);
  }



}

/* ===== DELMAR REPRESENTATIVES PAGE — moved from template-delmar-representatives.php ===== */

/* Hero */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; overflow: hidden;
  padding-top: 116px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--hero-img) center center / cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,27,42,.97) 0%, rgba(13,27,42,.88) 45%, rgba(13,27,42,.6) 72%, rgba(13,27,42,.4) 100%);
}
.hero-inner {
  position: relative; z-index: 1; width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 55fr 45fr; align-items: center; gap: 40px;
}
.hero-left { padding-right: 24px; }
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--coral);
  display: flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--coral); }
.hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.1; color: #fff; margin-bottom: 24px; letter-spacing: -.01em;
}
.hero h1 span { color: var(--blue); }
.hero-sub {
  font-size: 18px; font-weight: 400; color: rgba(255,255,255,.72);
  line-height: 1.65; max-width: 520px; margin-bottom: 40px;
}
.hero-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .05em;
  background: var(--blue); color: #fff; padding: 14px 32px; border-radius: 4px;
  text-decoration: none; text-transform: uppercase; transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-2px); }
.btn-ghost {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: .05em;
  background: transparent; color: #fff; padding: 13px 32px; border-radius: 4px;
  text-decoration: none; text-transform: uppercase; border: 2px solid rgba(255,255,255,.35);
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* Hero Right Stat */
.hero-right {
  display: flex; flex-direction: column; align-items: flex-start;
  border-left: 4px solid var(--coral); padding-left: 40px;
}
.hero-stat-number {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(100px, 13vw, 160px);
  color: var(--coral); line-height: 1; letter-spacing: -.03em;
  text-shadow: 0 4px 40px rgba(255,77,77,.25);
}
.hero-stat-label {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 16px;
  color: rgba(255,255,255,.75); line-height: 1.45; max-width: 280px; margin-top: 16px;
  letter-spacing: .01em; text-transform: uppercase;
}
.hero-stat-sub {
  font-size: 13px; color: var(--silver); margin-top: 12px; font-weight: 400;
  line-height: 1.5; max-width: 280px;
}

/* Brands / Reach Strip */
.reach-strip {
  background: var(--charcoal); padding: 64px 0;
  border-top: 1px solid rgba(42,109,181,.2);
  border-bottom: 1px solid rgba(42,109,181,.2);
}
.reach-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.reach-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 20px 24px; position: relative;
}
.reach-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 2px; background: var(--coral); opacity: .6;
}
.reach-number {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 48px;
  color: var(--blue); letter-spacing: -.02em; line-height: 1;
}
.reach-label {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--silver);
  margin-top: 8px; line-height: 1.4;
}

/* Why Choose Us */
.why-section {
  background: var(--navy); padding: 100px 0 160px; position: relative; z-index: 2; overflow: visible;
}
.why-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 4px 1fr; gap: 0; align-items: start;
}
.why-left { padding-right: 64px; }
.why-divider { background: var(--coral); align-self: stretch; opacity: .6; }
.container-behind { width: 100%; margin-top: 64px; margin-bottom: -200px; position: relative; z-index: 3; pointer-events: none; }
.container-behind img { width: 115%; height: auto; display: block; opacity: 0.95; mix-blend-mode: screen; transform:
scaleX(-1); margin-left: -15%; }
.why-right { padding-left: 64px; }
.section-eyebrow {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--coral);
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--coral); }
.why-left h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15; color: #fff; margin-bottom: 24px;
}
.why-left p {
  font-size: 16px; color: rgba(255,255,255,.68); line-height: 1.75;
  margin-bottom: 16px;
}
.why-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  background: rgba(42,109,181,.12); border: 1px solid rgba(42,109,181,.3);
  border-radius: 4px; padding: 10px 18px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px;
  color: var(--blue); letter-spacing: .06em; text-transform: uppercase;
}
.feature-row {
  display: flex; align-items: flex-start; gap: 20px; margin-bottom: 32px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-num {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 28px;
  color: var(--coral); line-height: 1; flex-shrink: 0; width: 44px; padding-top: 2px;
  opacity: .7;
}
.feature-body {}
.feature-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
  color: #fff; margin-bottom: 6px; letter-spacing: .01em;
}
.feature-desc { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; }

/* Industries Served */
.industries-section {
  background: var(--charcoal); padding: 88px 0; position: relative; z-index: 1;
}
.industries-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 5; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(26px, 2.8vw, 38px);
  color: #fff; margin-top: 14px; line-height: 1.2;
}
.industry-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.industry-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(158,175,192,.08);
  border-radius: 8px; padding: 36px 28px; transition: transform .2s, border-color .2s, box-shadow .2s;
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-4px); border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(42,109,181,.18);
}
.industry-icon {
  width: 48px; height: 48px; margin-bottom: 18px; color: var(--coral);
}
.industry-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
  color: #fff; margin-bottom: 8px; letter-spacing: .01em;
}
.industry-desc { font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.6; }

/* CTA + Form Section */
.cta-section {
  background: var(--navy); padding: 96px 0;
  border-left: 5px solid var(--coral);
}
.cta-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.cta-left h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(28px, 2.8vw, 40px);
  color: #fff; line-height: 1.2; margin-bottom: 16px;
}
.cta-left h2 span { color: var(--coral); }
.cta-left p { font-size: 16px; color: rgba(255,255,255,.68); line-height: 1.7; margin-bottom: 32px; }
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.trust-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,.78); line-height: 1.5;
}
.trust-list li::before {
  content: ''; display: block; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  background: var(--coral); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}


.contact-form { padding-top: 4px; }
.form-group { margin-bottom: 28px; }
.form-group label {
  display: block; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase; color: var(--silver); margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(158,175,192,.35);
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 15px; padding: 10px 0;
  outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--blue); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(158,175,192,.4); }
.form-group textarea { resize: none; height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.btn-submit {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .08em;
  text-transform: uppercase; background: var(--coral); color: #fff;
  border: none; padding: 15px 40px; border-radius: 4px; cursor: pointer;
  transition: background .2s, transform .15s; width: 100%; margin-top: 8px;
}
.btn-submit:hover { background: #e63c3c; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 768px) {

  .hero { padding-top: 104px; }
  .hero-inner { grid-template-columns: 1fr; padding: 0 20px; gap: 40px; }
  .hero-left { padding-right: 0; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-right { border-left: none; border-top: 3px solid var(--coral); padding-left: 0; padding-top: 32px; }
  .hero-stat-number { font-size: 80px; }

  .reach-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0 20px; }
  .reach-item:nth-child(2)::after { display: none; }
  .reach-item:nth-child(3) { border-top: 1px solid rgba(255,77,77,.2); padding-top: 24px; }
  .reach-item:nth-child(4) { border-top: 1px solid rgba(255,77,77,.2); padding-top: 24px; }
  .reach-item:last-child::after { display: none; }

  .why-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .why-divider { display: none; }
  .why-left { padding-right: 0; margin-bottom: 280px;}
  .why-right { padding-left: 0; }

  .industries-inner { padding: 0 20px; }
  .industry-grid { grid-template-columns: 1fr; gap: 16px; }

  .cta-section { border-left: none; border-top: 5px solid var(--coral); }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

}
