/* Base Styles */
:root {
  --primary-color: #0e7490;
  --secondary-color: #e63946;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --gray-color: #64748b;
  --border-color: #e2e8f0;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  text-align: center;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--gray-color);
}

.cta .section-description {
  color: white;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #d32836;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--primary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #0c637a;
  transform: translateY(-2px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

header.scrolled {
  padding: 10px 0;
  background-color: white;
}

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

.logo a {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark-color);
}

.logo-icon {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  margin-right: 10px;
}

.logo-icon i {
  font-size: 1.2rem;
}

.logo-icon i:first-child {
  margin-right: -8px;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 500;
  color: var(--dark-color);
  position: relative;
}

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

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  height: auto;
  min-height: 800px;
  background-image: url('../images/truck2.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  padding: 120px 0 60px; /* Account for fixed header */
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.quote-form {
  flex: 0 0 400px;
  background-color: white;
  color: black;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin: 0 auto;
}

.quote-form h3 {
  color: var(--dark-color);
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

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

.form-row {
  display: flex;
  gap: 10px;
}

.form-row .form-group {
  flex: 1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9rem;
}

.quote-form textarea {
  height: 100px;
  resize: none;
}

.quote-form button {
  width: 100%;
  margin-top: 10px;
}

/* Ship Anywhere Section */
.ship-anywhere {
  background-color: white;
}

.section-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.text-content {
  flex: 1;
}

.text-content h2 {
  text-align: left;
  color: var(--primary-color);
}

.text-content p {
  margin-bottom: 1rem;
  color: var(--gray-color);
}

.image-content {
  flex: 1;
}

.image-content img {
  border-radius: 8px;
  width: 100%;
}

/* Services Section */
.services {
  background-color: #f1f5f9;
}

.services-slider {
  position: relative;
  margin-top: 50px;
}

.services-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scroll-snap-type: x mandatory;
}

.services-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.service-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 280px;
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  scroll-snap-align: start;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-card p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.read-more:hover::after {
  width: 100%;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.prev-btn,
.next-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Wide Range Section */
.wide-range {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1587556183332-567d72280352?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 120px 0;
}

.wide-range .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

.wide-range h2 {
  color: white;
  margin-bottom: 30px;
}

.play-button {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  cursor: pointer;
  transition: var(--transition);
}

.play-button i {
  font-size: 1.5rem;
}

.play-button:hover {
  transform: scale(1.1);
  background-color: #d32836;
}

.wide-range p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Features Section */
.features {
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature h3 {
  margin-bottom: 15px;
}

.feature p {
  color: var(--gray-color);
}

/* Testimonials Section */
.testimonials {
  background-color: #f1f5f9;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  animation: fadeEffect 0.5s;
}

.testimonial.active {
  display: block;
}

@keyframes fadeEffect {
  from {opacity: 0.7;}
  to {opacity: 1;}
}

.testimonial-content {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  position: relative;
  margin-bottom: 12px;  
}

.testimonial-content::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50px;
  width: 20px;
  height: 20px;
  background-color: white;
  transform: rotate(45deg);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--gray-color);
}

.client-info {
  display: flex;
  flex-direction: column;
}

.client-info h4 {
  margin-bottom: 5px;
  color: var(--dark-color);
}

.client-info p {
  margin: 0;
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e1;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
}

.cta p {
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  color: var(--secondary-color);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info li i {
  margin-right: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}

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

.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
}

.footer-bottom ul li {
  margin-left: 20px;
}

.footer-bottom ul li a {
  opacity: 0.7;
}

.footer-bottom ul li a:hover {
  opacity: 1;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16/9;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* Page Banner */
.page-banner {
  position: relative;
  height: 300px;
  background-image: url('https://images.unsplash.com/photo-1724556271642-e9acaf03ac23?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-top: 110px;
}

.page-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumbs {
  font-size: 1rem;
}

.breadcrumbs a {
  color: var(--secondary-color);
}

.breadcrumbs span {
  opacity: 0.8;
}

/* Blog Styles */
.blog-content {
  background-color: white;
  padding: 80px 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.blog-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.featured-article {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.article-image {
  position: relative;
}

.article-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.category-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

.article-content {
  padding: 30px;
}

.article-content h2 {
  text-align: left;
  margin-bottom: 15px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--gray-color);
  font-size: 0.9rem;
}

.article-meta i {
  margin-right: 5px;
}

.article-content p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.article-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-10px);
}

.article-card .article-image img {
  height: 200px;
}

.article-card .article-content {
  padding: 20px;
}

.article-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.article-card .article-meta {
  margin-bottom: 15px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: white;
  border: 1px solid var(--border-color);
  font-weight: 600;
  transition: var(--transition);
}

.pagination a.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination a:hover:not(.active) {
  background-color: #f1f5f9;
}

.pagination a.next {
  width: auto;
  padding: 0 15px;
}

.pagination a.next i {
  margin-left: 5px;
}

.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-widget {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
  font-size: 1.3rem;
}

.search-form {
  display: flex;
  position: relative;
}

.search-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9rem;
}

.search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-color);
  cursor: pointer;
  transition: var(--transition);
}

