.zintech-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  transition: all 0.3s ease;
}

.zintech-form:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.zintech-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.zintech-form input[type="text"],
.zintech-form input[type="email"],
.zintech-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  transition: border-color 0.3s, background-color 0.3s;
  font-size: 15px;
}

.zintech-form input:focus,
.zintech-form textarea:focus {
  border-color: #0073aa;
  /* Màu xanh WordPress */
  background-color: #fff;
  outline: none;
}

.zintech-form textarea {
  resize: vertical;
  min-height: 100px;
}

.zintech-form button {
  text-align: center;
  background-color: #0073aa;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.1s ease;

  /* căn giữa button */
  display: block;
  margin: 0 auto;
}

.zintech-form button:hover {
  background-color: #005f8a;
  transform: translateY(-2px);
}

.zintech-form p {
  text-align: center;
  font-weight: 500;
  color: #2e8b57;
}

/* Responsive cho mobile */
@media (max-width: 600px) {
  .zintech-form {
    padding: 20px;
    margin: 20px;
  }

  .zintech-form button {
    width: 100%;
  }
}

/* === Popup Modal === */
.zintech-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  align-items: center;
  justify-content: center;
}

.zintech-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  max-height: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: popupFade 0.4s ease;
  position: relative;
}

.zintech-modal-content h2 {
  color: #0073aa;
  margin-bottom: 10px;
}

.zintech-modal-content p {
  color: #333;
  margin-bottom: 0;
}

.zintech-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.zintech-close:hover {
  color: #000;
}

/*----------form for gym ------------------*/
.zinfit-gym-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  transition: all 0.3s ease;
}

.zinfit-gym-form:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.zinfit-gym-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.zinfit-gym-form input[type="text"],
.zinfit-gym-form input[type="email"],
.zinfit-gym-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  transition: border-color 0.3s, background-color 0.3s;
  font-size: 15px;
}

.zinfit-gym-form input:focus,
.zinfit-gym-form textarea:focus {
  border-color: #0073aa;
  /* Màu xanh WordPress */
  background-color: #fff;
  outline: none;
}

.zinfit-gym-form textarea {
  resize: vertical;
  min-height: 100px;
}

.zinfit-gym-form button {
  text-align: center;
  background-color: #0073aa;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.1s ease;

  /* căn giữa button */
  display: block;
  margin: 0 auto;
}

.zinfit-gym-form button:hover {
  background-color: #005f8a;
  transform: translateY(-2px);
}

.zinfit-gym-form p {
  text-align: center;
  font-weight: 500;
  color: #2e8b57;
}

/* Responsive cho mobile */
@media (max-width: 600px) {
  .zinfit-gym-form {
    padding: 20px;
    margin: 20px;
  }

  .zinfit-gym-form button {
    width: 100%;
  }
}

/* === Popup Modal === */
.zinfit-gym-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  align-items: center;
  justify-content: center;
}

.zinfit-gym-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  max-height: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: popupFade 0.4s ease;
  position: relative;
}

.zinfit-gym-modal-content h2 {
  color: #0073aa;
  margin-bottom: 10px;
}

.zinfit-gym-modal-content p {
  color: #333;
  margin-bottom: 0;
}

.zinfit-gym-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.zinfit-gym-close:hover {
  color: #000;
}


/*----------form for yoga ------------------*/
.zinfit-yoga-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  transition: all 0.3s ease;
}

.zinfit-yoga-form:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.zinfit-yoga-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.zinfit-yoga-form input[type="text"],
.zinfit-yoga-form input[type="email"],
.zinfit-yoga-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  transition: border-color 0.3s, background-color 0.3s;
  font-size: 15px;
}

.zinfit-yoga-form input:focus,
.zinfit-yoga-form textarea:focus {
  border-color: #14aa00;
  /* Màu xanh WordPress */
  background-color: #fff;
  outline: none;
}

.zinfit-yoga-form textarea {
  resize: vertical;
  min-height: 100px;
}

.zinfit-yoga-form button {
  text-align: center;
  background-color: #14aa00;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.1s ease;

  /* căn giữa button */
  display: block;
  margin: 0 auto;
}

.zinfit-yoga-form button:hover {
  background-color: #14aa00;
  transform: translateY(-2px);
}

