/* ============================================================
   NCM Theme – Footer Styles
   ============================================================ */

/* --- Back to Top Button --- */
.ncm-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.ncm-back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ncm-back-to-top:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  background-color: var(--navy);
  padding: 72px 0;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--gold);
  opacity: 0.1;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: var(--orange);
  opacity: 0.08;
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-text {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: var(--white);
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.btn-cta-white:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.btn-cta-outline:hover {
  border-color: var(--white);
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Site Footer --- */
.site-footer {
  background-color: var(--dark-navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.site-footer .footer-description {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-brand-text-footer {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand-sub-footer {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-bar a {
  color: rgba(255,255,255,0.45);
}
.footer-bottom-bar a:hover {
  color: var(--gold);
}

/* ============================================================
   Pre-Footer CTA (Gold Gradient Variant)
   ============================================================ */
.prefooter-cta-section {
  position: relative;
  overflow: hidden;
}
.prefooter-cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  pointer-events: none;
}
.prefooter-cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.06);
  pointer-events: none;
}
.prefooter-cta-section {
  padding: 64px 0;
}
.prefooter-cta-section .cta-title {
  text-align: left;
  margin-bottom: 12px;
  font-size: 34px;
}
.prefooter-cta-section .cta-text {
  text-align: left;
  margin: 0;
  max-width: none;
  color: rgba(255,255,255,0.85);
}
.prefooter-cta-section .cta-buttons {
  justify-content: flex-end;
}

/* ============================================================
   Footer Logo (filter for dark bg)
   ============================================================ */
.site-footer .footer-logo-img {
    width: 45px;
    height: 48px;
    object-fit: contain;
    filter: brightness(1.8) contrast(0.9);
}

/* ============================================================
   Footer Social Links
   ============================================================ */
.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: all var(--transition);
}
.footer-social-links a:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   Footer Bottom Disclaimer
   ============================================================ */
.footer-bottom-bar .container {
  width: 100%;
}
.footer-bottom-bar p {
  margin: 0;
  line-height: 1.5;
}
