/* ================================================
   SUPER EGO HOLDING — Premium Multi-Page Redesign
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ---- TOKENS ---- */
:root {
  --bg:         #040c1f;
  --bg2:        #071530;
  --bg3:        #0c1e45;
  --blue:       #1a5cdb;
  --blue-mid:   #3b82f6;
  --blue-light: #60a5fa;
  --cyan:       #4a8aff;
  --white:      #ffffff;
  --gray-100:   #e2e8f8;
  --gray-300:   #8fa4cc;
  --gray-500:   #3d527a;
  --border:     rgba(255,255,255,0.07);
  --card:       rgba(255,255,255,0.04);
  --glow:       rgba(26,92,219,0.35);
  --glow-cyan:  rgba(74,138,255,0.25);
  --radius:     12px;
  --radius-lg:  20px;
  --ease:       cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Open Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- CURSOR (truck) ---- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 56px; height: 28px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -60%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 28'%3E%3C!-- trailer --%3E%3Crect x='0' y='3' width='34' height='16' rx='2' fill='%23dde6f5'/%3E%3Crect x='0' y='3' width='34' height='3' rx='1' fill='%23b0c4de'/%3E%3Crect x='1' y='7' width='32' height='1' fill='%23b0c4de' opacity='0.5'/%3E%3Crect x='1' y='11' width='32' height='1' fill='%23b0c4de' opacity='0.5'/%3E%3C!-- cab --%3E%3Cpath d='M34 2 L34 19 L50 19 L52 17 L52 10 L46 4 L36 2 Z' fill='%23c8d8ee'/%3E%3C!-- windshield --%3E%3Cpath d='M37 3.5 L45 3.5 L50 9 L37 9 Z' fill='%234a8aff' opacity='0.85'/%3E%3C!-- cab detail --%3E%3Crect x='34' y='12' width='8' height='7' rx='1' fill='%23b0c4de'/%3E%3C!-- exhaust --%3E%3Crect x='49' y='1' width='2' height='6' rx='1' fill='%23999'/%3E%3Crect x='52' y='1' width='2' height='6' rx='1' fill='%23999'/%3E%3C!-- bumper --%3E%3Crect x='50' y='15' width='4' height='4' rx='1' fill='%23aaa'/%3E%3C!-- headlight --%3E%3Crect x='51' y='10' width='3' height='3' rx='0.5' fill='%23ffe066' opacity='0.95'/%3E%3C!-- wheels --%3E%3Ccircle cx='8' cy='22' r='4' fill='%23333'/%3E%3Ccircle cx='8' cy='22' r='2' fill='%23999'/%3E%3Ccircle cx='18' cy='22' r='4' fill='%23333'/%3E%3Ccircle cx='18' cy='22' r='2' fill='%23999'/%3E%3Ccircle cx='38' cy='22' r='4' fill='%23333'/%3E%3Ccircle cx='38' cy='22' r='2' fill='%23999'/%3E%3Ccircle cx='47' cy='22' r='4' fill='%23333'/%3E%3Ccircle cx='47' cy='22' r='2' fill='%23999'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 6px rgba(74,138,255,0.85));
  transition: opacity .2s, transform .15s;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 54px; height: 38px;
  border: 1px solid rgba(74,138,255,0.35);
  border-radius: 8px;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -60%);
  transition: width .4s var(--ease), height .4s var(--ease), border-color .3s;
}
body:has(a:hover) .cursor { filter: drop-shadow(0 0 10px rgba(74,138,255,1)); }
body:has(a:hover) .cursor-ring { border-color: rgba(74,138,255,0.6); width: 60px; height: 44px; }
body:has(.btn:hover) .cursor-ring { border-color: rgba(74,138,255,0.8); }

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

