/* Base Styles */
:root {
    --primary: #0066cc;
    --secondary: #004999;
    --accent: #ffb900;
    --light: #f8f9fa;
    --dark: #212529;
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
  }
  
  section {
    padding: 80px 0;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
  }
  
  .btn:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  .btn-accent {
    background-color: var(--accent);
    color: var(--dark);
  }
  
  .btn-accent:hover {
    background-color: #e6a800;
  }
  
  h1, h2, h3, h4 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
  }
  
  p {
    margin-bottom: 20px;
  }

  /* Header Section */
  * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: Arial, sans-serif;
      }

      .header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 20px 50px;
          background-color: white;
          box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      }

      .logo-container {
          display: flex;
          align-items: center;
      }

      .logo {
          height: 60px;
          margin-right: 15px;
      }

      .slogan {
          font-size: 24px;
          font-weight: bold;
          color: #0a192f;
      }

      .nav-menu {
          display: flex;
          list-style: none;
      }

      .nav-menu li {
          margin-left: 30px;
      }

      .nav-menu a {
          text-decoration: none;
          color: #0a192f;
          font-size: 16px;
          font-weight: 500;
          transition: color 0.3s;
      }

      .nav-menu a:hover {
          color: #1e56a0;
      }

      .nav-menu a.active {
          color: #1e56a0;
      }

      .hamburger {
          display: none;
          cursor: pointer;
      }

      .hamburger .bar {
          display: block;
          width: 25px;
          height: 3px;
          margin: 5px auto;
          background-color: #0a192f;
          transition: all 0.3s ease-in-out;
      }

      @media (max-width: 768px) {
          .header {
              padding: 15px 20px;
          }

          .hamburger {
              display: block;
          }

          .hamburger.active .bar:nth-child(2) {
              opacity: 0;
          }

          .hamburger.active .bar:nth-child(1) {
              transform: translateY(8px) rotate(45deg);
          }

          .hamburger.active .bar:nth-child(3) {
              transform: translateY(-8px) rotate(-45deg);
          }

          .nav-menu {
              position: fixed;
              left: -100%;
              top: 100px;
              flex-direction: column;
              background-color: white;
              width: 100%;
              text-align: center;
              transition: 0.3s;
              box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
              z-index: 10;
          }

          .nav-menu.active {
              left: 0;
          }

          .nav-menu li {
              margin: 20px 0;
          }
      }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 80vh; /* Keep height as before */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0;
    color: white;
}

.hero-content {
    max-width: 700px;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.3s;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden; /* Prevents any overflow issues */
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers full section without stretching */
}


