@font-face {
  font-family: 'Poppins';
  src: url('Poppins/poppins-regular-webfont.woff2') format('woff2'), /* Modern browsers */
       url('Poppins/poppins-regular-webfont.woff') format('woff'),   /* Older browsers */
       url('Poppins/poppins-regular-webfont.ttf') format('truetype'); /* Fallback */
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #FAF9F6;
    font-family: sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;    
}

a {
  font-family: sans-serif;
  text-decoration: none;   
}

nav {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 1rem;
  padding-bottom: 1rem;
  justify-content: center;
  background-color: #c70000;
  box-shadow: 0px 0px 8px 0px rgba(30, 30, 30, 0.5);
}

    .nav-list {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      list-style: none;
      margin-left: 250px;
      margin-right: 250px;
    }

    .nav-list .nav-left {
      text-align: center;
      list-style: none;
      font-size: 16px;
    }

        .nav-left-sub {
          font-size: 8px;
        }

    .nav-list .nav-right ul {
      display: flex;
      justify-content: space-between;
      align-items: center;
      list-style: none;
      margin-right: 0px;
    }

    .nav-right-list {
      display: flex;
      gap: 20px;
    }

    .nav-list a {
      color: #FAF9F6;
      transition: color 0.2s ease-in;
    }

    .nav-list a:hover {
      color: #5a5a5a;
    }


.div-bg {
  padding-bottom: 50px ;
  background-size: cover;
}

.div-container {
    padding-left: 250px;
    padding-right: 250px;
}

    .headline {
      padding-top: 50px;
    }

        .h1-title {
          font-size: 32px;
          font-weight: bold;
          color: #FAF9F6;
          text-shadow: 0 0 30px rgba(0, 0, 0, 0.8); /* White glow */
        }

        .h3-title {
          font-size: 16px;
          font-weight: bold;
          color: #FAF9F6;
          text-shadow: 0 0 20px rgba(0, 0, 0, 0.8); /* White glow */
        }

    .content {
      padding-top: 50px;
    }

.tab-links {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0px;
  justify-content: left;
  list-style: none;
  gap: 0px;
}

    .tab-links li {
      margin: 0;
    }

    .tab-links a {
      display: inline-block;
      padding: 12px 16px;
      background: #c70000; 
      color: #FAF9F6;
      border-radius: 8px;
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px;
      text-decoration: none;
      transition: background 0.2s ease;
    }

    .tab-links a:hover {
      background: #A60000;  
    }

    .tab-links .active a {
      background: #f4c546;  
      color: #3d3d3d;
    }

    .tab-content {
      width: 90%;
      padding: 25px;
      border-radius: 15px;
      border-top-left-radius: 0px;
      background-color: rgba(255, 255, 255, 0.7);
      box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5); /* Add shadow */
    }

    .tab {
      display: none;
    }

    .tab.active {
      display: block;
    }

    .sub-tab-nav {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
    }

    .sub-tab-button {
      padding: 8px 10px;
      border: none;
      background-color: #bbbbbb;
      color: #3d3d3d;
      font-family: sans-serif;
      cursor: pointer;
      border-radius: 8px;
      box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5); /* Add shadow */
      transition: background-color 0.2s;
    }

    .sub-tab-button.active {
      background-color: #3d3d3d;
      color: #FAF9F6;
    }

    .sub-tab-button:hover:not(.active) {
      background-color: #cccccc;
    }

    .sub-tab-content {
      display: none;
    }

    .sub-tab-content.active {
      display: block;
    }

    .tab-icon {
      font-size: 16px;
    }
    

.box {
  display: inline-flex;
  margin-right: 5px;
}

    .sub-box {
      display: inline-flex;
      align-items: center ;
      margin-right: 10px;
    }


.div-form {
  display: block;
}

    .form-content {
      display: block;
    }

    .form-pickup {
      display: inline-block;
      margin-right: 10px;
    }

    .form-drop {
      display: inline-block;
      margin-right: 10px;
    }

    .form-arrow {
      display: inline-block;
      margin-right: 10px;
    }

    .form-date {
      display: inline-block;
      margin-right: 20px;
      margin-top: 20px;
    }
    .form-time {
      display: inline-block;
      margin-right: 20px;
      margin-top: 20px;
    }
    .form-pax {
      display: inline-block;
      margin-right: 20px;
      margin-top: 20px;
    }

    .form-state {
      display: inline-block;
    }

    .form-city {
      display: inline-block;
      margin-top: 20px;
    }

    .form-btn {
      display: inline-block;
      margin-top: 20px;
    }