/* ---- TYPOGRAPHY ---- */
.display {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}
h1 { font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: 0; }
h2 { font-family: 'Oswald', sans-serif; font-weight: 600; }
h3 { font-family: 'Oswald', sans-serif; font-weight: 600; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--cyan);
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.5px;
  color: var(--white);
}
.section-desc {
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 540px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity .3s;
  z-index: -1;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 0 var(--glow);
}
.btn-primary:hover {
  box-shadow: 0 0 40px var(--glow);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 24px var(--glow-cyan);
}
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn svg { width: 18px; height: 18px; transition: transform .3s; }
.btn:hover svg { transform: translateX(3px); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all .4s var(--ease);
}
.navbar.scrolled {
  background: rgba(4,12,31,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}
.nav-logo-link {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
}
.footer-logo-img {
  height: 54px;
}
/* fallback text logo (hidden when image exists) */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.nav-logo-main {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0;
}
.nav-logo-sub {
  font-size: .55rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-300);
  position: relative;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--cyan);
  transition: width .3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--white);
  font-weight: 600;
  background: rgba(26,92,219,0.15);
  border: 1px solid rgba(59,130,246,0.35);
  padding: 7px 14px;
  border-radius: 20px;
  transition: background .3s, border-color .3s;
  white-space: nowrap;
}
.nav-phone svg { stroke: var(--cyan); flex-shrink: 0; }
.nav-phone:hover { background: rgba(26,92,219,0.3); border-color: var(--cyan); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
  transform-origin: center;
}
.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); }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(4,12,31,0.98);
  backdrop-filter: blur(20px);
  padding: 24px 28px 32px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  padding: 12px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border);
  color: var(--gray-100);
}
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,92,219,0.2) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 100px;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 32px;
  background: rgba(34,211,238,0.05);
  backdrop-filter: blur(4px);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 28px;
  overflow: hidden;
}
.hero-title .line { overflow: hidden; display: block; }
.hero-title .word { display: inline-block; }
.hero-title .accent { color: transparent; -webkit-text-stroke: 1px var(--blue-light); }
.hero-sub {
  color: var(--gray-300);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 500px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badges {
  display: flex;
  gap: 32px;
  flex-wrap: nowrap;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-badge-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-badge-label {
  font-size: .88rem;
  color: var(--gray-300);
  line-height: 1.4;
  max-width: 90px;
}
.hero-badge-sep { color: var(--gray-500); margin-right: 4px; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-text {
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--blue-mid), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- MARQUEE / TICKER ---- */
.marquee-section {
  background: var(--bg2);
  padding: 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(59,130,246,0.25);
  border-bottom: 1px solid rgba(59,130,246,0.25);
}
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2) 20%, transparent);
}
.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2) 20%, transparent);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 40s linear infinite;
  width: max-content;
  padding: 20px 0;
}
.marquee-item {
  display: flex;
  align-items: center;
  padding: 0 44px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.marquee-item::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px rgba(26,92,219,0.8);
  margin-left: 44px;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- SECTION BASE ---- */
.section { padding: 90px 0; }
.section--dark { background: var(--bg2); }
.section--darker { background: var(--bg); }
.section--card-bg { background: var(--bg3); }
.section--alt { background: linear-gradient(180deg, var(--bg) 0%, #050f28 50%, var(--bg) 100%); }

.section-header { margin-bottom: 48px; }
.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header--center .section-label::before { display: none; }
.section-header--center .section-label::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--cyan);
}
.section-header--center .section-desc { text-align: center; margin: 0 auto; }

/* ---- GRID UTILITIES ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ---- GLASS CARD ---- */
.glass-card {
  background: rgba(10, 22, 55, 0.85);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: var(--radius-lg);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,92,219,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.glass-card:hover {
  border-color: rgba(59,130,246,0.5);
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.25), 0 0 40px rgba(26,92,219,0.12);
}
.glass-card:hover::before { opacity: 1; }

/* ---- SERVICE CARDS (Home) ---- */
.service-card {
  padding: 36px 32px;
  border-top: 2px solid rgba(26,92,219,0.5);
}
.service-card-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: rgba(26,92,219,0.18);
  border: 1px solid rgba(26,92,219,0.3);
  transition: all .4s var(--ease);
  box-shadow: 0 0 20px rgba(26,92,219,0.15);
}
.glass-card:hover .service-card-icon {
  background: rgba(26,92,219,0.32);
  box-shadow: 0 0 32px rgba(26,92,219,0.4);
  border-color: rgba(59,130,246,0.5);
}
.service-card-icon svg { width: 28px; height: 28px; stroke: var(--blue-light); }
.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--white);
  margin-bottom: 14px;
}
.service-card p {
  color: rgba(180,200,240,0.75);
  font-size: .91rem;
  line-height: 1.8;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--blue-mid);
  transition: gap .3s, color .3s;
}
.glass-card:hover .service-card-link { gap: 10px; color: #60a5fa; }

/* ---- ABOUT SPLIT ---- */
.about-img-container {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,12,31,0.5) 0%, transparent 55%);
  z-index: 2;
  pointer-events: none;
}
.about-slideshow {
  position: relative;
  width: 100%;
  height: 580px;
}
.about-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05);
}
.about-float-card {
  position: absolute;
  bottom: -44px;
  right: 24px;
  background: rgba(7, 21, 48, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(59,130,246,0.28);
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  min-width: 200px;
  z-index: 10;
}
.about-float-card-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}
.about-float-card-label {
  font-size: .85rem;
  color: var(--white);
}
.about-text-content { padding: 20px 0; }
.about-text-content .section-title { margin-bottom: 20px; }
.about-text-content p {
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 36px 0;
}
.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color .3s, background .3s;
}
.about-pillar:hover {
  border-color: rgba(34,211,238,0.3);
  background: rgba(34,211,238,0.03);
}
.about-pillar-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(34,211,238,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.about-pillar-icon svg { width: 20px; height: 20px; stroke: var(--cyan); }
.about-pillar h4 { color: var(--white); font-size: .95rem; margin-bottom: 4px; }
.about-pillar p { color: var(--gray-300); font-size: .85rem; line-height: 1.5; }

/* ---- STATS COUNTER ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  padding: 40px 24px;
  text-align: center;
  background: rgba(10, 22, 55, 0.85);
  border: 1px solid rgba(59,130,246,0.18);
  border-top: 2px solid rgba(26,92,219,0.55);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26,92,219,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(26,92,219,0.15);
  border-color: rgba(59,130,246,0.4);
}
.stat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(26,92,219,0.15);
  border: 1px solid rgba(26,92,219,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.stat-icon svg { width: 24px; height: 24px; stroke: var(--blue-light); }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-num .counter { display: inline; }
.stat-num span { color: var(--cyan); }
.stat-label {
  font-size: .82rem;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.stat-desc {
  font-size: .79rem;
  color: rgba(180,200,240,0.55);
}

/* ---- EQUIPMENT CARDS ---- */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.equipment-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 420px;
  cursor: pointer;
  border: 1px solid rgba(59,130,246,0.22);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(26,92,219,0.1);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.equipment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(59,130,246,0.3), 0 0 40px rgba(26,92,219,0.15);
  border-color: rgba(59,130,246,0.4);
}
.equipment-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.equipment-card:hover img { transform: scale(1.07); }
.equipment-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,12,31,0.97) 0%, rgba(4,12,31,0.55) 55%, rgba(4,12,31,0.15) 100%);
  transition: background .4s;
}
.equipment-card:hover .equipment-card-overlay {
  background: linear-gradient(to top, rgba(4,12,31,0.98) 0%, rgba(4,12,31,0.7) 55%, rgba(26,92,219,0.2) 100%);
}
.equipment-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  transform: translateY(0);
  transition: transform .4s var(--ease);
}
.equipment-card-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.equipment-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--white);
}
.equipment-card p {
  color: var(--gray-300);
  font-size: .9rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), opacity .4s;
  opacity: 0;
}
.equipment-card:hover p { max-height: 100px; opacity: 1; }
.equipment-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.equipment-card:hover .equipment-card-arrow { opacity: 1; transform: translateY(0); }

