/* Footer Specific Styles */
.main-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: var(--text-white);
  padding: 50px 0 25px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5a623, #ff6b35, #f5a623);
}

/* Footer Brand Section */
.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.footer-logo .logo-icon {
  font-size: 2.2rem;
  color: #f5a623;
  animation: pulse 2s infinite;
}

.footer-logo .footer-logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.footer-logo .logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Contact Information */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9em;
  color: #cccccc;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: #f5a623;
  transform: translateX(5px);
}

.contact-item i {
  color: #f5a623;
  width: 18px;
  text-align: center;
  font-size: 1.1em;
}

/* Social Media Section */
.social-section {
  margin-bottom: 35px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 4px;
  background: linear-gradient(90deg, #f5a623, #ff6b35);
  border-radius: 2px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
  color: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.3), transparent);
  transition: left 0.5s ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  background: linear-gradient(135deg, #f5a623, #ff6b35);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 16px rgba(245, 166, 35, 0.4);
}

/* App Download Section */
.app-download-section {
  margin-bottom: 25px;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  font-size: 0.9em;
  font-weight: 600;
}

.app-btn:hover {
  background: linear-gradient(135deg, #f5a623, #ff6b35);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 166, 35, 0.4);
}

.app-btn i {
  font-size: 1.3em;
  color: #f5a623;
}

.app-btn:hover i {
  color: #ffffff;
}

/* Footer Menu */
.footer-menu {
  display: flex;
  gap: 25px;
}

.menu-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9em;
  transition: all 0.3s ease;
  padding: 6px 0;
  position: relative;
  font-weight: 500;
}

.footer-link:hover {
  color: #f5a623;
  transform: translateX(8px);
  font-weight: 600;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f5a623, #ff6b35);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.footer-link:hover::before {
  width: 10px;
}

/* Verification Section */
.verification-section {
  display: flex;
  justify-content: flex-end;
}

.verification-box {
  background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
  border-radius: 16px;
  padding: 25px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  border: 1px solid #3a3a3a;
  position: relative;
  overflow: hidden;
}

.verification-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #28a745);
}

.verification-icon {
  margin-bottom: 18px;
}

.verification-icon i {
  font-size: 2.8rem;
  color: #28a745;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.verification-text p {
  margin-bottom: 10px;
  font-size: 0.9em;
  color: #cccccc;
  line-height: 1.5;
}

.verification-link {
  color: #f5a623;
  text-decoration: none;
  font-size: 0.85em;
  word-break: break-all;
  transition: all 0.3s ease;
}

.verification-link:hover {
  color: #ff6b35;
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 25px;
  margin-top: 35px;
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f5a623, transparent);
}

.copyright-text,
.company-text {
  font-size: 0.85em;
  color: #999999;
  margin: 0;
  font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0 20px;
    margin-top: 40px;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo .logo-icon {
    font-size: 1.8rem;
  }
  
  .footer-logo .logo-text {
    font-size: 1.4rem;
  }
  
  .contact-info {
    align-items: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .verification-section {
    justify-content: center;
    margin-top: 25px;
  }
  
  .verification-box {
    max-width: 100%;
  }
  
  .footer-menu {
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    padding: 0 40px;
  }
  
  .menu-column:first-child {
    align-items: flex-start;
    text-align: left;
  }
  
  .menu-column:last-child {
    align-items: flex-end;
    text-align: right;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .app-buttons {
    align-items: center;
  }
  
  .footer-title {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 30px 0 20px;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .contact-info {
    align-items: center;
  }
  
  .contact-item {
    font-size: 0.85em;
    justify-content: center;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .footer-title {
    font-size: 1rem;
    text-align: center;
  }
  
  .footer-menu {
    flex-direction: row;
    gap: 15px;
    justify-content: space-between;
    padding: 0 35px;
  }
  
  .menu-column:first-child {
    align-items: flex-start;
    text-align: left;
  }
  
  .menu-column:last-child {
    align-items: flex-end;
    text-align: right;
  }
  
  .verification-box {
    padding: 20px;
  }
  
  .footer-bottom {
    text-align: center;
  }
}
