/* =========================================================
   PREMIUM DESKTOP & MOBILE FOOTER (Match Image 1)
   ========================================================= */
.site-footer {
  background-color: #080D20; /* Ultra Dark Navy from Image 1 */
  color: #ffffff;
  padding: 70px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.05); /* Subtle top line */
  font-family: 'Inter', -apple-system, sans-serif;
  width: 100%;
  position: relative;
  z-index: 10;
}

.site-footer .footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* Footer Columns */
.site-footer .footer-col {
  flex: 1;
  min-width: 160px;
}

.site-footer .footer-col.brand-col {
  flex: 2;
  min-width: 320px;
  padding-right: 40px;
}

/* Brand Section */
.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.site-footer .brand-logo-svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
  background: linear-gradient(135deg, #3457F0 0%, #233FC7 100%);
  padding: 8px;
  border-radius: 10px;
}

.site-footer .brand-text-wrapper {
  display: flex;
  flex-direction: column;
}

.site-footer .brand-text-footer {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.site-footer .brand-text-footer span {
  color: #3457F0; /* GK in blue */
}

.site-footer .brand-tagline {
  font-size: 11px;
  color: #8A93A6;
  font-weight: 500;
  margin-top: 2px;
}

.site-footer .footer-desc {
  font-size: 14px;
  color: #8A93A6;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Social Icons */
.site-footer .footer-socials {
  display: flex;
  gap: 12px;
}

.site-footer .footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A93A6;
  transition: all 0.3s ease;
}

.site-footer .footer-socials a svg {
  width: 18px;
  height: 18px;
}

.site-footer .footer-socials a:hover {
  background: #3457F0;
  color: #fff;
  transform: translateY(-3px);
}

/* Footer Links */
.site-footer .footer-heading {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer .footer-links a {
  color: #8A93A6;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}

.site-footer .footer-links a svg {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  color: #3457F0;
  transition: transform 0.2s;
}

.site-footer .footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Bottom Bar */
.site-footer .footer-bottom {
  max-width: 1280px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer .footer-bottom p {
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
}

.site-footer .bottom-right-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer .made-with {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: #64748B;
}

.site-footer .made-with svg {
  width: 14px;
  height: 14px;
  color: #ff4757;
}

.site-footer .back-to-top {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #3457F0;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(52,87,240,0.3);
}

.site-footer .back-to-top svg {
  width: 20px;
  height: 20px;
}

.site-footer .back-to-top:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE (MOBILE) ADJUSTMENTS
   ========================================= */
@media (max-width: 768px) {
  .site-footer {
    display: none !important; /* Mobile par poora desktop footer gayab! */
  }
}