/* =========================================
   MODERN FOOTER - Dark Mode SaaS/Agency Style
   ========================================= */

#site-footer {
  --bg: #0b1020;
  --ink: #e7edf3;
  --muted: #9fb2c9;
  --blue: #66a7ff;
  background: var(--bg);
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 80px;
}

#site-footer .footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Main Footer Grid - 4 Columns */
#site-footer .footer-main {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
  gap: 48px;
  align-items: start;
}

/* ===== Column 1: Brand ===== */
#site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#site-footer .footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

#site-footer .footer-brand-logo img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

#site-footer .footer-brand-text {
  display: flex;
  flex-direction: column;
}

#site-footer .footer-brand-name {
  font: 900 20px/1.2 'Cairo', sans-serif;
  color: var(--ink);
  margin-bottom: 4px;
}

#site-footer .footer-brand-tagline {
  font: 700 13px/1.4 'Cairo', sans-serif;
  color: var(--muted);
}

#site-footer .footer-brand-desc {
  font: 400 14px/1.7 'Cairo', sans-serif;
  color: var(--muted);
  margin-top: 4px;
}

#site-footer .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

#site-footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}

#site-footer .footer-social-link:hover {
  color: var(--ink);
  background: rgba(102, 167, 255, 0.1);
  border-color: rgba(102, 167, 255, 0.3);
  transform: translateY(-2px);
}

#site-footer .footer-social-link svg {
  width: 18px;
  height: 18px;
}

/* ===== Column 2: Quick Links ===== */
#site-footer .footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#site-footer .footer-column-title {
  font: 800 16px/1.3 'Cairo', sans-serif;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.2px;
}

#site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#site-footer .footer-links a {
  color: var(--muted);
  text-decoration: none;
  font: 400 14px/1.6 'Cairo', sans-serif;
  transition: color 0.2s ease, padding-right 0.2s ease;
  display: inline-block;
}

#site-footer .footer-links a:hover {
  color: var(--ink);
  padding-right: 6px;
}

/* ===== Column 3: Services ===== */
/* Uses same .footer-column and .footer-links styles */

/* ===== Column 4: Contact ===== */
#site-footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#site-footer .footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#site-footer .footer-contact-label {
  font: 700 12px/1.5 'Cairo', sans-serif;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#site-footer .footer-contact-value {
  font: 400 14px/1.6 'Cairo', sans-serif;
  color: var(--muted);
}

#site-footer .footer-contact-value a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

#site-footer .footer-contact-value a:hover {
  color: var(--ink);
}

/* ===== Bottom Bar: Copyright & Developer ===== */
#site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  background: rgba(11, 16, 32, 0.5);
}

#site-footer .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

#site-footer .footer-copyright {
  font: 400 14px/1.6 'Cairo', sans-serif;
  color: var(--muted);
  margin: 0;
}

#site-footer .footer-developer {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 400 14px/1.6 'Cairo', sans-serif;
  color: var(--muted);
}

#site-footer .footer-developer-text {
  color: var(--muted);
}

#site-footer .footer-developer-name {
  font-weight: 700;
  color: var(--ink);
}

#site-footer .footer-developer-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

#site-footer .footer-developer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.2s ease;
}

#site-footer .footer-developer-social-link:hover {
  color: var(--ink);
  background: rgba(102, 167, 255, 0.1);
  border-color: rgba(102, 167, 255, 0.3);
  transform: translateY(-1px);
}

#site-footer .footer-developer-social-link svg {
  width: 16px;
  height: 16px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  #site-footer .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  #site-footer .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  #site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 40px;
  }
  
  #site-footer .footer-container {
    padding: 0 20px;
  }
  
  #site-footer .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  #site-footer .footer-developer {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  #site-footer {
    margin-top: 60px;
  }
  
  #site-footer .footer-main {
    padding: 40px 0 32px;
    gap: 28px;
  }
  
  #site-footer .footer-container {
    padding: 0 16px;
  }
  
  #site-footer .footer-bottom {
    padding: 20px 0;
  }
  
  #site-footer .footer-copyright,
  #site-footer .footer-developer {
    font-size: 13px;
  }
}

