/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

/* Global Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Instrument Sans", sans-serif;
}

html,
body{
    overflow-x: hidden;
    font-family: "Instrument Sans", sans-serif;
}

body{
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #212529;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.enquiry-box::-webkit-scrollbar{
    width: 6px;
}

.enquiry-box::-webkit-scrollbar-thumb{
    background: gray;
    border-radius: 10px;
}

/* ==============================================
/* nav style 
=================================================*/

.navbar {
  position: absolute !important;
  width: 100%;
  position: sticky;
  z-index: 999;
  margin-top:20px !important;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo */

.logo {
  display: flex;
  align-items: center;
  gap: 19px;
  text-decoration: none;
}

.logo img {
  width: 250px;
  height: auto;
}



/* Menu */

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
  margin-bottom: 0px;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu .active {
  color: #ff3b3b;
}

/* Button */

.book-btn {
  background: #d71d24;
  padding: 16px 28px;
  border-radius: 8px;
  color: #fff !important;
  font-weight: 600;
}

.book-btn:hover {
  background: #b9141b;
}

/* Mobile Menu */

.menu-toggle {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* Tablet */

@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }

  .nav-menu a {
    font-size: 16px;
  }

  .book-btn {
    padding: 10px 20px;
  }
}

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

  .logo img {
  width: 210px;
  height: auto;
}
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0f1638;
    flex-direction: column;
    align-items: flex-start; /* Left align items */
    gap: 20px;
    padding: 20px 30px;
    display: none;
  }

  .navbar {
  position: absolute !important;
  width: 100%;
  position: sticky;
  z-index: 999;
  margin-top:20px !important;
}

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .book-btn {
    width: auto;
    text-align: center;
  }
}

/* ==============================================
Footer style 
=================================================*/
.footer {
  position: relative;
  background-color: #071b5a;
  background-image: url("../images/Banners/footer.webp");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 71, 0.75);
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
}

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

.footer-logo img {
  width: 200px;
  border-radius: 8px;
}

.footer-logo h2 {
  font-size: 20px;
  line-height: 1.3;
}

.footer-col p {
  line-height: 1.4;
  font-size: 14px;
  text-align:justify;
}

.footer-col h3 {
  color: #ffe600;
  font-size: 28px;
  margin-bottom: 25px;
  font-family: Arial, sans-serif;
}

.footer-col ul {
  list-style: none;
  margin-left: -27px;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffe600;
}

.social-icons {
  display: flex;
  gap: 20px !important;
  margin-top: 25px;
  /* justify-content:space-evenly !important; */
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
}

/* Facebook */
.social-icons a:nth-child(1) {
  background: #1877f2;
  color: #fff;
}

/* X (Twitter) */
.social-icons a:nth-child(2) {
  background: #fff;
  color: #000;
}

/* Instagram */
.social-icons a:nth-child(3) {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: #fff;
}

/* YouTube */
.social-icons a:nth-child(4) {
  background: #ff0000;
  color: #fff;
}

/* LinkedIn */
.social-icons a:nth-child(5) {
  background: #0a66c2;
  color: #fff;
}

.contact-items {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  /* align-items:center; */
}

.contact-items i {
  color: #ffe600;
  font-size: 19px;
  min-width: 25px;
  margin-top: 4px;
}

.copyright {
  position: relative;
  z-index: 2;
  background: #d3131b;
  text-align: center;
  padding: 18px;
  font-size: 16px;
}
.copyright a{
  border: none;
    outline: none;
    text-decoration: none;
    color: white;
}

/* Tablet */

