.field {
position: relative;
}
.more-details-wrap {
  display: flex;
  justify-content: center;   /* 👈 CENTER */
  margin-top: 14px;
}

.more-details-btn {
  padding: 12px 28px;
  background: #ffffff;
  color: #242f67;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #242f67;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.more-details-btn:hover {
  background: #242f67;
  color: #fff;
}



/* ================= HEADER ================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5rem; /* Large padding for desktop */
    position: -webkit-sticky;
    top: 0;
    z-index: 99999;
    background-color: #242f67;
    color: #fff;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

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

header h1 a {
    text-decoration: none;
    color: #fff;
}

/* ================= SEARCH CARD ================= */
.search-wrapper {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.search-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 2fr 1fr auto;
  gap: 14px;
  align-items: end;
}

/* ================= MOBILE RESPONSIVENESS ================= */
@media (max-width: 992px) {
    header {
        padding: 1rem 2rem; /* Reduce padding on tablets */
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1rem; /* Tight padding for mobile */
    }
    
    .logo {
        font-size: 18px; /* Smaller text for mobile */
    }

    .search-card {
        grid-template-columns: 1fr; /* Stack inputs vertically */
    }

    .search-btn {
        width: 100%;
    }

    nav {
        display: none; /* Usually hidden on mobile behind hamburger */
    }
}

/* ================= OTHER STYLES ================= */
.tabs-wrapper { display:flex; justify-content:center; margin:40px 0 20px; }
.service-tabs { display:inline-flex; gap:8px; background:#dde5ff; padding:6px; border-radius:999px; }
.tab { border:none; background:transparent; padding:10px 20px; border-radius:999px; font-weight:500; cursor:pointer; color:#374151; }
.tab.active { background:#2563eb; color:#fff; }
.field label { font-size:13px; color:#6b7280; margin-bottom:6px; display: block; }
.field select { width:100%; padding:12px; border-radius:12px; border:1px solid #ddd; }

/* MODERN DATE BOX */
/* MODERN DATE BOX */
.date-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.flatpickr-calendar {
  z-index: 9999;
}
.flatpickr-calendar {
  position: absolute !important;
  top: calc(100% + 8px);
  left: 0;
  z-index: 9999;
}

.date-icon { color: #2563eb; }

/* ================= RESULT BOX (FIXED) ================= */
.price-card {
  margin: 30px auto;
  max-width: 550px;
  background: #ffffff;
  border-left: 5px solid #2563eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  display: none; /* Toggle with JS */
  animation: fadeInSlide 0.4s ease-out;
}

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

.price-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #374151;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.price-header i { color: #2563eb; }

.price-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.price-details span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #4b5563;
}

.price-details i {
  width: 20px; /* Fixed icon alignment */
  text-align: center;
  color: #2563eb;
}

#display-date-range {
  color: #111827;
  font-weight: 600;
}

.price-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-total-row strong {
  font-size: 1.8rem;
  color: #2563eb;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    header { padding: 1rem; }
    .search-card { grid-template-columns: 1fr; }
    nav { display: none; }
    .price-card { margin: 20px; }
}

.search-btn { 
    background:#ef4444; 
    border:none; 
    color:#fff; 
    width:52px; 
    height:52px; 
    border-radius:12px; 
    cursor: pointer;
}

/* Scroll To Top Btn */

#scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 40px; /* higher than chat box */
  z-index: 10000; /* above everything */
}


#scroll-to-top img {
  width: 40px;   /* make smaller */
  height: auto;
  cursor: pointer;
  opacity: 1;
}

#scroll-to-top img:hover {
  opacity: 1;
}

/* Chat Button */
#chat-btn img {
    width: 40px;
    height: 40px;
}


#chat-btn {
  position: fixed;
  bottom: 100px;
  right: 20px;              /* make sure it’s anchored */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #ff5757;
  cursor: pointer;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
}    /* click goes to button */

#chat-btn:hover {
  transform: scale(1.08);
  transition: 0.2s ease;
}


/* Chat Widget */ 
.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Header */
.chat-header {
  background: #1f2f63;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-title img {
  width: 28px;
  height: 28px;
}

