*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

:root {
  --navy: #071528;
  --navy2: #0d2040;
  --navy3: #102a52;
  --orange: #F95F1B;
  --orange2: #ff7a3d;
  --white: #ffffff;
  --offwhite: #f4f6f9;
  --gray: #8a9bb5;
  --lightgray: #e8ecf2;
  --text: #2c3e55;
  --success: #10B981;
  --shadow-soft: 0 4px 24px rgba(7,21,40,0.08);
  --shadow-medium: 0 8px 40px rgba(7,21,40,0.15);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --max-width: 1200px;
  --nav-height: 80px;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; }
h1 { font-size: 4rem; font-weight: 800; }
h2 { font-size: 2.75rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin-bottom: 1rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy2); border-color: var(--navy2); transform: translateY(-2px); box-shadow: var(--shadow-medium); }
.btn-accent { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-accent:hover { background: var(--orange2); border-color: var(--orange2); transform: translateY(-2px); box-shadow: var(--shadow-medium); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark .section-label { color: var(--white); }
.section-gray { background: var(--offwhite); }
.section-orange { background: linear-gradient(135deg, var(--orange) 0%, #e04e10 100%); color: var(--white); }
.section-orange h2, .section-orange h3 { color: var(--white); }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title p { max-width: 600px; margin: 0 auto; color: var(--gray); font-size: 1.1rem; }
.section-dark .section-title p { color: rgba(255,255,255,0.7); }

/* ===== NAVBAR ===== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  height: var(--nav-height);
}
#nav.scrolled { background: rgba(7, 21, 40, 0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.nav-container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  padding: 0.5rem 0;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 0.6rem 1.25rem; color: var(--text) !important; font-size: 0.85rem !important; }
.dropdown-menu a:hover { background: var(--offwhite); color: var(--orange) !important; }
.dropdown-menu a::after { display: none; }
.hamburger { display: none; background: none; border: none; font-size: 1.75rem; color: var(--white); cursor: pointer; padding: 0.25rem; line-height: 1; }

/* ===== HERO ===== */
.hero { min-height: 100vh; background: linear-gradient(135deg, #071528 0%, #0d2040 60%, #071528 100%); display: flex; align-items: center; position: relative; overflow: hidden; }

.hero .container { position: relative; z-index: 2; text-align: center; padding-top: var(--nav-height); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
}
.hero h1 { color: var(--white); font-size: 5rem; margin-bottom: 1.5rem; max-width: 850px; margin-left: auto; margin-right: auto; }
.hero p { color: rgba(255,255,255,0.7); font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--orange); display: block; line-height: 1; }
.hero-stat .num-suffix { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--orange); }
.hero-stat .label { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite; }
.scroll-indicator svg { width: 24px; height: 24px; color: rgba(255,255,255,0.3); }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--navy); padding: 8rem 0 4rem; text-align: center; position: relative; }
.page-hero h1 { color: var(--white); font-size: 3.5rem; margin-bottom: 0.5rem; }
.page-hero .breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-family: var(--font-body); }
.page-hero .breadcrumb a { color: var(--orange); }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--lightgray);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(7,21,40,0.1); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.service-card p { color: var(--text); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.25rem; }
.service-card .learn-more { color: var(--orange); font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.25rem; }
.service-card .learn-more:hover { gap: 0.5rem; }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; }
.feature-item .check { color: var(--success); font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.feature-item h4 { font-size: 1rem; margin-bottom: 0.15rem; }
.feature-item p { font-size: 0.9rem; color: var(--gray); margin: 0; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.stat-block { text-align: center; padding: 2rem; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-soft); border: 1px solid var(--lightgray); }
.stat-block .number { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--orange); display: block; line-height: 1; }
.stat-block .num-suffix { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--orange); }
.stat-block .label { font-family: var(--font-head); font-size: 0.9rem; color: var(--text); font-weight: 600; margin-top: 6px; display: block; }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.step { text-align: center; padding: 1.5rem; position: relative; }
.step-number { width: 50px; height: 50px; background: var(--orange); color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; position: relative; z-index: 1; }
.step-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.step h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.step p { font-size: 0.9rem; color: var(--gray); margin: 0; }

