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

:root {
  /* Primary colors extracted from logo.jpg */
  --navy: #003d6b;
  --navy-light: #004878;
  --navy-mid: #0060a8;
  --orange: #d84818;
  --orange-light: #f07818;
  --orange-glow: rgba(216, 72, 24, 0.15);
  --blue: #0060a8;
  --blue-light: #4878a8;
  --blue-glow: rgba(0, 96, 168, 0.12);
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(216, 72, 24, 0.15);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  cursor: default;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo {
  animation: truckDrive 1.4s ease-in-out infinite;
}

.preloader-truck {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 18px rgba(216, 72, 24, 0.5));
}

@keyframes truckDrive {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-8px) translateX(4px); }
  50% { transform: translateY(0) translateX(8px); }
  75% { transform: translateY(-6px) translateX(4px); }
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-progress {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 3px;
  animation: preloaderFill 1.5s ease forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== MOBILE MENU OVERLAY ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== CUSTOM CURSOR (desktop only) ===== */
.cursor-dot,
.cursor-ring {
  display: none;
}

@media (pointer: fine) {
  .cursor-dot {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.1s;
    transform: translate(-50%, -50%);
  }

  .cursor-ring {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(216, 72, 24, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
  }

  .cursor-ring.hover {
    width: 56px;
    height: 56px;
    border-color: rgba(216, 72, 24, 0.6);
    background: rgba(216, 72, 24, 0.05);
  }
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--orange-light), #ffd43b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: 120px 0;
  position: relative;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  background: var(--orange-glow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-label-light {
  background: rgba(216, 72, 24, 0.2);
  color: var(--orange-light);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.why-us .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-top: 16px;
  line-height: 1.75;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  transition: all var(--transition-base);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  transition: opacity var(--transition-base);
}

.logo:hover {
  opacity: 0.85;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-spring);
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

.footer-logo-img {
  height: 52px;
  filter: brightness(1.15);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-600);
}

.nav-links a:hover {
  color: var(--orange);
  background: var(--orange-glow);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--orange);
  background: var(--orange-glow);
}

.nav-links a.active {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  transition: all var(--transition-fast) !important;
  box-shadow: 0 4px 15px rgba(216, 72, 24, 0.3);
}

.nav-cta:hover {
  background: #c03818 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(216, 72, 24, 0.4) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.navbar.scrolled .nav-toggle span {
  background: var(--navy);
}

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

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(216, 72, 24, 0.2), transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(240, 140, 0, 0.12), transparent 70%);
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
  animation: orbFloat 12s ease-in-out infinite 2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 100px;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}

.hero-line {
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.8;
}

.hero-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.hero-text strong {
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--orange);
  border-radius: 3px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #c03818);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(216, 72, 24, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(216, 72, 24, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== MARQUEE BANNER ===== */
.marquee-banner {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-right: 0;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about {
  background: var(--gray-50);
}

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

.about-highlight-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.about-quote-mark {
  font-size: 4rem;
  color: var(--orange);
  line-height: 1;
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: -12px;
}

.about-highlight-card p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.85;
}

.about-strengths h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.strengths-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.strengths-list li:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.strength-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-glow);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.strengths-list li:hover .strength-icon {
  background: var(--orange);
  box-shadow: 0 4px 15px rgba(216, 72, 24, 0.3);
}

.strengths-list li:hover .strength-icon svg {
  stroke: white;
}

.strengths-list li strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.strengths-list li p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

/* ===== SERVICES ===== */
.services {
  background: var(--white);
}

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

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all var(--transition-slow);
  overflow: hidden;
}

.service-card-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.service-card:hover .service-card-glow {
  opacity: 1;
}

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

.service-card.featured {
  border: 2px solid var(--orange);
  background: linear-gradient(180deg, rgba(216, 72, 24, 0.02), var(--white));
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
}

.service-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 8px;
  transition: color var(--transition-base);
}

.service-card:hover .service-number {
  color: var(--orange-glow);
}

.service-card.featured .service-number {
  color: rgba(216, 72, 24, 0.08);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-glow);
  border-radius: var(--radius-lg);
  color: var(--orange);
  margin-bottom: 20px;
  transition: all var(--transition-spring);
}

