@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap');

:root {
  /* Neon Green Color Palette */
  --color-bg: #0a0a0a;
  --color-surface: #141414;
  --color-surface-light: #1f1f1f;
  --color-primary: #D5FF40; /* Neon Green */
  --color-primary-hover: #b2d929;
  --color-text: #FFFFFF;
  --color-text-muted: #C0C2B8;
  
  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  padding: 0 4% !important;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}


.navbar-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 0 4% !important;
  box-sizing: border-box;
}

.navbar {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(213, 255, 64, 0.2);
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: transparent;
  padding: 0.5rem 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.logo-center {
  padding: 0.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}


.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1;
  position: relative;
  z-index: 1; /* Keep above truck */
}

.logo-text span {
  color: var(--color-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background-color: var(--color-primary);
  color: #000 !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  z-index: 1;
}

.btn:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(213, 255, 64, 0.3);
  color: #000 !important;
}

.btn-secondary {
  background: var(--color-text-muted);
  color: #000 !important;
}

.btn-secondary:hover {
  background: #fff;
}

/* Section Divider */
.section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(213, 255, 64, 0.5), transparent);
  margin: 2rem 0;
}

/* Sections */
section {
  padding: 8rem 0;
}

.section-subtitle {
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.85rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 4rem;
  background-color: #050505;
}

.hero-truck-image {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 65%;
  z-index: 1;
  pointer-events: none;
}

.hero-truck-image img {
  width: 100%;
  height: auto;
  mix-blend-mode: lighten;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.6) 100%),
              linear-gradient(to top, rgba(10,10,10,1) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-text-area {
  max-width: 55%;
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
  animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  word-wrap: break-word;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 4rem;
  animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  opacity: 0;
}

.hero-stat h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.hero-stat p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 150px;
  line-height: 1.3;
}

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

@keyframes slideDownFade {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  mix-blend-mode: lighten;
  /* Removed border and shadow to act as a floating PNG */
}

/* Branch Cards Layout */
.branches-layout {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  flex: 1.2;
}

.branches-image-wrapper {
  flex: 0.8;
  position: relative;
}

.branches-image-wrapper img {
  width: 140%;
  max-width: none;
  transform: translateX(-15%);
  mix-blend-mode: screen;
}

.branch-card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 16px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.branch-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 15px 30px rgba(213, 255, 64, 0.1);
}

.branch-city {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
}

.branch-address {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.branch-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 700;
}

/* Creative Footer */
footer {
  background: var(--color-surface);
  padding: 5rem 0 2rem;
  border-radius: 40px 40px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 4rem;
}

.footer-top h2 {
  font-size: 2.5rem;
  max-width: 500px;
  color: #fff;
}

