/* HOPEX.TEAM - Composants (Navigation, Footer, Boutons) */

/* NAVIGATION */
.navbar {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  position: relative;
  z-index: 100000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #121745;
  text-decoration: none;
  z-index: 1001;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-nav a {
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.navbar-nav a:hover {
  background: #f8fafc;
  color: #121745;
}

.navbar-nav a.active {
  color: #3b82f6;
  background: #eff6ff;
  font-weight: 600;
}

.navbar-nav a.btn-primary {
  background: #1e40af;
  color: white;
  padding: 0.75rem 1.5rem;
  border: 2px solid #1e40af;
}

.navbar-nav a.btn-primary:hover {
  background: #1e3a8a;
  color: white;
  border-color: #1e3a8a;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid #334155;
  cursor: pointer;
  padding: 8px;
  z-index: 100001;
  position: relative;
  border-radius: 4px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #334155;
  margin: 2px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }
  
  .navbar-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 100000;
    border: 1px solid #e2e8f0;
  }
  
  .navbar-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .navbar-nav li {
    width: 100%;
  }
  
  .navbar-nav a {
    display: block;
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
  }
  
  .navbar-nav a.btn-primary {
    margin-top: 1rem;
    text-align: center;
    border-bottom: none;
    background: #1e40af !important;
    color: white !important;
    border: 2px solid #1e40af !important;
  }
}
/* FOOTER */
.footer {
  background-color: var(--gray-800);
  color: var(--gray-300);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-section h3 {
  color: var(--white);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.footer-section p,
.footer-section a {
  color: var(--gray-300);
  line-height: 1.6;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: var(--space-6);
  text-align: center;
  color: var(--gray-400);
  font-size: var(--text-sm);
}

/* BOUTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  font-weight: 500;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Variantes de boutons */
.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-success {
  background-color: var(--success-color);
  color: var(--white);
  border-color: var(--success-color);
}

.btn-success:hover {
  background-color: #059669;
  border-color: #059669;
  color: var(--white);
}

.btn-danger {
  background-color: var(--danger-color);
  color: var(--white);
  border-color: var(--danger-color);
}

.btn-danger:hover {
  background-color: #dc2626;
  border-color: #dc2626;
  color: var(--white);
}

/* Tailles de boutons */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* CARTES */
.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--gray-200);
}

.card-body {
  padding: var(--space-6);
}

.card-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--gray-200);
  background-color: var(--gray-50);
}

/* FORMULAIRES */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 500;
  color: var(--gray-700);
}

.form-control {
  width: 100%;
  padding: var(--space-3);
  font-size: var(--text-base);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control.error {
  border-color: var(--danger-color);
}

.form-error {
  color: var(--danger-color);
  font-size: var(--text-sm);
  margin-top: var(--space-1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out forwards;
}

/* Délais d'animation */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* BOUTON GAME TIME - ANIMATIONS SPECTACULAIRES */
.mission-header-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.mission-header-container h2 {
  margin: 0;
  flex: 1;
}

.game-time-container {
  display: flex;
  justify-content: flex-start;
  perspective: 1000px;
}

.game-time-btn {
  position: relative;
  background: linear-gradient(45deg, #FF6B35, #FF8E3C, #FFB700);
  background-size: 200% 200%;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: gameTimeFloat 3s ease-in-out infinite,
             gameTimeGlow 2s ease-in-out infinite alternate,
             gameTimeGradient 4s ease infinite;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4),
              0 0 25px rgba(255, 142, 60, 0.3);
  transform-style: preserve-3d;
}

.game-time-btn:hover {
  transform: scale(1.1) rotateY(15deg) rotateX(5deg);
  animation: gameTimeHover 0.6s ease infinite alternate,
             gameTimeGradient 2s ease infinite,
             gameTimePulse 1s ease infinite;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.6),
              0 0 50px rgba(255, 142, 60, 0.5);
}

.game-time-btn:active {
  transform: scale(0.95) rotateY(-10deg);
  animation: gameTimeShake 0.5s ease-in-out;
}

.btn-text {
  position: relative;
  z-index: 2;
  letter-spacing: 2px;
  animation: gameTimeTextBounce 2s ease-in-out infinite;
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  animation: gameTimeRotateGlow 3s linear infinite;
  z-index: 1;
}

/* ANIMATIONS KEYFRAMES */
@keyframes gameTimeFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(1deg); }
  50% { transform: translateY(-5px) rotate(0deg); }
  75% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes gameTimeGlow {
  0% { box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4), 0 0 25px rgba(255, 142, 60, 0.3); }
  100% { box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 142, 60, 0.5); }
}

