/* ============================
   Child Contact Form
   ============================ */
.child-contact-form-wrap {
    background: #fff;
    border: 1.5px solid #d4edd4;
    border-radius: 16px;
    padding: 32px;
    margin: 0 auto;
    box-shadow: 0 4px 24px 0 rgba(76, 175, 28, 0.07);
}

.child-contact-form-title {
    color: #47940B;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.child-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.child-form-row .child-form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.child-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.child-contact-form-wrap label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.child-contact-form-wrap .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.child-contact-form-wrap input[type="text"]::placeholder,
.child-contact-form-wrap input[type="tel"]::placeholder,
.child-contact-form-wrap input[type="email"]::placeholder,
.child-contact-form-wrap textarea::placeholder {
    color: #ACACAC;
}

.child-contact-form-wrap input[type="text"],
.child-contact-form-wrap input[type="tel"],
.child-contact-form-wrap input[type="email"],
.child-contact-form-wrap textarea {
    width: 100%;
    border: 1px solid #C7C7C7;
    border-radius: 99px;
    padding: 10px 18px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    height: 48px;
    color: #333;
    background: #fff;
    outline: none;
    box-sizing: border-box;
    box-shadow: none;
    transition: border-color 0.2s;
}

.child-contact-form-wrap textarea {
    border-radius: 20px;
    min-height: 118px;
    resize: vertical;
}

.child-contact-form-wrap input[type="text"]:focus,
.child-contact-form-wrap input[type="tel"]:focus,
.child-contact-form-wrap input[type="email"]:focus,
.child-contact-form-wrap textarea:focus {
    border-color: #47940B;
}

.child-contact-form-wrap input[type="submit"],
.child-contact-form-wrap .wpcf7-submit {
    background: #47940B;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 32px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 0;
    text-transform: none;
    transition: background 0.2s;
}

.child-contact-form-wrap input[type="submit"]:hover,
.child-contact-form-wrap .wpcf7-submit:hover {
    background: #388e13;
}

.child-contact-form-wrap .wpcf7-not-valid-tip {
    color: #FF3B30;
    font-size: 12px;
    margin-top: 4px;
}

.child-contact-form-wrap .wpcf7-validation-errors,
.child-contact-form-wrap .wpcf7-acceptance-missing {
    color: #FF3B30;
    font-size: 13px;
    border: none;
    background: transparent;
    padding: 0;
    margin-top: 8px;
    text-align: left;
}

@media (max-width: 540px) {
    .child-form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Float Contact Widget */
.float-contact-widget {
  position: fixed;
  right: 32px;
  bottom: 53px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  padding: 12px 8px;
  backdrop-filter: blur(21.69974708557129px);
}
.float-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 6px;
  background-color: #fff;
  border-radius: 50%;
}
.float-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(75, 81, 58, 0.3);
}
.float-contact-icon img {
  width: 26px;
}
.float-contact-btn--booking {
  padding: 0;
  background: #fff;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.float-contact-btn--booking .float-contact-icon {
  width: 48px;
  height: auto;
  background-color: #fff;
}
.float-contact-label {
  color: #47940B;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: -0.03em;
}
#wrapper .blog-author-image img {
    width: 50px;
    height: 50px;
    margin-right: 0;
}
#wrapper .wp-block-search__inside-wrapper {
    display: flex;
    flex-direction: column;
}
#wrapper .wp-block-search__input,
#wrapper .wp-block-search__button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
@media (max-width: 480px) {
  .float-contact-widget {
    right: 8px;
  }
  .nav.nav-pills {
    justify-content: start;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: scroll;
  }
  .nav.nav-pills .tab a {
    white-space: nowrap;
    width: max-content;
  }
}