/* ==========================================================================
   BCC (B COMM CENTER) - DESIGN SYSTEM & STYLESHEET
   Colors: Blue, White, Red (Bleu, Blanc, Rouge)
   Style: Modern Corporate, Glassmorphism, Micro-interactions, Responsive
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-navy: #0B192C;
  --primary-blue: #1E3E62;
  --royal-blue: #2563EB;
  --royal-blue-hover: #1D4ED8;
  --accent-red: #E63946;
  --accent-red-hover: #DC2626;
  --accent-red-light: rgba(230, 57, 70, 0.1);
  --accent-blue-light: rgba(37, 99, 235, 0.08);
  
  --bg-main: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-dark: #0F172A;
  
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --text-white: #FFFFFF;
  
  --border-color: #E2E8F0;
  --border-focus: #2563EB;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1E3E62 0%, #0B192C 100%);
  --gradient-royal: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  --gradient-accent: linear-gradient(135deg, #E63946 0%, #C5221F 100%);
  --gradient-hero-bg: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.12) 0%, rgba(230, 57, 70, 0.05) 50%, rgba(248, 250, 252, 1) 100%);
  --gradient-card-hover: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(241,245,249,0.5) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.06);
  --shadow-glow-red: 0 8px 25px rgba(230, 57, 70, 0.35);
  --shadow-glow-blue: 0 8px 25px rgba(37, 99, 235, 0.35);

  /* Layout & Spacing */
  --container-max: 1240px;
  --header-height: 85px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Helpers */
.text-highlight-red {
  color: var(--accent-red);
}

.text-highlight-blue {
  color: var(--royal-blue);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-blue-light);
  color: var(--royal-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-tag.tag-red {
  background: var(--accent-red-light);
  color: var(--accent-red);
  border-color: rgba(230, 57, 70, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--text-white);
  box-shadow: var(--shadow-glow-red);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.45);
}

.btn-secondary {
  background: var(--gradient-royal);
  color: var(--text-white);
  box-shadow: var(--shadow-glow-blue);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--royal-blue);
  color: var(--royal-blue);
  background: rgba(37, 99, 235, 0.04);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--text-white);
  color: var(--primary-navy);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--royal-blue);
}

/* Top Banner Notification Bar */
.top-bar {
  background: var(--primary-navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item i {
  color: var(--accent-red);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  transition: var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  height: 75px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-svg {
  height: 54px;
  width: auto;
}

.logo-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  max-width: 170px;
  line-height: 1.2;
  border-left: 2px solid var(--accent-red);
  padding-left: 0.6rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-navy);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent-red);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--royal-blue);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 4rem 0 6rem 0;
  background: linear-gradient(135deg, rgba(11, 25, 44, 0.82) 0%, rgba(30, 62, 98, 0.78) 50%, rgba(37, 99, 235, 0.72) 100%),
              url('../images/hero_bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-red);
  border-radius: 50%;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(230, 57, 70, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-features-list {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

.hero-feature-item i {
  color: #10B981;
  font-size: 1.1rem;
}

/* Hero Visual Composition */
.hero-visual-wrapper {
  position: relative;
  z-index: 1;
}

.hero-main-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.hero-img-box {
  position: relative;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  height: 450px;
}

.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-main-card:hover .hero-img-box img {
  transform: scale(1.03);
}

/* Floating Glass Cards */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.float-top-left {
  top: -20px;
  left: -25px;
}

.float-bottom-right {
  bottom: 25px;
  right: -25px;
  animation-delay: 2s;
}

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

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.float-icon.icon-blue {
  background: var(--accent-blue-light);
  color: var(--royal-blue);
}

.float-icon.icon-red {
  background: var(--accent-red-light);
  color: var(--accent-red);
}

.float-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.float-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FORMATIONS SECTION (CARDS & BONUS)
   ========================================================================== */
.section-padding {
  padding: 6rem 0;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-slate {
  background-color: var(--bg-main);
}

.formations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.formation-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.formation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-royal);
  transition: var(--transition-fast);
}

.formation-card:nth-child(even)::before {
  background: var(--gradient-accent);
}

.formation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.formation-header {
  margin-bottom: 1.25rem;
}

.formation-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--accent-blue-light);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-bounce);
}

.formation-card:nth-child(even) .formation-icon-wrapper {
  background: var(--accent-red-light);
  color: var(--accent-red);
}

.formation-card:hover .formation-icon-wrapper {
  transform: scale(1.1) rotate(4deg);
}

.formation-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.formation-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.formation-highlights {
  list-style: none;
  margin-bottom: 1.75rem;
}