.zinfit-yoga-form p {
  text-align: center;
  font-weight: 500;
  color: #2e8b57;
}

/* Responsive cho mobile */
@media (max-width: 600px) {
  .zinfit-yoga-form {
    padding: 20px;
    margin: 20px;
  }

  .zinfit-yoga-form button {
    width: 100%;
  }
}

/* === Popup Modal === */
.zinfit-yoga-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  align-items: center;
  justify-content: center;
}

.zinfit-yoga-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  max-height: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: popupFade 0.4s ease;
  position: relative;
}

.zinfit-yoga-modal-content h2 {
  color: #0073aa;
  margin-bottom: 10px;
}

.zinfit-yoga-modal-content p {
  color: #333;
  margin-bottom: 0;
}

.zinfit-yoga-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.zinfit-yoga-close:hover {
  color: #000;
}


/*----------form for pick ------------------*/
.zinfit-pick-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  transition: all 0.3s ease;
}

.zinfit-pick-form:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.zinfit-pick-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.zinfit-pick-form input[type="text"],
.zinfit-pick-form input[type="email"],
.zinfit-pick-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  transition: border-color 0.3s, background-color 0.3s;
  font-size: 15px;
}

.zinfit-pick-form input:focus,
.zinfit-pick-form textarea:focus {
  border-color: #0073aa;
  /* Màu xanh WordPress */
  background-color: #fff;
  outline: none;
}

.zinfit-pick-form textarea {
  resize: vertical;
  min-height: 100px;
}

.zinfit-pick-form button {
  text-align: center;
  background-color: #f829f8;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.1s ease;

  /* căn giữa button */
  display: block;
  margin: 0 auto;
}

.zinfit-pick-form button:hover {
  background-color: #f829f8;
  transform: translateY(-2px);
}

.zinfit-pick-form p {
  text-align: center;
  font-weight: 500;
  color: #2e8b57;
}

/* Responsive cho mobile */
@media (max-width: 600px) {
  .zinfit-pick-form {
    padding: 20px;
    margin: 20px;
  }

  .zinfit-pick-form button {
    width: 100%;
  }
}

/* === Popup Modal === */
.zinfit-pick-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  align-items: center;
  justify-content: center;
}

.zinfit-pick-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  max-height: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: popupFade 0.4s ease;
  position: relative;
}

.zinfit-pick-modal-content h2 {
  color: #0073aa;
  margin-bottom: 10px;
}

.zinfit-pick-modal-content p {
  color: #333;
  margin-bottom: 0;
}

.zinfit-pick-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.zinfit-pick-close:hover {
  color: #000;
}


/*----------form for golf ------------------*/
.zinfit-golf-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  transition: all 0.3s ease;
}

.zinfit-golf-form:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.zinfit-golf-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.zinfit-golf-form input[type="text"],
.zinfit-golf-form input[type="email"],
.zinfit-golf-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  transition: border-color 0.3s, background-color 0.3s;
  font-size: 15px;
}

.zinfit-golf-form input:focus,
.zinfit-golf-form textarea:focus {
  border-color: #0073aa;
  /* Màu xanh WordPress */
  background-color: #fff;
  outline: none;
}

.zinfit-golf-form textarea {
  resize: vertical;
  min-height: 100px;
}

.zinfit-golf-form button {
  text-align: center;
  background-color: #ffc65b;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.1s ease;

  /* căn giữa button */
  display: block;
  margin: 0 auto;
}

.zinfit-golf-form button:hover {
  background-color: #ffc65b;
  transform: translateY(-2px);
}

.zinfit-golf-form p {
  text-align: center;
  font-weight: 500;
  color: #2e8b57;
}

/* Responsive cho mobile */
@media (max-width: 600px) {
  .zinfit-golf-form {
    padding: 20px;
    margin: 20px;
  }

  .zinfit-golf-form button {
    width: 100%;
  }
}

/* === Popup Modal === */
.zinfit-golf-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  align-items: center;
  justify-content: center;
}

.zinfit-golf-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  max-height: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: popupFade 0.4s ease;
  position: relative;
}

.zinfit-golf-modal-content h2 {
  color: #0073aa;
  margin-bottom: 10px;
}