@media (max-width: 992px) {
  .footer {
    background-position: center center;
    background-size: cover;
  }
  .footer-container {
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 0 0 calc(50% - 20px);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .footer {
    background-position: center top;
    background-size: cover;
  }

  .footer-overlay {
    background: rgba(7, 27, 90, 0.85);
  }
  .footer-container {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .footer-col {
    margin-bottom: -10px;
    width: 100%;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .footer-col h3 {
    font-size: 28px;
    text-align: center;
  }

  /* .footer-col p {
    text-align: center;
  } */

  .contact-items{
    align-items: center;
  }
  
  .social-icons {
    justify-content: center;
  }

  .contact-item {
    /* flex-direction: column; */
    align-items: center;
    text-align: left;
    /* gap: px; */
  }

  .copyright {
    margin-top: -31px;
    font-size: 14px;
    line-height: 1.7;
    padding: 15px;
  }
  .copyright a{
  border: none;
    outline: none;
    text-decoration: none;
    color: white;
}
}

/* Small Mobile */

@media (max-width: 480px) {
  .footer {
    background-position: center center;
    background-size: cover;
  }

  .footer-container {
    padding: 30px 15px;
  }

  .footer-logo img {
    width: 120px;
  }

  .footer-logo img {
    margin-top: -18px;
    width: 213px;
  }

  .footer-logo h2 {
    font-size: 18px;
  }

  .footer-col h3 {
    text-align: left;
    font-size: 24px;
  }

  .footer-col p {
    font-size: 14px;
  }
  .footer-col li a {
    font-size: 15px;
  }
  .contact-items i {
    /* color: #ffe600;
  font-size: 19px;
  min-width: 25px; */
    margin-top: -13px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
  }
}

/* =========================
WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-btn{
    position: fixed;
    right: 1px;
    bottom: 200px;

    width: 60px;
    height: 60px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    box-shadow: 0 8px 25px rgba(0,0,0,.25);

    z-index: 9999;

    text-decoration: none;

    transition: .3s ease;
}

.whatsapp-btn:hover{
    background: #1ebe57;
    transform: scale(1.08);
}


/* Tablet */
@media (max-width:991px){

    .whatsapp-btn{
        width: 65px;
        height: 65px;
        font-size: 35px;

        right: 20px;
        bottom: 20px;
    }

}

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

    .whatsapp-btn{
        width: 50px;
        height: 50px;
        font-size: 32px;

        right: 7px;
        bottom: 60px;
    }

}

/* Small Mobile */
@media (max-width:480px){

      .whatsapp-btn{
        width: 50px;
        height: 50px;
        font-size: 26px;

        right: 0px;
        bottom: 126px;
    }

}



/* ===============================
  Enquiry Now
================================= */
.enquiry-btn{
        position: fixed;
    right: 0px;
    bottom: 115px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e31e24;
    color: #fff;
    padding: 8px 8px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    transition: .3s ease;
}

.enquiry-btn:hover{
    background:#c9181d;
    transform: translateY(-3px);
}

.enquiry-btn i{
    width:42px;
    height:42px;
    background:#fff;
    color:#e31e24;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.enquiry-btn span{
    white-space:nowrap;
}

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

    .enquiry-btn{
        right: 0px;
        bottom: 60px;
        padding: 10px 10px;
        font-size: 14px;
    }

    .enquiry-btn i{
        width:36px;
        height:36px;
        font-size:16px;
    }
}

/* ===============================
   POPUP OVERLAY
================================= */
.enquiry-popup{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 99999;
}

/* ===============================
   POPUP BOX
================================= */
.enquiry-box{
    /* width: 100%; */
    max-width: 460px;
    background: #fff;
    /* border-radius: 15px; */
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);

    /* IMPORTANT */
    max-height: 85vh;
    overflow-y: auto;
}

/* Form padding */
.enquiry-box form{
    padding: 20px;
}

/* ===============================
   TITLE
================================= */
.enquiry-box h2{
    margin: 0;
    padding: 20px;
    text-align: center;
    color: #d3131b;
    font-size: 22px !important;
    font-weight: 700;
    text-align:left;
}

/* ===============================
   CLOSE BUTTON
================================= */
.close-btn{
  border: 3px solid black;
    position: absolute;
    top: 4px;
    right: 8px;
    width: 30px;
    height: 30px;
    /* background: #d3131b; */
    color: #000;
    font-size: 28px;
    text-align: center;
    line-height: 25px;
    cursor: pointer;
    /* border-radius:  10px; */
}

