/* Modern Footer Styles */
.footer {
  background: linear-gradient(135deg, rgb(59, 59, 59) 0%, #1f2937 100%);
  color: #f3f4f6;
  padding: 4rem 0 2rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column {
  position: relative;
}
.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 186px; /* Adjust size as needed */
  height: 60px;
  margin-right: 0.75rem; /* Optional — can remove if no text next to logo */
}



.footer-description {
  color: rgb(255, 255, 255);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #e5e7eb;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #1880ff 0%, #66aaff 100%);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-flex;
  align-items: center;
}

.footer-link:hover {
  color: #e5e7eb;
  transform: translateX(5px);
}

.footer-link::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #1880ff;
}

.footer-link:hover::before {
  opacity: 1;
  left: -12px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  color: #9ca3af;
  background: rgba(156, 163, 175, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid #656565;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
  color: white;
  background: #1880ff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(156, 163, 175, 0.1) 0%, rgba(156, 163, 175, 0.3) 50%, rgba(156, 163, 175, 0.1) 100%);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright {
  color: rgb(240, 240, 240);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.legal-link {
  color: #6b7280;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #e5e7eb;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-column:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-container {
    padding: 0 1.5rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-brand {
    margin-bottom: 1rem;
  }

  .footer-title {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-column:first-child {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-link:hover {
    transform: none;
  }

  .footer-link::before {
    display: none;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-column {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
/* Language Selector Styles */
#google_translate_element {
  margin: 15px 0;
  text-align: center;
}

.goog-te-gadget {
  font-family: Arial, sans-serif !important;
}

.goog-te-gadget-simple {
  background-color: #f8f8f8 !important;
  border: 1px solid #ddd !important;
  padding: 8px !important;
  border-radius: 4px !important;
}

.goog-te-menu-value span {
  color: #333 !important;
}

.goog-te-menu-value img {
  display: none !important;
}
/* Language Switcher Styles */
.language-selector {
    position: relative;
    display: inline-block;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.language-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.language-current:hover {
    background: #f5f5f5;
}

.language-current svg {
    margin-left: 4px;
    transition: transform 0.2s;
}

.language-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 180px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 1000;
}

.language-dropdown.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.language-option:hover {
    background: #f5f5f5;
}

.language-option img {
    flex-shrink: 0;
}

.language-option span:last-child {
    margin-left: auto;
    font-size: 12px;
    color: #999;
}
