/* ========================================================
   381 Logistics LLC — Premium Stylesheet
   Colors: Navy #0A1525 / #1B2D5A  |  Red #C82030  |  White #FFF
   ======================================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', 'Open Sans', sans-serif; color: #1E2A40; background: #fff; line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.22s; }
ul { list-style: none; }

/* ---- CSS VARIABLES ---- */
:root {
  --navy:      #0A1525;
  --navy-2:    #1B2D5A;
  --navy-3:    #2D4080;
  --red:       #C82030;
  --red-dk:    #A81828;
  --red-lt:    #E02838;
  --white:     #FFFFFF;
  --off-white: #F4F6FA;
  --gray:      #E2E8F4;
  --text:      #1E2A40;
  --text-mid:  #4A5A78;
  --text-lt:   #8A9AB8;
  --sp:        100px 0;
  --sp-sm:     64px 0;
  --r:         10px;
  --r-lg:      16px;
  --sh:        0 4px 24px rgba(0,0,0,0.09);
  --sh-lg:     0 12px 48px rgba(0,0,0,0.15);
  --tr:        all 0.3s ease;
}

/* ---- CONTAINER ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; color: var(--navy-2); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; }

/* ---- UTILITIES ---- */
.red-text { color: var(--red); }
.section { padding: var(--sp); }
.bg-light { background: var(--off-white); }
.bg-navy  { background: var(--navy-2); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 24px; height: 3px;
  background: var(--red); border-radius: 2px; flex-shrink: 0;
}
.section-eyebrow.light { color: rgba(255,255,255,0.7); }
.section-eyebrow.light::before { background: var(--red); }

.section-title { margin-bottom: 18px; }
.section-title.light { color: #fff; }
.section-body { color: var(--text-mid); margin-bottom: 16px; font-size: 1.02rem; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-desc { color: var(--text-mid); font-size: 1.05rem; line-height: 1.7; }
.section-desc.light { color: rgba(255,255,255,0.65); }
.section-title + .section-desc { margin-top: 12px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r); border: 2px solid transparent;
  font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.5px; cursor: pointer; transition: var(--tr);
  white-space: nowrap; line-height: 1;
}
.btn-lg { padding: 16px 34px; font-size: 0.95rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dk); border-color: var(--red-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,32,48,0.35); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy-2); border-color: var(--navy-2); }
.btn-outline-navy:hover { background: var(--navy-2); color: #fff; transform: translateY(-2px); }

/* ---- NAVBAR DROPDOWN ---- */
.nav-has-dropdown { position: relative; }
.nav-dropdown-btn { display: flex !important; align-items: center; gap: 5px; cursor: pointer; }
.nav-chevron { font-size: 0.6rem; transition: transform 0.25s; }
.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(11,21,42,0.98); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); min-width: 210px;
  padding: 14px 0 8px; list-style: none;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.open .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem;
  font-weight: 600; color: rgba(255,255,255,0.75);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-dropdown a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-dropdown a i { color: var(--red); font-size: 0.9rem; width: 16px; text-align: center; }
.nav-dropdown::before { display: none; }

@media (max-width: 768px) {
  .nav-has-dropdown .nav-chevron { display: inline; }
  .nav-dropdown {
    position: static; transform: none !important;
    background: rgba(255,255,255,0.04); backdrop-filter: none;
    border: none; border-radius: 0; box-shadow: none;
    min-width: 100%; max-height: 0; overflow: hidden;
    opacity: 0; padding: 0; left: auto;
    transition: max-height 0.3s ease, opacity 0.3s;
  }
  .nav-dropdown::before { display: none; }
  .nav-has-dropdown:hover .nav-dropdown { transform: none !important; opacity: 0; pointer-events: none; }
  .nav-has-dropdown.open .nav-dropdown { max-height: 160px; opacity: 1 !important; padding: 4px 0; pointer-events: auto; transform: none !important; }
  .nav-dropdown a { padding: 11px 44px; font-size: 0.88rem; color: rgba(255,255,255,0.85); }
}

