  .step { display: none; }
  .step.active { display: block; }
  .hidden { display: none; }
  /* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
h2 {
    font-size: 28px;
    letter-spacing: 1px;
    color: #4e255c;
}
h1, h2, h3, h4, h5{
    font-family: "Montserrat", sans-serif;
        font-weight: 700;
            letter-spacing: 1px;
}
body.booking_page {
    display: flex
;
    flex-direction: column;
    align-items: center;
}
i.fa-solid.fa-taxi {
    color: #e32d6d;
}
/* Form Container */
.form_container {
    width: 1200px;
    display: flex;
        gap: 50px;
            margin-top: 90px;
             margin-bottom: 90px;
}
.col_L {
    width: 40%;
        position: relative;
}
.social-icons a i:hover, .contact-info i:hover {
    background-color: #4e255c;
    color: #fff;
}
.col_content {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #eef7f9;
    padding: 40px;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    gap: 20px;
}
.col_R {
    width: 60%;
}
form#bookingForm {
  max-width: 800px;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Step Title */
h3 {
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
}

/* Subheadings */
h4 {
  margin: 20px 0 10px;
  font-size: 18px;
  color: #444;
}
.colfull {
    display: flex;
    column-gap: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
}
.col_img {
    background-size: contain;
    height: 100%;
    background-repeat: no-repeat;
    border-radius: 10px;
}
.col50 {
    width: 50%;
}
.col33 {
    width: 33%;
}
/* Input Fields */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus {
  border-color: #e32d6d;
  outline: none;
}

/* Radio Buttons */
label {
  margin-right: 15px;
  font-size: 16px;
}

input[type="radio"] {
  margin-right: 5px;
}

/* Buttons */
button {
  background-color: #e32e6d;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;

  margin-right: 10px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #4e255c;
  color: #fff;
}

/* Step Navigation */
.step {
  display: none;
}
.step-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 10px;
}

.step-tab {
  padding: 10px 20px;
  background-color: #f1f1f1;
  color: #333;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.step-tab.active {
  background-color: #e32e6d;
  border-color: #e32e6d;
  color: #fff;
}

.step.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}
.vehicle-options {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.vehicle-option {
display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #ccc;
    padding: 0px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 120px;
}

.vehicle-option input[type="radio"] {
  display: none;
}

.vehicle-option img {
    width: 120px;
    height: auto;
    margin-bottom: 8px;
    padding: 20px;
}

.vehicle-option span {
  font-weight: bold;
}

.vehicle-option input[type="radio"]:checked + img,
.vehicle-option input[type="radio"]:checked ~ span {
  filter: brightness(1.1);
}

.vehicle-option input[type="radio"]:checked + img {
  border: 2px solid #e32d6d;
  border-radius: 4px;
}
.vehicle-option input[type="radio"]:checked ~ img,
.vehicle-option input[type="radio"]:checked ~ span,
.vehicle-option input[type="radio"]:checked ~ * {
  color: #e32d6d;
}

.vehicle-option input[type="radio"]:checked ~ * {
  font-weight: bold;
}
h6.noteh6 {
    margin-top: 30px;
    font-size: 14px;
    color: #e32d6d;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Totals */
#totalPrice {
  color: #28a745;
  font-weight: bold;
  font-size: 20px;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 600px) {
  form#bookingForm {
    padding: 20px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 16px;
  }

  button {
    width: 100%;
    margin-bottom: 10px;
  }
}




