/* ═══════════════════════════════════════════════════════
   YUVANTAR HEADER FOOTER PLUGIN — FOOTER STYLES
   ═══════════════════════════════════════════════════════ */

/* ── Site Footer ─────────────────────────────────────── */
.yhf-site-footer {
  background: var(--yhf-dark-navy, #0D1A4A);
  padding-top: 0;
  font-family: var(--yhf-font-body, 'Inter', system-ui, sans-serif);
}

/* Gold top border line */
.yhf-footer-gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yhf-gold, #C8972A), transparent);
}

/* ── Footer Grid (Refined to Flex) ────────────────────── */
.yhf-footer-grid {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 1200px) {
  .yhf-footer-grid { gap: 3rem; }
}

/* ── Brand Column ────────────────────────────────────── */
.yhf-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--yhf-font-heading, 'Playfair Display', serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yhf-white, #fff);
  margin-bottom: 0.5rem;
}
.yhf-footer-logo svg { flex-shrink: 0; }
.yhf-footer-logo-image {
  width: var(--yhf-footer-logo-width, auto);
  height: var(--yhf-footer-logo-height, auto);
  max-height: 80px; /* Slight bump for footer brand */
  display: block;
  object-fit: contain;
}

.yhf-footer-tagline {
  font-family: var(--yhf-font-sub, 'Montserrat', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yhf-gold, #C8972A);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  display: block;
}

.yhf-footer-desc-wrap {
  margin-bottom: 1.5rem;
}
.yhf-footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
  max-width: 340px;
}

/* ── Social Icons ────────────────────────────────────── */
.yhf-social-icons {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.yhf-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #1B2A6B;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--yhf-transition, 0.35s ease);
  text-decoration: none;
}
.yhf-social-icon svg {
  width: 16px;
  height: 16px;
}
.yhf-social-icon:hover {
  background: var(--yhf-gold, #C8972A);
  color: var(--yhf-white, #fff);
}

/* ── Column Headings ─────────────────────────────────── */
.yhf-footer-col-title {
  font-family: var(--yhf-font-sub, 'Montserrat', sans-serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yhf-gold, #C8972A);
  margin-bottom: 2rem;
  margin-top: 6px; /* Align with logo top */
}

/* ── Footer Links (Quick Links + fallback) ───────────── */
.yhf-footer-links,
ul.yhf-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.yhf-footer-links a,
ul.yhf-footer-links li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--yhf-transition, 0.35s ease);
  display: block;
  text-decoration: none;
}
.yhf-footer-links a:hover,
ul.yhf-footer-links li a:hover {
  color: var(--yhf-gold, #C8972A);
}

/* ── Contact Column ──────────────────────────────────── */
.yhf-footer-contact,
ul.yhf-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.yhf-footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
.yhf-footer-contact li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--yhf-gold, #C8972A);
  margin-top: 2px;
}
.yhf-footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--yhf-transition, 0.35s ease);
  text-decoration: none;
}
.yhf-footer-contact a:hover {
  color: var(--yhf-gold, #C8972A);
}

/* ── Footer Bottom Bar ───────────────────────────────── */
.yhf-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
}
.yhf-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.yhf-footer-bottom p {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}
.yhf-footer-legal {
  display: flex;
  gap: 1.5rem;
}
.yhf-footer-legal a {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--yhf-transition, 0.35s ease);
  text-decoration: none;
}
.yhf-footer-legal a:hover {
  color: var(--yhf-gold, #C8972A);
}

/* ── WhatsApp FAB ────────────────────────────────────── */
.yhf-whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--yhf-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  animation: yhf-glowPulse 3s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
}
.yhf-whatsapp-fab svg {
  width: 28px;
  height: 28px;
}
.yhf-whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  animation: none;
}

@keyframes yhf-glowPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.65); }
}

@media (max-width: 768px) {
  .yhf-footer-grid {
    flex-direction: column;
    gap: 3rem;
  }
  .yhf-footer-brand {
    order: -1;
  }
  .yhf-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
