/* ============================================================
   NOVELKREST LOGISTICS LLC — Main Stylesheet
   A professional motor carrier website.
   ============================================================ */

/* ---------- CSS VARIABLES (Easy to change branding) ---------- */
:root {
  /* Primary palette */
  --navy:        #0b1a2e;
  --navy-mid:    #122744;
  --navy-light:  #1a3558;
  --amber:       #e8922f;
  --amber-light: #f2a84b;
  --amber-dark:  #c97a1f;
  --white:       #f5f5f7;
  --off-white:   #e8e8ec;
  --gray:        #94a3b8;
  --gray-dark:   #64748b;
  --text-dark:   #1e293b;
  --text-body:   #334155;
  --success:     #22c55e;

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

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Misc */
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.18);
  --transition:  0.3s ease;
  --max-width:   1200px;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

img.logo-img {
  display: inline-block;
}

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

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}


/* ---------- UTILITY CLASSES ---------- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.text-amber  { color: var(--amber); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }

.bg-navy     { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }
.bg-white    { background: var(--white); }
.bg-off-white{ background: var(--off-white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,146,47,0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* Section headers */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 2.5rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: var(--amber);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-dark);
  max-width: 620px;
  line-height: 1.8;
}


/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}

/* When scrolled, add dark background */
.header.scrolled {
  background: rgba(11,26,46,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-img {
  width: 46px;
  height: 46px;
  max-width: 46px;
  max-height: 46px;
  min-width: 46px;
  object-fit: contain;
  border-radius: 10px;
  transition: var(--transition);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.15;
}

.logo-text span {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--amber);
  text-transform: uppercase;
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 1.1rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  margin-left: 0.75rem;
}

.nav-cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.82rem;
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--amber);
}

.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-close svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

/* Background pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(232,146,47,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(232,146,47,0.05) 0%, transparent 50%);
}

/* Decorative grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Two-column split layout */
.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: var(--space-lg);
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,146,47,0.12);
  border: 1px solid rgba(232,146,47,0.25);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: var(--amber);
  position: relative;
}

.hero p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Right side: truck image */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-truck-img {
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 8px 20px rgba(0,0,0,0.25);
  border: 2px solid rgba(255,255,255,0.08);
}

/* Subtle ambient glow behind the image */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 90%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(232,146,47,0.12) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(40px);
}

/* Hero stat bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: rgba(11,26,46,0.6);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--amber);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}


/* ============================================================
   SERVICES SECTION (Home page & Services page)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.service-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,146,47,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 1.8;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--gray-dark);
  line-height: 1.7;
}


/* ============================================================
   WHY CHOOSE US / FEATURES
   ============================================================ */
.why-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,146,47,0.06), transparent 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.why-card {
  padding: var(--space-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(232,146,47,0.3);
}

.why-card-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: rgba(232,146,47,0.2);
  margin-bottom: 0.5rem;
}

.why-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--amber-dark), var(--amber), var(--amber-light));
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
}

.cta-content p {
  color: var(--navy);
  opacity: 0.8;
  max-width: 480px;
}

/* Photo-backed CTA variant */
.cta-photo {
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  position: relative;
}

.cta-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,26,46,0.88), rgba(11,26,46,0.75));
}

.cta-photo .cta-content {
  position: relative;
  z-index: 2;
}

.cta-photo .cta-content h2 {
  color: var(--white);
}

.cta-photo .cta-content p {
  color: rgba(255,255,255,0.85);
  opacity: 1;
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Page hero (used on About, Services, Contact) */
.page-hero {
  background: var(--navy);
  padding: 10rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(232,146,47,0.07) 0%, transparent 50%);
}

.page-hero .hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 80px 80px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--white);
  position: relative;
}

.page-hero p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: var(--space-sm);
  position: relative;
}

.breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: var(--amber);
  transition: var(--transition);
}

.breadcrumb a:hover { opacity: 0.8; }

/* About content */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
}

.about-text p {
  margin-bottom: var(--space-sm);
  line-height: 1.85;
}

.about-image {
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
}


/* ============================================================
   SERVICES PAGE (DETAILED)
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid #e2e8f0;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-text h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.service-detail-text p {
  line-height: 1.85;
  margin-bottom: var(--space-sm);
}

.service-detail-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-visual svg {
  width: 50%;
  max-width: 140px;
  opacity: 0.15;
}

/* Service tag list */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.service-tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: rgba(232,146,47,0.1);
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 50px;
  font-family: var(--font-heading);
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
}

/* Contact info sidebar */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -30%; right: -20%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,146,47,0.1), transparent 70%);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.contact-info-card > p {
  color: var(--gray);
  font-size: 0.93rem;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  position: relative;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(232,146,47,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
}

.contact-info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-bottom: 0.15rem;
}

.contact-info-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-info-value a {
  color: var(--white);
  transition: var(--transition);
}

.contact-info-value a:hover {
  color: var(--amber);
}

/* Contact form */
.contact-form-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.contact-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.contact-form-card > p {
  color: var(--gray-dark);
  font-size: 0.93rem;
  margin-bottom: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,146,47,0.12);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-submit-btn {
  width: 100%;
  margin-top: var(--space-xs);
}

/* Form success/error messages */
.form-message {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: var(--space-sm);
  display: none;
}

.form-message.success {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,0.2);
  display: block;
}

.form-message.error {
  background: rgba(239,68,68,0.1);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.2);
  display: block;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: var(--gray);
  padding: var(--space-xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  margin-top: var(--space-sm);
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer-links a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--amber);
  padding-left: 0.3rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-size: 0.78rem;
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.19s; }
.stagger > *:nth-child(4) { transition-delay: 0.26s; }
.stagger > *:nth-child(5) { transition-delay: 0.33s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }
.stagger > *:nth-child(7) { transition-delay: 0.47s; }
.stagger > *:nth-child(8) { transition-delay: 0.54s; }


/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links,
  .nav-cta { display: none; }

  .hero-split {
    grid-template-columns: 1fr;
    padding-top: 8rem;
    padding-bottom: 7rem;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero p { margin-left: auto; margin-right: auto; }

  .hero-buttons { justify-content: center; }

  .hero-visual {
    order: 2;
    margin-top: var(--space-md);
  }

  .hero-truck-img {
    max-width: 480px;
  }

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

  .stat-item:nth-child(2) { border-right: none; }

  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-image { order: -1; }

  .service-detail {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .service-detail-visual {
    aspect-ratio: 16/8;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats-inner {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

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