/* ---- REVEAL ANIMATION ---- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================
   HEADER / NAVBAR
   ================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
#header.scrolled {
  background: rgba(11, 21, 42, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 28px rgba(0,0,0,0.35);
}
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 50px; width: auto; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-link {
  display: block; padding: 8px 12px;
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.3px; color: rgba(255,255,255,0.82);
  border-radius: 6px; transition: var(--tr); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--red); border-radius: 2px;
  transition: left 0.25s, right 0.25s;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { left: 12px; right: 12px; }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none; cursor: pointer;
  padding: 4px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--tr);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy); color: #fff; overflow: hidden;
}
.hero-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-dots {
  position: absolute; bottom: 72px; left: 50%;
  transform: translateX(-50%);
  z-index: 4; display: flex; gap: 10px; align-items: center;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none;
  cursor: pointer; padding: 0; flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: var(--red);
  transform: scale(1.35);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(5,12,26,0.82) 0%,
    rgba(5,12,26,0.60) 45%,
    rgba(5,12,26,0.18) 100%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  min-height: 100vh; padding-top: 96px; padding-bottom: 80px;
  width: 100%;
}
.hero-content { max-width: 620px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px; height: 8px; background: var(--red);
  border-radius: 50%; flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,32,48,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(200,32,48,0); }
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem); font-weight: 900;
  line-height: 1.08; margin-bottom: 22px; color: #fff;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.72);
  line-height: 1.7; margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.25s both;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.38s both;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px;
  animation: fadeUp 0.8s ease 0.5s both;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem;
  font-weight: 600; color: rgba(255,255,255,0.55);
}
.trust-item i { color: var(--red); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* Hero Scroll Hint */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; text-align: center; color: rgba(255,255,255,0.4);
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem;
  letter-spacing: 2px; text-transform: uppercase;
  animation: fadeUp 1s ease 0.8s both;
}
.scroll-arrow {
  display: flex; justify-content: center; margin-top: 6px;
  animation: bounceDown 2s ease infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar { background: var(--navy-2); padding: 52px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.stat-item {
  padding: 8px 24px; border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Montserrat', sans-serif; font-size: 2.8rem;
  font-weight: 900; color: var(--red); line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Montserrat', sans-serif; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ================================================
   ABOUT
   ================================================ */
.about .two-col, .safety .two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.img-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg); aspect-ratio: 4/3;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--red); color: #fff;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: var(--r);
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 20px rgba(200,32,48,0.4);
}
.badge-icon { font-size: 1.1rem; }
.badge-text { font-size: 0.88rem; font-weight: 700; }
.about-accent-box {
  display: flex; align-items: center; gap: 16px;
  background: var(--navy-2); color: #fff;
  padding: 18px 24px; border-radius: var(--r);
  margin-top: 20px; box-shadow: var(--sh);
}
.about-accent-box i { font-size: 1.6rem; color: var(--red); flex-shrink: 0; }
.about-accent-box strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 700; margin-bottom: 3px; }
.about-accent-box span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

.about-story-teaser {
  font-family: 'Montserrat', sans-serif; font-size: 0.96rem;
  font-weight: 700; font-style: italic;
  color: var(--navy-2); margin-bottom: 28px; line-height: 1.6;
  padding-left: 16px; border-left: 3px solid var(--red);
}
.about-read-more { margin-top: 4px; }

.value-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-icon {
  width: 44px; height: 44px; border-radius: var(--r); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.value-icon.red { background: rgba(200,32,48,0.1); color: var(--red); }
.value-icon.navy { background: rgba(27,45,90,0.1); color: var(--navy-2); }
.value-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--navy-2); }
.value-item p { font-size: 0.88rem; color: var(--text-mid); margin: 0; }

/* ================================================
   SERVICES
   ================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff; border-radius: var(--r-lg); padding: 36px 28px 28px;
  border: 1px solid var(--gray); transition: var(--tr);
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(27,45,90,0.14);
  border-color: transparent;
}
.svc-icon {
  width: 56px; height: 56px; border-radius: var(--r);
  background: linear-gradient(135deg, var(--red), #E83C50);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(200,32,48,0.3);
  transition: var(--tr);
}
.service-card:hover .svc-icon { transform: scale(1.08); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy-2); }
.service-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.65; flex: 1; }

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-us { background: var(--navy-2); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 36px 28px;
  transition: var(--tr);
}
.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,32,48,0.4);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px; height: 52px; border-radius: var(--r);
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 20px;
}
.why-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.58); line-height: 1.65; }

/* ================================================
   OWNER OPERATORS
   ================================================ */
.owner-ops .oo-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.oo-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin: 28px 0 34px; }
.perk-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-mid); padding: 6px 0;
}
.perk-item i { color: var(--red); flex-shrink: 0; font-size: 1rem; }
.oo-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.oo-cards-col { display: flex; flex-direction: column; gap: 20px; }
.oo-card {
  background: var(--off-white); border-radius: var(--r-lg);
  padding: 28px 24px; border: 2px solid transparent;
  transition: var(--tr); position: relative;
}
.oo-card:hover { border-color: var(--red); transform: translateX(6px); }
.oo-card.featured {
  background: var(--navy-2); color: #fff;
  border-color: var(--red);
}
.oo-badge {
  position: absolute; top: -1px; right: 20px;
  background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 0 0 8px 8px;
}
.oo-card-icon {
  width: 44px; height: 44px; background: var(--red);
  border-radius: var(--r); display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 1.15rem; margin-bottom: 14px;
}
.oo-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.oo-card.featured h3 { color: #fff; }
.oo-card p { font-size: 0.88rem; margin: 0; }
.oo-card.featured p { color: rgba(255,255,255,0.65); }

/* ================================================
   SAFETY
   ================================================ */
.check-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 24px; margin: 24px 0 28px; list-style: none;
}
.check-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-mid);
}
.check-list li i { color: var(--red); font-size: 1rem; flex-shrink: 0; }
.compliance-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.comp-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--navy-2); color: #fff;
  padding: 10px 18px; border-radius: var(--r);
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700;
}
.comp-badge i { color: var(--red); }

