﻿/* =============================================================================
   PREMIUM COMPONENTS CSS
   Composants UI premium pour IS Ingénierie & Sécurité
   Version: 1.0 | Date: 17 novembre 2025
   ============================================================================= */

/* =============================================================================
   1. TIMELINE VERTICALE
   ============================================================================= */

.timeline-section {
  position: relative;
  overflow: hidden;
}

.timeline-vertical {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* SVG Line */
.timeline-line-svg {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-path {
  stroke-dasharray: 0 1000;
  stroke-dashoffset: 0;
  animation: draw-line 2s ease-out forwards;
}

@keyframes draw-line {
  to {
    stroke-dasharray: 1000 1000;
  }
}

/* Timeline Item */
.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item-left {
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
}

.timeline-item-right {
  justify-content: flex-start;
  padding-left: calc(50% + 40px);
}

/* Marker */
.timeline-marker {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  z-index: 2;
}

.timeline-marker-inner {
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 50%;
  border: 4px solid var(--color-bg);
  box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.2);
  transition: all 0.4s ease;
}

.timeline-marker-glow {
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.4), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.timeline-item:hover .timeline-marker-glow {
  opacity: 1;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.3;
  }
}

/* Content Card */
.timeline-content {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  max-width: 480px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

/* Arrow pointer to center */
.timeline-item-left .timeline-content::after,
.timeline-item-right .timeline-content::before {
  content: '';
  position: absolute;
  top: 2rem;
  width: 0;
  height: 0;
  border: 12px solid transparent;
}

.timeline-item-left .timeline-content::after {
  right: -24px;
  border-left-color: var(--color-border);
}

.timeline-item-right .timeline-content::before {
  left: -24px;
  border-right-color: var(--color-border);
}

/* Icon */
.timeline-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

.timeline-year {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(0, 217, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.timeline-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-line-svg {
    left: 24px;
  }

  .timeline-item-left,
  .timeline-item-right {
    padding-left: 64px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-marker {
    left: 24px;
  }

  .timeline-item-left .timeline-content::after,
  .timeline-item-right .timeline-content::before {
    display: none;
  }

  .timeline-content {
    max-width: 100%;
  }
}

/* =============================================================================
   2. TIMELINE HORIZONTALE
   ============================================================================= */

.timeline-horizontal-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.timeline-progress-container {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(0, 217, 255, 0.1);
  margin-bottom: 3rem;
  border-radius: 4px;
}

.timeline-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--gradient-accent);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.timeline-horizontal {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) transparent;
}

.timeline-horizontal::-webkit-scrollbar {
  height: 8px;
}

.timeline-horizontal::-webkit-scrollbar-track {
  background: rgba(0, 217, 255, 0.1);
  border-radius: 4px;
}

.timeline-horizontal::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 4px;
}

.timeline-track {
  display: flex;
  gap: 3rem;
  padding: 2rem 1rem 3rem;
  min-width: min-content;
}

.timeline-item-h {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 280px;
  max-width: 280px;
  opacity: 0;
  transform: scale(0.9);
  animation: fade-in-scale 0.6s ease forwards;
}

@keyframes fade-in-scale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.timeline-item-h:nth-child(1) { animation-delay: 0.1s; }
.timeline-item-h:nth-child(2) { animation-delay: 0.2s; }
.timeline-item-h:nth-child(3) { animation-delay: 0.3s; }
.timeline-item-h:nth-child(4) { animation-delay: 0.4s; }
.timeline-item-h:nth-child(5) { animation-delay: 0.5s; }
.timeline-item-h:nth-child(6) { animation-delay: 0.6s; }

/* Diamond Marker */
.timeline-marker-h {
  position: relative;
  width: 32px;
  height: 32px;
  margin-bottom: 2rem;
}

.timeline-diamond {
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transform: rotate(45deg);
  border: 3px solid var(--color-bg);
  box-shadow: 0 4px 16px rgba(0, 217, 255, 0.4);
  transition: all 0.4s ease;
}

.timeline-diamond-glow {
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.6), transparent 70%);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.timeline-item-h:hover .timeline-diamond-glow {
  opacity: 1;
  animation: pulse-glow 2s ease-in-out infinite;
}

.timeline-item-h:hover .timeline-diamond {
  transform: rotate(45deg) scale(1.2);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.6);
}