.zinfit-golf-modal-content p {
  color: #333;
  margin-bottom: 0;
}

.zinfit-golf-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.zinfit-golf-close:hover {
  color: #000;
}


/*----------form for swim ------------------*/
.zinfit-swim-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  transition: all 0.3s ease;
}

.zinfit-swim-form:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.zinfit-swim-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.zinfit-swim-form input[type="text"],
.zinfit-swim-form input[type="email"],
.zinfit-swim-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  transition: border-color 0.3s, background-color 0.3s;
  font-size: 15px;
}

.zinfit-swim-form input:focus,
.zinfit-swim-form textarea:focus {
  border-color: #0073aa;
  /* Màu xanh WordPress */
  background-color: #fff;
  outline: none;
}

.zinfit-swim-form textarea {
  resize: vertical;
  min-height: 100px;
}

.zinfit-swim-form button {
  text-align: center;
  background-color: #0073aa;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.1s ease;

  /* căn giữa button */
  display: block;
  margin: 0 auto;
}

.zinfit-swim-form button:hover {
  background-color: #005f8a;
  transform: translateY(-2px);
}

.zinfit-swim-form p {
  text-align: center;
  font-weight: 500;
  color: #2e8b57;
}

/* Responsive cho mobile */
@media (max-width: 600px) {
  .zinfit-swim-form {
    padding: 20px;
    margin: 20px;
  }

  .zinfit-swim-form button {
    width: 100%;
  }
}

/* === Popup Modal === */
.zinfit-swim-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  align-items: center;
  justify-content: center;
}

.zinfit-swim-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  max-height: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: popupFade 0.4s ease;
  position: relative;
}

.zinfit-swim-modal-content h2 {
  color: #0073aa;
  margin-bottom: 10px;
}

.zinfit-swim-modal-content p {
  color: #333;
  margin-bottom: 0;
}

.zinfit-swim-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.zinfit-swim-close:hover {
  color: #000;
}

/*----------form for jjb ------------------*/
.zinspa-jjb-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  transition: all 0.3s ease;
}

.zinspa-jjb-form:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.zinspa-jjb-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.zinspa-jjb-form input[type="text"],
.zinspa-jjb-form input[type="email"],
.zinspa-jjb-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  transition: border-color 0.3s, background-color 0.3s;
  font-size: 15px;
}

.zinspa-jjb-form input:focus,
.zinspa-jjb-form textarea:focus {
  border-color: #0073aa;
  /* Màu xanh WordPress */
  background-color: #fff;
  outline: none;
}

.zinspa-jjb-form textarea {
  resize: vertical;
  min-height: 100px;
}

.zinspa-jjb-form button {
  text-align: center;
  background-color: #0073aa;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.1s ease;

  /* căn giữa button */
  display: block;
  margin: 0 auto;
}

.zinspa-jjb-form button:hover {
  background-color: #005f8a;
  transform: translateY(-2px);
}

.zinspa-jjb-form p {
  text-align: center;
  font-weight: 500;
  color: #2e8b57;
}

/* Responsive cho mobile */
@media (max-width: 600px) {
  .zinspa-jjb-form {
    padding: 20px;
    margin: 20px;
  }

  .zinspa-jjb-form button {
    width: 100%;
  }
}

/* === Popup Modal === */
.zinspa-jjb-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  align-items: center;
  justify-content: center;
}

.zinspa-jjb-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  max-height: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: popupFade 0.4s ease;
  position: relative;
}

.zinspa-jjb-modal-content h2 {
  color: #0073aa;
  margin-bottom: 10px;
}

.zinspa-jjb-modal-content p {
  color: #333;
  margin-bottom: 0;
}

.zinspa-jjb-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.zinspa-jjb-close:hover {
  color: #000;
}

/*----------form for spa ------------------*/
.zinspa-spa-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  transition: all 0.3s ease;
}

.zinspa-spa-form:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.zinspa-spa-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.zinspa-spa-form input[type="text"],
.zinspa-spa-form input[type="email"],
.zinspa-spa-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  transition: border-color 0.3s, background-color 0.3s;
  font-size: 15px;
}