/* ---- BRAND BADGES ---- */
.brand-badge {
  padding: 12px 22px;
  background: rgba(10, 22, 55, 0.9);
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: default;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.brand-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,92,219,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.brand-badge:hover {
  border-color: rgba(59,130,246,0.7);
  color: #60a5fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,92,219,0.25), 0 0 0 1px rgba(59,130,246,0.3);
}
.brand-badge:hover::before { opacity: 1; }

/* ---- FLEET BANNER ---- */
.fleet-banner-section {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.fleet-banner-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.fleet-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(4,12,31,0.92) 0%, rgba(4,12,31,0.6) 50%, rgba(4,12,31,0.2) 100%);
}
.fleet-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
}
.fleet-banner-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.fleet-banner-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.fleet-banner-desc {
  color: rgba(180,200,240,0.8);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

/* ---- TRAILER CARDS (Equipment page) ---- */
.trailer-showcase {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.trailer-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: all .4s var(--ease);
}
.trailer-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.trailer-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-bottom: 1px solid rgba(59,130,246,0.15);
}
.trailer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
  transition: transform .5s var(--ease);
}
.trailer-card:hover .trailer-card-img img { transform: scale(1.06); }
.trailer-card-body { padding: 28px; }
.trailer-card-body h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.trailer-card-body p { color: var(--gray-300); font-size: .9rem; line-height: 1.7; }

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  position: relative;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.testimonials-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.06;
}
.testimonials-section .container { position: relative; z-index: 1; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  padding: 36px 32px;
}
.testimonial-card--featured {
  background: rgba(26,92,219,0.15) !important;
  border-color: rgba(26,92,219,0.4) !important;
  transform: translateY(-12px);
}
.testimonial-card--featured:hover { transform: translateY(-18px); }
.stars { color: #fbbf24; font-size: 1rem; letter-spacing: 3px; margin-bottom: 20px; }
.testimonial-card p {
  color: var(--gray-300);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 600; color: var(--white); font-size: .95rem; }
.author-title { font-size: .8rem; color: var(--gray-300); }

/* ---- CTA SECTION ---- */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--bg3);
}
.cta-particles {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,92,219,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,92,219,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(26,92,219,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 0;
}
.cta-content .section-title { margin-bottom: 20px; }
.cta-content .section-desc { margin: 0 auto 48px; text-align: center; }
.cta-content .btn { margin: 0 8px; }

/* ---- CAREER PAGE ---- */
.career-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.career-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.career-benefits {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}
.career-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  transition: all .3s;
}
.career-benefit:hover {
  border-color: rgba(34,211,238,0.3);
  background: rgba(34,211,238,0.04);
}
.career-benefit-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(34,211,238,0.1);
  display: flex; align-items: center; justify-content: center;
}
.career-benefit-icon svg { width: 18px; height: 18px; stroke: var(--cyan); }
.career-benefit h4 { color: var(--white); font-size: .9rem; margin-bottom: 3px; }
.career-benefit p { color: var(--gray-300); font-size: .82rem; line-height: 1.5; }
.position-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.position-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 360px;
  cursor: pointer;
}
.position-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.position-card:hover img { transform: scale(1.08); }
.position-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,12,31,0.95) 0%, rgba(4,12,31,0.4) 50%, transparent 100%);
}
.position-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}
.position-tag {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(26,92,219,0.75);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-weight: 700;
}
.position-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.position-card p {
  color: var(--gray-300);
  font-size: .88rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s, opacity .3s;
  opacity: 0;
}
.position-card:hover p { max-height: 80px; opacity: 1; }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  border: 1px solid rgba(59,130,246,0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s;
  box-shadow: 0 4px 20px rgba(26,92,219,0.5);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: #1248b3; transform: translateY(-3px); }

/* ---- CAREER PERKS ---- */
.career-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.career-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(10,22,55,0.7);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 10px;
  padding: 14px 16px;
}
.career-perk-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(26,92,219,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.career-perk-icon svg { width: 16px; height: 16px; stroke: var(--cyan); }
.career-perk strong { display: block; color: var(--white); font-size: .85rem; margin-bottom: 2px; }
.career-perk span { color: var(--gray-300); font-size: .78rem; line-height: 1.4; }

/* ---- CONTACT FORM ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: .5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-500); }
.form-group select option { background: var(--bg2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-side h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-info-side p { color: var(--gray-300); font-size: 1rem; line-height: 1.8; margin-bottom: 40px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: color .3s;
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail:hover { color: var(--cyan); }
.contact-detail-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--cyan); }
.contact-detail strong { display: block; color: var(--white); font-size: .9rem; margin-bottom: 2px; }
.contact-detail span { color: var(--gray-300); font-size: .85rem; }
.map-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(59,130,246,0.22);
  box-shadow: 0 12px 50px rgba(0,0,0,0.45);
  position: relative;
}
.map-img-wrap img {
  width: 100%; height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.map-img-wrap:hover img { transform: scale(1.02); }
.career-map-wrap img {
  filter: grayscale(1) sepia(1) hue-rotate(180deg) saturate(3) brightness(0.85) contrast(1.2);
}
.career-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,12,31,0.35) 0%, rgba(26,92,219,0.12) 50%, rgba(4,12,31,0.45) 100%);
  pointer-events: none;
}

/* ---- LOCATION INFO CARDS ---- */
.location-info-cards { display: flex; flex-direction: column; gap: 14px; }
.location-info-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: rgba(10,22,55,0.8);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: var(--radius);
}
.location-info-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(26,92,219,0.15);
  border: 1px solid rgba(26,92,219,0.25);
  display: flex; align-items: center; justify-content: center;
}
.location-info-icon svg { width: 20px; height: 20px; stroke: var(--blue-light); }
.location-info-title { font-size: .75rem; color: rgba(180,200,240,0.55); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.location-info-val { font-size: .95rem; color: var(--white); font-weight: 500; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.08;
}
.page-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 40%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.page-hero-content .section-label { margin-bottom: 20px; }
.page-hero-content .section-title { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 20px; }
.page-hero-content .section-desc { max-width: 520px; }
.page-hero-lines {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.page-hero-lines svg {
  width: 100%; height: 100%;
  opacity: 0.15;
}

/* ---- ABOUT PAGE SPECIFICS ---- */
.about-timeline {
  position: relative;
  padding-left: 40px;
}
.about-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px; top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue-mid);
  box-shadow: 0 0 12px var(--glow);
}
.timeline-item h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.timeline-item p { color: var(--gray-300); font-size: .9rem; line-height: 1.7; }
.timeline-year {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.8fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { max-width: 300px; }
.footer-brand-logo { margin-bottom: 20px; }
.footer-brand p {
  color: var(--gray-300);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-300);
  transition: all .3s;
}
.social-link:hover {
  border-color: var(--blue-mid);
  color: var(--blue-light);
  background: rgba(59,130,246,0.1);
}
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 24px;
}
.footer-col a {
  display: block;
  color: var(--gray-300);
  font-size: .9rem;
  margin-bottom: 12px;
  transition: color .3s;
}
.footer-col a:hover { color: var(--white); }
.footer-newsletter h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 12px;
}
.footer-newsletter p {
  color: var(--gray-300);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color .3s;
}
.newsletter-form input::placeholder { color: var(--gray-500); }
.newsletter-form input:focus { border-color: var(--blue-mid); }
.newsletter-form .btn { width: 100%; justify-content: center; border-radius: var(--radius); }
.footer-bottom {
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-text { color: var(--gray-500); font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  color: var(--gray-500);
  font-size: .82rem;
  transition: color .3s;
}
.footer-bottom-links a:hover { color: var(--gray-300); }

/* ---- SCROLL REVEAL BASE ---- */
/* Initial states handled by GSAP only — no CSS hiding */

/* ---- GLITCH EFFECT (hero accent) ---- */
.glitch {
  position: relative;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
}
.glitch:hover::before {
  opacity: 0.7;
  animation: glitch1 .3s steps(2) forwards;
  color: var(--cyan);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
}
.glitch:hover::after {
  opacity: 0.7;
  animation: glitch2 .3s steps(2) forwards;
  color: var(--blue-light);
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}
@keyframes glitch1 { 0%{transform:translate(-3px,2px)} 50%{transform:translate(3px,-2px)} 100%{transform:translate(0)} }
@keyframes glitch2 { 0%{transform:translate(3px,-2px)} 50%{transform:translate(-3px,2px)} 100%{transform:translate(0)} }

/* ---- LINE ANIMATION (decorative) ---- */
.animated-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blue-mid), transparent);
  transform: scaleX(0);
  transform-origin: left;
}

