:root{
  --base:#272162;
  --accent:#ef037c;
  --text: rgba(255,255,255,.88);
  --muted: rgba(255,255,255,.62);
  --line: rgba(255,255,255,.14);
  --radius:18px;
}

/* FOOTER BG: daha derin, premium */
.site-footer{
  background:
    radial-gradient(1200px 500px at 20% 0%, rgba(239,3,124,.18), transparent 60%),
    radial-gradient(1000px 500px at 80% 30%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, #221d52 0%, var(--base) 55%, #1c1746 100%);
  color: var(--text) !important;
}

/* Footer text colors always white regardless of theme */
.site-footer,
.site-footer p,
.site-footer span:not(.muted),
.site-footer .footer-cta__text h3,
.site-footer .fcol h4,
.site-footer .fcol a,
.site-footer .contact li {
  color: rgba(255,255,255,.88) !important;
}

.site-footer .footer-cta__text p,
.site-footer .fcol p,
.site-footer .contact li,
.site-footer .muted {
  color: rgba(255,255,255,.62) !important;
}

/* CTA band */
.footer-cta{
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.footer-cta__inner{
  width:min(1180px, 92%);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.footer-cta__text h3{
  margin:0 0 6px;
  font-size: 22px;
  letter-spacing:.2px;
  color: #fff;
}
.footer-cta__text p{
  margin:0;
  color:var(--muted) !important;
  font-size: 15px;
}

/* ghost button */
.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.5em 0.7em;
  border-radius:0.5em;
  color:#747474;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.22);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color 0.4s ease;
  font-weight: 400;
  font-size: 1rem;
  background-color: #000;
  box-shadow: 2px 2px 3px #000000b4;
  font-family: inherit;
}
.btn-ghost:hover{
  transform: translateY(-2px);
  border-color: rgba(239,3,124,.55);
  background: rgba(239,3,124,.10);
  color: #ffffff;
}

/* Main grid */
.footer-main{
  padding: 34px 0 18px;
}
.footer-grid{
  width:min(1180px, 92%);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 44px;
}

/* Titles with accent underline animation */
.fcol h4{
  margin:0 0 14px;
  font-size: 18px;
  position:relative;
  display:inline-block;
  color: #fff;
}
.fcol h4::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width: 26px;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(239,3,124,.35);
  transition: width .25s ease;
}
.fcol:hover h4::after{
  width: 44px;
}

.fcol p{
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 18px;
}

/* Links: slide + underline */
.fcol ul{ list-style:none; padding:0; margin:0; }
.fcol li{ margin: 10px 0; }
.fcol a{
  color: var(--text) !important;
  text-decoration:none;
  position:relative;
  display:inline-block;
  transition: transform .18s ease, color .18s ease;
}
.fcol a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background: var(--accent);
  transition: width .22s ease;
  border-radius: 99px;
}
.fcol a:hover{
  color:#fff;
  transform: translateX(4px);
}
.fcol a:hover::after{ width: 100%; }

/* Contact bullets */
.contact li{
  color: var(--muted);
  line-height:1.65;
  display: flex;
  align-items: flex-start;
}
.contact li a{
  color: var(--accent);
  text-decoration: none;
  transition: color .18s ease;
}
.contact li a:hover{
  color: #fff;
}
.dot{
  display:inline-block;
  width:10px; height:10px;
  border-radius:999px;
  margin-right:10px;
  margin-top: 6px;
  flex-shrink: 0;
  background: rgba(255,255,255,.22);
  box-shadow: 0 0 0 4px rgba(255,255,255,.06);
  transform: translateY(1px);
}
.dot--pink{
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(239,3,124,.12);
}

/* Social */
.social{
  display:flex;
  gap:10px;
  margin-top:10px;
}
.social__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition: color 0.3s ease;
  color: #747474;
  padding: 4px;
}
.social__btn svg{
  width: 25px;
  height: 25px;
  fill: currentColor;
  color: currentColor;
  display: block;
  flex-shrink: 0;
  transition: fill 0.3s ease, color 0.3s ease;
}
.social__btn:hover{
  color: #ffffff;
}

.social__btn:hover svg{
  fill: #ffffff;
  color: #ffffff;
}

/* Bottom bar */
.footer-bottom{
  border-top: 1px solid var(--line);
  padding: 18px 0 20px;
}
.footer-bottom__inner{
  width:min(1180px, 92%);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color: var(--muted);
  font-size: 14px;
}
.footer-bottom__inner .muted{
  opacity:.85;
  font-size: 14px;
  color: var(--muted) !important;
}

.footer-bottom__inner span:not(.muted){
  color: var(--text) !important;
}

/* Responsive */
@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-cta__inner{ flex-direction:column; align-items:flex-start; }
  .footer-cta__actions{ 
  display:flex; 
  gap:12px; 
  flex-wrap:wrap;
  align-items: center;
}

.footer-cta__actions .btn-dance-text-container {
  display: inline-block;
}
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom__inner{ flex-direction:column; align-items:flex-start; }
}
