/* CTA Section Styling */
.cta-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-color: #161e27;
  overflow: hidden;
  padding: 100px 0;
  display: flex;
  align-items: center;
}

/* Nền tảng hình ảnh với gradient phủ lên */
.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    linear-gradient(
      270deg,
      rgba(22, 30, 39, 0) 10.05%,
      #161e27 72.81%,
      #161e27 90.45%
    ),
    var(--bg-image);
}

.cta-container {
  position: relative;
  z-index: 10;
}

.cta-content {
  max-width: 1200px;
}

.cta-title {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.cta-description {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  opacity: 0.9;
}

/* Nút bấm */
.cta-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  padding: 18px 36px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta.btn-solid {
  background: #52dbc0;
  color: #fff;
}

.btn-cta.btn-solid:hover {
  background: #45c4aa;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(82, 219, 192, 0.2);
}

.btn-cta.btn-outline {
  background: transparent;
  border: 1px solid #52dbc0;
  color: #52dbc0;
}

.btn-cta.btn-outline:hover {
  background: rgba(82, 219, 192, 0.1);
  transform: translateY(-3px);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Các thành phần trang trí */
.cta-decor-dots {
  position: absolute;
  top: 50px;
  left: 40px;
  opacity: 0.2;
  z-index: 5;
  pointer-events: none;
}

.cta-decor-shape {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 400px;
  z-index: 5;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-background {
    display: cover;
    background-position: center;
    background-size: cover;
  }

  .cta-shape {
    display: none;
  }

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

  .cta-description {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding: 60px 0;
    text-align: center;
  }

  .cta-content {
    margin: 0 auto;
  }

  .cta-actions {
    justify-content: center;
    gap: 16px;
  }

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

  .btn-cta {
    width: 100%;
    padding: 15px 25px;
  }
}