@keyframes gameTimeGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gameTimeHover {
  0% { transform: scale(1.1) rotateY(15deg) rotateX(5deg) rotateZ(1deg); }
  100% { transform: scale(1.15) rotateY(20deg) rotateX(8deg) rotateZ(-1deg); }
}

@keyframes gameTimePulse {
  0% { box-shadow: 0 10px 25px rgba(255, 107, 53, 0.6), 0 0 50px rgba(255, 142, 60, 0.5); }
  100% { box-shadow: 0 12px 30px rgba(255, 107, 53, 0.8), 0 0 60px rgba(255, 142, 60, 0.7); }
}

@keyframes gameTimeShake {
  0%, 100% { transform: scale(0.95) rotateY(-10deg); }
  20% { transform: scale(0.95) rotateY(-12deg) rotateX(2deg); }
  40% { transform: scale(0.95) rotateY(-8deg) rotateX(-2deg); }
  60% { transform: scale(0.95) rotateY(-11deg) rotateX(1deg); }
  80% { transform: scale(0.95) rotateY(-9deg) rotateX(-1deg); }
}

@keyframes gameTimeTextBounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}

@keyframes gameTimeRotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive pour mobile */
@media (max-width: 768px) {
  .mission-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .game-time-btn {
    padding: 8px 16px;
    font-size: 0.65rem;
  }
  
  .game-time-btn:hover {
    transform: scale(1.05) rotateY(10deg);
  }
}

/* PUBLICITÉ SPINOZZIHOCKEY - STYLE FACEBOOK */
.cta-grid {
  display: grid;
  grid-template-columns: 265px 1fr;
  gap: 3rem;
  align-items: start;
}

.spinozzi-ad {
  background: white;
  border-radius: 9px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  animation: adPulse 3s ease-in-out infinite;
}

.spinozzi-ad:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.ad-header {
  padding: 9px 12px;
  background: #f8f9fa;
  border-bottom: 1px solid #e5e5e5;
}

.ad-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ad-avatar {
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #FF6B35, #FF8E3C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 11px;
}

.ad-info h4 {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  color: #1c1e21;
}

.ad-info span {
  font-size: 9px;
  color: #65676b;
}

.ad-content {
  padding: 12px;
}

.ad-image-placeholder {
  width: 100%;
  height: 90px;
  background: linear-gradient(135deg, #FF6B35, #FF8E3C, #FFB700);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 9px;
  position: relative;
  overflow: hidden;
}

.ad-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  background: white;
  padding: 6px;
}

.ad-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: adShimmer 2s infinite;
}

.ad-content h3 {
  margin: 0 0 6px 0;
  font-size: 12px;
  font-weight: 700;
  color: #1c1e21;
}

.ad-content p {
  margin: 3px 0;
  font-size: 11px;
  color: #65676b;
}

.ad-content p:last-of-type {
  margin-bottom: 9px;
  color: #1c1e21;
  font-weight: 500;
}

.ad-btn {
  display: inline-block;
  background: #1877f2;
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.ad-btn:hover {
  background: #166fe5;
  transform: scale(1.02);
}

.main-cta {
  display: flex;
  align-items: center;
  min-height: 300px;
}

/* Animations pour la pub */
@keyframes adPulse {
  0%, 100% { 
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  }
  50% { 
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.2);
  }
}

@keyframes adShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Responsive pour la grid CTA */
@media (max-width: 1024px) {
  .cta-grid {
    grid-template-columns: 225px 1fr;
    gap: 2rem;
  }
  
  .spinozzi-ad {
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .spinozzi-ad {
    max-width: 265px;
    margin: 0 auto;
  }
  
  .main-cta {
    min-height: auto;
  }
}

/* CONTACT INFO SIMPLE */
.contact-info-simple {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  max-width: 400px;
  margin: 2rem auto;
}

.contact-info-simple p {
  margin: 1rem 0;
  font-size: 1.1rem;
}

.contact-grid {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

/* PAGE CONTACT PROFESSIONNELLE */
.contact-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* FORMULAIRE DE CONTACT */
.contact-form-section {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.contact-card {
  padding: 2.5rem;
}

.contact-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.contact-form .form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #ffffff;
  transition: all 0.2s ease;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='m0 0 2 2 2-2z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 0.75rem;
  padding-right: 2.5rem;
}

.contact-form select.form-control option {
  padding: 0.5rem;
}

.message-textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.checkbox-group:last-child {
  margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #3b82f6;
}

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b5563;
  cursor: pointer;
}

.required-checkbox {
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
  margin-top: 1rem;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
}

/* SIDEBAR */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* CARTE CONTACT INFO */
.contact-info-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.contact-info-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.contact-value:hover {
  color: #e2e8f0;
}

/* FAQ CARDS */
.faq-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #3b82f6;
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.faq-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.75rem;
}

