/* 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 {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: clamp(28px, 4vw, 40px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.99)),
    radial-gradient(circle at top right, rgba(255, 237, 0, 0.18), transparent 38%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(26, 21, 0, 0.12);
}

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

.cta-form-card .h2.contact-form {
  margin-bottom: 2px;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.08;
}

.cta-form-card .form-intro {
  margin: 0 0 6px;
  color: #5f5a48;
  font-size: 0.96rem;
  line-height: 1.65;
}

.cta-form-card .service-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-inline-size: 0;
  padding: 0;
  border: 0;
}

.cta-form-card .service-options .field-label {
  margin-bottom: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.cta-form-card .service-options .field-label .text-span-3 {
  color: #8b8270;
  font-weight: 600;
}

.cta-form-card .service-option {
  margin: 0;
}

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

.cta-form-card .service-option label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #fff9d9);
  color: #675f4c;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cta-form-card .service-option label:hover {
  border-color: rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(26, 21, 0, 0.08);
}

.cta-form-card .service-option input:checked + label {
  border-color: var(--black);
  background: linear-gradient(180deg, var(--black), #202020);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.cta-form-card .service-option label .dot {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border: 2px solid #c7b989;
  border-radius: 50%;
}

.cta-form-card .service-option input:checked + label .dot {
  background: var(--bright-yellow);
  border-color: var(--bright-yellow);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.18);
}

.cta-form-card .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-form-card .field-group--full {
  grid-column: 1 / -1;
}

.cta-form-card .field-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
}

.cta-form-card .text-span-3 {
  color: #8b8270;
  font-weight: 600;
}

.cta-form-card .text-field,
.cta-form-card .textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  font-size: 0.96rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.cta-form-card .text-field::placeholder,
.cta-form-card .textarea::placeholder {
  color: #a6a096;
}

.cta-form-card .text-field:hover,
.cta-form-card .textarea:hover {
  border-color: rgba(0, 0, 0, 0.22);
}

.cta-form-card .text-field:focus,
.cta-form-card .textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 4px rgba(255, 237, 0, 0.28);
  transform: translateY(-1px);
}

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

.cta-form-card .submit-button {
  width: 100%;
  padding: 16px 20px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.cta-form-card .submit-button:hover {
  background: var(--bright-yellow);
  color: var(--black);
}

.cta-form-card .success-message {
  display: none;
  padding: 8px 0 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;
  }

  .cta-form-card {
    padding: 24px;
  }
}
