/* All form labels (Full Name, Phone, Email, etc.) */
.wpcf7 form p label {
  color: #FFD700 !important; /* bright yellow */
  font-weight: 600;
}

/* Section headings (Roofing Details, Cleaning Details, etc.) */
.wpcf7 form strong {
  color: #FFD700 !important; /* bright yellow */
  font-weight: 700;
  display: block;
  margin-top: 10px;
}

/* Fix request estimate button on mobile */
.wpcf7 input[type="submit"],
.wpcf7-submit {
  display: block;
  width: 100%;          /* make button fit inside container */
  max-width: 100%;      /* prevent overflow */
  padding: 14px;        /* balanced padding */
  font-size: 16px;      /* smaller text on mobile */
  white-space: normal;  /* allow text to wrap */
  text-align: center;   /* center the text */
  border-radius: 8px;   /* keep rounded corners */
  box-sizing: border-box;
}

@media (min-width: 769px) {
  /* desktop version: bigger button */
  .wpcf7 input[type="submit"],
  .wpcf7-submit {
    width: auto;
    padding: 14px 28px;
    font-size: 18px;
  }
}
.cleaning-form-wrapper {
  max-width: 700px;
  margin: 40px auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.15);
}

.cleaning-form-wrapper h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 26px;
}

.cleaning-form-wrapper label {
  font-weight: bold;
  margin: 10px 0 5px;
  display: block;
  color: #333;
}

.cleaning-form-wrapper input,
.cleaning-form-wrapper select,
.cleaning-form-wrapper textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 15px;
  transition: border 0.3s ease;
}

.cleaning-form-wrapper input:focus,
.cleaning-form-wrapper select:focus,
.cleaning-form-wrapper textarea:focus {
  border: 1px solid #27ae60;
  outline: none;
}

.cleaning-form-wrapper .wpcf7-checkbox label {
  display: inline-block;
  margin: 6px;
  padding: 8px 12px;
  background: #f4f4f4;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.cleaning-form-wrapper .wpcf7-checkbox input:checked + span {
  background: #27ae60;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
}

.cleaning-form-wrapper .wpcf7-submit {
  width: 100%;
  padding: 14px;
  background: #27ae60;
  color: #fff;
  border: none;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.cleaning-form-wrapper .wpcf7-submit:hover {
  background: #219150;
selector video {
  object-fit: contain !important;
  object-position: center center !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #000; /* adds black borders if video ratio doesn’t match */
}

