/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Updated color palette to black, white, gray, and red only - removed all blue colors */
:root {
  --primary-color: #000000;
  --secondary-color: #dc2626;
  --black: #000000;
  --dark-gray: #1e1e1e;
  --medium-gray: #757575;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --border-gray: #e0e0e0;
  --card-bg: #ffffff;
  --success: #28a745;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-logo {
  width: 115px;
  padding: 5px;

}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo now pure black instead of blue gradient */
.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
}


.nav-list {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-list a {
  color: var(--dark-gray);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  font-size: 0.95rem;
  border-radius: 50%;

}

.nav-call a {
  width: 40px;
  height: 40px;
  background-color: #383635;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-call a:hover {
  background-color: #dc2626;
  transform: scale(1.05);
}

/* Navigation underline changed from blue gradient to solid black */
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

/* Navigation hover color changed to black */
.nav-list a:hover,
.nav-list a.active {
  color: var(--black);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-gray);
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(135deg, rgba(30, 30, 30, 0.85) 0%, rgba(45, 45, 45, 0.85) 50%, rgba(58, 58, 58, 0.85) 100%),
    url("images/maintruck.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 50%, #3a3a3a 100%); */
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 var(--spacing-sm);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.45;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* Primary button now black background with white text, red on hover */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Section Styles */
section {
  padding: var(--spacing-xl) 0;
}

/* All section titles now pure black */
.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -1px;
  line-height: 1.2;
}

.steps-dispatch {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-top: 50px;
}

.what-we-move {
  background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.equipment-card {
  background: var(--card-bg);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 5px dotted #d50e0e;
  box-shadow: rgba(255, 0, 0, 0.4) 5px 5px, rgba(255, 0, 0, 0.3) 10px 10px, rgba(255, 0, 0, 0.2) 15px 15px, rgba(0, 0, 0, 0.1) 20px 20px, rgba(0, 0, 0, 0.05) 25px 25px;

  position: relative;
}

.equipment-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--black);
}

.equipment-icon {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-sm);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Equipment card headings now pure black instead of blue gradient */
.equipment-card h3 {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: var(--spacing-xs);
  font-weight: 700;
}

.equipment-card p {
  color: var(--medium-gray);
  font-size: 1rem;
}

/* Why choose us section - removed blue gradient background, using dark gray */
.why-choose-us {
  background: #f3f3f3;
  color: var(--white);
  position: relative;
  margin-top: 150px;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.feature-card {
  background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--white);
  box-shadow: rgba(255, 0, 0, 0.35) 0px 5px 15px, rgba(0, 0, 0, 0.25) 0px 5px 15px;


}