/* ================================================
   CAREERS
   ================================================ */
.careers { background: var(--navy); }
.jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.job-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--tr);
}
.job-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,32,48,0.5);
  transform: translateY(-4px);
}
.job-icon {
  width: 48px; height: 48px; background: var(--red);
  border-radius: var(--r); display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 1.2rem; flex-shrink: 0;
}
.job-info h3 { color: #fff; font-size: 1.05rem; margin-bottom: 6px; }
.job-loc { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.45); font-size: 0.82rem; margin-bottom: 10px; }
.job-loc i { color: var(--red); }
.job-info p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; margin: 0; }
.careers-note {
  text-align: center; color: rgba(255,255,255,0.45);
  font-size: 0.92rem; margin-top: 36px;
}
.careers-note a { color: var(--red); font-weight: 600; }
.careers-note a:hover { color: var(--red-lt); }

/* ================================================
   CONTACT
   ================================================ */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 0; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg);
}
.contact-info {
  background: var(--navy-2); color: #fff; padding: 48px 40px;
}
.contact-info h3 {
  font-size: 1.4rem; margin-bottom: 32px; color: #fff;
}
.ci-item { display: flex; gap: 16px; margin-bottom: 28px; }
.ci-icon {
  width: 42px; height: 42px; background: rgba(200,32,48,0.2);
  border-radius: var(--r); display: flex; align-items: center;
  justify-content: center; color: var(--red); font-size: 1rem; flex-shrink: 0;
}
.ci-item h4 { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.ci-item p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin: 0; }
.ci-item a { color: rgba(255,255,255,0.8); }
.ci-item a:hover { color: var(--red); }
.ci-social { display: flex; gap: 12px; margin-top: 32px; }
.ci-social a {
  width: 40px; height: 40px; background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--tr);
}
.ci-social a:hover { background: var(--red); color: #fff; }

/* Honeypot — visually hidden, accessible */
.hp-field {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden;
  opacity: 0; pointer-events: none; tab-size: 0;
}

.contact-form { background: #fff; padding: 48px 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--navy-2); letter-spacing: 0.5px; }
.form-group label span { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--gray); border-radius: var(--r);
  font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--text);
  background: #fafbff; transition: border-color 0.22s, box-shadow 0.22s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,32,48,0.1);
}
.form-group input.error, .form-group textarea.error { border-color: #e53e3e; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check-group { margin-bottom: 20px; }
.check-label {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: 0.88rem; color: var(--text-mid); line-height: 1.5;
}
.check-label input[type="checkbox"] {
  width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--red); cursor: pointer;
}
.check-label a { color: var(--red); font-weight: 600; }
.check-label a:hover { color: var(--red-dk); }

.form-feedback {
  text-align: center; margin-top: 14px; font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  min-height: 24px;
}
.form-feedback.success { color: #1d8a4f; }
.form-feedback.error { color: #e53e3e; }

/* ---- CONTACT MAP ---- */
.contact-map {
  margin-top: 40px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--gray);
}
.map-header {
  display: flex; align-items: center; gap: 10px;
  background: var(--navy-2); color: #fff;
  padding: 14px 22px;
  font-family: 'Montserrat', sans-serif; font-size: 0.84rem; font-weight: 600;
}
.map-header i { color: var(--red); font-size: 1rem; flex-shrink: 0; }
.contact-map iframe { display: block; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 56px;
}
.footer-brand { }
.footer-logo { height: 52px; width: auto; object-fit: contain; margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: var(--tr);
}
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 0.88rem; color: rgba(255,255,255,0.45); }
.footer-col a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact li i { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.65); }

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 46px; height: 46px; background: var(--red);
  border: none; border-radius: 50%; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 4px 16px rgba(200,32,48,0.4);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dk); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .hero-inner { padding-top: 120px; }
  .hero-content { max-width: 640px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  :root { --sp: 72px 0; }
  .about .two-col, .safety .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .owner-ops .oo-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .jobs-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0;
    background: rgba(10,21,37,0.98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 16px 0; max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }
  .nav-links.open { max-height: 600px; padding: 16px 0 24px; }
  .nav-link { padding: 13px 28px; font-size: 0.92rem; border-radius: 0; }
  .nav-link::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .oo-perks { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  :root { --sp: 56px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 32px 24px; }
  .contact-info { padding: 32px 24px; }
  .oo-cta { flex-direction: column; }
}
