/*--------FOOTER---------*/

/* Professional Footer Styles */
.professional-footer {
  position: relative;
  background: #1a1a1a;
  color: #e0e0e0;
  overflow: hidden;
  z-index: 980;
}

/* Container */
.container-footer {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.flex-footer-link{
  display: flex;
  justify-content: space-around;
  margin-bottom:30px;
  width: 30%;
}

/* Wave Decoration */
.footer-wave {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  color: #1a1a1a;
  transform: rotate(180deg);
}

/* =============================================
   FOOTER STATS MODULE - NoraDrops
   ============================================= */

.footer-stats-module {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #222;
  background-image: repeating-linear-gradient( 45deg, rgba(106, 106, 106, 0.01) 0px, rgba(157, 157, 157, 0) 1px, #5353531a 1px, #00000003 5px );}
/* ── Footer Programme Partenaire ───────────────────────── */
.footer-broker-section {
  background: #1e1e1e;
  border-top: 1px solid rgba(240,185,11,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 20px 0;
}
.footer-broker-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(240,185,11,0.06) 0%, rgba(240,185,11,0.02) 100%);
  border: 1px solid rgba(240,185,11,0.14);
  border-radius: 12px;
}
.footer-broker-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-broker-svg {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}
.footer-broker-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-broker-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #1a1a1a;
  background: #f0b90b;
  padding: 2px 7px;
  border-radius: 20px;
}
.footer-broker-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  max-width: 480px;
}
.footer-broker-sub strong { color: #f0b90b; font-weight: 600; }
.footer-broker-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f0b90b;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 12px;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 3px 14px rgba(240,185,11,0.18);
}
.footer-broker-btn:hover {
  background: #ffd234;
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(240,185,11,0.32);
}
@media (max-width: 640px) {
  .footer-broker-card { flex-direction: column; align-items: flex-start; }
  .footer-broker-btn { width: 100%; justify-content: center; }
  .footer-broker-svg { display: none; }
}


.login-page .footer-stats-module {
  display:none;
}

.footer-stats-module .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.footer-stats-module .stat-card2 {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  justify-content: center;
}



.footer-stats-module .stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.footer-stats-module .stat-icon.holders {
  background: linear-gradient(135deg, rgba(246, 176, 59, 0.2), rgba(246, 176, 59, 0.05));
  color: #f6b03b;
}

.footer-stats-module .stat-icon.members {
  background: linear-gradient(135deg, rgba(246, 176, 59, 0.2), rgba(246, 176, 59, 0.05));
  color: #f6b03b;
}

.footer-stats-module .stat-icon.visitors {
  background: linear-gradient(135deg, rgba(246, 176, 59, 0.2), rgba(246, 176, 59, 0.05));
  color: #f6b03b;
}

