/* assets/css/footer.css */
/* Footer Base Styles */
.site-footer {
  background-color: #1a1a1a;
  color: #e5e5e5;
  padding: 40px 20px 20px;
  margin-top: 0;
}

/* Main container – three equal columns */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

/* ---------- LEFT: Logo + Address ---------- */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.footer-address {
  font-style: normal;
  color: #a9a5a5;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ---------- CENTER: Navigation ---------- */
.foot-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
   list-style: none;
 
  
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  list-style: none;
}
.foot-nav li {
  list-style: none;
 
  
}

.foot-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0%;
  position: relative;
  list-style: none;
  right: 7.8%;
}

.foot-nav {
  color: #a9a5a5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  list-style: none;
  list-style: none;
}

.foot-nav a:hover {
  color: #a446a5e3;
}

/* ---------- RIGHT: Connect with us + Social Dock ---------- */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-social .footer-title {
  text-align: right;
  justify-content: flex-end;
}

.social-dock-wrapper {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.social-dock {
  height: 80px;
  display: flex;
  align-items: flex-end;
  padding: 8px;
  position: relative;
  left: 26%;
}

.social-dock-inner {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 16px;
  height: 64px;
  align-items: center;
}

/* Dock items (icons) */
.dock-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #9ca3af;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  cursor: pointer;
  text-decoration: none;
}

.dock-item:hover {
  width: 56px;
  color: #b86cb7;
}

.dock-item:hover .dock-label {
  opacity: 20;
  transform: translateX(-50%) translateY(-10px);
  visibility: visible;
}

.dock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.dock-item:hover .dock-icon {
  transform: scale(1.1);
}

.dock-icon svg {
  width: 24px;
  height: 24px;
}

.dock-label {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}

/* ---------- BOTTOM: Copyright (centered) ---------- */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: #87888b;
  font-size: 1;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 968px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand,
  .footer-navigation,
  .footer-social {
    align-items: center;
    text-align: center;
  }

  .footer-social .footer-title {
    text-align: center;
    justify-content: center;
  }

  .social-dock-wrapper {
    justify-content: center;
  }

  .footer-logo {
    max-width: 100px;
  }

  .footer-address {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 30px 15px 15px;
  }

  .footer-container {
    gap: 35px;
  }

  .footer-title {
    font-size: 1rem;
  }

  .foot-nav a {
    font-size: 0.9rem;
  }

  .social-dock-inner {
    gap: 14px;
    padding: 12px 14px;
  }

  .dock-item {
    width: 38px;
    height: 38px;
  }

  .dock-item:hover {
    width: 50px;
  }

  .dock-icon svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 25px 10px 15px;
  }

  .footer-container {
    gap: 30px;
  }

  .footer-logo {
    max-width: 80px;
  }

  .footer-address {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .social-dock-inner {
    gap: 12px;
    padding: 10px 12px;
  }

  .dock-item {
    width: 36px;
    height: 36px;
  }

  .dock-item:hover {
    width: 48px;
  }

  .dock-icon svg {
    width: 20px;
    height: 20px;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 20px 5px 10px;
  }

  .footer-container {
    gap: 25px;
  }

  .footer-logo {
    max-width: 60px;
  }

  .footer-address {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .footer-title {
    font-size: 0.9rem;
  }

  .foot-nav a {
    font-size: 0.85rem;
    padding: 0.5rem 0;
  }

  .social-dock-inner {
    gap: 10px;
    padding: 8px 10px;
  }

  .dock-item {
    width: 32px;
    height: 32px;
  }

  .dock-item:hover {
    width: 42px;
  }

  .dock-icon svg {
    width: 18px;
    height: 18px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}