.feature-card:hover {
  background: linear-gradient(135deg, #1e1e1e, #131212);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.feature-card h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* Page header updated - removed blue gradient, using dark gray gradient */
.page-header {
  position: relative;
  color: var(--white);
  padding: var(--spacing-xl) 0;
  text-align: center;
  overflow: hidden;

  background-image:
    linear-gradient(135deg, rgba(30, 30, 30, 0.85), rgba(45, 45, 45, 0.85)),
    url("images/bread.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: var(--spacing-xs);
  position: relative;
  letter-spacing: -1px;
}

.page-header p {
  font-size: 1.35rem;
  opacity: 0.9;
  position: relative;
  font-weight: 300;
}

/* About Page Styles */
.about-content {
  padding-top: 80px;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  align-items: center;
}

.about-text h2 {
  font-size: 2.25rem;
  color: var(--black);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.5px;
}

.about-text p {
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
}

.about-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.mission-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.mission-card {
  background: var(--card-bg);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  box-shadow: rgba(255, 0, 0, 0.35) 0px 5px 15px, rgba(0, 0, 0, 0.25) 0px 5px 15px;
}

.mission-card:hover {
  border-color: var(--black);
}

/* Mission card headings now pure black instead of blue gradient */
.mission-card h3 {
  font-size: 1.75rem;
  color: var(--black);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.mission-card ul {
  list-style: none;
}

.mission-card li {
  margin-bottom: var(--spacing-xs);
  padding-left: var(--spacing-md);
  position: relative;
}

/* Checkmarks now black instead of blue */
.mission-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--black);
  font-weight: bold;
}

.why-drivers-choose {
  margin-bottom: var(--spacing-xl);
  padding-top: 60px;
  margin-top: 90px;
  background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 50%, #3a3a3a 100%);
}

.why-drivers-choose h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.5px;
}

.reasons-grid {
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.reason-item {
  padding: var(--spacing-lg);
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: rgba(255, 0, 0, 0.35) 0px 5px 15px, rgba(0, 0, 0, 0.25) 0px 5px 15px;

  border-left: 9px solid #c11933;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reason-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

/* Reason item heading changed from blue to black */
.reason-item h4 {
  color: var(--black);
  margin-bottom: var(--spacing-xs);
  font-size: 1.25rem;
  font-weight: 600;
}

/* CTA section updated - removed blue gradient */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
  color: var(--white);
  padding: 30px 0px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  box-shadow: rgba(255, 0, 0, 0.35) 0px 5px 15px, rgba(0, 0, 0, 0.25) 0px 5px 15px;
  overflow: hidden;
}

.cta-section h2 {
  margin-bottom: var(--spacing-sm);
  position: relative;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 1.35rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  font-weight: 300;
}

.cta-section .btn {
  position: relative;
}

/* Services Page Styles */
.services-section {
  padding: var(--spacing-xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
}

.service-card {
  background: var(--card-bg);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: rgba(255, 0, 0, 0.35) 0px 5px 15px, rgba(0, 0, 0, 0.25) 0px 5px 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-12px) rotate(1deg);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Service card headings now pure black instead of blue gradient */
.service-card h3 {
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.pricing-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: var(--spacing-xl) 0;
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.5px;
}

.pricing-info {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.pricing-info p {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.pricing-features {
  background: var(--card-bg);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  text-align: left;
  box-shadow: var(--shadow-md);
}

.pricing-features li {
  padding: var(--spacing-xs) 0;
  font-size: 1.1rem;
  position: relative;
  padding-left: var(--spacing-md);
}

/* Pricing checkmarks now black instead of blue */
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--black);
  font-weight: bold;
}

/* Contact Page Styles */
.contact-section {
  padding: var(--spacing-xl) 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-xl);
}

.contact-form-container h2,
.contact-info-container h2 {
  font-size: 2rem;
  color: var(--black);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.5px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

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

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
  font-size: 0.95rem;
}

/* Form inputs focus color changed from blue to black */
.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

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

.contact-form button {
  margin-top: var(--spacing-sm);
}

.contact-info-container {
  background: linear-gradient(135deg, var(--light-gray), #ffffff);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: rgba(255, 0, 0, 0.35) 0px 5px 15px, rgba(0, 0, 0, 0.25) 0px 5px 15px;

}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info-item {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.contact-info-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.contact-info-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

/* Contact info headings changed from blue to black */
.contact-info-item h3 {
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-info-item p {
  margin: 0.25rem 0;
}

/* Contact links changed from blue to black */
.contact-info-item a {
  color: var(--black);
  font-weight: 500;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.info-note {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.contact-social {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 2px solid var(--border-gray);
}

.contact-social h3 {
  margin-bottom: var(--spacing-sm);
}

/* Legal Pages Styles */


.legal-text {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: rgba(255, 0, 0, 0.35) 0px 5px 15px, rgba(0, 0, 0, 0.25) 0px 5px 15px;

}

/* Legal text headings now pure black instead of blue gradient */
.legal-text h2 {
  font-size: 2rem;
  color: var(--black);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.legal-text h3 {
  font-size: 1.35rem;
  color: var(--black);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.legal-text p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
  color: var(--dark-gray);
}

.legal-text ul {
  list-style: disc;
  margin-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.legal-text ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.footer {
  background: #020617;
  color: #e5e7eb;
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 0.6rem;

}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.6rem;
}

.footer-section i {
  margin-right: 12px;
}

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-section ul li a:hover {
  color: var(--white);
}

.footer-tagline {
  margin-top: 1rem;
  max-width: 260px;
  font-size: 0.95rem;
  color: #94a3b8;
}

.footer-support {
  margin-top: 0.8rem;
  font-weight: 600;
  color: #ffffff;
}



.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
  text-align: center;
  font-size: 14px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  margin: 0 6px;
}

.footer-bottom a:hover {
  color: #dc2626;
}

.footer-divider {
  margin: 0 6px;
  opacity: 0.6;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.1);
}


.dispatcher-cta {
  background-image: url("https://supply.ancorathemes.com/wp-content/uploads/2025/09/custom-img-054-copyright.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  margin: 60px 0;
}

.dispatcher-cta-overlay {
  background: rgba(255, 255, 255, 0.85);
  padding: 60px 30px;
}

.dispatcher-cta-content {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.dispatcher-cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.dispatcher-cta-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.dispatcher-cta-phone {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  padding: 13px 42px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}


.cta-phone:hover {
  background: var(--secondary-color);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
}

.faq {
  padding-top: 0px !important;
  background: #ffffff;
}

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.faq-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

.supreme-about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

.supreme-about-hero {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

.supreme-about-image {
  flex: 1;
}

.supreme-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.supreme-about-content {
  flex: 1;
  background: #ffffff;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.supreme-about-tag {
  display: inline-block;
  background: #f2f4f7;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.supreme-about-content h1 {
  font-size: 40px;
  line-height: 1.2;
  color: #1f2937;
  margin-bottom: 20px;
}

.supreme-about-description {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 40px;
}

.supreme-about-features {
  display: flex;
  gap: 30px;
}

.supreme-about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* About feature icon changed from blue to black */
.supreme-about-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}

.supreme-about-feature h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 6px;
}

.supreme-about-feature p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

.process-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin: 60px 0px 110px;
}

.process-step {
  width: 22%;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Step number changed from blue to black */
.step-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 120px);
  background-color: var(--black);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
  margin-top: 40px;
}

/* Icon container changed from blue to black */
.icon-container {
  width: 120px;
  height: 120px;
  background-color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.icon-container i {
  font-size: 40px;
  color: white;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a2b47;
}

.step-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.dotted-line {
  position: absolute;
  top: 60px;
  left: 11%;
  width: 78%;
  border-top: 3px dotted #ccc;
  z-index: 1;
}

.background-text {
  position: absolute;
  bottom: -100px;
  right: 0;
  font-size: 180px;
  font-weight: 800;
  color: rgba(240, 240, 240, 0.8);
  z-index: 0;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.usa-operations.shield {
  background: #f8fafc;
  padding: 50px 0;
}

.shield-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px 40px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.shield-flag {
  font-size: 64px;
}

.shield-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a2b47;
}

.shield-text p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.service-cta {
  position: relative;
  min-height: 420px;
  background-image: url("https://truck.ancorathemes.com/wp-content/uploads/2025/01/image33-copyright.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.service-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 20px;
  color: #ffffff;
}

.service-cta-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  opacity: 0.9;
}

.service-cta-content h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.service-cta-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 32px;
}

/* Service CTA button now black with red hover */
.service-cta-btn {
  display: inline-block;
  background-color: var(--black);
  color: #ffffff;
  padding: 14px 38px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.service-cta-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.about-cta {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 80px 0;
  color: #ffffff;
}

.about-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-cta-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #93c5fd;
  margin-bottom: 14px;
}

.about-cta-inner h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-cta-inner p {
  font-size: 16px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 18px;
}

.about-cta-subtext {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 34px;
}

/* About CTA button changed to black with red hover */
.about-cta-btn {
  display: inline-block;
  background: var(--black);
  color: #ffffff;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.about-cta-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.35);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-call a {
    display: none !important
  }

  .nav-list {
    align-items: flex-start;
  }

  .reasons-grid {
    width: auto;
  }

  .why-choose-us {
    margin-top: 60px;

  }

  .nav {
    display: none;
  }

  .nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border-gray);
  }

  .nav-list a {
    display: block;
    padding: var(--spacing-sm);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .hero {
    min-height: 600px;
  }

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

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

  .about-intro,
  .mission-values {
    grid-template-columns: 1fr;
  }

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

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

  .supreme-about-hero {
    flex-direction: column;
  }

  .supreme-about-features {
    flex-direction: column;
  }

  .supreme-about-content {
    padding: 40px 30px;
  }

  .supreme-about-content h1 {
    font-size: 32px;
  }

  .process-step {
    width: 48%;
    margin-bottom: 80px;
  }

  .dotted-line {
    display: none;
  }

  .background-text {
    font-size: 140px;
    bottom: -80px;
  }

  .shield-card {
    flex-direction: column;
    text-align: center;
  }

  .service-cta {
    min-height: 360px;
  }

  .service-cta-content h2 {
    font-size: 32px;
  }

  .service-cta-content p {
    font-size: 15px;
  }

  .about-cta {
    padding: 60px 0;
  }

  .about-cta-inner h2 {
    font-size: 30px;
  }

  .about-cta-inner p {
    font-size: 15px;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  .cta-phone {
    font-size: 1.3rem;
    padding: 0.7rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .process-container {
    margin: 40px 0 80px;
  }

  .process-step {
    width: 100%;
    margin-bottom: 70px;
  }

  .icon-container {
    width: 100px;
    height: 100px;
  }

  .icon-container i {
    font-size: 34px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 13px;
    padding: 0 10px;
  }

  .step-number {
    transform: translate(-50%, 110px);
    font-size: 13px;
    padding: 6px 14px;
    margin-top: 0px;
  }

  .background-text {
    font-size: 70px;
    bottom: -50px;
    right: 50%;
    transform: translateX(50%);
    letter-spacing: 3px;
  }

  .service-cta-content h2 {
    font-size: 28px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}