.faq-card p {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.faq-card p:last-child {
  margin-bottom: 0;
}

.faq-detail {
  font-size: 0.85rem !important;
  color: #6b7280 !important;
  border-top: 1px solid #f3f4f6;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-info-card {
    padding: 1.5rem;
  }
  
  .checkbox-section {
    padding: 1rem;
  }
}

/* PUBLICITÉ SPINOZZIHOCKEY POUR PAGE CONTACT */
.spinozzi-ad-contact {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  animation: adPulse 3s ease-in-out infinite;
  margin-top: 1.5rem;
}

/* HERO CONTACT AVEC IMAGE DE FOND */
.contact-hero {
  position: relative;
  background-image: url('assets/images/iStock-1358569473.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16) 0;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.3rem !important;
  color: white !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8) !important;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive pour le hero contact */
@media (max-width: 768px) {
  .contact-hero {
    background-attachment: scroll;
    min-height: 300px;
  }
  
  .contact-hero h1 {
    font-size: 2.2rem;
  }
  
  .contact-hero p {
    font-size: 1.1rem !important;
  }
}

/* HERO INSCRIPTION AVEC IMAGE DE FOND */
.register-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16) 0;
}

.register-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.register-hero .container {
  position: relative;
  z-index: 2;
}

.register-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
  margin-bottom: 1rem;
}

.register-hero p {
  font-size: 1.3rem !important;
  color: white !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8) !important;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive pour le hero inscription */
@media (max-width: 768px) {
  .register-hero {
    background-attachment: scroll;
    min-height: 300px;
  }
  
  .register-hero h1 {
    font-size: 2.2rem;
  }
  
  .register-hero p {
    font-size: 1.1rem !important;
  }
}

.spinozzi-ad-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.spinozzi-ad-contact .ad-header {
  padding: 12px 16px;
  background: #f8f9fa;
  border-bottom: 1px solid #e5e5e5;
}

.spinozzi-ad-contact .ad-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spinozzi-ad-contact .ad-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(45deg, #FF6B35, #FF8E3C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 12px;
}

.spinozzi-ad-contact .ad-info h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1c1e21;
}

.spinozzi-ad-contact .ad-content {
  padding: 16px;
}

.spinozzi-ad-contact .ad-image-placeholder {
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, #FF6B35, #FF8E3C, #FFB700);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.spinozzi-ad-contact .ad-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 8px;
}

.spinozzi-ad-contact .ad-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: adShimmer 2s infinite;
}

.spinozzi-ad-contact .ad-content h3 {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 700;
  color: #1c1e21;
}

.spinozzi-ad-contact .ad-content p {
  margin: 4px 0;
  font-size: 12px;
  color: #65676b;
}

.spinozzi-ad-contact .ad-content p:last-of-type {
  margin-bottom: 12px;
  color: #1c1e21;
  font-weight: 500;
}

.spinozzi-ad-contact .ad-btn {
  display: inline-block;
  background: #1877f2;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.spinozzi-ad-contact .ad-btn:hover {
  background: #166fe5;
  transform: scale(1.02);
}

/* Newsletter Section Styles */
.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin: 0 auto;
  max-width: 400px;
}

.newsletter-input-group input {
  outline: none;
  font-size: 16px;
}

.newsletter-input-group button {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-input-group button:hover {
  background: #e55a2b !important;
}

@media (max-width: 768px) {
  .newsletter-input-group {
    flex-direction: column;
    max-width: 300px;
  }
  
  .newsletter-input-group input {
    border-radius: 5px 5px 0 0 !important;
  }
  
  .newsletter-input-group button {
    border-radius: 0 0 5px 5px !important;
  }
}