input.form[type=text] {
  display: inline-block;
  width: 250px;
  padding: 10px 10px;
  font-family: sans-serif;
  box-sizing: border-box;  
  border: 2px solid #f4c546;
  border-radius: 8px;
}

input.form[type=date] {
  appearance: none;
  display: inline-block;
  text-align: left;
  width: 150px;
  padding: 10px 10px;
  font-family: sans-serif;
  box-sizing: border-box; 
  border: 2px solid #f4c546;
  border-radius: 8px;
}

input.form[type=number] {
  display: inline-block;
  width: 150px;
  padding: 10px 10px;
  font-family: sans-serif;
  box-sizing: border-box; 
  border: 2px solid #f4c546;
  border-radius: 8px;
}

select.form {
  appearance: none;
  display: inline-block;
  text-align: left;
  width: 150px;
  padding: 10px 10px;
  font-family: sans-serif;
  box-sizing: border-box; 
  border: 2px solid #f4c546;
  border-radius: 8px;
}


input.form2[type=text] {
  display: inline-block;
  width: 300px;
  padding: 10px 10px;
  font-family: sans-serif;
  box-sizing: border-box; 
  border: 2px solid #f4c546;
  border-radius: 8px;
}


select.form2 {
  appearance: none;
  display: inline-block;
  text-align: left;
  width: 200px;
  padding: 10px 10px;
  font-family: sans-serif;
  box-sizing: border-box; 
  border: 2px solid #f4c546;
  border-radius: 8px;
}

    /* Custom styling for disabled options */
    select option:disabled {
      color: #b0b0b0; /* Light gray color for disabled options */
      background-color: #ffffff; /* Light gray background for disabled options */
    }

.btn-search {
  padding: 12px 24px;
  background-color: #f4c546;
  color: #3d3d3d;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer; &:hover {
      background-color: #e0b338;
  }
}


.roundtrip {
  display: flex;
}

    .roundtrip-option {
      padding: 0px 5px;
    }

    .radio-content {
      display: none;
    }

    /* Initially display the content */
    #same-day-content {
      display: block;
    }

    /* Initially hide the content */
    #different-day-content {
      display: none;
    }

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    z-index: 100; /* Ensure tooltip container is above other rows */
}

    /* Tooltip text */
    .tooltip .tooltiptext {
        visibility: hidden;
        min-width: 500px;
        background-color: #333;
        color: #fff;
        text-align: left;
        padding: 10px;
        border-radius: 10px;
        
        /* Positioning */
        position: absolute;
        z-index: 999; /* Ensure tooltip itself is on top */
        bottom: 100%; /* Position above the tooltip trigger */
        left: 50%;
        transform: translateX(-20%); /* Center the tooltip */
        
        /* Optional: Animation */
        opacity: 0;
        transition: opacity 0.2s;
    }

    /* Tooltip arrow */
    .tooltip .tooltiptext::after {
        content: "";
        position: absolute;
        top: 100%; /* At the bottom of the tooltip */
        left: 20%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
    }

    /* Show the tooltip when hovering */
    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }



/* Overlay for the alert modal */
.alert-box {
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1000; 
}

/* Alert box content */
.alert-box-content {
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 25px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  width: 500px;
  font-family: sans-serif;
}

/* Alert message text */
.alert-message {
  margin-bottom: 25px;
  font-size: 16px;
  color: #000000;
  display: block;
}

/* OK button */
.alert-btn {
  background-color: #4682b4 ; 
  color: white; 
  border: none; 
  padding: 10px 20px; 
  border-radius: 8px; 
  font-size: 16px; 
  cursor: pointer;
}

.alert-btn:hover {
  background-color: #3a6b91;
}

.div-client{
  padding-top: 50px;
}

.content-client-wrapper {
  position: relative;
  width: 100%; /* Full width */
  overflow: hidden; /* Prevent any scrolling */
  display: flex;
  align-items: center;
  justify-content: center; /* Center content horizontally and vertically */
  box-sizing: border-box; /* Ensure padding and border are included in width/height */
}

.content-client {
  display: flex;
  padding: 0px 15px;
  gap: 15px;
  width: 100%; /* Ensure it spans the full width */
  overflow-x: auto; /* Enable horizontal scrolling */
  overflow-y: hidden; /* Prevent vertical scrolling */
  scroll-behavior: smooth; /* Smooth scrolling for a better user experience */
}

      .content-client::-webkit-scrollbar {
        display: none;
      }

      .card-client {
        display: inline-flex;
        flex-direction: column;
        margin: 15px 0px;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0.5px 0.5px 7.5px 0px #b4b4b4;
        width: 350px;
        height: 200px;
        flex: none; /* Prevent flex items from shrinking */
      }

          .client-img {
            object-fit: cover;
            background-color: #ffffff;
            border-radius: 10px;
            width: 350px;
            height: 200px;
            flex: none;
          }

