/* Shared CTA / quote section — loaded on every page */

#cta-section.wrapper.pale-yellow-bg,
.wrapper.pale-yellow-bg#cta-section {
  background: linear-gradient(180deg, var(--pale-yellow) 0%, #fff9d6 100%);
}

.cta-layout {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 7vw, 80px);
  width: 100%;
}

.cta-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 440px;
}

.cta-left .h2 {
  font-size: clamp(2rem, 4vw, 3em);
  font-weight: 700;
  line-height: 1.15;
}

.cta-left .cta-sub {
  font-size: 1.1em;
  color: #333;
}

.cta-social {
  display: flex;
  gap: 14px;
}

.cta-social img {
  width: 42px;
  height: 42px;
}

.cta-form-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  padding: 40px;
  width: 100%;
  max-width: 520px;
}

.cta-form-card .form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-form-card .h2.contact-form {
  font-size: 1.75em;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-form-card .service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-form-card .service-option {
  flex: 1;
  min-width: 120px;
}

.cta-form-card .service-option input {
  display: none;
}

.cta-form-card .service-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  background: var(--white);
  font-size: 0.85em;
  font-weight: 500;
  color: #888;
  cursor: pointer;
}

.cta-form-card .service-option input:checked + label {
  border-color: var(--dark-grey);
  background: var(--dark-grey);
  color: var(--white);
}

.cta-form-card .service-option label .dot {
  width: 8px;
  height: 8px;
  border: 2px solid #ccc;
  border-radius: 50%;
}

.cta-form-card .service-option input:checked + label .dot {
  background: var(--bright-yellow);
  border-color: var(--bright-yellow);
}

.cta-form-card .text-field,
.cta-form-card .textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  font-size: 0.95em;
}

.cta-form-card .text-field:focus,
.cta-form-card .textarea:focus {
  border-color: var(--black);
  outline: none;
}

.cta-form-card .textarea {
  min-height: 110px;
  resize: vertical;
}

.cta-form-card .success-message {
  display: none;
  padding: 16px 0;
}

.cta-form-card .success-message.show {
  display: block;
}

.cta-form-card .form-error {
  display: none;
  color: #e74c3c;
}

.cta-form-card .form-error.show {
  display: block;
}

.footer-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media screen and (max-width: 991px) {
  .cta-layout {
    flex-flow: column;
  }

  .cta-left {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .footer-name-grid {
    grid-template-columns: 1fr;
  }
}
