/* FOOTER 3 - CTA INTEGRATED */
.footer-3 {
  background: var(--primary);
}
.footer-3 .cta-bar {
  background: var(--accent);
  padding: 50px 5%;
}
.footer-3 .cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-3 .cta-bar h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--black);
}
.footer-3 .cta-bar .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-3 .cta-bar .btn:hover {
  background: var(--white);
  color: var(--black);
}
.footer-3 .main {
  padding: 60px 5%;
}
.footer-3 .main-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-3 .col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-3 .col ul {
  list-style: none;
}
.footer-3 .col li {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.9rem;
}
.footer-3 .col a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-3 .col a:hover {
  color: var(--white);
}
.footer-3 .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 5%;
}
.footer-3 .bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-3 .bottom p {
  color: var(--white);
  font-size: 0.85rem;
  margin: 0;
}
.footer-3 .social {
  display: flex;
  gap: 16px;
}
.footer-3 .social a {
  color: var(--gray-light);
  transition: color 0.3s;
}
.footer-3 .social a:hover {
  color: var(--accent);
}
.footer-3 .social svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 1024px) {
  .footer-3 .main-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .footer-3 .main-inner {
    grid-template-columns: 1fr;
  }
  .footer-3 .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}
