.cta-section {
  padding: 55px 20px; /* ⬅ reduced height */
  background: linear-gradient(135deg, #e3e3e3, #e6e6e6);
  color: #000;
  font-family: "Montserrat", sans-serif;
}

.cta-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.cta-section.cta-visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}

.cta-text {
  font-size: 15px;
  max-width: 650px;
  margin: 0 auto 22px;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: #ffffff;
  color: #083b32;
}

.cta-btn.secondary {
  border: 2px solid #ffffff;
  color: #000;
}

.cta-btn.secondary:hover {
  background: #000;
  color: #ffffff;
}

.cta-btn:hover {
  transform: translateY(-1px);
}

/* Animation */
.cta-section {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s ease;
}

.cta-section.cta-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 16px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-text {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .cta-actions {
    flex-direction: column;
  }
}