/* Card */
.timeline-card-h {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.timeline-card-h:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

.timeline-year-h {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(0, 217, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.timeline-card-h h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.timeline-card-h p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Navigation arrows */
.timeline-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  z-index: 10;
}

.timeline-nav:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
}

.timeline-nav-prev {
  left: 1rem;
}

.timeline-nav-next {
  right: 1rem;
}

@media (max-width: 768px) {
  .timeline-item-h {
    min-width: 240px;
    max-width: 240px;
  }

  .timeline-nav {
    width: 40px;
    height: 40px;
  }
}

/* =============================================================================
   3. TIMELINE HYBRIDE
   ============================================================================= */

.timeline-hybrid-section {
  position: relative;
}

.timeline-hybrid {
  position: relative;
  width: 100%;
}

/* Years header (desktop only) */
.timeline-years {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.timeline-year-marker {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.3;
  transition: opacity 0.4s ease;
  position: relative;
}

.timeline-year-marker::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.timeline-year-marker.active {
  opacity: 1;
}

.timeline-year-marker.active::after {
  opacity: 1;
}

@media (min-width: 1025px) {
  .timeline-years {
    display: grid;
  }
}

/* Timeline Grid */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 769px) {
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Event Card */
.timeline-event {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-event.in-view {
  opacity: 1;
  transform: translateY(0);
}

.timeline-event-marker {
  position: absolute;
  top: 1.5rem;
  left: -24px;
  width: 12px;
  height: 12px;
  background: var(--gradient-accent);
  border-radius: 50%;
  border: 3px solid var(--color-bg);
  z-index: 2;
}

@media (max-width: 768px) {
  .timeline-event-marker {
    display: none;
  }
}

.timeline-event-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.timeline-event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.timeline-event:hover .timeline-event-card::before {
  transform: scaleX(1);
}

.timeline-event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

/* Event Header */
.timeline-event-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.timeline-event-badge {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(0, 217, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.timeline-event-icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.timeline-event:hover .timeline-event-icon {
  transform: rotate(15deg) scale(1.1);
}

.timeline-event-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.timeline-event-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Stagger animation delays */
.timeline-event:nth-child(1) { transition-delay: 0.05s; }
.timeline-event:nth-child(2) { transition-delay: 0.1s; }
.timeline-event:nth-child(3) { transition-delay: 0.15s; }
.timeline-event:nth-child(4) { transition-delay: 0.2s; }
.timeline-event:nth-child(5) { transition-delay: 0.25s; }
.timeline-event:nth-child(6) { transition-delay: 0.3s; }

/* =============================================================================
   4. TEAM CARDS PREMIUM
   ============================================================================= */

.grid-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.team-card-premium {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card-premium:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--color-accent);
}

/* Background pattern */
.team-card-background {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(45deg, rgba(0, 217, 255, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0, 217, 255, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(0, 217, 255, 0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(0, 217, 255, 0.03) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0;
  transition: all 0.6s ease;
}

.team-card-premium:hover .team-card-background {
  opacity: 1;
  transform: rotate(5deg) scale(1.1);
}

/* Avatar */
.team-avatar-premium {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
}

.team-avatar-premium img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-bg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}

.team-card-premium:hover .team-avatar-premium img {
  transform: scale(1.1);
  border-color: var(--color-accent);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.3);
}

.avatar-glow {
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.4), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card-premium:hover .avatar-glow {
  opacity: 1;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* Content */
.team-content {
  position: relative;
  z-index: 1;
}

.team-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.team-role-premium {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.team-bio-premium {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

/* Social Links */
.team-socials {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.team-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 217, 255, 0.1);
  border-radius: 8px;
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-social-link:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .grid-team {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   5. CERTIFICATIONS SECTION
   ============================================================================= */

.certifications-section {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.certifications-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--color-bg) 0%, transparent 100%);
  pointer-events: none;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.certification-card {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.certification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.certification-card:hover::before {
  transform: scaleX(1);
}

.certification-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

/* Certification Icon */
.certification-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
  transition: all 0.4s ease;
}

.certification-card:hover .certification-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.5);
}

.certification-icon svg {
  width: 48px;
  height: 48px;
}

/* Content */
.certification-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.certification-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(0, 217, 255, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.certification-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.certification-year {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-tertiary);
  margin-top: 1rem;
}


/* ============================================
   FORMULAIRES PREMIUM
   ============================================ */

/* Form Premium Container */
.form-premium {
  width: 100%;
}

/* Form Group */
.form-group-premium {
  margin-bottom: 1.75rem;
  position: relative;
}

.form-group-premium label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.65rem;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.form-group-premium.focused label {
  color: var(--color-accent);
}

/* Input Premium Styles */
.form-input-premium {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: inherit;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input-premium::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.form-input-premium:hover {
  border-color: rgba(0, 217, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.form-input-premium:focus {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 0 0 4px rgba(0, 217, 255, 0.1),
    0 8px 24px rgba(0, 217, 255, 0.2);
  transform: translateY(-2px);
}

/* Select Premium */
select.form-input-premium {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234BA75F' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 14px;
  padding-right: 3rem;
}

select.form-input-premium option {
  background: #1A3A5C;
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
}

/* Textarea Premium */
textarea.form-input-premium {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* Error State */
.form-input-premium.error,
.form-input-premium:invalid:not(:placeholder-shown) {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.05);
}

.form-input-premium.error:focus {
  box-shadow: 
    0 0 0 4px rgba(255, 68, 68, 0.1),
    0 8px 24px rgba(255, 68, 68, 0.2);
}

/* Success State */
.form-input-premium.success {
  border-color: #4BA75F;
  background: rgba(75, 167, 95, 0.05);
}

/* Disabled State */
.form-input-premium:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.02);
}

/* Helper Text & Error Messages */
.form-helper {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.form-helper.error-message {
  color: #ff6b6b;
  font-weight: 500;
}

.char-counter {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Checkbox Premium */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-accent);
}

.form-checkbox label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.form-checkbox a:hover {
  color: #00B8D9;
  text-decoration: underline;
}

/* Honeypot (hidden) */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Form Message */
.form-message {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 1.5rem;
  display: none;
}

.form-message.success {
  background: rgba(75, 167, 95, 0.1);
  border: 1px solid rgba(75, 167, 95, 0.3);
  color: #4BA75F;
}

.form-message.error {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: #ff6b6b;
}

/* Responsive */
@media (max-width: 768px) {
  .form-input-premium {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
  
  .form-group-premium {
    margin-bottom: 1.5rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
  }
}


/* ============================================
   LOCATION CARDS (Contact Page)
   ============================================ */

.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 217, 255, 0.5);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.2);
}

.location-card:hover .location-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.5);
}

@media (max-width: 768px) {
  .certifications-grid {
    grid-template-columns: 1fr;
  }
}

/* Save file - CSS continue dans le prochain fichier car limite de longueur */
