/* =========================================================   🌟 FOOTER V5 – GLASS GLOW (TechBrot)   ========================================================= */

#footerV5Glow {
  margin-top: 120px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
}

/* ---------- Glass container ---------- */

.footerG-container {
  position: relative;
  width: 94%;
  margin: 0 auto;
  padding: 72px 0 48px;
  border-radius: 32px;
  background: radial-gradient(circle at top left, rgba(40, 167, 69, 0.08), transparent 55%), radial-gradient(circle at bottom right, rgba(40, 167, 69, 0.08), transparent 55%), rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14), 0 0 80px rgba(40, 167, 69, 0.18), inset 0 0 40px rgba(40, 167, 69, 0.08);
  overflow: hidden;
}

/* Subtle glow blobs */

.footerG-container::before, .footerG-container::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.25), transparent 70%);
  filter: blur(35px);
  opacity: 0.75;
  pointer-events: none;
  z-index: -1;
}

.footerG-container::before {
  top: -140px;
  left: -120px;
}

.footerG-container::after {
  bottom: -160px;
  right: -130px;
}

/* ---------- Grid layout ---------- */

.footerG-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(4, minmax(0, 1fr));
  gap: 40px;
}

@media (max-width: 1199.98px) {
  .footerG-grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .footerG-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }
}

@media (max-width: 767.98px) {
  .footerG-container {
    width: 100%;
    border-radius: 0;
    padding: 40px 0 32px;
    box-shadow: 0 -8px 28px rgba(15, 23, 42, 0.12);
  }
}

@media (max-width: 767.98px) {
  .footerG-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
}

/* ---------- Brand column ---------- */

.footerG-col.footerG-brand {
  padding-right: 40px;
}

.footerG-logo img {
  width: 176px;
  max-width: 188px;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 32px rgba(15, 23, 42, 0.18));
}

.footerG-desc {
  margin: 18px 0 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.footerG-contact p {
  margin-bottom: 4px;
  font-size: 14px;
  color: #6b7280;
}

.footerG-contact p strong {
  color: #374151;
}

/* Social icons */

.footerG-social {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footerG-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.04);
  color: #111827;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.footerG-social a:hover {
  transform: translateY(-2px);
  background: #28a745;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(40, 167, 69, 0.4);
}

/* ---------- Section headings / accordion buttons ---------- */

.footerG-col {
  min-width: 0;
}

.footerG-accordion {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  margin: 0 0 12px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  letter-spacing: 0.03em;
  text-transform: none;
}

/* Chevron icon */

.footerG-accordion::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(55, 65, 81, 0.85);
  border-bottom: 2px solid rgba(55, 65, 81, 0.85);
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.footerG-accordion.is-open::after {
  transform: rotate(-135deg);
  border-color: #28a745;
}

.footerG-accordion.is-static {
  cursor: default;
}

/* ---------- Links ---------- */

.footerG-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footerG-links li {
  margin-bottom: 7px;
}

.footerG-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
  padding: 1px 0;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footerG-links a::before {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: width 0.18s ease;
}

.footerG-links a:hover {
  color: #15803d;
  transform: translateX(1px);
}

.footerG-links a:hover::before {
  width: 100%;
}

/* ---------- Mobile accordion behaviour (CSS side) ---------- */

/* Visual separators between sections */

@media (max-width: 767.98px) {
  .footerG-col:not(.footerG-brand) {
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    padding-top: 12px;
  }
}

@media (max-width: 767.98px) {
  .footerG-accordion {
    width: 100%;
    justify-content: space-between;
    font-size: 15px;
    padding: 4px 4px 4px 0;
  }
}

@media (max-width: 767.98px) {
  .footerG-links {
    padding: 4px 0 10px 4px;
    display: none;
  }
}

@media (max-width: 767.98px) {
  .footerG-links li {
    margin-bottom: 6px;
  }
}

/* Desktop override – ensure columns always visible */

@media (min-width: 768px) {
  .footerG-links {
    display: block !important;
    padding-left: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .footerG-accordion::after {
    display: none;
  }
}

/* ---------- Disclaimer ---------- */

.footerG-disclaimer {
  margin-top: 40px;
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.65;
}

/* ---------- Bottom bar ---------- */

.footerG-bottom {
  margin-top: 45px;
  padding: 24px 0 26px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.9), #f9fafb);
}

.footerG-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: #4b5563;
}

.footerG-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footerG-legal a {
  color: #4b5563;
  text-decoration: none;
  position: relative;
  padding-bottom: 1px;
  font-size: 13px;
}

.footerG-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #28a745;
  transition: width 0.18s ease;
}

.footerG-legal a:hover {
  color: #15803d;
}

.footerG-legal a:hover::after {
  width: 100%;
}

.footerG-flag {
  width: 38px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

/* Bottom responsiveness */

@media (max-width: 767.98px) {
  .footerG-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .footerG-container, .footerG-social a, .footerG-links a, .footerG-legal a {
    transition: none !important;
  }
}

/* (extra little polish so it feels "premium") */

#footerV5Glow ::selection {
  background: rgba(40, 167, 69, 0.18);
  color: #111827;
}