/* ---- LOCATION GRID (About page) ---- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}

/* ---- RESPONSIVE ---- */

/* =============================================
   TABLET — 768px to 1024px
   ============================================= */
@media (max-width: 1024px) {
  /* Container */
  .container { padding: 0 24px; }

  /* Grid */
  .grid-2 { gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); gap: 18px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-num { font-size: 2.8rem; }

  /* Sections */
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }

  /* Equipment grids */
  .equipment-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .trailer-showcase { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .position-cards { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }

  /* About */
  .about-slideshow { height: 460px; }

  /* Fleet banner */
  .fleet-banner-section { height: 360px; }

  /* Navigation */
  .nav-links { gap: 28px; }
  .nav-phone { font-size: .78rem; padding: 6px 11px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
  .contact-grid > :last-child { order: -1; }

  /* Page hero */
  .page-hero { padding: 150px 0 90px; }

  /* Hero title intermediate size */
  .hero-title { font-size: clamp(3rem, 7vw, 5.5rem); }

  /* Section title */
  .section-title { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }

  /* CTA */
  .cta-content { padding: 80px 0; }

  /* Map */
  .map-img-wrap img { height: 340px; }

  /* Location grid */
  .location-grid { gap: 40px; }
}

/* =============================================
   MOBILE — up to 768px
   ============================================= */
@media (max-width: 768px) {
  /* ---- Container ---- */
  .container { padding: 0 18px; }

  /* ---- Navigation ---- */
  .nav-links { display: none; }
  .nav-actions { display: none; }   /* Hidden on mobile — hamburger shows these */
  .hamburger { display: flex; }

  /* ---- Mobile menu phone link style ---- */
  .mobile-menu .mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cyan);
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu .mobile-phone-link svg {
    flex-shrink: 0;
  }

  /* ---- Typography ---- */
  .hero-title {
    font-size: clamp(2.6rem, 9vw, 3.8rem);
    letter-spacing: 0;
  }
  .section-title { font-size: clamp(1.75rem, 5.5vw, 2.4rem); }
  .page-hero-content .section-title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 36px; }
  .section-desc { font-size: .97rem; }
  .display { font-size: clamp(2.4rem, 9vw, 3.8rem); }
  .fleet-banner-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }

  /* ---- Sections ---- */
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 32px; }

  /* ---- Grids ---- */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 24px; }

  /* ---- Equipment / Trailer / Position / Testimonials ---- */
  .equipment-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .trailer-showcase {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .position-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .testimonial-card--featured { transform: none; }
  .testimonial-card--featured:hover { transform: translateY(-6px); }
  .equipment-card { height: 340px; }

  /* ---- About ---- */
  .about-float-card { display: none; }
  .about-slideshow { height: 280px; }

  /* ---- Stats ---- */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-item { padding: 28px 16px; }
  .stat-num { font-size: 2.4rem; }

  /* ---- Career benefits ---- */
  .career-benefits { grid-template-columns: 1fr; gap: 12px; }

  /* ---- Career perks ---- */
  .career-perks { grid-template-columns: 1fr; gap: 12px; }

  /* ---- Brand badges ---- */
  .brand-badges-row { flex-wrap: wrap; gap: 8px; }

  /* Equipment page brand badges inline style override */
  [style*="flex-wrap:nowrap"] { flex-wrap: wrap !important; }

  /* ---- Contact / Form ---- */
  .contact-form-wrap { padding: 28px 20px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .contact-grid { max-width: 100%; }

  /* ---- Fleet banner ---- */
  .fleet-banner-section { height: auto; }
  .fleet-banner-img { height: 340px; }
  .fleet-banner-content { padding-top: 28px; padding-bottom: 28px; }
  .fleet-banner-desc { font-size: .93rem; margin-bottom: 24px; }

  /* ---- Map ---- */
  .map-img-wrap img { height: 240px; }

  /* ---- About page location section grid ---- */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ---- Page hero ---- */
  .page-hero { padding: 120px 0 64px; }
  .page-hero-content .section-desc { max-width: 100%; }

  /* ---- Hero section ---- */
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-content { padding: 40px 0 60px; }
  .hero-badges {
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 20px;
  }
  .hero-badge { min-width: 0; }
  .hero-badge-num { font-size: 1.8rem; }
  .hero-badge-sep { display: none; }

  /* ---- CTA section ---- */
  .cta-content { padding: 64px 0; text-align: center; }
  .cta-content .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .cta-content .section-desc { font-size: .95rem; }
  .cta-glow { width: 320px; height: 240px; }

  /* ---- Glass cards full width ---- */
  .glass-card { width: 100%; }

  /* ---- Footer ---- */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
  .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }
  .footer { padding-top: 56px; }

  /* ---- Trailer card image ---- */
  .trailer-card-img { height: 200px; }

  /* ---- Position card ---- */
  .position-card { height: 300px; }

  /* ---- Career hero img ---- */
  .career-hero-img img { opacity: 0.4; }

  /* ---- About page tall images ---- */
  .about-img-main img[style*="height:380px"],
  .about-img-main img[style*="height:580px"] {
    height: 280px !important;
  }

}