/* ===== TESTIMONIALS ===== */
.testi-wrap { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.5s ease; }
.testi-card { flex: 0 0 100%; padding: 2rem 3rem; text-align: center; }
.testi-card .quote { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.9); font-style: italic; max-width: 700px; margin: 0 auto 1.5rem; }
.testi-card .author { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.1rem; }
.testi-card .company { color: var(--orange); font-size: 0.9rem; }
.testi-card .stars { color: #FBBF24; font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-dots { display: flex; justify-content: center; gap: 6px; margin-top: 1.5rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: #e8ecf2; cursor: pointer; border: none; transition: all 0.3s; padding: 0; }
.testi-dot.active { width: 28px; border-radius: 4px; background: var(--orange); }

/* ===== CTA BANNER ===== */
.cta-banner { text-align: center; padding: 4rem 0; }
.cta-banner h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-banner p { opacity: 0.9; font-size: 1.1rem; margin-bottom: 2rem; }

/* ===== PARTNERS MARQUEE ===== */
.marquee-wrap { overflow: hidden; position: relative; width: 100%; }
.marquee-track { display: flex; gap: 40px; animation: marquee 20s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.partner-logo { width: 160px; height: 60px; background: rgba(0,0,0,0.04); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; color: var(--gray); font-size: 1.1rem; flex-shrink: 0; }

/* ===== ABOUT PAGE ===== */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-quote { background: var(--white); border-left: 4px solid var(--orange); padding: 2rem; margin: 2rem 0; font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; color: var(--navy); font-style: italic; border-radius: 0 12px 12px 0; box-shadow: var(--shadow-soft); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { text-align: center; padding: 2.5rem 2rem; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-soft); border: 1px solid var(--lightgray); transition: transform 0.3s ease; }
.value-card:hover { transform: translateY(-5px); }
.value-card .icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.value-card h3 { margin-bottom: 0.75rem; }
.value-card p { font-size: 0.95rem; color: var(--text); margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-card { text-align: center; padding: 2rem; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-soft); border: 1px solid var(--lightgray); transition: transform 0.3s ease; }
.team-card:hover { transform: translateY(-5px); }
.team-card .avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--lightgray); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--gray); }
.team-card h4 { margin-bottom: 0.25rem; }
.team-card .title { color: var(--orange); font-size: 0.85rem; margin-bottom: 0.75rem; font-weight: 500; }
.team-card .social a { color: var(--gray); font-size: 1.25rem; transition: color 0.3s ease; }
.team-card .social a:hover { color: var(--navy); }
.locations-map { max-width: 700px; margin: 0 auto 2rem; }
.locations-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.locations-list li { font-size: 0.9rem; color: var(--text); padding: 0.4rem 0; }
.locations-list li::before { content: '📍'; margin-right: 0.5rem; }

/* ===== SERVICES PAGE ===== */
.service-detail { padding: 4rem 0; border-bottom: 1px solid var(--lightgray); }
.service-detail:last-child { border-bottom: none; }
.service-detail .service-header { text-align: center; margin-bottom: 3rem; }
.service-detail .service-header .icon { font-size: 3.5rem; margin-bottom: 1rem; display: block; }
.service-detail .service-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.service-detail .service-features { list-style: none; }
.service-detail .service-features li { padding: 0.5rem 0; display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; }
.service-detail .service-features li::before { content: '✓'; color: var(--success); font-weight: 700; font-size: 1.1rem; }

