.elementor-9828 .elementor-element.elementor-element-3995708{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for global, class: .elementor-global-9814 */.app-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #002b36;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo img {
  width: 85px;
  height: auto;
  transition: all 0.3s ease;
}

/* Menu */
.app-header .menu {
  display: flex;
  gap: 14px;
}

/* Canh icon trên cùng một hàng */
.app-header .menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Kích thước icon */
.app-header .menu a i {
  font-size: 14px;
  color: #FFB700;
}

.app-header .menu a:hover i {
  color: #FF8C00;
}

.search-wrapper {
    display: flex;
    gap: 12px;
}
.logo, .search-wrapper {
    width: 430px;
}
/* Ô tìm kiếm */
.search-box2 {
  display: flex;
  align-items: center;
  background: white;
}

.search-box2 input {
  border: none;
  outline: none;
  padding: 5px;
  width: 300px;
  font-size: 14px;
  color: black;
}
.search-box2::hover {
    opacity: 0.9;
}

.search-box2 button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: #FFB700;
}

/* Ngôn ngữ */
.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.language-switcher .lang-button {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.language-switcher .lang-button i {
  font-size: 14px;
  color: #FFB700;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #002b36;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 120px;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-size: 12px;
  text-decoration: none;
  padding: 5px 0;
}

.language-switcher:hover .lang-dropdown {
  display: block;
}



/* Ô tìm kiếm mặc định */
.search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 20px;
  overflow: hidden; /* Đảm bảo nội dung không bị tràn ra ngoài */
  border: 2px solid #FFB700; /* Viền màu vàng để nổi bật */
  
  padding: 5px 10px;
  border: 1px solid #FFB700;
  width: 300px;
  transition: width 0.3s ease;
}

.search-box input {
  border: none;
  outline: none;
  padding: 5px;
  width: 100%;
  font-size: 14px;
  color: black;
  border-radius: 15px; /* Bo góc cho ô nhập liệu */
}

/* Nút tìm kiếm */
.search-box button {
  background: none;
  border: none;
  border-radius: 50%; /* Làm tròn nút tìm kiếm */
  padding: 6px;
  cursor: pointer;
  font-size: 16px;
  color: #FFB700;
}










/* Trên màn hình nhỏ (Mobile) */
@media (max-width: 768px) {
    .app-header {
        flex-direction: row;
    }
    .logo, .search-wrapper {
        width: auto;
    }
    .app-header .menu, .search-box2 {
        display: none;
    }
  .search-box {
    width: 35px; /* Ban đầu chỉ hiển thị icon */
    background: rgba(0, 43, 54, 0.9); /* Màu nền trong suốt hơn */
    border-radius: 30px;
    padding: 1px;
    overflow: hidden;
    transition: width 0.3s ease;
  }

  .search-box input {
    display: none; /* Ẩn ô nhập trên mobile */
  }

  .search-box button {
    font-size: 18px;
  }

  /* Khi người dùng nhấn vào ô tìm kiếm */
  .search-box.active {
    width: 300px; /* Mở rộng khi nhấn vào */
  }

  .search-box.active input {
    display: block; /* Hiện ô nhập khi mở */
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS */#wrapper {
    box-shadow: none!important;
}
/* Form wrapper */
.rtb-booking-form {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  font-family: Arial, sans-serif;
}

/* Fieldsets */
.rtb-booking-form fieldset {
  border: none;
  margin: 0 0 25px 0;
  padding: 0;
}

.rtb-booking-form legend {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

/* Labels */
.rtb-booking-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

/* Inputs, select, textarea */
.rtb-booking-form input,
.rtb-booking-form select,
.rtb-booking-form textarea {
  width: 100%;
  max-width: 100%!important;
  padding: 10px 14px;
  border: 1px solid #ccc;
  color: #444!important;
  background-color: transparent!important;
  border-radius: 6px!important;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Focus styles */
.rtb-booking-form input:focus,
.rtb-booking-form select:focus,
.rtb-booking-form textarea:focus {
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0,115,170,0.2);
  outline: none;
}

/* Select dropdown */
.rtb-booking-form select {
  appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' width='20' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,10'/></svg>") no-repeat right 10px center;
  background-size: 14px;
  padding-right: 36px;
}

/* Textarea */
.rtb-booking-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* Submit button */
.rtb-booking-form .rtb-form-submit button {
  background: #0073aa;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s, transform 0.2s;
}

.rtb-booking-form .rtb-form-submit button:hover {
  background: #005f87;
}

.rtb-booking-form .rtb-form-submit button:active {
  transform: scale(0.98);
}

/* Error messages from plugin */
.rtb-booking-form .rtb-error {
  margin-top: 6px;
  color: #d63638;
  font-size: 13px;
  font-weight: 500;
}
.add-message a {
    color: #444!important;
    text-decoration: underline;
}
.rtb-message p {
    color: #444!important;
}
/* Mobile responsiveness */
@media (max-width: 480px) {
  .rtb-booking-form {
    padding: 15px;
    width: auto !important;
  }

  .rtb-booking-form legend {
    font-size: 16px;
  }

  .rtb-booking-form label {
    font-size: 13px;
  }
}/* End custom CSS */