/* ===================================
   CTA Footer Section
   =================================== */

.cta-footer {
  background-color: #43BDAB;
  padding: 80px 20px;
  text-align: center;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.cta-header {
  margin-bottom: 40px;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.cta-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-primary,
.btn-secondary {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #FFFFFF;
  color: #43BDAB;
  border: 2px solid #FFFFFF;
}

.btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #43BDAB;
  transform: translateY(-2px);
}

/* Trust Items */
.cta-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
  stroke-width: 2;
}

.trust-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tablet */
@media (max-width: 1024px) {
  .cta-footer {
    padding: 60px 20px;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cta-footer {
    padding: 50px 20px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    padding: 14px 28px;
    font-size: 15px;
  }

  .cta-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .trust-icon {
    width: 32px;
    height: 32px;
  }

  .trust-text {
    font-size: 12px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .cta-footer {
    padding: 40px 16px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-subtitle {
    font-size: 15px;
  }

  .cta-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 400px;
  }

  .trust-icon {
    width: 28px;
    height: 28px;
  }

  .trust-text {
    font-size: 11px;
  }
}