.top-bar {
    background-color: #fff;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 1400px;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 16px;
    transition: color 0.3s;
        text-decoration: none;
}
 .contact-info {
            display: flex;
            gap: 20px;
            font-size: 16px;
        }
        .france-cert h4 {
    margin-top: 0;
    margin-bottom: 20px;
    }
        .footer .contact-info {
    display: block !important;
}
.social-icons a:hover {
    color: #e32e6d;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: flex-start;
        margin-top: 25px;
    }
    p.ci_icon {
    margin-top: 20px !important;
}
}
        
        .contact-info {
            display: flex;
            gap: 20px;
            font-size: 14px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        

.social-icons a i, .contact-item i {
    background: #e32e6d;
    padding: 10px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex
;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
.contact-item span {
    color: #4e255c;
      font-family: "Inter", sans-serif;
      font-size: 16px;
}

.contact-item span:hover {
    color:#e32e6d
}

.social-icons a i:hover, .contact-item i:hover {
    background: #4e255c;
    color: #fff;
}
        .header-main {
     background-image: linear-gradient(75deg, #4e255c 0%, #e32e6d 100%);
    padding: 10px 20px 10px 10px;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 1400px;
    margin: 0 auto;
    border-radius: 80px;
}
        
        .logo {
            max-width: 200px;
        }
        
        .logo img {
    width: 100%;
    height: auto;
    background-color: #FFFFFF;
    padding: 15px 15px 15px 15px;
    border-radius: 50px 50px 50px 50px;
    text-align: left;
}
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            flex-wrap: wrap;
        }
        li.active_nav {
    border-bottom: 3px solid #fff;
}
        .nav-menu li a {
                color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 18px 0px;
    transition: background-color 0.3s;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
        }
        
        .nav-menu li a:hover {
           color: #fff;
           border-bottom: 3px solid #fff;
        }
        
        .nav-menu li:last-child a {
                padding: 20px 30px 20px 30px;
    background-color: #4e255c;
    color: #FFFFFF;
    border-radius: 50px 50px 50px 50px;
        }
        
        .nav-menu li:last-child a:hover {
           background-color: #FFFFFF;
    color: #4e255c;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .top-bar {
                justify-content: center;
                gap: 10px;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 5px;
                text-align: left;
            }
            
            .header-main {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-menu {
                flex-direction: column;
                width: 100%;
                display: none;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
        }

.nav-menu > li > a {
    display: inline-block; 
    transform: skew(0);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/*.nav-menu > li > a:hover {
    transform: skew(-8deg); 
}*/


    .footer {
      background: url("https://castletransfers.com/wp-content/uploads/2025/07/image-4.jpg") no-repeat bottom center;
      background-size: cover;
      background-color: #5b216b; /* fallback purple */
      color: #fff;
      padding: 40px 20px 20px;
      position: relative;
      width: 100%;
    }
    .footer h3, .footer h2, .footer h4 {
    color: #fff;
}
    .inner_footer {
    width: 1400px;
    margin: 0 auto;
    }
    .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    text-align: center;
    margin-bottom: 40px;
    flex-direction: row;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 15px;
          background-color: #FFFFFF;
        padding: 15px 15px 15px 15px;
        border-radius: 50px 50px 50px 50px;
        text-align: center;
    }

    .footer-logo img {
      max-height: 70px;
    }

    .footer-top h2 {
          font-size: 30px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    width: 680px;
    display: flex;
    text-align: left;
    gap: 20px;
    }

    .france-cert h4{
            font-family: "Montserrat", sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    font-size: 24px !important;
    }

    .footer-top .cta-btn, .phone_no_btn {
      border-radius: 30px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
          background-color: #e32e6d;
    fill: #FFFFFF;
    color: #FFFFFF;
    padding: 16px 30px;
        font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0px;
    }

    .footer-line {
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      margin: 20px 0 40px;
    }

    .footer-content {
      display: flex;
      gap: 30px;
    }

    .footer h3 {
font-size: 30px;
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700 !important;
    letter-spacing: 0px !important;
    }

    .footer p {
         line-height: 1.6;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    }

    .footer .social-icons {
      margin-top: 15px;
    }

    .footer .social-icons a {
      display: inline-block;
      color: #fff;
      font-size: 18px;
      margin-right: 10px;
      transition: 0.3s;
    }

    .footer .social-icons a:hover {
      color: #e93b61;
    }

    .footer .quick-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer .quick-links ul li {
      margin-bottom: 8px;
    }

    .footer .quick-links ul li a {
          text-decoration: none;
    color: #fff;
    transition: 0.3s;
    line-height: 1.6;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    }

    .footer .quick-links ul li a:hover {
      color: #e93b61;
    }

    .footer .contact-info p {
      font-size: 16px;
      margin: 6px 0;
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: "Inter", sans-serif;
    }

    .footer .france-cert img {
      max-width: 220px;
      margin-bottom: 10px;
    }

    .footer-bottom {
      text-align: center;
      font-size: 16px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      margin-top: 30px;
           font-family: "Inter", sans-serif;

    }
    .footer .quick-links ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
/*a.cta-btn {
    background: #fff !important;
    color: #4e255c !important;
}*/
.footer .quick-links ul li i {
  color: #fff; 
  font-size: 16px;
}
.social-icons a i, .contact-info i {
    background: #e32e6d;
    padding: 10px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex
;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.social-icons a {
    text-decoration: none;
}

.contact-item span:hover {
    color:#e32e6d
}


.footer-top .cta-btn:hover {
    background: #fff;
    color: #4e255c;
}
.about {
    width: 48%;
}
.quick-links {
    padding-left: 50px;
    width: 30%;
}
.footer .contact-info {
    width: 30%;
}
.france-cert {
    width: 29%;
}




/*Mobile header*/

#mobile_header {
  display: flex;
  top: 15px;
  left: 0;
  width: calc(100% - 20px);
  height: 100px;
  background-image: linear-gradient(75deg, #4e255c 0%, #e32e6d 100%);
  color: #fff;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 1000;
  margin-left: 10px;
  border-radius: 80px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  margin-top: 20px;
}

/* Logo */
.mobile_logo img {
    height: auto;
    width: 200px;
}

/* Navigation Container */
#nav-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

/* Hamburger Button */
#mobile_header .button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #4e255c;
  height: 50px;
  width: 50px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 1002;
}

#mobile_header .button:hover {
  background: #4e255c;
}

.icon-bar {
  display: block;
  width: 27px;
  height: 3px;
  background: #fff;
  transition: all 0.3s;
}

.icon-bar + .icon-bar {
  margin-top: 5px;
}

/* Animated button when active */
#mobile_header .button.active .icon-bar:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
}
#mobile_header .button.active .icon-bar:nth-of-type(2) {
  opacity: 0;
}
#mobile_header .button.active .icon-bar:nth-of-type(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Nav Content */
#nav-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: #ececec;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding-top: 120px;
  z-index: 1000;
}