.search-form button:hover {
  color: var(--primary-color);
}

.categories-widget ul li {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.categories-widget ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.categories-widget ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.categories-widget ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.categories-widget ul li a span {
  color: var(--gray-color);
  font-size: 0.9rem;
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recent-post {
  display: flex;
  gap: 15px;
}

.post-image {
  flex: 0 0 70px;
}

.post-image img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}

.post-info {
  flex: 1;
}

.post-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.post-info h4 a {
  transition: var(--transition);
}

.post-info h4 a:hover {
  color: var(--primary-color);
}

.post-info .date {
  font-size: 0.8rem;
  color: var(--gray-color);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags a {
  display: inline-block;
  padding: 5px 15px;
  background-color: #f1f5f9;
  border-radius: 30px;
  font-size: 0.8rem;
  transition: var(--transition);
}

.tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.newsletter-widget p {
  margin-bottom: 20px;
  color: var(--gray-color);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9rem;
}

.newsletter-form button {
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .hero-content h1 {
    font-size: 3.2rem;
  }
  
  .service-card {
    flex: 0 0 calc(50% - 20px);
  }
  
  .blog-layout {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .container {
    max-width: 720px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card {
    flex: 0 0 calc(50% - 20px);
    min-width: 250px;
  }
  
  .logo a {
    font-size: 1.2rem;
  }
  
  .logo span {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .blog-layout {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    order: -1;
  }
  
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .container {
    max-width: 540px;
  }
  
  section {
    padding: 60px 0;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero .container {
    justify-content: center;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .quote-form {
    width: 100%;
    max-width: 450px;
  }
  
  .section-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .text-content h2 {
    text-align: center;
  }
  
  .service-card {
    flex: 0 0 calc(100% - 20px);
    min-width: 0;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: white;
    z-index: 1001;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 20px 20px;
    overflow-y: auto;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 0 0 20px;
  }
  
  .mobile-menu-btn {
    display: flex;
    z-index: 1002;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom ul {
    margin-top: 15px;
    justify-content: center;
  }
  
  .footer-bottom ul li {
    margin: 0 10px;
  }
  
  .wide-range {
    background-attachment: scroll;
  }
  
  .wide-range h2 {
    font-size: 1.8rem;
  }
  
  .modal-content {
    width: 90%;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 13px;
  }
  
  .container {
    width: 100%;
    padding: 0 10px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .quote-form {
    padding: 25px 20px;
  }
  
  .quote-form h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
  }
  
  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 1rem;
  }
  
  .quote-form button {
    font-size: 1.1rem;
    padding: 15px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .logo a {
    font-size: 1rem;
  }
  
  .logo span {
    max-width: 150px;
  }
  
  .footer-column h3 {
    font-size: 1.1rem;
  }
  
  .social-icons {
    justify-content: flex-start;
  }
  
  .social-icons a {
    width: 35px;
    height: 35px;
  }
  
  .testimonial-content {
    padding: 20px;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-button i {
    font-size: 1.2rem;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .feature {
    padding: 20px;
  }
  
  .sidebar-widget {
    padding: 20px;
  }
  
  .page-banner h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 375px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .logo span {
    max-width: 120px;
  }
  
  .quote-form {
    padding: 20px 15px;
  }
  
  .quote-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .btn {
    padding: 10px 20px;
  }
  
  .footer-bottom ul li {
    margin: 5px;
  }
  
  .pagination {
    flex-wrap: wrap;
  }
}

/* Fix for iOS background-attachment: fixed issue */
@supports (-webkit-overflow-scrolling: touch) {
  .wide-range {
    background-attachment: scroll;
  }
}

/* Driver Benefits Section */
.driver-benefits {
  padding: 80px 0;
  background-color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.benefit-card h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

.benefit-card ul {
  text-align: left;
  margin-top: 15px;
}

.benefit-card ul li {
  margin-bottom: 10px;
  color: var(--gray-color);
  padding-left: 20px;
  position: relative;
}

.benefit-card ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Driver Requirements Section */
.driver-requirements {
  padding: 80px 0;
  background-color: #f8fafc;
}

.requirements-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.requirements-list {
  flex: 1;
}

.requirements-list h3 {
  margin-bottom: 20px;
  color: var(--dark-color);
}

.requirements-list ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.requirements-list ul li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.requirements-image {
  flex: 1;
}

.requirements-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  width: 100%;
}

/* Driver Application Form */
.driver-application {
  padding: 80px 0;
  background-color: white;
}

.application-form {
  max-width: 800px;
  margin: 50px auto;
  background: white;
  padding: 40px;
  border-radius: 8px;
  /* box-shadow: var(--box-shadow); */
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}

.form-section {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h3 {
  margin-bottom: 20px;
  color: var(--dark-color);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--dark-color);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9rem;
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 5px;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.checkbox-group-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Driver FAQ Section */
.driver-faq {
  padding: 80px 0;
  background-color: #f8fafc;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

.faq-item p {
  color: var(--gray-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .requirements-content {
    flex-direction: column;
  }

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

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .application-form {
    padding: 20px;
  }

  .checkbox-group-horizontal {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}