/* Call to Action Section Styles */

.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

/* CTA Background Shapes */
.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.cta-shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  top: -50px;
  right: 10%;
  animation: ctaFloat 15s ease-in-out infinite;
}

.cta-shape-2 {
  width: 150px;
  height: 150px;
  background: var(--secondary-color);
  bottom: -30px;
  left: 5%;
  animation: ctaFloat 12s ease-in-out infinite reverse;
}

.cta-shape-3 {
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  top: 50%;
  left: 50%;
  animation: ctaFloat 18s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes ctaFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(180deg);
  }
}

/* CTA Wrapper */
.cta-wrapper {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
  border-radius: 25px;
  padding: 60px 50px;
  box-shadow: 0 20px 60px rgba(2, 44, 130, 0.15);
  overflow: hidden;
  border: 1px solid rgba(2, 44, 130, 0.1);
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(235, 190, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-wrapper::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(2, 44, 130, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* CTA Content */
.cta-content {
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(235, 190, 0, 0.15);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(235, 190, 0, 0.3);
}

.cta-badge i {
  font-size: 1rem;
  color: var(--secondary-color);
}

.cta-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-description {
  color: var(--dark-gray);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* CTA Features */
.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 500;
}

.cta-feature-item i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

/* CTA Action */
.cta-action {
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

.cta-btn span {
  position: relative;
  z-index: 2;
}

.cta-btn i {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX(5px);
}

.cta-btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(2, 44, 130, 0.25);
}

.cta-btn-primary:hover {
  background: #01357a;
  border-color: #01357a;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(2, 44, 130, 0.35);
}

.cta-btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid rgba(2, 44, 130, 0.2);
}

.cta-btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(235, 190, 0, 0.3);
}

/* CTA Contact Info */
.cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
  background: #81b6ff4f;
  border-radius: 15px;
  border: 1px solid rgba(2, 44, 130, 0.1);
}

.contact-item-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item-cta i {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(2, 44, 130, 0.1), rgba(2, 44, 130, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item-cta:hover i {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: scale(1.1);
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #01357a !important;
}

.contact-label-cta {
  color: rgba(2, 44, 130, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value-cta {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
  .cta-wrapper {
    padding: 50px 40px;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-description {
    font-size: 1.05rem;
  }

  .cta-action {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .cta-wrapper {
    padding: 40px 30px;
  }

  .cta-title {
    font-size: 1.9rem;
  }

  .cta-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta-features {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons {
    margin-bottom: 25px;
  }

  .cta-btn {
    padding: 16px 25px;
    font-size: 0.95rem;
  }

  .contact-item-cta i {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .contact-item-cta span {
  color: #01357a;
    font-size: 0.9rem;
  }

  .contact-value-cta {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .cta-wrapper {
    padding: 35px 25px;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-description {
    font-size: 0.95rem;
  }

  .cta-badge {
    font-size: 0.85rem;
    padding: 6px 15px;
  }

  .cta-btn {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .cta-contact-info {
    padding: 20px;
  }

  .contact-item-cta {
    gap: 12px;
  }

  .contact-item-cta i {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .contact-label-cta {
    font-size: 0.8rem;
  }

  .contact-value-cta {
    font-size: 0.9rem;
  }
}
