
.section-cta {
  padding: 56px 0;
  background: linear-gradient(135deg, #111111, #050505);
  color: #fff;
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(243,195,0,0.1), transparent 55%),
    radial-gradient(circle at bottom right, rgba(243,195,0,0.08), transparent 55%),
    #000;
  box-shadow: 0 18px 34px rgba(0,0,0,0.35);
}

.cta-text h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.cta-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

.cta-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-form input {
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 14px;
  min-width: 180px;
}

.cta-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.cta-form input:focus {
  outline: none;
  border-color: #f3c300;
  box-shadow: 0 0 0 1px rgba(243,195,0,0.4);
}
.cta-message {
  margin-top: 8px;
  font-size: 13px;
}

.cta-message.success {
  color: #1b9c55;
}

.cta-message.error {
  color: #d93025;
}

.cta-message.loading {
  color: #555;
}


.cta-form .btn-yellow {
  white-space: nowrap;
  height: 42px;
  padding-inline: 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

@media (max-width: 900px) {
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-form {
    width: 100%;
  }

  .cta-form input {
    flex: 1 1 100%;
  }

  .cta-form .btn-yellow {
    width: 100%;
    justify-content: center;
  }
}


.section-contact {
  padding: 56px 0;
  background: #ffffff;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.section-contact h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.section-contact p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.section-contact a {
  color: var(--yellow);
  font-weight: 500;
}

.contact-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  border: 1px solid var(--border-soft);
  font-size: 14px;
  color: var(--text-main);
}

.contact-box p {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}



.whatsapp-btn {
  position: fixed;
  bottom: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  z-index: 60;
}

.whatsapp-btn.left {
  left: 26px;
}

.whatsapp-btn.right {
  right: 26px;
}
