
/*--------------------------FOOTER STYLE--------------------------*/
    .footer-area {
      background: #F3F4F6;
      padding: 60px 0 30px;
    }

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

    .footer-content {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 50px;
    }

    .footer-brand {
      max-width: 400px;
    }

    .brand-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .brand-icon {
      width: 40px;
      height: 40px;
      background: #ff6b6b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      flex-shrink: 0;
    }

    .brand-name {
      font-size: 20px;
      font-weight: 700;
      color: #1a1a1a;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .brand-description {
      color: #555;
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .join-title {
      color: #1a1a1a;
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 15px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #555;
      font-size: 14px;
      text-decoration: none;
    }

    .contact-icon {
      width: 32px;
      height: 32px;
      background: #1a1a1a;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 14px;
      flex-shrink: 0;
    }

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

    .social-icon {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: black;
      font-size: 16px;
      text-decoration: none;
      transition: background 0.3s;
    }

    .social-icon:hover {
      background: #ff6b6b;
    }

    .footer-column h3 {
      font-size: 18px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 20px;
      padding-left: 30px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding-left: -50px;


    }

    .footer-links a {
      color: #555;
      font-size: 14px;
      text-decoration: none;
      transition: color 0.3s;
      align-items: left;
    }

    .footer-links a:hover {
      color: #ff6b6b;
    }

    .footer-bottom {
      border-top: 1px solid #ccc;
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .copyright {
      color: #555;
      font-size: 14px;
    }

    .bottom-links {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    .bottom-links a {
      color: #555;
      font-size: 14px;
      text-decoration: none;
      transition: color 0.3s;
    }

    .bottom-links a:hover {
      color: #ff6b6b;
    }

    @media (max-width: 992px) {
      .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 640px) {
      .footer-content {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .bottom-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-right: 50px;

      }
      .social-icon {
        font-size: 20px;
      }
  
    }

 /*--------------------------HOME-------------------------*/   
  
/*-----what we offer -----*/
.what-offer-area-two .row {
  display: flex;
  flex-wrap: wrap;
}

.what-offer-area-two .col-lg-3,
.what-offer-area-two .col-sm-6 {
  display: flex;
  padding-bottom: 30px;
}

.single-offer {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}


/*- Why Choose Us Home--*/
.why-choose {
  padding: 50px 0;
  background: #fff;
}

/* Section title */
.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

/* Card layout */
.feature-card {
  background: #ffffff;
  border-radius: 15px;
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Hover effect */
.feature-card:hover {
  background: #ff594c;
  color: #fff;
  transform: translateY(-6px);
}

/* Icons */
.feature-card i {


  margin-bottom: 15px;
  color: #ff594c;
  transition: color 0.3s ease;


}

/* Change icon color on hover */
.feature-card:hover i {
  color: #fff;
}

/* Titles */
.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Responsive adjustments */
/* @media (max-width: 992px) {
  .feature-card {
   
  }
}

@media (max-width: 576px) {
  .feature-card {

  }
} */

/*-----------Tracking AREAAA HOME ------------------*/
/* Make map responsive */
#map {
  width: 100%;
  height: 95%;
  min-height: 200px;
  border-radius: 12px;
  
}

.customBtn{
  border-radius: 5%;
  padding:  10px 70px 10px 70px;
  
}
.track-area{
  background-color: #F3F4F6;
}


/* Ensure form and map stack properly on small screens */
@media (max-width: 992px) {
  .hero-section .row {
    display: flex;
    flex-direction: column;
  }

  .hero-section .col-lg-6 {
    width: 100%;
  }

  #map {
    min-height: 300px;
    margin-top: 20px;
  }
  .customBtn{
  border-radius: 10%;
  padding:  10px 30px 10px 30px;
  /* margin-top: 50px; */
}
}

/*-------------------------ABOUT US PAGE--------------------------*/

/*-----CTA-----*/
.CTA {
  background: #ff594c; 
  color: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  margin: 50px 0;

}


.cta-text h6 {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: left;
  color: white;

}

.cta-text h4 {
  font-size: 22px;
  margin: 0;
  font-weight: 600;
  text-align: left;
  color: white;
}

/* Phone icon styling */
.cta-icon i {
  font-size: 40px;
  color: #fff;
  background-color: #1a1a1a;
  padding: 15px;
  border-radius: 10%;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: left;
  }

  .cta-icon {
    margin-top: 15px;
  }
}

.CTA-AboutUs{
    background: #1a1a1a; 
  color: #fff ;
  padding: 40px 20px;
  border-radius: 10px;
  margin: 50px 0;
  text-align: center ;

}
.cta-icon-aboutus{
  color: #fff;
  background-color: #ff594c;
  padding: 15px;
  border-radius: 5%;
}

/*------------FULL WIDTH IMAGE SECTION----------*/
.fullwidth-image {
  position: relative;
  width: 100%;
  height: 500px; 
  background-image: url('../img/cover.png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fullwidth-image .overlay-content h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 15px;
}

.fullwidth-image .overlay-content h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 25px;
}

.fullwidth-image .overlay-content button {
  padding: 12px 30px;
  font-size: 16px;
  background-color: #ff594c;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fullwidth-image .overlay-content button:hover {
  background-color: #e0483f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .fullwidth-image {
    height: 400px;
  }

  .fullwidth-image .overlay-content h1 {
    font-size: 32px;
  }

  .fullwidth-image .overlay-content h3 {
    font-size: 18px;
  }
}

/*------ Coach Hire Network section2----------*/

.trustedchaufffeur {
  padding-top: 50px;
}
.cardsection{
    padding:  50px 4px;

}

