/* ========================================
   Home Contact CTA Section Styles
   ======================================== */

.cs_home_contact_cta_section {
  background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
  position: relative;
  overflow: hidden;
}

.cs_home_contact_cta_section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cs_home_contact_cta_section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cs_contact_cta_wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cs_contact_cta_content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.cs_contact_cta_icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.5);
  }
}

.cs_contact_cta_text {
  flex: 1;
}

.cs_contact_cta_title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.cs_contact_cta_subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}

.cs_contact_cta_actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cs_contact_cta_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cs_contact_cta_btn i {
  font-size: 18px;
}

.cs_primary_btn {
  background: #22c55e;
  color: #fff;
  border-color: #22c55e;
}

.cs_primary_btn:hover {
  background: #fff;
  color: #0f172a;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cs_secondary_btn {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cs_secondary_btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1199px) {
  .cs_contact_cta_wrapper {
    padding: 45px 50px;
  }
  
  .cs_contact_cta_title {
    font-size: 28px;
  }
  
  .cs_contact_cta_icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .cs_contact_cta_wrapper {
    flex-direction: column;
    text-align: center;
    padding: 40px 35px;
  }
  
  .cs_contact_cta_content {
    flex-direction: column;
    text-align: center;
  }
  
  .cs_contact_cta_actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cs_contact_cta_btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .cs_contact_cta_wrapper {
    padding: 35px 25px;
  }
  
  .cs_contact_cta_title {
    font-size: 24px;
  }
  
  .cs_contact_cta_subtitle {
    font-size: 15px;
  }
  
  .cs_contact_cta_icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .cs_contact_cta_btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .cs_contact_cta_title {
    font-size: 22px;
  }
  
  .cs_contact_cta_icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
    border-radius: 16px;
  }
}