.pricing-table { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.pricing-tier { background: var(--white); border-radius: 16px; padding: 2rem; border: 1px solid var(--lightgray); transition: all 0.3s ease; text-align: center; }
.pricing-tier:hover { border-color: var(--orange); box-shadow: var(--shadow-medium); transform: translateY(-3px); }
.pricing-tier.featured { border-color: var(--orange); box-shadow: var(--shadow-medium); position: relative; }
.pricing-tier.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-size: 0.75rem; font-weight: 600; padding: 0.25rem 1rem; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; }
.pricing-tier h4 { margin-bottom: 0.5rem; }
.pricing-tier .price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 1.5rem; }
.pricing-tier .price span { font-size: 0.9rem; font-weight: 400; color: var(--gray); }
.pricing-tier ul { text-align: left; margin-bottom: 1.5rem; }
.pricing-tier ul li { padding: 0.5rem 0; font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.pricing-tier ul li .check { color: var(--success); }
.pricing-tier ul li .cross { color: #EF4444; }

/* ===== TRACKING PAGE ===== */
.tracking-hero { background: var(--navy); padding: 8rem 0 4rem; text-align: center; }
.tracking-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.tracking-hero p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.track-form { display: flex; max-width: 550px; margin: 0 auto; gap: 0; }
.track-form input { flex: 1; padding: 1rem 1.25rem; border: none; border-radius: 8px 0 0 8px; font-family: var(--font-body); font-size: 1rem; outline: none; }
.track-form button { border-radius: 0 8px 8px 0; padding: 1rem 2rem; border: none; }
.tracking-result { padding: 4rem 0; max-width: 700px; margin: 0 auto; }
.tracking-result.hidden { display: none; }

.track-summary { background: var(--white); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-soft); border: 1px solid var(--lightgray); margin-bottom: 2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.track-summary-item { text-align: center; }
.track-summary-item .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); font-weight: 600; }
.track-summary-item .value { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-top: 4px; }

.timeline { max-width: 600px; margin: 0 auto; position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--lightgray); }
.timeline-item { position: relative; padding-bottom: 2rem; padding-left: 1.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item .dot { position: absolute; left: -1.65rem; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--lightgray); display: flex; align-items: center; justify-content: center; font-size: 0.6rem; }
.timeline-item.completed .dot { background: var(--success); color: var(--white); }
.timeline-item.current .dot { background: var(--orange); box-shadow: 0 0 0 4px rgba(249,95,27,0.2); animation: pulse-dot 2s infinite; }
.timeline-item .status { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.15rem; }
.timeline-item .details { font-size: 0.85rem; color: var(--gray); }
.spinner { width: 40px; height: 40px; border: 3px solid var(--lightgray); border-top-color: var(--orange); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 2rem auto; }
.tracking-error { text-align: center; padding: 3rem; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-soft); }
.tracking-error h3 { color: var(--navy); margin-bottom: 0.5rem; }
.tracking-error p { color: var(--gray); }
.tracking-error a { color: var(--orange); }
#notFound, #loader { display: none; }
#notFound.show, #loader.show { display: block; }