.service-card:hover .service-icon-wrap {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 8px 25px rgba(216, 72, 24, 0.3);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.service-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.service-card > p {
  color: var(--gray-500);
  font-size: 0.93rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card ul {
  margin-bottom: 20px;
}

.service-card ul li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 10px;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.6;
}

.service-footer {
  font-size: 0.88rem;
  color: var(--gray-400);
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
  margin-top: 8px;
  font-style: italic;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  background: var(--orange-glow);
  color: var(--orange);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition-fast);
}

.tag:hover {
  background: var(--orange);
  color: var(--white);
}

/* ===== STATS ===== */
.stats {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(216, 72, 24, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: inline;
  letter-spacing: -1px;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  display: inline;
  margin-left: 2px;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(216, 72, 24, 0.1), transparent 60%);
  border-radius: 50%;
  animation: orbFloat 12s ease-in-out infinite;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-card {
  text-align: center;
  padding: 36px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216, 72, 24, 0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  border-color: rgba(216, 72, 24, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 72, 24, 0.1);
  border-radius: var(--radius-md);
  margin: 0 auto 18px;
  color: var(--orange);
  transition: all var(--transition-spring);
}

.why-card:hover .why-icon-wrap {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-glow);
}

.why-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
  position: relative;
}

.why-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--gray-50);
}

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

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.contact-item:hover .contact-icon {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 4px 15px rgba(216, 72, 24, 0.3);
  transform: scale(1.05);
}

.contact-item:hover .contact-icon svg {
  stroke: white;
}

.contact-item p { color: var(--gray-600); font-size: 0.95rem; }

.contact-item a {
  color: var(--orange);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.contact-item a:hover { color: #c03818; }

.contact-cta {
  margin-top: 32px;
  color: var(--gray-400);
  font-size: 0.92rem;
  line-height: 1.7;
}

.contact-map-decor {
  margin-top: 32px;
  opacity: 0.5;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--gray-800);
  transition: all var(--transition-fast);
  background: var(--gray-50);
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-glow);
  background: var(--white);
}

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

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  color: var(--navy);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(216, 72, 24, 0.3);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal.stagger-1 { transition-delay: 0.1s; }
.reveal.stagger-2 { transition-delay: 0.2s; }
.reveal.stagger-3 { transition-delay: 0.3s; }
.reveal.stagger-4 { transition-delay: 0.4s; }
.reveal.stagger-5 { transition-delay: 0.5s; }

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== MAGNETIC HOVER (for cards) ===== */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

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

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

  .stat-card:nth-child(2)::after {
    display: none;
  }

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

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

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

  .section-title {
    font-size: 1.85rem;
  }

  .hero h1 {
    font-size: 2.25rem;
    letter-spacing: -1px;
  }

  .hero-content {
    padding: 110px 20px 60px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .scroll-indicator {
    display: none;
  }

  .marquee-banner {
    padding: 12px 0;
  }

  .marquee-track span {
    font-size: 0.8rem;
  }

  .stats {
    padding: 48px 0;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-suffix {
    font-size: 1.5rem;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .contact-map-decor {
    display: none;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    padding: 90px 24px 32px;
    gap: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    align-items: stretch;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--gray-700) !important;
    padding: 14px 16px !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    border-radius: var(--radius-sm) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--orange-glow) !important;
    color: var(--orange) !important;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center !important;
    border-bottom: none !important;
    color: var(--white) !important;
  }

  .nav-cta:hover {
    color: var(--white) !important;
    background: #c03818 !important;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-label {
    font-size: 0.7rem;
    padding: 5px 12px;
    letter-spacing: 1.5px;
  }

  .hero h1 {
    font-size: 1.85rem;
    letter-spacing: -0.5px;
  }

  .hero-content {
    padding: 100px 16px 48px;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-text {
    font-size: 0.88rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    font-size: 0.92rem;
  }

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

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

  .stat-number {
    font-size: 2rem;
  }

  .stat-suffix {
    font-size: 1.25rem;
  }

  .stat-card p {
    font-size: 0.75rem;
  }

  .contact-form {
    padding: 20px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .footer-top {
    gap: 24px;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }

  .nav-container {
    height: 64px;
  }

  .logo-img {
    height: 36px;
  }
}