.lightbox {
display: none;
position: fixed;
z-index: 1;
padding: 100px 250px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.8);
z-index: 90;
}

.lightbox-content {
  display: block;
  margin: auto;
  padding: 0;
  width: 100%;
  max-width: 800px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 75px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

      .scroll-btn {
        background-color:  #f4c546; /* Customize arrow button color */
        color: #3d3d3d;
        border: none;
        border-radius: 50%;
        padding: 10px;
        margin:  0px 5px;
        cursor: pointer;
        width: 35px;
        height: 35px;
        font-size: 16px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 80;
      }

      .scroll-btn:hover {
        background-color: #e0b338; /* Darker shade on hover */
      }

      .scroll-btn.left {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
      }

      .scroll-btn.right {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
      }

  .div-destination {
    padding-top: 25px;
    padding-bottom: 50px;
  }

      .destination-box { 
        position: relative; /* Make container positionable */
        width: 350px;
        height: 200px;
      }

      .destination-text {
        position: absolute;
        top: 50%; /* Center vertically */
        left: 50%; /* Center horizontally */
        transform: translate(-50%, -50%); /* Adjust position to exact center */
        color: #ffffff; /* Text color */
        font-size: 24px; /* Adjust font size */
        font-weight: bold;
        text-align: center;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Optional: add a shadow for readability */
        pointer-events: none; /* Prevent the text from interfering with click events on the image */
    }


  .div-contact {
    padding-left: 250px;
    padding-right: 250px;
    justify-content: center;
    margin-bottom: 100px;
  }

      .contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 25px;
        color: #3d3d3d;
      }

      .head-contact-title {
        color: #c70000;
        font-size: 16px;
      }

        .content-contact {
          display: flex;
          padding-top: 25px;
        }

        .divider { 
          padding-right: 25px;
          margin-right: 25px;
          max-width: 350px;
          border-right: solid 0.5px #c70000;
        }

        .divider-end {
          padding-right: 25px;
          max-width: 350px;
        }

            .sub-divider-title {
              padding: 15px 0px;
            }

            .sub-divider {
              padding: 10px 0px;
              color: #999999;
            }

                .black {
                  color: #3d3d3d;
                }

        input.cust[type=text] {
          width: 200px;
          padding: 8px 8px;
          font-family: sans-serif;
          box-sizing: border-box;  
          border: 1px solid #f4c546;
          border-radius: 6px;
        }
        
        textarea.cust {
          width: 200px;
          height: 50px;
          padding: 8px 8px;
          font-family: sans-serif;
          box-sizing: border-box;  
          border: 1px solid #f4c546;
          border-radius: 6px;
          resize: none;
        }

        .btn-feedback {
            padding: 8px 16px;
            width: 200px;
            background-color: #000000;
            color: #ffffff;
            font-family: sans-serif;
            font-weight: bold;
            border: none;
            border-radius: 8px;
            cursor: pointer; &:hover {
                background-color: #4b4b4b;
            }
        }


.div-footer {
  justify-content: center;
  align-items: center;
  background-color: #202A44;

}

    .footer-content {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px 0px;
      color: #FAF9F6;
    }

        .footer-line {
          background-color: #202A44;
          width: 100%; 
          height: 1px;
        }

        .footer-text { 
          text-align: center;
          margin: 0px 10px;
          width: 600px;
        }


    







/*____________________________________________________________________________________________________________________________________*/

