.footer-section {
  background: #1a1a1a;
  color: #ffffff;
  padding: 80px 60px;
  width: 100%;
  scroll-snap-align: end; 
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-col {
  flex: 1;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.ceo-name {
  font-size: 16px;
  color: #bbbbbb;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.8;
  color: #bbbbbb;
  margin-bottom: 10px;
}

.email-link a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-numbers {
  margin-top: 20px;
}

.contact-numbers p {
  margin-bottom: 5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: #bbbbbb;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-lang {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #bbbbbb;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-item:hover {
  color: #ffffff;
}

.lang-item img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
  .footer-section {
    padding: 60px 20px 120px;
    scroll-snap-align: start; /* Enable snap to start on mobile */
  }

  .footer-container {
    flex-direction: column;
    gap: 60px;
  }

  .footer-col h3 {
    margin-bottom: 20px;
  }
}

/* Privacy Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #ffffff;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 24px 30px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fcfcfc;
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #999;
  transition: color 0.2s ease;
  padding: 0;
}

.modal-close:hover {
  color: #1a1a1a;
}

.modal-body {
  padding: 30px;
  overflow-y: auto;
  max-height: calc(80vh - 80px);
  color: #444;
  line-height: 1.7;
}

.policy-section {
  margin-bottom: 25px;
}

.policy-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: #112347;
  margin-bottom: 10px;
}

.policy-section p {
  font-size: 14px;
  margin: 0;
  color: #555;
}

@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }
  .modal-header {
    padding: 20px;
  }
  .modal-body {
    padding: 20px;
  }
}