.footer-stats-module .stat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-stats-module .stat-number {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.footer-stats-module .stat-label2 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animation de chargement */
.footer-stats-module .stat-number.loading {
  background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  color: transparent;
  min-width: 60px;
  height: 26px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-stats-module {
    padding: 30px 15px;
  }
  
  .footer-stats-module .stats-grid {
    gap: 15px;
  }
  
  .footer-stats-module .stat-card2 {
    padding: 15px 20px;
  }
  
  .footer-stats-module .stat-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .footer-stats-module .stat-number {
    font-size: 22px;
  }
  
  .footer-stats-module .stat-label2 {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .footer-stats-module .stat-card2 {
    flex-direction: column;
    padding:0px;
  }
  .footer-stats-module .stat-number {
    font-size: 22px;
    text-align: center;
  }
  .container-footer {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
  .footer-stats-module .stats-grid {
    gap: 15px;
    justify-content: space-between;
    display: flex;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer-stats-module .stats-grid {
    gap: 20px;
  }
  
  .footer-stats-module .stat-card2 {
    padding: 18px 20px;
  }
}




/* Newsletter Section */
.footer-newsletter-section {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-text h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}

.newsletter-text h3 i {
  color: #f0b90b;
  margin-right: 10px;
  animation: bounce 2s infinite;
}

.newsletter-text p {
  color: #b0b0b0;
  font-size: 1rem;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.form-wrapper {
  display: flex;
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.form-wrapper:focus-within {
  border-color: #f0b90b;
  box-shadow: 0 0 20px rgba(240, 185, 11, 0.2);
}

.newsletter-form input[type="email"] {
  flex: 1;
  background: none;
  border: none;
  padding: 15px 25px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.newsletter-form input[type="email"]::placeholder {
  color: #808080;
}

.newsletter-form button {
  background: linear-gradient(135deg, #f0b90b, #f8d33a);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  color: #1a1a1a;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(240, 185, 11, 0.3);
}

.newsletter-privacy {
  font-size: 0.85rem;
  color: #808080;
  margin: 0;
}

.newsletter-privacy i {
  margin-right: 5px;
  color: #f0b90b;
}

/* Main Footer */
.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-link-footer {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--transition-fast);
  position: relative;
  color: #646464;
  font-weight: 500;
  font-size: 15px;
  padding: 0px;
}

.nav-link-footer:hover {
  color: var(--primary-color);
}

.nav-link-footer i {
  font-size: 16px;
}

/* Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 30%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: auto;
}

.brand-logo img {
  width: 40px;
  height: 40px;
}

.brand-logo h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(45deg, #f0b90b, #f8d33a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-description {
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 10px;
  margin: auto;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b0b0;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #f0b90b;
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(240, 185, 11, 0.3);
}

/* Footer Links */
.footer-column h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #f0b90b;
}

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

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #f0b90b;
  transform: translateX(5px);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Donation Section */
.footer-donation h5 i {
  color: #e74c3c;
  margin-right: 8px;
}

.donation-text {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.crypto-donation {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.flex-dons {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
}

.donation-item {
  display: flex;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.donation-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #f0b90b;
}

.crypto-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(126, 134, 206, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #7e86ce;
}

.crypto-icon.bitcoin {
  background: rgba(247, 147, 26, 0.1);
  color: #f7931a;
}

.donation-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.crypto-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

.address-wrapper {
  display: flex;
  gap: 5px;
}

.crypto-address {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 8px 10px;
  color: #808080;
  font-size: 0.75rem !important;
  outline: none;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 8px 12px;
  color: #b0b0b0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: #f0b90b;
  color: #1a1a1a;
  border-color: #f0b90b;
}

.copy-btn.copied {
  background: #2ecc71;
  color: #fff;
  border-color: #2ecc71;
}

/* Footer Bottom */
.footer-bottom {
  background: #0d0d0d;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright {
  margin: 0;
  color: #808080;
  font-size: 0.9rem;
}

.copyright strong {
  color: #f0b90b;
}

.footer-stats {
  display: flex;
  gap: 25px;
}

.footer-stats span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #808080;
  font-size: 0.9rem;
}

.footer-stats i {
  color: #f0b90b;
}

.footer-stats strong {
  color: #e0e0e0;
}

/* Animations */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-donation {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-newsletter-section {
    padding: 40px 0;
  }
  
  .newsletter-text h3 {
    font-size: 1.4rem;
  }
  
  .form-wrapper {
    flex-direction: column;
    border-radius: 10px;
    padding: 0;
  }
  
  .newsletter-form input[type="email"] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px 10px 0 0;
  }
  
  .newsletter-form button {
    width: 100%;
    border-radius: 0 0 10px 10px;
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer-wave {
    top: -30px;
    height: 30px;
  }
  
  .newsletter-text h3 {
    font-size: 1.2rem;
  }
  
  .footer-column h5 {
    font-size: 1rem;
  }
  
  .crypto-address {
    font-size: 0.65rem;
    padding: 6px 8px;
  }
  
  .footer-stats span {
    font-size: 0.8rem;
  }
  .footer-brand {
  width: 100%;
  text-align: center;
}
.flex-footer-link {
  width: 100%;
}
.brand-logo {
  display: flex;
  flex-direction: column;
}
}

/* ── Overrides login-page (account + auth pages) ── */
.login-page .footer-newsletter-section,
.login-page .footer-main {
  display: none;
}

.login-page .footer-bottom {
  background: #fff;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ── Masquer bannière recrutement sur pages auth + account ── */
.login-page .footer-broker-section {
  display: none;
}