/* =============================================
   PHONE — up to 480px
   ============================================= */
@media (max-width: 480px) {
  /* ---- Container ---- */
  .container { padding: 0 16px; }

  /* ---- Hero height ---- */
  .hero { min-height: 0 !important; height: auto; align-items: flex-start; padding-top: 72px; padding-bottom: 0; }
  .hero > svg, .hero-scroll { display: none !important; }
  .hero-content { padding: 16px 16px 24px; }
  .hero-eyebrow { margin-bottom: 8px; }
  .hero-title { margin-bottom: 8px; }
  .hero-sub { margin-bottom: 12px; font-size: .9rem; line-height: 1.6; }
  .hero-cta { display: none; }
  .hero-badges { flex-direction: column; gap: 0; border-top: 1px solid var(--border); align-items: flex-start; margin-top: 12px; }
  .hero-badge { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; }
  .hero-badge-sep { display: none; }
  .hero-badge-num { font-size: 1.7rem; }
  .hero-badge-label { max-width: none; }

  /* ---- Typography ---- */
  .hero-title { font-size: clamp(2.6rem, 11vw, 3.4rem); }
  .section-title { font-size: clamp(1.6rem, 6.5vw, 2.1rem); }
  .page-hero-content .section-title { font-size: clamp(1.8rem, 7.5vw, 2.6rem); }
  .fleet-banner-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* ---- Sections ---- */
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }

  /* ---- Stats ---- */
  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat-item { padding: 24px 20px; }
  .stat-num { font-size: 2.8rem; }

  /* ---- Career perks ---- */
  .career-perks { grid-template-columns: 1fr; }

  /* ---- CTA buttons ---- */
  .cta-content .btn { display: block; margin: 8px auto; max-width: 300px; text-align: center; }
  .cta-content > div { display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .cta-content > div .btn { margin: 0; width: 100%; max-width: 300px; justify-content: center; }

  /* ---- Contact form ---- */
  .contact-form-wrap { padding: 24px 16px; }

  /* ---- Trailer card image ---- */
  .trailer-card-img { height: 180px; }

  /* ---- About slideshow ---- */
  .about-slideshow { height: 220px; }

  /* ---- Fleet banner ---- */
  .fleet-banner-section { min-height: 260px; }

  /* ---- Page hero ---- */
  .page-hero { padding: 110px 0 52px; }

  /* ---- Btn sizes ---- */
  .btn-lg { padding: 14px 28px; font-size: .93rem; }

  /* ---- Equipment card ---- */
  .equipment-card { height: 300px; }

  /* ---- Position cards ---- */
  .position-card { height: 260px; }

  /* ---- Cursor hidden on touch ---- */
  .cursor, .cursor-ring { display: none; }

  /* ---- Section label ---- */
  .section-label { font-size: .72rem; letter-spacing: 2px; }

  /* ---- Eyebrow ---- */
  .hero-eyebrow { font-size: .76rem; padding: 6px 14px; }

  /* ---- About img main image height ---- */
  .about-img-main img[style*="height:380px"],
  .about-img-main img[style*="height:580px"] {
    height: 220px !important;
  }
}