/* Mobile Styles */
@media only screen and (max-width: 1024px) {

  body {
    font-size: 10px;   
  }

  .nav-list {
    flex-direction: row;
    align-items: left;
    margin-left : 15px;
    margin-right: 15px;

  }

  .nav-list .nav-left {
    list-style: none;
    font-size: 12px;
  }

      .nav-left-sub {
        font-size: 6px;
      }


  .nav-list .nav-right ul {
    flex-direction: row;
    align-items: right;
  }

  .nav-right-list {
    gap: 20px;
  }

  .div-bg {
    background-position: center; /* Keeps the image centered */
  }

  .div-container {
    padding-right: 15px;
    padding-left: 15px;
  }

      .headline{
        padding-top: 25px;
      }

          .h1-title {
            font-size: 32px;
            font-weight: bold;
            color: #FAF9F6;
            text-shadow: 0 0 15px rgba(0, 0, 0, 0.5); /* White glow */
          }

          .h3-title {
            font-size: 16px;
            font-weight: bold;
            color: #FAF9F6;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* White glow */
          }

      .content{
        padding-top: 25px;
      }
 
  .tab-links {
    flex-wrap: wrap;
  }

  .tab-links a {
    padding: 10px 14px;
  }

  .tab-content {
    width: 100%;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5); /* Add shadow */
  }

  .sub-tab-nav {
    display: flex;
    gap: 5px;
  }

  .sub-tab-button {
    padding: 6px 8px;
    border-radius: 8px;
  }

  .tab-icon {
    font-size: 12px;
  }
  

  .div-form {
    flex-wrap: wrap;
  }
  
      .form-content {
        display: block;
      }
      
      .form-drop {
        margin-top: 10px;
      }
      .form-date {
        margin-top: 10px;
      }
      .form-time { 
        margin-top: 10px;
      }
      .form-pax {
        margin-top: 10px;
      }
      .form-city {
        margin-top: 10px;
      }
      .form-btn {
        margin-top: 20px;
      }
    

  input.form[type=text] {
    width: 230px;
  }

  input.form[type=date],
  input.form[type=number],
  input.form[type=time],
  select.form {
  width: 200px;
  }

  input.form2[type=text] {
    width: 230px;
  }
  
  select.form2 {
    width: 200px;
  }

  .btn-search {
    padding: 10px 18px;
    font-size: 12px;
    border-radius: 6px;
  }
  
  .roundtrip-option {
    padding: 0px 0px;
  }

  /* Tooltip text */
  .tooltip .tooltiptext {
    min-width: 200px;
  
   /* Positioning */
   left: 50%;
   transform: translateX(-20%); /* Center the tooltip */
   
  }
    

  /* Tooltip arrow */
  .tooltip .tooltiptext::after {
      left: 20%;
  }

  /* Alert box content */
.alert-box-content {
  padding: 15px 15px;
  border-radius: 8px;
  width: auto;
  min-width: 300px;
}

/* Alert message text */
.alert-message {
  margin-bottom: 15px;
  font-size: 12px;
}

/* OK button */
.alert-btn {
  padding: 8px 16px; 
  border-radius: 5px; 
  font-size: 12px; 
  
}

.div-client{
  padding-top: 25px;
}

.content-client {
  padding: 0px 15px;
  gap: 10px;
}

        .card-client {
          margin: 15px 0px;
          border-radius: 8px;
          width: 300px;
          height: 150px;
        }

        .client-img {
          width: 300px;
          height: 150px;
          border-radius: 8px;
         
        }

.lightbox {
  position: flex;
  padding: 250px 15px;
}

.div-destination{
  padding-top: 15px;
  padding-bottom: 25px;
}

    .destination-box { 
      width: 300px;
      height: 150px;
    }

  
  .contact {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 150px;
  }

      .div-contact {
        padding-top: 25px;
        color: #3d3d3d;
      }

        .head-contact-title {
          font-size: 12px;
        }

        .content-contact {
          flex-wrap: wrap;
          padding-top: 15px;
          align-items: stretch;
        }

        .divider { 
          flex-grow: 1;
          display: flex;
          flex-direction: column;
          padding-bottom: 10px;
          padding-right: 0px; 
          margin-right: 25px;
          max-width: 300px;
          border-right: none;
          border-top:  solid 0.5px #c70000;
        }

        .divider-end {
          flex-grow: 1;
          display: flex;
          flex-direction: column;
          padding-right: 0px;
          max-width: 300px;
          border-top:  solid 0.5px #c70000;
        }

            .sub-divider-title {
              padding: 10px 0px;
            }

            .sub-divider {
              padding: 5px 0px;
              color: #999999;
            }

                .black {
                  color: #3d3d3d;
                }

        input.cust[type=text] {
          flex-grow: 1;
          width: auto;
          min-width: 200px;
          max-width: 300px;
          border-radius: 5px;
        }
        
        textarea.cust {
          flex-grow: 1;
          width: auto;
          min-width: 200px;
          max-width: 300px;
          border-radius: 6px;
        }

        .btn-feedback {
            border-radius: 6px;
        }


  .footer-content {
    padding: 10px 0px;
  }
      .footer-line {
        width: 100%; 
        height: 1px;
      }

      .footer-text { 
        text-align: center;
        flex-grow: 1;
        margin: 0px 10px;
        width: auto;
        min-width: 180px;
      }

}






/*____________________________________________________________________________________________________________________________________*/
@media only screen and (min-width: 1600px) {

  .nav-list {
    margin-left: 500px;
    margin-right: 500px;
    }

  .div-container {
    padding-left: 500px;
    padding-right: 500px;
  }

  .div-contact {
    padding-left: 500px;
    padding-right: 500px;
  }
  

}