.close-btn {
  position: absolute;
  top: 8px;
  left: 140px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* Status */
.chat-status {
  padding: 6px 12px;
  font-size: 12px;
  color: green;
  border-bottom: 1px solid #eee;
}

/* Body */
.chat-body {
  height: 260px;
  padding: 10px;
  overflow-y: auto;
  background: #f8f9fa;
}

/* Messages */
.message {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 80%;
  font-size: 14px;
  width: fit-content;        /* 👈 key line */
}

.message.support {
  background: #e9ecef;
  align-self: flex-start;
}

.message.user {
  background: #1f2f63;
  color: white;
  margin-left: auto;
}

/* Footer */
.chat-footer {
  display: flex;
  padding: 10px;
  gap: 8px;
  border-top: 1px solid #eee;
   flex-direction: column;
}




/* 3 buttons row */
.quick-contact {
  display: flex;
  gap: 6px;
}

.quick-contact button {
  flex: 1;
  border: none;
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

/* Colors */
.quick-contact button:nth-child(1) { background: #06C755; }
.quick-contact button:nth-child(2) { background: #25D366; }
.quick-contact button:nth-child(3) { background: #0068FF; }

/* Input + send row */
.chat-input-row {
  display: flex;
  gap: 8px;
}

.chat-input-row input {
  flex: 1;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid #ccc;
}

.chat-input-row .send-btn {
  margin-top: 0; /* remove old margin */
}







.chat-footer input {
  flex: 1;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
}

.send-btn {
  background: #1f2f63;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 9px;   /* move down */
}


/* ===== CHAT CONTACT BUTTONS ===== */
.contact-links {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.contact-links a {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  color: white;
  font-weight: 600;
}

.contact-line { background: #06C755; }
.contact-whatsapp { background: #25D366; }
.contact-zalo { background: #0068FF; }

/*chat */

.quick-contact {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.quick-contact button {
  flex: 1;
  border: none;
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

.quick-contact button:nth-child(1) { background: #06C755; }
.quick-contact button:nth-child(2) { background: #25D366; }
.quick-contact button:nth-child(3) { background: #0068FF; }

.chat-contact-img {
  width: 120px;
  margin-top: 6px;
  border-radius: 10px;
  cursor: pointer;
}

.chat-footer {
  display: flex;
  flex-direction: column;   /* 👈 THIS is the key */
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #eee;
}

/* 3 buttons row */
.quick-contact {
  display: flex;
  gap: 6px;
}

/* input row */
.chat-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* remove old margin */
.send-btn {
  margin-top: 0 !important;
}
/* Contact card title */
.contact-card span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 800;          /* 👈 stronger bold */
  color: #222;               /* 👈 clearer contrast */
  letter-spacing: 0.5px;     /* 👈 more readable */
  text-transform: uppercase;/* 👈 cleaner look */
}


/*chat end*/

/* button */
/* Language Drop down*/
.flag-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-size: cover;
    display: inline-block;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}


/* dropdown */
.lang-dropdown {
    position: relative;
    margin-right: 12px;
}

.lang-menu {
    display: none;
    position: absolute;
    right: 0;
    background: #e7e7e7;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.lang-menu.show {
    display: block;
}

.lang-menu li {
    list-style: none;
    margin: 6px 0;
}


/* 📱 Mobile tweak*/
@media (max-width: 767px) {
  header h5 a {
    text-decoration: none;
    color: #fff;
}
  .lang-menu {
    right: 0;
    left: auto;
    min-width: 120px;
  }

    .lang-menu {
        padding: 6px;
        border-radius: 8px;
        min-width: auto; /* prevent wide box */
    }

    .lang-menu li {
        margin: 4px 0;
    }

    .flag-circle {
        width: 26px;
        height: 26px;
    }
    .lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: -15px;
    }
}

/* ===== OUR SERVICES HOVER DROPDOWN ===== */
.services-dropdown {
  position: relative;
  display: inline-block;
}

.services-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
}

.services-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px;
}

.services-menu {
  position: absolute;
  top: 100%;              /* 👈 key fix */
  left: 0;
  background: #f9fafc;
  min-width: 220px;
  padding: 12px 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  display: none;
  z-index: 3000;
}

.services-dropdown:hover .services-menu {
  display: block;
}

.services-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  color: #242f67;           /* normal text */
  text-decoration: none;
  transition: all 0.2s ease;
}

.services-menu a:hover {
  background-color: #242f67; /* 👈 dark blue hover */
  color: #ffffff;           /* 👈 readable white text */
}


@media (max-width: 767px) {
  .services-menu {
    display: none !important;
  }
}