/* ==========================================
   UNIVERSITÉ DES ANGES - CUSTOM CSS COMPLET
   Framework: Bulma + Custom Styles
   Version: 2.0 - Responsive & Modern
   ========================================== */

/* ==========================================
   VARIABLES CSS
   ========================================== */
:root {
  /* Colors */
  --primary: #4F46E5;
  --primary-dark: #4338CA;
  --primary-light: #818CF8;
  --secondary: #764BA2;
  --accent: #F093FB;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-success: linear-gradient(135deg, #52E5A4 0%, #10B981 100%);
  
  /* Spacing */
  --navbar-height: 70px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1F2937;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

.main-content {
  min-height: calc(100vh - var(--navbar-height));
  padding-top: var(--navbar-height);
}

/* ==========================================
   NAVBAR STYLES - AMÉLIORÉ POUR MOBILE
   ========================================== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  transition: all var(--transition-base);
  z-index: 1000;
  height: var(--navbar-height);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.5rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  transition: transform var(--transition-fast);
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 45px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text small {
  font-size: 0.75rem;
  color: #6B7280;
  font-weight: 500;
}

/* Menu hamburger */
.navbar-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  margin-right: 0.5rem; /* Décalage à gauche pour plus de visibilité */
}

.navbar-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.navbar-burger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu Desktop */
.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-end {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-item {
  position: relative;
  padding: 0.75rem 1rem;
  color: #4B5563;
  font-weight: 500;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.navbar-item:hover {
  color: var(--primary);
  background-color: rgba(79, 70, 229, 0.05);
  border-radius: 0.5rem;
}

.navbar-item.is-active {
  color: var(--primary);
}

.navbar-item.is-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px 2px 0 0;
}

.navbar-cta {
  background: var(--gradient-primary);
  color: white !important;
  border-radius: 0.5rem;
  padding: 0.625rem 1.25rem !important;
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: 0 4px 6px -1px rgb(79 70 229 / 0.3);
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgb(79 70 229 / 0.4);
  background: linear-gradient(135deg, #5B52E5 0%, #8456AC 100%);
}

/* ==========================================
   NAVBAR MOBILE - MENU DÉROULANT
   ========================================== */
@media (max-width: 1024px) {
  .navbar-burger {
    display: flex;
    margin-left: auto;
    margin-right: 0.75rem; /* Décalage pour meilleure visibilité */
  }

  .navbar .container {
    padding: 0 0.75rem; /* Ajuster le padding du container */
  }

  .navbar-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-20px);
    z-index: 999;
  }

  .navbar-menu.is-active {
    max-height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    padding: 1rem 0;
  }

  .navbar-end {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .navbar-item {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0;
    justify-content: flex-start;
    border-bottom: 1px solid #F3F4F6;
  }

  .navbar-item:hover {
    background-color: rgba(79, 70, 229, 0.05);
  }

  .navbar-item.is-active::after {
    display: none;
  }

  .navbar-item.is-active {
    background-color: rgba(79, 70, 229, 0.08);
  }

  .navbar-cta {
    margin: 1rem 1.5rem;
    width: calc(100% - 3rem);
    text-align: center;
    justify-content: center;
  }

  .logo-text small {
    display: none;
  }

  .logo-text strong {
    font-size: 1rem;
  }

  .logo-image {
    height: 38px;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  background: var(--gradient-primary);
  color: white;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 1;
}

.hero.is-primary {
  background: var(--gradient-primary);
}

/* ==========================================
   STATS SECTION (HOME PAGE)
   ========================================== */
.stats-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 0;
  margin-top: -50px;
  position: relative;
  z-index: 5;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================
   FEATURE CARD STYLES
   ========================================== */
.feature-card {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.3);
  border-color: #4F46E5;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-icon .material-icons {
  font-size: 2.5rem;
}

/* ==========================================
   CARD STYLES
   ========================================== */
.card, .box {
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-slow);
  overflow: hidden;
}

.card:hover, .hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 1.5rem;
}

/* ==========================================
   TAG & BADGE STYLES
   ========================================== */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.tag.is-primary {
  background-color: #EEF2FF;
  color: var(--primary);
}

.tag.is-info {
  background-color: #DBEAFE;
  color: var(--info);
}