.formation-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.formation-highlights li i {
  color: var(--royal-blue);
  margin-top: 3px;
  font-size: 0.8rem;
}

.card-cta-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.06);
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.formation-card:hover .card-cta-btn {
  background: var(--royal-blue);
  color: var(--text-white);
}

/* Bonus Box */
.bonus-banner {
  margin-top: 4rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: var(--text-white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.bonus-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.25) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bonus-title-box {
  text-align: center;
  margin-bottom: 2.5rem;
}

.bonus-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--accent-red);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.bonus-banner h3 {
  font-size: 1.85rem;
  font-weight: 800;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bonus-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #F8FAFC;
  flex-shrink: 0;
}

.bonus-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.bonus-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   ETUDES A L'ETRANGER SECTION
   ========================================================================== */
.abroad-section {
  position: relative;
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  overflow: hidden;
}

.abroad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.abroad-content {
  z-index: 2;
}

.abroad-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.abroad-point {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-card);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.abroad-point:hover {
  transform: translateX(6px);
  border-color: var(--royal-blue);
  box-shadow: var(--shadow-md);
}

.abroad-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-red-light);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.abroad-point h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.2rem;
}

.abroad-point p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Destinations Badges Grid */
.destinations-box {
  margin-top: 1.5rem;
}

.destinations-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.destinations-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.dest-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.dest-flag {
  font-size: 1.1rem;
}

/* Abroad Visual Card */
.abroad-visual-box {
  position: relative;
}

.abroad-image-card {
  position: relative;
  background: white;
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.abroad-image-wrapper {
  height: 480px;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
}

.abroad-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abroad-stat-overlay {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.stat-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.stat-info h5 {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
}

.stat-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   POURQUOI CHOISIR BCC (ATOUTS)
   ========================================================================== */
.atouts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.atout-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  position: relative;
}

.atout-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--royal-blue);
}

.atout-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 20px;
  background: var(--gradient-hero-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.atout-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.atout-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   STATS & TESTIMONIALS & PHOTO GALLERY
   ========================================================================== */
.stats-banner {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 4rem 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.stat-item-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.stat-number {
  font-size: 3.25rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-number span {
  color: var(--accent-red);
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Testimonial Cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--royal-blue);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: rgba(37, 99, 235, 0.1);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--royal-blue);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.author-info p {
  font-size: 0.85rem;
  color: var(--royal-blue);
  font-weight: 600;
}

/* Photo Gallery Grid */
.gallery-section {
  margin-top: 5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 25, 44, 0) 40%, rgba(11, 25, 44, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay span {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ==========================================================================
   FORMS SECTION (CONTACT & CANDIDAT/RECRUTEMENT)
   ========================================================================== */
.contact-section {
  position: relative;
  background: var(--primary-navy);
  color: white;
  padding: 6rem 0;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 90%, rgba(230, 57, 70, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

/* Contact Info Column */
.contact-info-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.contact-info-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-detail-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
}

.contact-detail-text a:hover {
  color: var(--accent-red);
}

/* Social links in contact */
.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-btn:hover {
  background: var(--accent-red);
  transform: translateY(-4px);
  border-color: var(--accent-red);
}

/* Forms Tabs Wrapper */
.form-card-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  color: var(--text-main);
  position: relative;
  z-index: 2;
}

.form-tabs {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-main);
  padding: 0.4rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.form-tab-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: calc(var(--radius-md) - 4px);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.form-tab-btn.active {
  background: var(--bg-card);
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background: var(--bg-main);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--royal-blue);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

.file-input-wrapper {
  position: relative;
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  background: var(--bg-main);
  cursor: pointer;
  transition: var(--transition-fast);
}

.file-input-wrapper:hover {
  border-color: var(--royal-blue);
  background: rgba(37, 99, 235, 0.02);
}

.file-input-wrapper i {
  font-size: 2rem;
  color: var(--royal-blue);
  margin-bottom: 0.5rem;
}

.file-input-wrapper p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.file-input-wrapper input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.form-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
}

.form-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

.form-notice i {
  color: var(--royal-blue);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--primary-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: white;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--accent-red);
  border-radius: 2px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

/* Toast Alert Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--bg-card);
  color: var(--primary-navy);
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--royal-blue);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification.success {
  border-left-color: #10B981;
}

.toast-icon {
  font-size: 1.5rem;
  color: #10B981;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content-box {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-main);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.modal-close-btn:hover {
  background: var(--accent-red-light);
  color: var(--accent-red);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .abroad-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .top-bar {
    display: none;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .float-top-left, .float-bottom-right {
    display: none;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