.zinspa-spa-form input:focus,
.zinspa-spa-form textarea:focus {
  border-color: #0073aa;
  /* Màu xanh WordPress */
  background-color: #fff;
  outline: none;
}

.zinspa-spa-form textarea {
  resize: vertical;
  min-height: 100px;
}

.zinspa-spa-form button {
  text-align: center;
  background-color: #00aa1c;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.1s ease;

  /* căn giữa button */
  display: block;
  margin: 0 auto;
}

.zinspa-spa-form button:hover {
  background-color: #01a11c;
  transform: translateY(-2px);
}

.zinspa-spa-form p {
  text-align: center;
  font-weight: 500;
  color: #2e8b57;
}

/* Responsive cho mobile */
@media (max-width: 600px) {
  .zinspa-spa-form {
    padding: 20px;
    margin: 20px;
  }

  .zinspa-spa-form button {
    width: 100%;
  }
}

/* === Popup Modal === */
.zinspa-spa-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  align-items: center;
  justify-content: center;
}

.zinspa-spa-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  max-height: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: popupFade 0.4s ease;
  position: relative;
}

.zinspa-spa-modal-content h2 {
  color: #0073aa;
  margin-bottom: 10px;
}

.zinspa-spa-modal-content p {
  color: #333;
  margin-bottom: 0;
}

.zinspa-spa-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.zinspa-spa-close:hover {
  color: #000;
}

/*----------form for res ------------------*/
.zinpos-res-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  transition: all 0.3s ease;
}

.zinpos-res-form:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.zinpos-res-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.zinpos-res-form input[type="text"],
.zinpos-res-form input[type="email"],
.zinpos-res-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  transition: border-color 0.3s, background-color 0.3s;
  font-size: 15px;
}

.zinpos-res-form input:focus,
.zinpos-res-form textarea:focus {
  border-color: #0073aa;
  /* Màu xanh WordPress */
  background-color: #fff;
  outline: none;
}

.zinpos-res-form textarea {
  resize: vertical;
  min-height: 100px;
}

.zinpos-res-form button {
  text-align: center;
  background-color: #e99433;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.1s ease;

  /* căn giữa button */
  display: block;
  margin: 0 auto;
}

.zinpos-res-form button:hover {
  background-color: #eb8919;
  transform: translateY(-2px);
}

.zinpos-res-form p {
  text-align: center;
  font-weight: 500;
  color: #2e8b57;
}

/* Responsive cho mobile */
@media (max-width: 600px) {
  .zinpos-res-form {
    padding: 20px;
    margin: 20px;
  }

  .zinpos-res-form button {
    width: 100%;
  }
}

/* === Popup Modal === */
.zinpos-res-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  align-items: center;
  justify-content: center;
}

.zinpos-res-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  max-height: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: popupFade 0.4s ease;
  position: relative;
}

.zinpos-res-modal-content h2 {
  color: #0073aa;
  margin-bottom: 10px;
}

.zinpos-res-modal-content p {
  color: #333;
  margin-bottom: 0;
}

.zinpos-res-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.zinpos-res-close:hover {
  color: #000;
}

/*----------form for kids center ------------------*/
.zinpos-kidscenter-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  transition: all 0.3s ease;
}

.zinpos-kidscenter-form:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.zinpos-kidscenter-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.zinpos-kidscenter-form input[type="text"],
.zinpos-kidscenter-form input[type="email"],
.zinpos-kidscenter-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  transition: border-color 0.3s, background-color 0.3s;
  font-size: 15px;
}

.zinpos-kidscenter-form input:focus,
.zinpos-kidscenter-form textarea:focus {
  border-color: #0073aa;
  /* Màu xanh WordPress */
  background-color: #fff;
  outline: none;
}

.zinpos-kidscenter-form textarea {
  resize: vertical;
  min-height: 100px;
}

.zinpos-kidscenter-form button {
  text-align: center;
  background-color: #0073aa;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.1s ease;

  /* căn giữa button */
  display: block;
  margin: 0 auto;
}

.zinpos-kidscenter-form button:hover {
  background-color: #005f8a;
  transform: translateY(-2px);
}

.zinpos-kidscenter-form p {
  text-align: center;
  font-weight: 500;
  color: #2e8b57;
}

