/* ================================
   FOOTER V2 - REDESIGNED (BLUE & GOLD THEME)
   ================================ */

.ncac-footer-v2 {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%); /* Deep Midnight Blue */
  color: #f8fafc; /* Lighter text for better contrast */
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

.ncac-footer-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d97706, transparent); /* Gold divider */
}

/* Decorative background glow */
.ncac-footer-v2::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: rgba(217, 119, 6, 0.05); /* Gold glow */
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* Main Footer Grid */
.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

/* Footer Column Styling */
.footer-col h3 {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff !important; /* Force pure white */
  margin: 0 0 12px 0;
  letter-spacing: -1px;
  background: none;
  -webkit-text-fill-color: initial;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #fbbf24 !important; /* Bright Gold */
  margin: 0 0 28px 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: #f8fafc !important; /* Lighter white/silver */
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: #ffffff !important;
  transform: translateX(8px);
}

.footer-col ul li a::before {
  content: "→";
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: #fbbf24;
  font-size: 1.1rem;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Column 1: About */
.footer-about .footer-subtitle {
  font-size: 1.25rem;
  color: #ffffff !important;
  margin: 0 0 16px 0;
  font-weight: 700;
}

.footer-about .footer-description {
  font-size: 1rem;
  color: #cbd5e1 !important; /* High contrast grey/white */
  line-height: 1.8;
  margin: 0 0 24px 0;
  max-width: 360px;
}

.footer-about .footer-mission {
  font-size: 0.95rem;
  font-style: italic;
  color: #94a3b8;
  border-left: 2px solid #fbbf24;
  padding-left: 15px;
  margin-top: 20px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: #cbd5e1;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover {
  background: #d97706; /* Gold */
  color: white;
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3);
  border-color: #d97706;
}

/* Newsletter Form */
.footer-newsletter p {
  font-size: 1rem;
  color: #cbd5e1 !important;
  margin-bottom: 24px;
  line-height: 1.7;
}

.newsletter-info-item {
  margin-bottom: 25px;
}

.newsletter-info-item label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fbbf24;
  margin-bottom: 5px;
  font-weight: 800;
}

.newsletter-info-item span {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: #fbbf24;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

.newsletter-form input::placeholder {
  color: #94a3b8; /* Lighter placeholder */
}

.newsletter-form button {
  padding: 16px;
  background: #d97706;
  border: none;
  border-radius: 14px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-form button:hover {
  background: #b45309;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.4);
}

/* Footer Bottom */
.footer-bottom-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.footer-bottom-left p {
  margin: 0;
  font-size: 0.9rem;
  color: #cbd5e1; /* Lighter copyright text */
  font-weight: 500;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
}

.footer-bottom-right a {
  color: #e2e8f0; /* Lighter link color */
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-bottom-right a:hover {
  color: #fbbf24;
}

.footer-denominations ul li {
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-denominations ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fbbf24;
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
  
  .ncac-footer-v2 {
    padding-top: 60px;
  }
  
  .footer-bottom-v2 {
    justify-content: center;
    text-align: center;
  }
}

.footer-bottom-right a:hover {
  color: #ff1a23;
}

.footer-bottom-right .separator {
  color: #475569;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-main-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .ncac-footer-v2 {
    padding: 60px 0 0;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-col h3 {
    font-size: 1.75rem;
  }

  .footer-newsletter {
    grid-column: auto;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    padding: 14px;
  }

  .footer-bottom-v2 {
    flex-direction: column;
    text-align: center;
    padding: 24px 0;
  }

  .footer-bottom-right {
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom-right .separator {
    display: none;
  }
}