.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: -1;
}

  


  /* Services Section */
  .services {
    background-color: var(--light);
  }
  
  .section-title {
    text-align: center;
    position: relative;
    margin-bottom: 60px;
  }
  
  .section-title:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .service-card.animated {
    animation: fadeInUp 0.6s forwards;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary);
  }
  
  /* How It Works Section */
  .how-it-works {
    background-color: white;
  }
  
  .process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .process-steps:after {
    content: "";
    position: absolute;
    height: 4px;
    background-color: var(--primary);
    width: 75%;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  
  .step {
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
  }
  
  .step.animated {
    animation: fadeIn 0.8s forwards;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: bold;
  }
  
  .step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  /* CTA Section */
  .cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1200/600') center/cover no-repeat fixed;
    color: white;
    text-align: center;
  }
  
  .cta h2 {
    font-size: 36px;
  }
  
  .cta-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
  }
  
  .cta-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .process-steps {
      flex-direction: column;
      gap: 40px;
    }
    
    .process-steps:after {
      display: none;
    }
    
    .hero h1 {
      font-size: 40px;
    }
  }
  
  @media (max-width: 768px) {
    section {
      padding: 60px 0;
    }
    
    .hero {
      height: 70vh;
    }
    
    .hero h1 {
      font-size: 32px;
    }
    
    .cta-form {
      flex-direction: column;
    }
  }
  
  @media (max-width: 576px) {
    .hero {
      height: auto;
      min-height: 60vh;
    }
    
    .hero-buttons {
      flex-direction: column;
    }
    
    .btn {
      width: 100%;
      text-align: center;
    }
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Icon Styles (using CSS for icons) */
  .icon {
    display: inline-block;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    position: relative;
  }
  
  .icon-truck:before {
    content: "🚚";
    font-size: 40px;
    line-height: 1;
  }
  
  .icon-box:before {
    content: "📦";
    font-size: 40px;
    line-height: 1;
  }
  
  .icon-house:before {
    content: "🏠";
    font-size: 40px;
    line-height: 1;
  }
  
  .icon-globe:before {
    content: "🌍";
    font-size: 40px;
    line-height: 1;
  }



  /* --------------------------------------------- */

/* About Us Section Styles */
.about-us {
  background-color: white;
  padding: 80px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.services-list {
  margin-bottom: 60px;
}

.service-items {
  list-style: none;
  padding: 0;
}

.service-items li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}

.service-items li:last-child {
  border-bottom: none;
}

.service-icon {
  font-size: 32px;
  margin-right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail {
  flex: 1;
}

.service-detail h4 {
  margin-bottom: 8px;
  color: var(--primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--light);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.feature-card h4 {
  margin-bottom: 10px;
  color: var(--primary);
}

    /* Services Section */
    .services {
    background-color: var(--light);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .service-card.animated {
    animation: fadeInUp 0.6s forwards;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary);
  }
  
  /* Process Section */
  .how-it-works {
    background-color: white;
  }
  
  .process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .process-steps:after {
    content: "";
    position: absolute;
    height: 4px;
    background-color: var(--primary);
    width: 75%;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  
  .step {
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
  }
  
  .step.animated {
    animation: fadeIn 0.8s forwards;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: bold;
  }
  
  .step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Icon Styles */
  .icon {
    display: inline-block;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    position: relative;
  }
  
  .icon-van:before {
    content: "🚐";
    font-size: 40px;
    line-height: 1;
  }
  
  .icon-house:before {
    content: "🏠";
    font-size: 40px;
    line-height: 1;
  }
  
  .icon-office:before {
    content: "🏢";
    font-size: 40px;
    line-height: 1;
  }
  
  .icon-office-desk:before {
    content: "💼";
    font-size: 40px;
    line-height: 1;
  }
  
  .icon-delivery:before {
    content: "⚡";
    font-size: 40px;
    line-height: 1;
  }
  
  .icon-box:before {
    content: "📦";
    font-size: 40px;
    line-height: 1;
  }
  
  .icon-book:before {
    content: "📋";
    font-size: 40px;
    line-height: 1;
  }
  
  .icon-packing:before {
    content: "🧰";
    font-size: 40px;
    line-height: 1;
  }
  
  .icon-truck:before {
    content: "🚚";
    font-size: 40px;
    line-height: 1;
  }
  
  .icon-home:before {
    content: "🏡";
    font-size: 40px;
    line-height: 1;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .process-steps {
      flex-direction: column;
      gap: 40px;
    }
    
    .process-steps:after {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    section {
      padding: 60px 0;
    }
  }

/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-text {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .services-list li {
    flex-direction: column;
    text-align: center;
  }
  
  .service-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* end about us-------------------------------------------- */

/* About Us Section Styling - Consolidated Version */
.about-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
  }
  
  .about-us::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.05); /* Using your --primary variable color */
    z-index: 0;
  }
  
  .about-us::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.05); /* Using your --primary variable color */
    z-index: 0;
  }
  
  .about-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .about-us .section-title {
    position: relative;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-align: center;
  }
  
  .about-us .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.5s ease;
  }
  
  .about-us:hover .section-title::after {
    width: 100px;
  }
  
  .about-subtitle {
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .about-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  .about-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border-left: 5px solid var(--accent);
    width: 100%;
  }
  
  .about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 185, 0, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 12px;
    transition: width 0.6s ease;
    z-index: -1;
  }
  
  .about-card:hover::before {
    width: 100%;
  }
  
  .about-card.animated {
    transform: translateY(0);
    opacity: 1;
  }
  
  .about-card h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  .about-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  .benefits-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    text-align: left;
  }
  
  .benefits-list li {
    font-size: 1.1rem;
    color: #555;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    position: relative;
  }
  
  .benefits-list li:hover {
    transform: translateX(5px);
    color: var(--primary);
  }
  
  .benefit-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .benefits-list li:hover .benefit-icon {
    transform: scale(1.1);
    background-color: #e6a800;
  }
  
  /* Animation keyframes */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* Additional animation classes */
  .animated-fade-in {
    animation: fadeInUp 0.8s forwards;
  }
  
  .animate-pulse {
    animation: pulse 2s infinite;
  }
  
  /* Enhanced animations for scrolling */
  .about-section-reveal .section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  .about-section-reveal .about-subtitle,
  .about-section-reveal .about-description {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
  }
  
  .about-section-reveal.in-view .section-title,
  .about-section-reveal.in-view .about-subtitle,
  .about-section-reveal.in-view .about-description {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .about-subtitle {
      font-size: 1.5rem;
    }
    
    .about-description {
      font-size: 1.1rem;
    }
    
    .benefits-list {
      grid-template-columns: 1fr;
    }
    
    .about-card {
      padding: 20px;
    }
  }

  /* Testimonials Section - Simplified Design */
  .testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    overflow: hidden;
    position: relative;
  }
  
  .testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.05);
    z-index: 0;
  }
  
  .testimonials::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.05);
    z-index: 0;
  }
  
  .section-title {
    text-align: center;
    position: relative;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .section-title:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    transition: width 0.5s ease;
  }
  
  .testimonials:hover .section-title:after {
    width: 100px;
  }
  
  /* New Horizontal Slider Design */
  .testimonial-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  
  .testimonial-container {
    width: 100%;
    overflow: hidden;
  }
  
  .testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .testimonial {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--accent);
    transition: var(--transition);
    height: 100%;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 120px;
    color: rgba(0, 102, 204, 0.1);
    font-family: Georgia, serif;
    line-height: 0.8;
  }
  
  .testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    color: var(--dark);
  }
  
  .customer-info {
    display: flex;
    align-items: center;
    margin-top: auto;
  }
  
  .customer-image {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--primary);
    margin-right: 20px;
    position: relative;
  }
  
  .customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .testimonial-card:hover .customer-image img {
    transform: scale(1.1);
  }
  
  .customer-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: var(--primary);
  }
  
  .customer-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
  }
  
  /* Navigation Arrows */
  .slider-arrows {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .slider-arrow {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    transition: var(--transition);
    border: none;
    font-size: 18px;
  }
  
  .slider-arrow:hover {
    background-color: var(--secondary);
    transform: scale(1.1);
  }
  
  /* Dots */
  .slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
  }
  
  .slider-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
  }
  
  .slider-dot:hover {
    background-color: var(--accent);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .testimonial-card {
      padding: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .testimonials {
      padding: 60px 0;
    }
    
    .testimonial-card {
      padding: 25px;
    }
    
    .testimonial-card p {
      font-size: 1rem;
    }
    
    .customer-image {
      width: 60px;
      height: 60px;
    }
    
    .section-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .testimonial-card {
      padding: 20px;
    }
    
    .testimonial-card:before {
      font-size: 80px;
    }
  }

 /* Enhanced Locations Section Styles */
.locations-section {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.locations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/pattern-bg.png');
  background-size: 200px;
  opacity: 0.05;
  z-index: 0;
}

.locations-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-title {
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

.section-subtitle {
  font-size: 20px;
  color: var(--gray-dark);
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.locations-intro {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
}

/* UK Map Styles */
.uk-map-container {
  position: relative;
  margin: 0 auto 80px;
  width: 100%;
  max-width: 1000px;
  height: 500px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
}

.uk-map {
  flex: 1;
  position: relative;
  padding: 20px;
}

.uk-map-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hotspot-dot {
  display: block;
  width: 14px;
  height: 14px;
  background-color: var(--accent);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(var(--accent-rgb), 0.6);
  animation: pulse 2s infinite;
}

.hotspot-label {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-hotspot:hover .hotspot-label {
  opacity: 1;
}

.map-overlay {
  width: 300px;
  background-color: var(--primary);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-overlay h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.map-overlay p {
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary);
}

/* Tabs Region Content */
.regions-tabs-container {
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.regions-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.region-tab {
  padding: 15px 30px;
  background-color: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.region-tab:hover {
  color: var(--primary);
}

.region-tab.active {
  color: var(--primary);
}

.region-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent);
}

.region-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.region-content.active {
  display: block;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.region-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.region-area {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.region-area:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.region-area h4 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cities-list li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.cities-list a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cities-list a:hover {
  color: var(--primary);
}

/* Popular Routes Styles */
.popular-routes-section {
  padding: 50px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.routes-title {
  text-align: center;
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 15px;
}

.routes-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 40px;
}

.routes-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Enhanced Locations Section Styles */
.locations-section {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.locations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/pattern-bg.png');
  background-size: 200px;
  opacity: 0.05;
  z-index: 0;
}

.locations-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-title {
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

.section-subtitle {
  font-size: 20px;
  color: var(--gray-dark);
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.locations-intro {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
}

/* UK Map Styles */
.uk-map-container {
  position: relative;
  margin: 0 auto 80px;
  width: 100%;
  max-width: 1000px;
  height: 500px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
}

.uk-map {
  flex: 1;
  position: relative;
  padding: 20px;
}

.uk-map-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hotspot-dot {
  display: block;
  width: 14px;
  height: 14px;
  background-color: var(--accent);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(var(--accent-rgb), 0.6);
  animation: pulse 2s infinite;
}

.hotspot-label {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-hotspot:hover .hotspot-label {
  opacity: 1;
}

.map-overlay {
  width: 300px;
  background-color: var(--primary);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-overlay h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.map-overlay p {
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary);
}

/* Tabs Region Content */
.regions-tabs-container {
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.regions-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.region-tab {
  padding: 15px 30px;
  background-color: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.region-tab:hover {
  color: var(--primary);
}

.region-tab.active {
  color: var(--primary);
}

.region-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent);
}

.region-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.region-content.active {
  display: block;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.region-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.region-area {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.region-area:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.region-area h4 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cities-list li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.cities-list a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cities-list a:hover {
  color: var(--primary);
}

/* Popular Routes Styles */
.popular-routes-section {
  padding: 50px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.routes-title {
  text-align: center;
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 15px;
}

.routes-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 40px;
}

.routes-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.response-container {
  margin-top: 20px;
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  text-align: center;
}

.success-message {
  background-color: rgba(76, 175, 80, 0.1);
  border-left: 4px solid #4CAF50;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  animation: fadeIn 0.5s ease-in;
}

.error-message {
  background-color: rgba(244, 67, 54, 0.1);
  border-left: 4px solid #F44336;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  animation: fadeIn 0.5s ease-in;
}

.message-title {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 18px;
}

.message-content {
  margin: 5px 0;
}

.checkmark {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #4CAF50;
  color: white;
  text-align: center;
  line-height: 22px;
  margin-right: 8px;
  font-weight: bold;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

ul a {
  text-decoration: none;
  color: white;
}