/*--------------------------GET A QUOTE PAGE-------------------------*/
  /* FAQ Section */
        .faq-area {
            padding-top: 50px;
            padding-bottom: 30px;
        }
        
        .accordion {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .accordion-item {
            margin-bottom: 15px;
        }
        
        .accordion-title {
            display: flex;
            align-items: center;
            border-radius: 8px;
            text-decoration: none;
            color: #333;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .accordion-title:hover {
            background: #e8e8e8;
                color: #FF594C; 
        }
        
        .accordion-title .number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border-radius: 5px;
            margin-right: 15px;
            font-weight: 600;
            font-size: 16px;
            flex-shrink: 0;
        }
        
        .accordion-title .number.active-number {
            background: #FF594C;
            color: white;
        }
        
        .faq-description {
            padding: 30px;
            border-radius: 8px;
            min-height: 200px;
        }
        
        .faq-description p {
            margin: 0;
        }
        .accordion-title,
      .accordion-item {
        border: none !important; 
        box-shadow: none !important; 
        background: none; 
      }
.number-aboutus {
  background: #ff594c;
  padding: 10px;
  border-radius: 3px;
}
.FAQ-section-title{
  margin-bottom: 10px;
}
.CTA-request{
      background: #1a1a1a; 
  color: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  margin-top: 100px;


}
.cta-request-text h6{
  font-size: 16px;
  margin-bottom: 10px;
  text-align: left;
  color: white;

}
.cta-request-text h4{
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: left;
  color: white;
}

/*--------------------------getQuptes-------------------------*/
.why-choose-us{
  padding: 80px 0;
  background: black;
    color: white;

}
.single-choose-us h6 {
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 50px;
}



/*------------------become a partner------------------*/
.what-offer-area-two .single-offer {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  height: 250px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Keep icon and text centered */
.single-offer .icon {
  font-size: 40px;
  color: #FF594C;
  margin-bottom: 15px;
}

.single-offer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.single-offer p {
  margin-bottom: 0;
  flex-grow: 1;
}


/*--------------------------Fleet page-------------------------*/


.Fleet-section {
  margin-bottom: 70px;
}



.Fleet-card .intro {
  margin-bottom: 15px;
  font-weight: 500;
}

.Fleet-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.Fleet-card ul li {
  position: relative;
  /* padding-left: 30px; */
  margin-bottom: 12px;
  line-height: 1.7;
}




@media (max-width: 991px) {
  .Fleet-card {
    margin-bottom: 30px;
  }
  .Fleet-section {
    text-align: center;
  }
  .Fleet-card ul li {
    padding-left: 0;
  }
  .Fleet-card ul li::before {
    position: static;
    margin-right: 8px;
  }
}
  .icon-number {

    background-color: #FF594C; 
    color: #fff;
    font-weight: bold;
    border-radius: 10%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
  }

  /*----------------------------Private Coach Hire page --------------------------->*/
  .Nationwide-area {
      background: #F3F4F6;
  }
#nationwide-img {
  border-radius: 20px;
  padding: 10px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  overflow: hidden;
  margin-top: 30px;
}

/*-------------------------------------------OUR SERViCES PAGE----------------------------------*/
.image-card {
  position: relative;
  display: inline-block;
  width: 100%;
  
}

.cover-image {
  width: 100%;
  height: 600px;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff; 
    z-index: 2; 

  padding: 0 20px;
}

.overlay-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
    color: #ffffff; 

}

.overlay-text h3 {
  font-size: 1.5rem;
    color: #ffffff; 

}
/* Responsive adjustments */
@media (max-width: 768px) {
  .fullwidth-image {
    height: 700px;
  }

 .overlay-text h1 {
    font-size: 20px;
  }

  .overlay-text h3 {
    font-size: 15px;
  }
}


/*--cards--*/
.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 40px;
  color: #FF594C;
  margin-bottom: 15px;
  
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}


/*--------------------------WHAT WE OFFER AREA TWO--------------------------*/


    .benefit-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #FF594C;
            color: white;
            border-radius: 6px;
            font-weight: 600;
            font-size: 18px;
            /* flex-shrink: 0; */
            /* margin-right: 20px; */
        }

      
        /*--------------------------EVENY -TRansport ------------------------*/
        .event-image img{
  border-radius: 10px;
  width: 100%;
  height: 300px;
        }

        /*--------------------------privacy--------------------------*/
        .privacy-policy .single-privacy p {
          text-align: justify;
        }

          @media (max-width: 768px) {
    .btn-quote {
      display: none !important;
    }
  }

  /*--------------------------Fix mobile dropdown--------------------------*/
   /* Meanmenu mobile dropdown styles */
.mean-nav .dropdown-menu {
    background: #f5f5f5 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    position: static !important;
    width: 100% !important;
    display: none !important;
}

.mean-nav .dropdown-menu[style*="display: block"] {
    display: block !important;
}

.mean-nav .dropdown-menu .nav-item {
    width: 100%;
    border-top: 1px solid #dbeefd;
}

.mean-nav .dropdown-menu .nav-link {
    color: #000000 !important;
    padding: 1em 10% !important;
    display: block;
    width: 100%;
}

.mean-nav .dropdown-menu .nav-link:hover {
    background: rgba(255, 45, 85, 0.1) !important;
    color: #ff594c!important;
}   

      .mobile-nav nav .navbar-nav .nav-item a i,
.mean-nav ul li a i {
    display: inline-block !important;
    margin-right: 8px;
}

.mean-nav ul li a i.bx-chevron-down,
.mobile-nav nav .navbar-nav .nav-item a i.bx-chevron-down {
    display: none !important;
}