/* ===== FOOTER V2 ===== */

.footer-v2 {
  background: #0d0847;
  color: rgba(255,255,255,.7);
  position: relative;
  margin-top: 0;
}

/* Wave divider — sits above the dark body; page background shows through */
.footer-v2__wave {
  display: block;
  line-height: 0;
  background: transparent;
}
.footer-v2__wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Main body */
.footer-v2__body {
  padding: 56px 0 48px;
  background: linear-gradient(135deg, #0d0847 0%, #170C79 40%, #12065e 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative glow orbs */
.footer-v2__body::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(86,182,198,.12) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}
.footer-v2__body::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,151,208,.10) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  pointer-events: none;
}

/* Three-column grid */
.footer-v2__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1080px) {
  .footer-v2__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-v2__grid > .footer-v2__col:last-child { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .footer-v2__grid { grid-template-columns: 1fr 1fr; }
  .footer-v2__grid > .footer-v2__col:last-child { grid-column: auto; }
}
@media (max-width: 540px) {
  .footer-v2__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Brand column ─────────────────────────────────── */
.footer-v2__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-v2__logo-wrap img {
  border-radius: 10px;
  opacity: .9;
  flex-shrink: 0;
}
.footer-v2__logo-name {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.footer-v2__logo-sub {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.footer-v2__tagline {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}

/* Contact items */
.footer-v2__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-v2__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.footer-v2__contact-item:hover { color: #56B6C6; }
.footer-v2__contact-icon {
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Nav columns ──────────────────────────────────── */
.footer-v2__col-heading {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #56B6C6;
  margin: 0 0 16px;
}

.footer-v2__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-v2__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .18s, padding-left .18s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-v2__links a::before {
  content: '\203A'; /* › */
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .18s, transform .18s;
  display: inline-block;
}
.footer-v2__links a:hover {
  color: #fff;
  padding-left: 6px;
}
.footer-v2__links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Smaller sub-list variant (e.g. "Learn More" educational references) */
.footer-v2__links--sub {
  gap: 8px;
}
.footer-v2__links--sub a {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* ── Hours ────────────────────────────────────────── */
.footer-v2__hours-text {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 8px 0 0;
}
.footer-v2__hours-text strong {
  color: rgba(255,255,255,.85);
}

/* ── CTA button ───────────────────────────────────── */
.footer-v2__cta {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #56B6C6, #FF97D0);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  border-radius: 100px;
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.footer-v2__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(86,182,198,.4);
  filter: brightness(1.1);
  color: #fff;
}

/* ── Bottom bar ───────────────────────────────────── */
.footer-v2__bottom {
  background: rgba(0,0,0,.35);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}
.footer-v2__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-v2__copyright {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}
.footer-v2__bottom-links {
  display: flex;
  gap: 20px;
}
.footer-v2__bottom-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .18s;
}
.footer-v2__bottom-links a:hover {
  color: rgba(255,255,255,.8);
}