/* Responsive cho mobile */
@media (max-width: 600px) {
  .zinpos-kidscenter-form {
    padding: 20px;
    margin: 20px;
  }

  .zinpos-kidscenter-form button {
    width: 100%;
  }
}

/* === Popup Modal === */
.zinpos-kidscenter-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  align-items: center;
  justify-content: center;
}

.zinpos-kidscenter-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  max-height: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: popupFade 0.4s ease;
  position: relative;
}

.zinpos-kidscenter-modal-content h2 {
  color: #0073aa;
  margin-bottom: 10px;
}

.zinpos-kidscenter-modal-content p {
  color: #333;
  margin-bottom: 0;
}

.zinpos-kidscenter-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.zinpos-kidscenter-close:hover {
  color: #000;
}

/*----------form for shop ------------------*/
.zinpos-shop-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  transition: all 0.3s ease;
}

.zinpos-shop-form:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.zinpos-shop-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.zinpos-shop-form input[type="text"],
.zinpos-shop-form input[type="email"],
.zinpos-shop-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  transition: border-color 0.3s, background-color 0.3s;
  font-size: 15px;
}

.zinpos-shop-form input:focus,
.zinpos-shop-form textarea:focus {
  border-color: #0073aa;
  /* Màu xanh WordPress */
  background-color: #fff;
  outline: none;
}

.zinpos-shop-form textarea {
  resize: vertical;
  min-height: 100px;
}

.zinpos-shop-form button {
  text-align: center;
  background-color: #0073aa;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.1s ease;

  /* căn giữa button */
  display: block;
  margin: 0 auto;
}

.zinpos-shop-form button:hover {
  background-color: #005f8a;
  transform: translateY(-2px);
}

.zinpos-shop-form p {
  text-align: center;
  font-weight: 500;
  color: #2e8b57;
}

/* Responsive cho mobile */
@media (max-width: 600px) {
  .zinpos-shop-form {
    padding: 20px;
    margin: 20px;
  }

  .zinpos-shop-form button {
    width: 100%;
  }
}

/* === Popup Modal === */
.zinpos-shop-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  align-items: center;
  justify-content: center;
}

.zinpos-shop-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  max-height: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: popupFade 0.4s ease;
  position: relative;
}

.zinpos-shop-modal-content h2 {
  color: #0073aa;
  margin-bottom: 10px;
}

.zinpos-shop-modal-content p {
  color: #333;
  margin-bottom: 0;
}

.zinpos-shop-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.zinpos-shop-close:hover {
  color: #000;
}

/* Hiệu ứng hiện popup */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


/*----------form for clinic ------------------*/
.zinclinic-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  transition: all 0.3s ease;
}

.zinclinic-form:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.zinclinic-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.zinclinic-form input[type="text"],
.zinclinic-form input[type="email"],
.zinclinic-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  transition: border-color 0.3s, background-color 0.3s;
  font-size: 15px;
}

.zinclinic-form input:focus,
.zinclinic-form textarea:focus {
  border-color: #0073aa;
  /* Màu xanh WordPress */
  background-color: #fff;
  outline: none;
}

.zinclinic-form textarea {
  resize: vertical;
  min-height: 100px;
}

.zinclinic-form button {
  text-align: center;
  background-color: #0073aa;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.1s ease;

  /* căn giữa button */
  display: block;
  margin: 0 auto;
}

.zinclinic-form button:hover {
  background-color: #005f8a;
  transform: translateY(-2px);
}

.zinclinic-form p {
  text-align: center;
  font-weight: 500;
  color: #2e8b57;
}

/* Responsive cho mobile */
@media (max-width: 600px) {
  .zinclinic-form {
    padding: 20px;
    margin: 20px;
  }

  .zinclinic-form button {
    width: 100%;
  }
}

/* === Popup Modal === */
.zinclinic-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  align-items: center;
  justify-content: center;
}

.zinclinic-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  max-height: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: popupFade 0.4s ease;
  position: relative;
}

.zinclinic-modal-content h2 {
  color: #0073aa;
  margin-bottom: 10px;
}

.zinclinic-modal-content p {
  color: #333;
  margin-bottom: 0;
}

.zinclinic-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.zinclinic-close:hover {
  color: #000;
}