/* ━━━ PAGES OPTIMISÉES - DESIGN MODERNE COMPACT ━━━ */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0 1rem;
}

.page-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, rgba(212, 160, 23, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 23, 0.2);
}

.page-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-gold);
}

.page-header h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.1);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, rgba(212, 160, 23, 0.05) 100%);
  border-radius: 10px;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-gold);
}

.contact-card h3 {
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-card a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--accent-gold);
}

.contact-card-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-wrapper h2 {
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--accent-gold);
}

/* Modern Form */
.modern-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.modern-form .form-group {
  margin-bottom: 0;
}

.modern-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: all 0.2s;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.info-card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, rgba(212, 160, 23, 0.05) 100%);
  border-radius: 8px;
}

.info-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-gold);
}

.info-card h3 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Content Section */
.content-section {
  margin-bottom: 2rem;
}

.content-section h2 {
  font-size: 1.35rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Countries Grid */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}

.country-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.65rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}

.country-item:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 160, 23, 0.05);
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.step-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.25rem;
  position: relative;
}

.step-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #F0C040 100%);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.step-card h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .page-hero {
    padding: 1.25rem 0 0.75rem;
  }
  
  .page-header h1 {
    font-size: 1.5rem;
  }
  
  .page-header p {
    font-size: 0.875rem;
  }
  
  .page-icon {
    width: 40px;
    height: 40px;
  }
  
  .page-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  
  .contact-card {
    padding: 1rem;
  }
  
  .contact-form-wrapper {
    padding: 1.25rem;
  }
  
  .contact-form-wrapper h2 {
    font-size: 1.125rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  
  .info-card {
    padding: 1rem;
  }
  
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
  
  .country-item {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  
  .step-card {
    padding: 1rem;
  }
  
  .content-section h2 {
    font-size: 1.25rem;
  }
  
  .content-section p {
    font-size: 0.875rem;
  }
}

@media (max-width: 479px) {
  .page-header h1 {
    font-size: 1.35rem;
  }
  
  .contact-form-wrapper {
    padding: 1rem;
  }
  
  .countries-grid {
    grid-template-columns: 1fr;
  }
  
  .info-card {
    padding: 0.875rem;
  }
  
  .step-card {
    padding: 0.875rem;
  }
}
