/* CTA SECTION STYLES */
.cta-section {
  min-height: auto;
  padding: 0 6vw 120px 6vw;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}

.cta-buttons-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-cta,
.cta-section .btn-cta-outline {
  padding: 12px 32px;
  font-size: 1rem;
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  position: relative;
  background: #0a0a0f;
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 100vh;
  border-radius: 20px 0 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  padding: 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
  transform: translateX(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
  color: var(--c-accent);
}

@media (max-width: 768px) {
  .modal-container {
    padding: 20px;
    width: 95%;
  }
}