#nav-content.open {
  transform: translateX(0);
}

#nav-content ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
}
#nav-content ul li a {
    padding-left: 20px;
}
#nav-content li a {
  padding: 15px 0;
  display: block;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

#nav-content li a:hover {
  color: #BF7497;
}


.active_menu a{
    background-color: #4e255c;
    color: #fff !important;
}

@media only screen and (min-width:1025px){
  #mobile_header{
    display: none;
  }
}

@media only screen and (max-width:1024px){
#main_header{
   display: none;
}
}






button.phone_no_btn {
    width: auto;
}


/* ===========================
   Responsive Styles
   =========================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  h4 {
    margin: 0px 0 10px;
}
div#firstRound {
    margin-top: 20px;
}
  .form_container {
    flex-direction: column;
    width: 95%;
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 50px;
  }

  .col_L, .col_R {
    width: 100%;
  }

  form#bookingForm {
    max-width: 100%;
    padding: 25px;
  }

  h2 {
    font-size: 28px;
    text-align: center;
  }

  .top-bar, .header-main, .inner_footer {
    width: 95%;
  }

  .footer-top {
flex-direction: column;
        text-align: center;
        gap: 20px;
        display: flex
;
        align-items: flex-start;
  }

  .footer-content {
    flex-wrap: wrap;
  }

  .about, .quick-links, .footer .contact-info, .france-cert {
    width: 45%;
    margin-bottom: 20px;
  }
}




@media only screen and (min-width: 769px) and (max-width: 1100px) {

  .top-bar{
display: none;
  }
  .form_container {
        margin-bottom: 70px !important;
    }
    .col_R {
    margin-top: 20px;
}
}

@media only screen and (min-width: 1024px) and (max-width: 1100px) {
.france-cert {
    padding-left: 50px;
}
}
@media only screen and (max-width: 1100px) {
.col_content {
    position: relative !important;
    }
}


/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .footer-content {

    gap: 0px;
}
  .form_container {
    flex-direction: column;
    width: 100%;
    padding: 0 15px;
    
  }
  .top-bar {
    display: none;
}

  .colfull {
    flex-direction: column;
    gap: 15px;
  }

  .col50, .col33 {
    width: 100%;
  }

  form#bookingForm {
    padding: 20px;
    box-shadow: none;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
    text-align: center;
  }

  .vehicle-options {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .vehicle-option {
    width: 40%;
  }

  .header-main {
    border-radius: 0;
    width: 100%;
  }

  .logo img {
    max-width: 180px;
    padding: 10px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .about, .quick-links, .footer .contact-info, .france-cert {
    width: 100%;
    padding: 0;
  }

  .footer-top h2 {
    width: 100%;
    font-size: 22px;
    text-align: left;
    gap:20px;
  }
  .footer h3{
    text-align: left;
  }

}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  button {
    width: fit-content;
    font-size: 14px;
    padding: 12px;
  }

  .vehicle-option {
    width: 40%;
  }

  .top-bar, .header-main, .footer, .inner_footer {
    width: 100%;
    padding: 15px;
  }

  .contact-item span {
    font-size: 14px;
  }

  .footer h3 {
    font-size: 20px;
  }

  .footer p,
  .footer .quick-links ul li a,
  .footer .contact-info p {
    font-size: 14px;
  }

  .footer-top .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

.footer .contact-info a {
    color: #fff;
    text-decoration: none;
}
.footer .contact-info a:hover {
    color: #e32e6d;
}
a.hfe-menu-item.elementor-button:hover {
    border: none;
}
.contact-item a {
    color: #4e255c;
    text-decoration: none;
}
.contact-item a:hover {
    color: #4e255c;
    text-decoration: none;
}
li.active_nav:hover {
    border-bottom: 0;
}