/* ===================================
   PROJECT CTA SECTION - MESA MEDIA
   Bir Sonraki Proje Sizin Olsun
   Works.css ile uyumlu stil
   =================================== */

#project-cta.project-cta-section {
  position: relative;
  padding: 8rem 0;
  background-color: var(--light);
  overflow: hidden;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.cta-content {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.05);
  transition: all 0.5s var(--easing);
}

.cta-content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #A71623, #0061EF, #FFA1CC);
  border-radius: 25px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.cta-content:hover {
  border-color: rgba(167, 22, 35, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cta-content:hover::before {
  opacity: 0.1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  background: var(--primary);
  color: var(--light);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s var(--easing);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(167, 22, 35, 0.2);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(167, 22, 35, 0.3);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:active {
  transform: translateY(-1px);
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s var(--easing);
  position: relative;
  z-index: 1;
}

.cta-button:hover .btn-arrow {
  transform: translateX(5px);
}

/* Background Effects */
.cta-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(167, 22, 35, 0.02);
  filter: blur(80px);
  animation: ctaFloat 20s ease-in-out infinite;
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  top: -15%;
  right: -10%;
  animation-delay: 0s;
}

.cta-shape-2 {
  width: 350px;
  height: 350px;
  bottom: -15%;
  left: -8%;
  animation-delay: 2s;
}

@keyframes ctaFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -40px) rotate(180deg);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .cta-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  #project-cta.project-cta-section {
    padding: 6rem 0;
  }
  
  .cta-container {
    padding: 0 1rem;
  }
  
  .cta-content {
    padding: 3rem 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  #project-cta.project-cta-section {
    padding: 4rem 0;
  }
  
  .cta-content {
    padding: 2rem 1.5rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .cta-description {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 0.9rem 1.8rem;
  }
}