/* ===================================
   CTA / CONTACT SECTION
   =================================== */

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(47, 93, 159, 0.5), rgba(15, 47, 95, 0.5)), url('../assets/image/bg-building.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-section .container {
  max-width: 720px;
  width: 100%;
  padding: 40px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 14px;
  color: #dce6f5;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* CTA Shapes */
.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cta-shape {
  position: absolute;
  opacity: 0.1;
  filter: blur(1px);
}

.cta-shape-1 {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  top: 15%;
  left: 10%;
  animation: cta-float-1 18s infinite ease-in-out;
}

.cta-shape-2 {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  top: 60%;
  left: 5%;
  transform: rotate(30deg);
  animation: cta-float-2 22s infinite ease-in-out;
}

.cta-shape-3 {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 25%;
  right: 8%;
  animation: cta-float-3 20s infinite ease-in-out;
}

.cta-shape-4 {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  bottom: 20%;
  right: 15%;
  animation: cta-float-4 19s infinite ease-in-out;
}

.cta-shape-5 {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  bottom: 15%;
  left: 20%;
  transform: rotate(-20deg);
  animation: cta-float-5 21s infinite ease-in-out;
}

/* CTA Shape Animations */
@keyframes cta-float-1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes cta-float-2 {

  0%,
  100% {
    transform: translateX(0) rotate(30deg);
  }

  50% {
    transform: translateX(-15px) rotate(30deg);
  }
}

@keyframes cta-float-3 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(18px);
  }
}

@keyframes cta-float-4 {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-15px) translateX(10px);
  }
}

@keyframes cta-float-5 {

  0%,
  100% {
    transform: translateX(0) rotate(-20deg);
  }

  50% {
    transform: translateX(12px) rotate(-20deg);
  }
}

/* CTA Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 16px;
  }

  .cta-section .container {
    padding: 32px 20px;
  }

  .cta-section h2 {
    font-size: 26px;
  }

  .cta-section p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .cta-section h2 {
    font-size: 28px;
  }
}

/* ===================================
   FOOTER
   =================================== */

.footer,
.modern-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 0 30px;
}

.footer-grid,
.footer-content {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer h3,
.footer-column h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 14px;
}

.footer p,
.footer-column p,
.footer-column a {
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 420px;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-column a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-column a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
}

/* Footer Responsive */
@media (max-width: 991px) {

  .footer-grid,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


.footer-col {
  display: flex;
  flex-direction: column;
}

/* .footer-about {
    max-width: 350px;
} */

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  opacity: 0.9;
  color: var(--white);
}

/* CTA Box buttons - keep original style (excluded from gradient) */
.cta-box .btn-primary {
  background: var(--white);
  color: var(--primary-navy);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta-box .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}