/* 
=============================================
SWIFT HAUL - Professional Transportation Services
MAIN STYLESHEET
=============================================


/* =============================================
   BASIC RESET & GLOBAL STYLES
============================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Inter', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1a1a1a;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #666;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   COLOR VARIABLES & THEME
============================================= */
:root {
  --primary: #4b8ef1;
  --primary-dark: #3a7bc8;
  --primary-light: #6ba3f5;
  --secondary: #6366f1;
  --accent: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --success: #10b981;
  --dark: #1a1a1a;
  --dark-gray: #2a2a2a;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-hero: linear-gradient(135deg, rgba(75, 142, 241, 0.9) 0%, rgba(99, 102, 241, 0.9) 100%);
}


.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  height: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.3s ease;
}
/*navigation bar*/
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  height: 80px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.logo h1 {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

/* MAIN NAVIGATION MENU  */
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 5px;
}

.primary-nav ul li {
  padding: 0 5px;
}

.primary-nav ul li a {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: var(--dark-gray);
  text-transform: capitalize;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.primary-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gradient-primary);
  transition: transform 0.3s ease;
}

.primary-nav ul li a:hover,
.primary-nav ul li a.active {
  color: var(--primary) !important;
  background: rgba(75, 142, 241, 0.05);
}

.primary-nav ul li a:hover::after,
.primary-nav ul li a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* RIGHT SIDE OF NAVBAR (Utility icons) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.utility-link {
  color: var(--dark-gray);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.utility-link:hover {
  color: var(--primary);
  background: rgba(75, 142, 241, 0.05);
}

.auth-buttons {
  display: flex;
  gap: 12px;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BUTTON STYLES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white) !important;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  color: var(--dark-gray);
  font-size: 24px;
  padding: 8px;
}

/* =============================================
   HERO SECTION (Main banner on homepage)
============================================= */
.hero {
  background: var(--gradient-hero), url('img/forklift-loading.webp') no-repeat center center/cover;
  padding: 160px 20px 120px;
  margin-top: 80px;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.feature-item i {
  color: #fff;
  font-size: 20px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   TAGLINE SECTION (Second section on homepage)
============================================= */
.tagline {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  padding: 100px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.tagline::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.tagline-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tagline h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
}

.tagline p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/* =============================================
   ABOUT SECTION
============================================= */
.about {
  padding: 100px 20px;
  background: var(--white);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--dark);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about p {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--gray);
  line-height: 1.9;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   SERVICES SECTION
============================================= */
.services-preview {
  padding: 100px 20px;
  background: var(--light-gray);
  text-align: center;
}

.services-preview h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--dark);
  margin-bottom: 60px;
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 50px 35px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 0;
}

.service-card:hover::before {
  left: 0;
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card i {
  font-size: 3.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.service-card p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card .btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
}

/* =============================================
   WHY CHOOSE US / FEATURES SECTION
============================================= */
.why-choose-us {
  padding: 100px 20px;
  background: var(--white);
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-us h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--dark);
  margin-bottom: 60px;
  font-weight: 800;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature {
  padding: 40px 30px;
  text-align: center;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature:hover {
  background: var(--light-gray);
  transform: translateY(-5px);
}

.feature i {
  font-size: 3.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.feature:hover i {
  transform: scale(1.1);
}

.feature h4 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.feature p {
  color: var(--gray);
  line-height: 1.7;
}

/* =============================================
   CALL TO ACTION SECTION
============================================= */
.cta-section {
  padding: 100px 20px;
  background: var(--gradient-primary);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: var(--primary);
}

/* =============================================
   CONTACT INFO SECTION
============================================= */
.contact-info {
  padding: 100px 20px;
  background: var(--light-gray);
  text-align: center;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 800;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 60px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-method {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.contact-method .contact-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.contact-method:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-method h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-method p {
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 24px;
  color: var(--primary-light);
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   GALLERY PAGE 
============================================= */
.gallery-hero {
  background: var(--gradient-hero), url('img/forklift-loading.webp') no-repeat center center/cover;
  padding: 160px 20px 100px;
  margin-top: 80px;
  text-align: center;
  color: white;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.gallery-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto;
}

.gallery-section {
  padding: 100px 20px;
  background: var(--white);
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-container h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--dark);
  margin-bottom: 50px;
  text-align: center;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--white);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 700;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  font-size: 14px;
}

.gallery-overlay .btn {
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 10px 20px;
  font-size: 14px;
}

.gallery-overlay .btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* =============================================
   FLOATING CONTACT ICONS (WhatsApp, Phone, Email)
============================================= */
.contact-float {
  position: fixed;
  bottom: 30px;  
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.contact-icon.whatsapp {
  background: #25d366;
}

.contact-icon.phone {
  background: var(--primary);
}

.contact-icon.email {
  background: var(--secondary);
}

.contact-icon:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}



/* =============================================
   BOOKING FORM STYLES
============================================= */
.booking-hero {
  padding: 160px 20px 100px;
  margin-top: 80px;
  text-align: center;
  color: white;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.booking-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto;
}

.booking-form-section {
  padding: 100px 20px;
  background: var(--light-gray);
}

.booking-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
}

.booking-form-container h2 {
  font-size: 2.25rem;
  color: var(--dark);
  margin-bottom: 40px;
  text-align: center;
  font-weight: 800;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(75, 142, 241, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}



.bookings-section {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.bookings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.bookings-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
}

.bookings-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}

.bookings-table th,
.bookings-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.bookings-table th {
  background: var(--light-gray);
  font-weight: 700;
  color: var(--dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bookings-table td {
  color: var(--gray);
  font-size: 14px;
}

.bookings-table tr:hover {
  background: var(--light-gray);
}

.status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-confirmed {
  background: #d1fae5;
  color: #065f46;
}

.status-completed {
  background: #dbeafe;
  color: #1e40af;
}

.status-cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.status-in-transit {
  background: #dbeafe;
  color: #1e40af;
}

.status-pickup-confirmed {
  background: #fef3c7;
  color: #92400e;
}

.action-buttons {
  display: flex;
  gap: 8px;
}

.action-btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-edit {
  background: var(--primary);
  color: white;
}

.btn-edit:hover {
  background: var(--primary-dark);
}

.btn-delete {
  background: var(--danger);
  color: white;
}

.btn-delete:hover {
  background: #dc2626;
}

.btn-view {
  background: var(--success);
  color: white;
}

.btn-view:hover {
  background: #059669;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
}

.close-modal {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--dark);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}

.empty-state i {
  font-size: 4rem;
  color: var(--gray);
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark);
}

/* =============================================
   RESPONSIVE DESIGN FOR MOBILE DEVICES
============================================= */
@media (max-width: 992px) {
  .nav-left {
    gap: 30px;
  }
  
  .primary-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }
  
  .nav-right {
    display: none;
  }
  
  .hero {
    padding: 120px 15px 80px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .booking-form-container {
    padding: 40px 30px;
  }
  
  .bookings-table {
    font-size: 12px;
  }
  
  .bookings-table th,
  .bookings-table td {
    padding: 10px;
  }
  
  .action-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 22px;
  }
  
  .auth-card {
    padding: 40px 30px;
  }
  
  .booking-form-container {
    padding: 30px 20px;
  }
  
  .dashboard-header h1 {
    font-size: 2rem;
  }
  
  .bookings-section {
    padding: 20px;
  }
}