.tag.is-success {
  background-color: #D1FAE5;
  color: var(--success);
}

.tag.is-warning {
  background-color: #FEF3C7;
  color: var(--warning);
}

.tag.is-danger {
  background-color: #FEE2E2;
  color: var(--danger);
}

/* ==========================================
   BUTTONS
   ========================================== */
.button {
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.button.is-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 6px -1px rgb(79 70 229 / 0.3);
}

.button.is-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgb(79 70 229 / 0.4);
}

.button.is-outlined {
  background: transparent;
  border: 2px solid currentColor;
}

.button.is-white.is-outlined {
  color: white;
  border-color: white;
}

.button.is-white.is-outlined:hover {
  background: white;
  color: var(--primary);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
  border-color: rgba(79, 70, 229, 0.2);
}

.testimonial-quote {
  font-size: 3.5rem;
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4B5563;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  background: var(--gradient-primary);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

/* ==========================================
   TEXT UTILITIES
   ========================================== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================
   FOOTER PREMIUM - RESPONSIVE MOBILE
   ========================================== */
.footer-premium {
  background: linear-gradient(180deg, #1F2937 0%, #111827 100%);
  color: white;
  padding: 0;
  margin-top: 4rem;
}

.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.875rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links .material-icons {
  font-size: 1rem;
  color: var(--primary-light);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-contact .material-icons {
  color: var(--primary-light);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 1.75rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-legal:hover {
  color: white;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.75rem;
}

/* Footer Mobile Optimization */
@media (max-width: 768px) {
  .footer-premium {
    margin-top: 2rem;
  }

  .footer-top {
    padding: 2.5rem 0 2rem;
  }

  .footer-top .columns {
    margin: 0;
  }

  .footer-top .column {
    padding: 1.5rem 1rem;
    width: 100%;
  }

  .footer-brand {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .footer-logo {
    height: 40px;
    margin: 0 auto;
  }

  .footer-tagline {
    font-size: 0.875rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
    gap: 0.875rem;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .footer-title {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-top .column:first-child .footer-title {
    border-top: none;
    padding-top: 0;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-links a {
    justify-content: center;
    padding: 0.5rem 0;
  }

  .footer-contact li {
    justify-content: center;
    text-align: left;
    max-width: 300px;
    margin: 0 auto 1.125rem;
  }

  .footer-bottom {
    padding: 1.5rem 1rem;
  }

  .footer-bottom .columns {
    margin: 0;
  }

  .footer-bottom .column {
    padding: 0.5rem;
    text-align: center !important;
    width: 100%;
  }

  .copyright {
    margin-bottom: 1rem;
  }

  .footer-legal {
    display: inline-block;
    padding: 0.25rem 0;
  }

  .footer-separator {
    display: inline-block;
    margin: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .footer-top {
    padding: 2rem 0 1.5rem;
  }

  .footer-top .column {
    padding: 1.25rem 0.75rem;
  }

  .footer-tagline {
    font-size: 0.8125rem;
  }

  .footer-title {
    font-size: 1rem;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 0.875rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .copyright,
  .footer-legal {
    font-size: 0.8125rem;
  }
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.5);
}

/* ==========================================
   RESPONSIVE - MOBILE OPTIMIZATIONS
   ========================================== */

/* Stats Section - Mobile */
@media (max-width: 768px) {
  .stats-section {
    margin-top: 0;
    padding: 2.5rem 1rem;
  }

  .stats-section .columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0;
  }

  .stats-section .column {
    padding: 0;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 2rem 0.75rem;
  }

  .stat-card {
    padding: 1.25rem 0.75rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }
}

/* Features Section - Grid 1x1 Mobile */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }

  .section .columns.is-multiline {
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  .section .column.is-4-desktop,
  .section .column.is-6-tablet {
    width: 100%;
    padding: 0.75rem 0;
  }

  .feature-card {
    padding: 2rem 1.5rem;
    margin-bottom: 0;
  }

  .feature-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 1.25rem;
  }

  .feature-icon .material-icons {
    font-size: 2.125rem;
  }

  .feature-card .title.is-4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .feature-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.5rem 0.875rem;
  }

  .feature-card {
    padding: 1.75rem 1.25rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon .material-icons {
    font-size: 2rem;
  }

  .feature-card .title.is-4 {
    font-size: 1.125rem;
  }

  .feature-card p {
    font-size: 0.875rem;
  }
}

/* Actualités Section - Grid 1x1 Mobile */
@media (max-width: 768px) {
  .section.has-background-light {
    padding: 3rem 1rem;
  }

  .section.has-background-light .columns.is-multiline {
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  .section.has-background-light .column {
    width: 100%;
    padding: 0.75rem 0;
  }

  .card.hover-lift {
    margin-bottom: 0;
  }

  .card-content {
    padding: 1.5rem;
  }

  .card-content .title.is-5 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .card-content .subtitle.is-6 {
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .card-content .content {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }

  .card-content .button {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .section.has-background-light {
    padding: 2.5rem 0.875rem;
  }

  .card-content {
    padding: 1.25rem;
  }

  .card-content .title.is-5 {
    font-size: 1.0625rem;
  }

  .card-content .content {
    font-size: 0.875rem;
  }

  .card-content .button {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

/* Testimonials - Carrousel Mobile avec Swiper */
@media (max-width: 768px) {
  .testimonials-mobile-wrapper {
    position: relative;
    padding: 0 2.5rem;
  }

  .testimonials-swiper {
    overflow: visible;
  }

  .testimonials-swiper .swiper-slide {
    height: auto;
  }

  .testimonial-card {
    padding: 1.75rem;
    margin-bottom: 0;
  }

  .testimonial-quote {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .author-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.0625rem;
  }

  .testimonial-author p {
    font-size: 0.9375rem;
  }

  .testimonial-author .is-size-7 {
    font-size: 0.8125rem;
  }

  /* Boutons de navigation Swiper pour témoignages */
  .testimonials-button-prev,
  .testimonials-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
  }

  .testimonials-button-prev {
    left: 0;
  }

  .testimonials-button-next {
    right: 0;
  }

  .testimonials-button-prev:hover,
  .testimonials-button-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
  }

  .testimonials-pagination {
    margin-top: 1.5rem;
    text-align: center;
  }

  .testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary);
    opacity: 0.3;
  }

  .testimonials-pagination .swiper-pagination-bullet-active {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .testimonials-mobile-wrapper {
    padding: 0 2rem;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }

  .testimonial-quote {
    font-size: 2.25rem;
  }

  .testimonial-text {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .testimonial-author p {
    font-size: 0.875rem;
  }

  .testimonials-button-prev,
  .testimonials-button-next {
    width: 32px;
    height: 32px;
  }
}

/* CTA Section - Mobile */
@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 1rem;
  }

  .cta-content .title.is-1 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
  }

  .cta-content .subtitle.is-4 {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .cta-content .buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-content .button {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 3rem 0.875rem;
  }

  .cta-content .title.is-1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .cta-content .subtitle.is-4 {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .cta-content .button {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
  }
}

/* Titres sections - Mobile */
@media (max-width: 768px) {
  .title.is-2 {
    font-size: 2rem !important;
  }

  .subtitle.is-5 {
    font-size: 1.125rem !important;
  }

  .has-text-centered.mb-6 {
    margin-bottom: 2rem !important;
  }
}

@media (max-width: 480px) {
  .title.is-2 {
    font-size: 1.75rem !important;
  }

  .subtitle.is-5 {
    font-size: 1rem !important;
  }
}

/* Boutons généraux - Mobile */
@media (max-width: 768px) {
  .button.is-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .button.is-large {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
  }

  .scroll-top-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }
}

/* Amélioration du touch sur mobile */
@media (max-width: 768px) {
  .button,
  .navbar-item,
  a {
    -webkit-tap-highlight-color: rgba(79, 70, 229, 0.1);
  }

  .button {
    min-height: 44px;
  }

  .navbar-item {
    min-height: 48px;
  }
}

/* Optimisation des images sur mobile */
@media (max-width: 768px) {
  .card-image img,
  .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* Scroll smooth sur mobile */
@media (max-width: 768px) {
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

/* ==========================================
   OVERLAY POUR MENU MOBILE
   ========================================== */
@media (max-width: 1024px) {
  .navbar-menu::before {
    content: '';
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
  }

  .navbar-menu.is-active::before {
    opacity: 1;
    visibility: visible;
  }
}