/* ===============================
   LABELS
================================= */
.enquiry-box label{
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.enquiry-box label span{
    color: red;
}

/* ===============================
   INPUTS
================================= */
.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea{
    width: 100%;
    border: 1px solid #cde7ff;
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.enquiry-box textarea{
    height: 100px;
    resize: none;
}

/* ===============================
   BUTTON
================================= */
.enquiry-box button{
  /* justify-content: center;
  align-items: center;
  margin-top: -13px; */
    background:#000;
    color: #fff;
    border: none;
    padding: 10px 40px;
    border-radius: 15px;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin: auto;
    box-shadow: 0 8px 20px rgba(255,123,0,.3);
}

/* ===============================
   MOBILE RESPONSIVE
================================= */
@media(max-width:768px){

    .enquiry-box{
        max-width: 100%;
        /* padding: 25px; */
    }

    .enquiry-box h2{
        font-size: 32px;
        /* margin-bottom: 20px; */
    }

    /* .enx */

    .close-btn{
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 30px;
    }

    .enquiry-box label{
        font-size: 16px;
    }

    .enquiry-box input,
    .enquiry-box select,
    .enquiry-box textarea{
        padding: 14px;
        font-size: 18px;
            margin-bottom: 15px;
    }

    .enquiry-box button{
        width: 100%;
        font-size: 18px;
    }

    .enquiry-popup{
      padding: 10px;
    }
}

@media(max-width:480px){

    .enquiry-box{
      margin-top: 46px;
        padding: 5px;
    }

    .enquiry-box h2{
        font-size: 24px;
        text-align:left;
    }

    .close-btn{
             width: 35px;
        height: 35px;
        line-height: 30px;
        font-size: 32px;
    }
}



/* ── Overlay ── */
.enq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}


.enq-field-label span {
    color: red;
}

.enq-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── Popup box ── */
.enq-modal {
  background: #fff;
  /* border-radius: 12px; */
  /* width: 90%; */
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.enq-overlay.active .enq-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ── Scrollbar (webkit) ── */
.enq-modal::-webkit-scrollbar {
  width: 4px;
}
.enq-modal::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.enq-modal::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

/* ── Sections ── */
.enq-modal-header {
  padding: 1.5rem 1.5rem 0;
}

.enq-modal-body {
  padding: 0 1.5rem;
}

.enq-modal-footer {
  padding: 0.75rem 1.5rem 1.5rem;
}

/* ── Close button ── */
.enq-close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: 1px solid #e0e0e0;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #888;
  padding: 3px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.enq-close-btn:hover {
  background: #f0f0f0;
  color: #333;
}

/* ── Heading ── */
.enq-heading {
  font-size: 22px;
  font-weight: 700;
  color: #C0141C;
  margin: 0 0 1.25rem;
  letter-spacing: -0.3px;
}

/* ── Fields ── */
.enq-field-wrap {
  margin-bottom: 1rem;
}

.enq-field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}

.enq-input,
.enq-textarea,
.enq-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #222;
  outline: none;
  box-sizing: border-box;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.enq-input:focus,
.enq-textarea:focus,
.enq-select:focus {
  border-color: #C0141C;
  box-shadow: 0 0 0 3px rgba(192, 20, 28, 0.12);
}

.enq-textarea {
  resize: vertical;
  min-height: 90px;
}

/* ── Select dropdown ── */
.enq-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.enq-select option {
  color: #222;
  background: #fff;
}

.enq-select option:disabled {
  color: #aaa;
}

/* Placeholder color when default selected */
.enq-select.enq-select--placeholder {
  color: #aaa;
}

/* ── Submit button ── */
.enq-submit-btn {
  width: 100%;
  padding: 12px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.enq-submit-btn:hover {
  background: #333;
}

.enq-submit-btn:active {
  transform: scale(0.98);
}

/* ── Success state ── */
.enq-success-wrap {
  display: none;
  text-align: center;
  padding: 2rem 1.5rem;
}

.enq-success-icon {
  font-size: 52px;
  color: #16a34a;
  margin-bottom: 12px;
}

.enq-success-title {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
}

.enq-success-msg {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .enq-modal {
    width: 95%;
    border-radius: 10px;
    max-height: 84vh;
  }

  .enq-modal-header,
  .enq-modal-body,
  .enq-modal-footer {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .enq-heading {
    font-size: 18px;
  }

  .enq-input,
  .enq-textarea,
  .enq-select {
    font-size: 13px;
    padding: 9px 11px;
  }

  .enq-select {
    padding-right: 32px;
  }

  .enq-submit-btn {
    font-size: 14px;
    padding: 11px;
  }
}

@media (max-width: 360px) {
  .enq-heading {
    font-size: 16px;
  }

  .enq-field-label {
    font-size: 12px;
  }
}


/* ===========================================
   NEW ENQUIRY FORM FIELDS DESIGN
   (Country Code, Date, Time, Pickup, Drop)
===========================================*/

/* Country Code */
.country-code-field{
    margin-bottom:18px;
}

.country-code-field label,
.booking-field{
    display:block;
    width:100%;
}
/* Country Select Wrapper */
.country-select-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Select Box */
.country-select-wrapper select{
    width: 100%;
    height: 58px;
    padding: 0 45px 0 55px; /* Left for flag, Right for arrow */
    border: 1px solid #cde7ff;
    border-radius: 12px;
    background: #fff;
    font-size: 15px;
    color: #222;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Flag */
.country-select-wrapper .country-flag{
    position: absolute;
    left: 18px;
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    pointer-events: none;
    z-index: 2;
}

/* Custom Dropdown Arrow */
.country-select-wrapper::after{
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-size: 16px;
    pointer-events: none;
}

/* Focus */
.country-select-wrapper select:focus{
    outline: none;
    border-color: #d3131b;
    box-shadow: 0 0 0 3px rgba(211,19,27,.12);
}

.country-select-wrapper select:focus{
    border-color:#d3131b;
    box-shadow:0 0 0 3px rgba(211,19,27,.12);
}

.country-flag{
    position:absolute;
    left:18px;
    width:22px;
    height:16px;
    object-fit:cover;
    border-radius:2px;
    pointer-events:none;
}

/* Date & Time */
.custom-input{
    width:100%;
    height:58px;
    border:1px solid #cde7ff;
    border-radius:14px;
    padding:0 16px;
    font-size:16px;
    color:#222;
    background:#fff;
    transition:.3s;
}

.custom-input:focus{
    outline:none;
    border-color:#d3131b;
    box-shadow:0 0 0 3px rgba(211,19,27,.12);
}



/* Labels */
.form-label{
    display:block;
    margin-bottom:8px;
    font-size:16px;
    font-weight:500;
    color:#000;
}

.form-label span{
    color:#e60000;
}

/* Remove Bootstrap spacing issue */
.col-md-4,
.col-md-6{
    width:100%;
    padding:0;
    margin-bottom:18px;
}

/* Better placeholder */
.custom-input::placeholder{
    color:#8b8b8b;
}

/* Focus */
textarea.custom-input:focus,
input.custom-input:focus{
    outline:none;
}



.enquiry-field{
    width:100%;
    margin-bottom:0px !important;
}

.enquiry-label{
    display:block;
    margin-bottom:8px;
    font-size:16px;
    font-weight:500;
    color:#000;
}

.enquiry-label span{
    color:#d3131b;
}

/* Input */

.enquiry-input{
    width:100%;
    height:58px;
    border:1px solid #cde7ff;
    border-radius:12px;
    padding:0 16px;
    font-size:15px;
    color:#222;
    background:#fff;
    box-sizing:border-box;
    outline:none;
    transition:.3s;
}

/* Date & Time */

input[type="date"].enquiry-input,
input[type="time"].enquiry-input{
    cursor:pointer;
    appearance:none;
    -webkit-appearance:none;
}

/* Textarea */

.enquiry-textarea{
    height:90px;
    padding:14px 16px;
    resize:none;
}

/* Focus */

.enquiry-input:focus,
.enquiry-textarea:focus{
    border-color:#d3131b;
    box-shadow:0 0 0 3px rgba(211,19,27,.12);
}

/* Placeholder */

.enquiry-input::placeholder,
.enquiry-textarea::placeholder{
    color:#8d8d8d;
}

/* ===========================
   MOBILE
===========================*/

@media(max-width:768px){

    .country-select-wrapper select{
        height:54px;
        font-size:15px;
        padding-left:50px;
    }

    .country-flag{
        left:16px;
        width:20px;
        height:15px;
    }

    .custom-input{
        height:54px;
        font-size:15px;
        padding:0 14px;
    }

    textarea.custom-input{
        height:105px;
        padding:14px;
    }

    .form-label{
        font-size:15px;
    }

       .enquiry-field{
        margin-bottom:16px;
    }

    .enquiry-label{
        font-size:17px;
    }

    .enquiry-input{
        height:54px;
        font-size:14px;
        padding:0 14px;
    }

    .enquiry-textarea{
        height:95px;
        padding:14px;
    }
}

@media(max-width:480px){

    .country-select-wrapper select{
        height:52px;
        font-size:14px;
        border-radius:12px;
        padding-left:48px;
    }

    .country-flag{
        left:15px;
        width:18px;
        height:14px;
    }

    .custom-input{
        height:52px;
        font-size:14px;
        border-radius:12px;
        padding:0 14px;
    }

    textarea.custom-input{
        height:100px;
        padding:14px;
    }

    .form-label{
        font-size:14px;
        margin-bottom:6px;
    }

    .col-md-4,
    .col-md-6{
        margin-bottom:16px;
    }

     .enquiry-field{
        margin-bottom:15px;
    }

    .enquiry-label{
        font-size:14px;
        margin-bottom:6px;
    }

    .enquiry-input{
        height:52px;
        font-size:14px;
        border-radius:10px;
        padding:0 14px;
    }

    .enquiry-textarea{
        height:90px;
        padding:12px 14px;
    }
}

@media(max-width:360px){

    .country-select-wrapper select{
        height:50px;
        font-size:13px;
    }

    .custom-input{
        height:50px;
        font-size:13px;
    }

    textarea.custom-input{
        height:95px;
    }

    .form-label{
        font-size:13px;
    }

       .enquiry-label{
        font-size:13px;
    }

    .enquiry-input{
        height:48px;
        font-size:13px;
    }

    .enquiry-textarea{
        height:85px;
    }

}





/*=========================================
 Popup New Fields
=========================================*/

.popup-field{
    width:100%;
    margin-bottom:18px;
}

.popup-label{
  margin-top: 14px;
    display:block;
    margin-bottom:8px;
    font-size:16px;
    font-weight:500;
    color:#000;
}

.popup-label span{
    color:#d3131b;
}

/*------------------------------
Input
------------------------------*/

.popup-input{
    width:100%;
    height:56px;
    padding:0 16px;
    border:1px solid #ddd;
    border-radius:12px;
    background:#fff;
    font-size:15px;
    color:#222;
    outline:none;
    box-sizing:border-box;
    transition:.3s;
}

.popup-input:focus{
    border-color:#d3131b;
    box-shadow:0 0 0 3px rgba(211,19,27,.12);
}

/*------------------------------
Textarea
------------------------------*/

.popup-textarea{
    width:100%;
    height:90px;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:12px;
    background:#fff;
    font-size:15px;
    resize:none;
    box-sizing:border-box;
    outline:none;
    transition:.3s;
}

.popup-textarea:focus{
    border-color:#d3131b;
    box-shadow:0 0 0 3px rgba(211,19,27,.12);
}

.popup-input::placeholder,
.popup-textarea::placeholder{
    color:#8b8b8b;
}

/*=========================================
 Country Select
=========================================*/

.popup-country-select{
    position:relative;
    width:100%;
}

.popup-select{
    width:100%;
    height:56px;
    padding:0 46px 0 54px;
    border:1px solid #ddd;
    border-radius:12px;
    background:#fff;
    font-size:15px;
    color:#222;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    cursor:pointer;
    outline:none;
}

.popup-select:focus{
    border-color:#d3131b;
    box-shadow:0 0 0 3px rgba(211,19,27,.12);
}

/* Flag */

.popup-country-flag{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    width:22px;
    height:16px;
    object-fit:cover;
    border-radius:2px;
    pointer-events:none;
}

/* Dropdown Arrow */

.popup-country-select::after{
    content:"";
    position:absolute;
    right:18px;
    top:50%;
    width:8px;
    height:8px;
    border-right:2px solid #555;
    border-bottom:2px solid #555;
    transform:translateY(-70%) rotate(45deg);
    pointer-events:none;
}

/*=========================================
 Date & Time Icon
=========================================*/

.popup-input[type="date"],
.popup-input[type="time"]{
    cursor:pointer;
}

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

@media(max-width:768px){

    .popup-label{
        font-size:15px;
    }

    .popup-input,
    .popup-select{
        height:54px;
        font-size:14px;
    }

    .popup-textarea{
        height:90px;
        font-size:14px;
    }

}

@media(max-width:480px){

    .popup-field{
        margin-bottom:16px;
    }

    .popup-label{
        font-size:14px;
    }

    .popup-input,
    .popup-select{
        height:52px;
        font-size:14px;
        border-radius:10px;
    }

    .popup-textarea{
        height:85px;
        border-radius:10px;
        font-size:14px;
    }

    .popup-country-flag{
        width:20px;
        height:14px;
    }

}

@media(max-width:360px){

    .popup-label{
        font-size:13px;
    }

    .popup-input,
    .popup-select{
        height:48px;
        font-size:13px;
    }

    .popup-textarea{
        height:80px;
        font-size:13px;
    }

}



.enquiry-popup{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.55);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9999;
}

.enquiry-popup.active{
    opacity:1;
    visibility:visible;
}

.enquiry-box{
    transform:translateY(40px);
    transition:.35s;
}

.enquiry-popup.active .enquiry-box{
    transform:translateY(0);
}