/* ===== CONTACT PAGE ===== */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; }
.contact-info-card { text-align: center; padding: 2rem; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-soft); border: 1px solid var(--lightgray); }
.contact-info-card .icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.contact-info-card h4 { margin-bottom: 0.5rem; }
.contact-info-card p { font-size: 0.9rem; color: var(--gray); margin: 0; }
.contact-form-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-form { background: var(--white); padding: 2.5rem; border-radius: 16px; box-shadow: var(--shadow-soft); border: 1px solid var(--lightgray); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; position: relative; }
.form-group label { display: block; font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group label .required { color: #EF4444; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--lightgray); border-radius: 8px; font-family: var(--font-body); font-size: 0.95rem; transition: border-color 0.3s ease; background: var(--white); color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group .validation-icon { position: absolute; right: 12px; top: 38px; font-size: 1rem; display: none; }
.form-group.success .validation-icon { display: block; color: var(--success); }
.form-group.error .validation-icon { display: block; color: #EF4444; }
.form-group .error-text { font-size: 0.8rem; color: #EF4444; margin-top: 0.25rem; display: none; }
.form-group.error input, .form-group.error select, .form-group.error textarea { border-color: #EF4444; }
.form-group.error .error-text { display: block; }
.form-group.success input, .form-group.success select, .form-group.success textarea { border-color: var(--success); }
#successMsg { display: none; text-align: center; padding: 3rem; }
#successMsg.show { display: block; }
#successMsg .icon { font-size: 3rem; color: var(--success); margin-bottom: 1rem; }
#successMsg h3 { margin-bottom: 0.5rem; }
#successMsg p { color: var(--gray); }
.map-placeholder { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft); }
.map-placeholder iframe { width: 100%; height: 400px; border: none; display: block; }

/* ===== 404 PAGE ===== */
.error-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--offwhite); position: relative; overflow: hidden; }
#starCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.error-page .content { position: relative; z-index: 1; }
.error-number { font-family: var(--font-head); font-size: 12rem; font-weight: 800; color: var(--navy); line-height: 1; position: relative; z-index: 1; }
.truck-row { animation: drive-truck 3s ease-in-out infinite; font-size: 60px; display: inline-block; margin: -1rem 0 0.5rem; }
.error-page h2 { font-size: 2rem; margin-bottom: 0.75rem; color: var(--navy); }
.error-page p { color: var(--gray); margin-bottom: 2rem; }
.error-page .btn { margin: 0 0.5rem; }

/* ===== FOOTER ===== */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.footer-col h4 { color: var(--white); margin-bottom: 1.25rem; font-size: 1rem; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; }
.footer-col p, .footer-col a { font-size: 0.9rem; line-height: 1.8; }
.footer-col a { color: rgba(255,255,255,0.6); transition: color 0.3s ease; display: block; }
.footer-col a:hover { color: var(--orange); }
.footer-col .logo { margin-bottom: 1rem; display: inline-block; }
.footer-col .tagline { font-size: 0.9rem; margin-bottom: 1.25rem; color: rgba(255,255,255,0.4); }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.3s ease; }
.social-links a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.newsletter-form { display: flex; margin-top: 1rem; gap: 0; }
.newsletter-form input { flex: 1; padding: 0.6rem 0.75rem; border: none; border-radius: 6px 0 0 6px; font-family: var(--font-body); font-size: 0.85rem; outline: none; }
.newsletter-form button { padding: 0.6rem 1rem; background: var(--orange); color: var(--white); border: none; border-radius: 0 6px 6px 0; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; transition: background 0.3s ease; }
.newsletter-form button:hover { background: var(--orange2); }
.contact-details-footer p { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.85rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 3rem; padding: 1.5rem 0; text-align: center; font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,0.6); transition: color 0.3s ease; display: inline; }
.footer-bottom a:hover { color: var(--orange); }

/* ===== ANIMATIONS ===== */
@keyframes bounce { 0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 4px rgba(249,95,27,0.2); } 50% { box-shadow: 0 0 0 8px rgba(249,95,27,0.1); } }
@keyframes drive-truck { 0%,100% { transform: translateX(-10px); } 50% { transform: translateX(10px); } }

/* ===== FADE-UP SCROLL ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-accent { color: var(--orange); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-table { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .locations-list { grid-template-columns: repeat(3, 1fr); }
  .service-detail .service-content { grid-template-columns: 1fr; }
  .contact-form-wrapper { grid-template-columns: 1fr; }
  .track-summary { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .hero h1 { font-size: 3rem; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .hamburger { display: block; z-index: 1001; }
  .nav-container .btn-accent { display: none; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; box-shadow: none; padding: 0.5rem 0 0 1rem; }
  .dropdown-menu a { color: rgba(255,255,255,0.7) !important; padding: 0.4rem 0; }
  .mobile-cta { display: block !important; margin-top: 1rem; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 300px; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .about-story { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat .num, .hero-stat .num-suffix { font-size: 1.8rem; }
  .page-hero h1 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .locations-list { grid-template-columns: repeat(2, 1fr); }
  .track-form { flex-direction: column; max-width: 100%; }
  .track-form input { border-radius: 8px; margin-bottom: 0.75rem; }
  .track-form button { border-radius: 8px; }
  .error-number { font-size: 6rem; }
  .marquee-track { animation-duration: 15s; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .section { padding: 3rem 0; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .locations-list { grid-template-columns: 1fr; }
  .track-summary { grid-template-columns: 1fr; }
}