.footer-top h2 span {
  color: var(--color-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--color-text-muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Floating Action Buttons */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  transition: all var(--transition-fast);
  color: #000;
  font-weight: bold;
}

.fab:hover {
  transform: scale(1.1);
}

.fab-whatsapp {
  background-color: #25D366;
  color: #fff;
}

.fab-whatsapp:hover {
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.fab-ai {
  background-color: var(--color-primary);
  width: auto;
  padding: 0 20px;
  border-radius: 30px;
  gap: 10px;
}

.ai-label {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.fab-ai:hover {
  box-shadow: 0 10px 20px rgba(213, 255, 64, 0.4);
}

/* AI Chat Window */
.ai-chat-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  height: 500px;
  background: var(--color-surface);
  border: 1px solid rgba(213, 255, 64, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
  transform-origin: bottom right;
}

.ai-chat-window.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  padding: 1.5rem;
  background: var(--color-surface-light);
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.chat-close {
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 1.2rem;
}
.chat-close:hover { color: var(--color-primary); }

.chat-body {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-msg {
  max-width: 80%;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
}

.msg-ai {
  background: var(--color-surface-light);
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-user {
  background: var(--color-primary);
  color: #000;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-input {
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 0.5rem;
}

.chat-input input {
  flex: 1;
  background: var(--color-surface-light);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.8rem 1rem;
  border-radius: 50px;
  color: #fff;
  font-family: var(--font-body);
}

.chat-input input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.chat-input button {
  background: var(--color-primary);
  color: #000;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform var(--transition-fast);
}
.chat-input button:hover {
  transform: scale(1.1);
}

/* Map Embedded container */
.map-container {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(213, 255, 64, 0.2);
  margin-top: 4rem;
}

/* Utilities & Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form Styles Override for Contact/Tracking */
.form-group input,
.form-group textarea {
  background: var(--color-surface-light) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.1) !important;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary) !important;
}

.tracking-search {
  background: var(--color-surface-light) !important;
}

.tracking-result {
  background: var(--color-surface-light) !important;
}

/* Instagram Feed Mockup */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.insta-post {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition-fast);
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  color: #fff;
  font-weight: bold;
  gap: 1rem;
}

.insta-post:hover img {
  transform: scale(1.1);
}

.insta-post:hover .insta-overlay {
  opacity: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  color: #fff;
  z-index: 1001;
}
.menu-toggle:hover {
  color: var(--color-primary);
}

/* Quick Action Bar */
.quick-action-bar {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(213, 255, 64, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 3rem;
  max-width: 700px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.action-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}
.action-tab {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.5rem 1rem;
  position: relative;
}
.action-tab.active {
  color: var(--color-primary);
}
.action-tab.active::after {
  content: '';
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
}
.action-form {
  display: none;
  gap: 1rem;
}
.action-form.active {
  display: flex;
}
.action-form input {
  flex: 1;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--color-surface);
  color: #fff;
  font-family: var(--font-body);
}
.action-form input:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 16px;
  transition: all var(--transition-normal);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 15px 30px rgba(213, 255, 64, 0.1);
}
.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(213, 255, 64, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.service-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}


/* =========================================
   SCROLL ANIMATIONS & HOVER EFFECTS 
   ========================================= */

/* Base Scroll Animation */
.animate-on-scroll {
  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);
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-150px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(150px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay modifiers for lists/grids */
.animate-on-scroll[style*="transition-delay"] {
  /* JS will apply the visible class, CSS handles the delay set inline */
}

/* Image Hover Animations */
.about-image img, 
.branches-image-wrapper img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.about-image img:hover, 
.branches-image-wrapper img:hover {
  transform: scale(1.03) translateY(-5px);
  filter: drop-shadow(0 15px 30px rgba(213, 255, 64, 0.15));
}

.hero-truck-image img {
  transition: filter 0.6s ease, transform 0.6s ease;
}
.hero-truck-image img:hover {
  filter: drop-shadow(0 0 40px rgba(213, 255, 64, 0.3));
  transform: scale(1.02);
}

/* Text & Headings Hover */
.section-title, .hero-title {
  transition: color 0.4s ease, transform 0.4s ease;
}
.section-title:hover, .hero-title:hover {
  color: var(--color-primary);
  transform: scale(1.01) translateY(-2px);
}

.section-subtitle {
  transition: transform 0.3s ease, letter-spacing 0.3s ease;
}
.section-subtitle:hover {
  letter-spacing: 3px;
  color: #fff;
  transform: translateX(5px);
}

.branch-card p, .service-card p, .about-text p {
  transition: color 0.3s ease;
}
.branch-card:hover p, .service-card:hover p, .about-text:hover p {
  color: #fff;
}

/* Navigation Links Hover Underline Effect */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.btn::after {
  display: none; /* No underline for button */
}

/* Page Headers */
.page-header {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Tracking Page */
.tracking-container {
  max-width: 800px;
  margin: 0 auto;
}

.tracking-search-card,
.tracking-result-card {
  background: var(--color-surface-light);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.search-input-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.search-input-group input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--font-body);
}

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-card {
  background: var(--color-surface-light);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--color-surface-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
}

/* Responsive */
@media (max-width: 1200px) {
  .nav-group {
    padding: 0.5rem 1rem;
    gap: 1rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .logo-center {
    padding: 0.5rem 1rem;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-text-area {
    max-width: 65%;
  }
  .hero-truck-image {
    width: 75%;
    opacity: 0.9;
  }
  .about-grid {
    gap: 2rem;
  }
  .footer-grid {
    gap: 2rem;
  }
  .contact-grid {
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .branches-layout {
    flex-direction: column;
  }
  .branches-image-wrapper img {
    width: 100%;
    transform: none;
  }
  .branches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-stat h3 {
    font-size: 2rem;
  }
  .hero-truck-image {
    width: 85%;
    opacity: 0.7;
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
  }
  .logo-center {
    order: 1;
    padding: 0;
  }
  .menu-toggle {
    display: block;
    order: 2;
    position: static;
  }
  .nav-group {
    display: none;
    order: 3;
    width: 100%;
  }
  .navbar.active {
    background: rgba(20, 20, 20, 0.98);
    padding-bottom: 2rem;
    border-radius: 25px;
  }
  .navbar.active .nav-group {
    display: flex;
    margin-top: 1rem;
    padding: 0;
    animation: slideDownFade 0.4s ease forwards;
  }
  .navbar.active .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .navbar.active .nav-links a {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .navbar.active .nav-links a.btn {
    width: auto;
    display: inline-flex;
    justify-content: center;
    border-bottom: none;
    margin: 1.5rem auto 0;
  }
  .hero-text-area {
    max-width: 100%;
  }
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 10rem;
    padding-bottom: 4rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
  .hero-stats {
    gap: 2rem;
    flex-wrap: wrap;
  }
  .hero-truck-image {
    width: 100%;
    right: -10%;
    opacity: 0.4;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ai-chat-window {
    width: calc(100% - 40px);
    right: 20px;
  }
  .action-form {
    flex-direction: column;
  }
  section {
    padding: 4rem 0;
  }
  
  /* Stacking Contact & Tracking */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .page-header h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .hero-stats {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 1rem;
    width: 100%;
  }
  .hero-stat {
    text-align: center;
    flex: 1;
  }
  .hero-stat h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
  }
  .hero-stat p {
    font-size: 0.75rem;
    line-height: 1.2;
  }
  .hero-truck-image {
    right: 0;
    width: 120%;
    transform: translateX(10%);
    opacity: 0.2;
  }
  .branches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .branch-card {
    padding: 1.2rem;
  }
  .branch-city {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .branch-address {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }
  .branch-phone {
    font-size: 0.85rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-top h2 {
    font-size: 2rem;
  }
  .logo-text {
    font-size: 1.2rem;
  }
  .action-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }
  .action-tab {
    width: 100%;
  }
  .quick-action-bar {
    padding: 1.5rem 1rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  
  /* Mobile Adjustments for Tracking/Contact */
  .page-header {
    padding-top: 8rem;
    padding-bottom: 3rem;
  }
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .tracking-search-card,
  .tracking-result-card,
  .contact-info-card {
    padding: 2rem 1.5rem;
  }
  
  .search-input-group {
    flex-direction: column;
  }
  
  .status-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .timeline {
    padding-left: 1.5rem;
  }

  .fab-container {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  
  .fab {
    width: 50px;
    height: 50px;
  }
  
  .fab-ai {
    padding: 0 15px;
  }
}


