 /* Variables CSS - Charte Graphique */
    :root {
      --primary-dark: #002244;
      /* Bleu marine profond */
      --primary-main: #003366;
      /* Bleu marine principal */
      --primary-light: #004488;
      /* Bleu marine clair */
      --secondary-dark: #8b4513;
      /* Brun bois foncé */
      --secondary-main: #a0522d;
      /* Brun bois principal */
      --accent-gold: #d4af37;
      /* Or élégant */
      --text-dark: #2c3e50;
      /* Texte principal */
      --text-light: #7f8c8d;
      /* Texte secondaire */
      --background: #f8f9fa;
      /* Arrière-plan */
      --white: #ffffff;
      --gray-light: #e9ecef;
      --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      --radius: 8px;
    }

    /* Reset et Base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: var(--white);
      scroll-behavior: smooth;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      line-height: 1.3;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .btn {
      display: inline-block;
      padding: 12px 30px;
      border-radius: var(--radius);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
      color: var(--white);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 51, 102, 0.3);
    }

    .btn-secondary {
      background: var(--secondary-main);
      color: var(--white);
    }

    .btn-secondary:hover {
      background: var(--secondary-dark);
      transform: translateY(-2px);
    }

    /* Bouton Commander spécial dans la navbar */
    .nav-menu .btn-commander {
      background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
      color: var(--white);
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 25px;
      box-shadow: 0 4px 15px rgba(0, 51, 102, 0.5);
      border: 2px solid transparent;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-size: 0.9rem;
    }

    .nav-menu .btn-commander:hover {
      background: linear-gradient(135deg, var(--primary-light), var(--primary-main));
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 6px 25px rgba(0, 51, 102, 0.7);
      border-color: var(--primary-light);
      color: var(--white);
    }

    .nav-menu .btn-commander::before {
      content: '🛒 ';
      margin-right: 5px;
    }

    .btn-outline {
      border: 2px solid var(--white);
      color: var(--white);
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
    }

    .btn-outline:hover {
      background: var(--white);
      color: var(--primary-dark);
      border-color: var(--white);
      box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }

    /* Navigation Ultra-Moderne avec Glassmorphism */
    .navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      padding: 1rem 0;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
      padding: 0.8rem 0;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }

    .logo:hover {
      transform: translateY(-2px);
    }

    .logo i {
      font-size: 2.2rem;
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: pulse 2s ease-in-out infinite alternate;
    }

    .logo-image {
      height: 50px;
      width: auto;
      object-fit: contain;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .logo:hover .logo-image {
      transform: scale(1.05);
    }

    .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--primary-dark);
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 0;
      align-items: center;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      margin-left: 2rem; /* Ajouter de l'espace entre le logo et les boutons */
    }

    .nav-menu li {
      position: relative;
    }

    .nav-menu a {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 600;
      transition: all 0.3s ease;
      position: relative;
      padding: 0.8rem 1.5rem;
      border-radius: 25px;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap; /* Empêcher le retour à la ligne */
    }

    .nav-menu a::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
      border-radius: 25px;
      opacity: 0;
      transform: scale(0.8);
      transition: all 0.3s ease;
      z-index: -1;
    }

    .nav-menu a:hover::before {
      opacity: 1;
      transform: scale(1);
    }

    .nav-menu a:hover {
      color: var(--white);
      transform: translateY(-2px);
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .nav-menu a.special-btn {
      background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
      color: var(--white);
      font-weight: 700;
      margin-left: 1rem;
      box-shadow: 0 4px 15px rgba(0, 68, 136, 0.3);
      animation: glow 2s ease-in-out infinite alternate;
    }

    .nav-menu a.special-btn::before {
      background: linear-gradient(135deg, var(--accent-gold), var(--primary-main));
    }

    .nav-menu a.special-btn:hover {
      box-shadow: 0 8px 25px rgba(0, 68, 136, 0.5);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
      padding: 8px;
      border-radius: 8px;
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hamburger:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.1);
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--primary-dark);
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      100% { transform: scale(1.1); }
    }

    @keyframes glow {
      0% { box-shadow: 0 4px 15px rgba(0, 68, 136, 0.3); }
      100% { box-shadow: 0 6px 20px rgba(0, 68, 136, 0.6); }
    }

    /* Hero Section - Design Premium Ultra-Moderne */
    .hero {
      background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: scroll;
      color: var(--white);
      padding: 100px 0 60px;
      margin-top: 80px;
      position: relative;
      overflow: hidden;
      height: calc(100vh - 80px);
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0, 34, 68, 0.7), rgba(0, 51, 102, 0.6));
      pointer-events: none;
      z-index: 1;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1;
    }

    .hero-content {
      text-align: center;
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      z-index: 3;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px);
      border: 2px solid rgba(255, 255, 255, 0.2);
      padding: clamp(8px, 2vw, 12px) clamp(20px, 4vw, 30px);
      border-radius: 50px;
      font-size: clamp(0.8rem, 2vw, 0.95rem);
      font-weight: 600;
      margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
      letter-spacing: 1px;
      text-transform: uppercase;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      animation: float 6s ease-in-out infinite;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      margin-bottom: 1rem;
      color: var(--white);
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
      font-weight: 700;
      line-height: 1.1;
      background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: slideInUp 1s ease-out;
    }

    .hero p {
      font-size: clamp(1rem, 2.5vw, 1.4rem);
      margin-bottom: 2rem;
      opacity: 0.95;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
      font-weight: 400;
      line-height: 1.6;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      animation: slideInUp 1s ease-out 0.2s both;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2rem;
      animation: slideInUp 1s ease-out 0.4s both;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(60px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Sections Premium Design */
    .section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f0f9f0' fill-opacity='0.3'%3E%3Cpath d='m0 40l40-40h-40v40zm40 0v-40h-40l40 40z'/%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    .section-dark {
      background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 50%, #f0f9f0 100%);
      position: relative;
    }

    .section-dark::before {
      background: radial-gradient(circle at 20% 80%, rgba(0, 68, 136, 0.05) 0%, transparent 50%),
                  radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
      z-index: 2;
    }

    .section-header::before {
      content: '';
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
      border-radius: 2px;
    }

    .section-header h2 {
      font-size: 3.2rem;
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1.5rem;
      font-weight: 700;
      position: relative;
      padding-top: 30px;
    }

    .section-header p {
      font-size: 1.2rem;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.8;
      font-weight: 400;
    }

    /* Filtres Premium pour Produits */
    .product-filters {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 12px 30px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(0, 68, 136, 0.2);
      border-radius: 50px;
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .filter-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
      transition: left 0.4s ease;
      z-index: -1;
    }

    .filter-btn:hover::before,
    .filter-btn.active::before {
      left: 0;
    }

    .filter-btn:hover,
    .filter-btn.active {
      color: var(--white);
      border-color: var(--primary-main);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 68, 136, 0.3);
    }

    /* Grid Layout Premium */
    .grid {
      display: grid;
      gap: 2.5rem;
      position: relative;
      z-index: 2;
    }

    .grid-2 {
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .grid-3 {
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    /* Responsive Grid amélioré */
    @media (max-width: 768px) {
      .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      
      .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

    /* Cards Premium Design */
    .card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border-radius: 25px;
      padding: 0;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.3);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      transform-style: preserve-3d;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0, 68, 136, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
    }

    .card:hover::before {
      opacity: 1;
    }

    .card:hover {
      transform: translateY(-15px) rotateX(5deg);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      border-color: rgba(212, 175, 55, 0.4);
    }

    .product-image,
    .service-image {
      position: relative;
      height: 220px;
      overflow: hidden;
      border-radius: 25px 25px 0 0;
      background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
    }

    .product-image img,
    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.4s ease;
      filter: brightness(0.9);
      position: relative;
      z-index: 2;
    }

    .card:hover .product-image img,
    .card:hover .service-image img {
      transform: scale(1.1);
      filter: brightness(1.1);
    }

    .image-placeholder {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
      color: var(--white);
      text-align: center;
      opacity: 1;
      z-index: 1;
    }

    .image-placeholder.hide {
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .image-placeholder i {
      margin-bottom: 1rem;
      opacity: 0.8;
    }

    .image-placeholder span {
      font-size: 1.2rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .card-content {
      padding: 2rem;
      position: relative;
      z-index: 2;
    }

    .card-content h3 {
      font-size: 1.5rem;
      color: var(--primary-dark);
      margin-bottom: 1rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .card-content p {
      color: var(--text-dark);
      line-height: 1.7;
      font-size: 0.95rem;
    }

    /* Service Cards Specific */
    .service-header {
      padding: 1.5rem 2rem 1rem;
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(10px);
      position: relative;
      z-index: 2;
      height: 160px; /* Hauteur fixe pour éviter les décalages */
      display: flex;
      flex-direction: column;
      justify-content: center; /* Centrer le contenu verticalement */
      align-items: center; /* Centrer horizontalement */
    }

    .card-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem; /* Pas de margin auto pour éviter les conflits avec flexbox */
      box-shadow: 0 8px 25px rgba(0, 68, 136, 0.3);
      transition: all 0.3s ease;
      flex-shrink: 0; /* Empêcher la compression de l'icône */
    }

    .card:hover .card-icon {
      transform: scale(1.1) rotateY(180deg);
      box-shadow: 0 12px 35px rgba(0, 68, 136, 0.5);
    }

    .card-icon i {
      font-size: 1.8rem;
      color: var(--white);
    }

    .service-header h3 {
      text-align: center;
      font-size: 1.3rem;
      color: var(--primary-dark);
      font-weight: 700;
      margin: 0;
      line-height: 1.2; /* Ligne plus compacte pour les titres longs */
      max-width: 100%; /* Utiliser toute la largeur disponible */
      word-wrap: break-word; /* Permettre les retours à la ligne */
      display: flex;
      align-items: center; /* Centrer verticalement le texte */
      justify-content: center; /* Centrer horizontalement */
      flex: 1; /* Prendre l'espace disponible */
    }

    .service-description {
      padding: 0 2rem 2rem;
      position: relative;
      z-index: 2;
    }

    .service-description p {
      color: var(--text-dark);
      line-height: 1.7;
      font-size: 0.95rem;
      text-align: center;
    }

    /* Product Specifications */
    .product-specs {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(0, 68, 136, 0.2);
      flex-wrap: wrap;
    }

    .spec {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.8rem;
      color: var(--primary-main);
      background: rgba(0, 68, 136, 0.1);
      padding: 4px 12px;
      border-radius: 15px;
      font-weight: 600;
      border: 1px solid rgba(0, 68, 136, 0.2);
    }

    .spec i {
      font-size: 0.7rem;
    }

    /* Service Features */
    .service-features {
      display: flex;
      gap: 0.5rem;
      margin-top: 1.5rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(0, 68, 136, 0.2);
      justify-content: center;
      flex-wrap: wrap;
    }

    .feature-badge {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.75rem;
      color: var(--white);
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
      padding: 6px 12px;
      border-radius: 20px;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(0, 68, 136, 0.3);
      transition: all 0.3s ease;
    }

    .feature-badge:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 68, 136, 0.5);
    }

    .feature-badge i {
      font-size: 0.7rem;
    }

    /* À propos Premium Design */
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: stretch; /* Étirer pour avoir la même hauteur */
      margin-top: 2rem;
      min-height: 450px; /* Hauteur minimum réduite */
    }

    .about-text {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      padding: 3rem;
      border-radius: 25px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.3);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between; /* Distribuer le contenu équitablement */
      height: 100%; /* Prendre toute la hauteur disponible */
    }

    .about-text::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
    }

    .about-text h3 {
      font-size: 2.2rem;
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 2rem;
      font-weight: 700;
      line-height: 1.3;
    }

    .about-text p {
      margin-bottom: 2rem;
      color: var(--text-dark);
      line-height: 1.8;
      font-size: 1.05rem;
      flex-grow: 0; /* Ne pas grandir */
    }
    
    .about-text p:last-of-type {
      margin-bottom: 0; /* Pas de margin sur le dernier paragraphe */
      flex-grow: 1; /* Le dernier paragraphe peut grandir pour remplir l'espace */
      padding-bottom: 1rem; /* Padding interne pour compensation */
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: auto; /* Pousser vers le bas pour équilibrer */
      padding-top: 1.5rem; /* Padding interne pour compenser */
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 1rem;
      background: rgba(0, 68, 136, 0.1);
      border-radius: 15px;
      border: 1px solid rgba(0, 68, 136, 0.2);
      transition: all 0.3s ease;
    }

    .feature-item:hover {
      background: rgba(0, 68, 136, 0.15);
      transform: translateX(5px);
      border-color: var(--primary-main);
    }

    .feature-item i {
      color: var(--primary-main);
      font-size: 1.3rem;
      width: 25px;
      text-align: center;
    }

    .feature-item span {
      font-weight: 600;
      color: var(--text-dark);
      font-size: 0.9rem;
    }

    .about-images {
      display: flex;
      flex-direction: column;
      gap: 0.2rem; /* Écart réduit pour que les images se touchent presque */
      height: 100%; /* Prendre toute la hauteur disponible */
      justify-content: space-between; /* Distribuer les images équitablement */
    }

    .about-img {
      position: relative;
      flex: 1; /* Prendre une part égale de l'espace disponible */
      min-height: 180px; /* Hauteur minimum augmentée grâce à l'écart réduit */
      max-height: 220px; /* Hauteur maximum augmentée */
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: all 0.4s ease;
      background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
    }

    .about-img:first-child {
      grid-column: 1 / -1;
      height: 280px;
    }

    .about-img:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    }

    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.4s ease;
      filter: brightness(0.9);
      position: relative;
      z-index: 2;
    }

    .about-img:hover img {
      transform: scale(1.1);
      filter: brightness(1.1);
    }

    .about-img-placeholder {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--white);
      gap: 15px;
      text-align: center;
      padding: 1rem;
      opacity: 1;
      z-index: 1;
    }

    .about-img-placeholder.hide {
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .about-img-placeholder span {
      font-weight: 600;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Galerie Preview */
    .gallery-preview {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .gallery-item {
      aspect-ratio: 1;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    /* S'assurer que les gallery-items de la preview ne se superposent pas */
    .gallery-preview .gallery-item {
      position: relative;
      display: block;
      min-height: 200px;
    }

    .gallery-preview .about-img-placeholder {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    /* Debug: S'assurer que la grille fonctionne */
    .gallery-preview {
      display: grid !important;
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    /* Section Contact Premium */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-top: 3rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    /* Form Row pour contact form responsive comme commander.php */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .contact-form .form-group {
      margin-bottom: 1.5rem;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 2rem;
      padding: 2.5rem;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border-radius: 25px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid rgba(255, 255, 255, 0.3);
      position: relative;
      overflow: hidden;
    }

    .contact-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 68, 136, 0.05), rgba(212, 175, 55, 0.05));
      transition: left 0.5s ease;
    }

    .contact-item:hover::before {
      left: 0;
    }

    .contact-item:hover {
      transform: translateY(-10px) rotateX(5deg);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
      border-color: rgba(212, 175, 55, 0.4);
    }

    .contact-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.8rem;
      flex-shrink: 0;
      box-shadow: 0 8px 25px rgba(0, 68, 136, 0.4);
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
    }

    .contact-item:hover .contact-icon {
      transform: scale(1.1) rotateY(180deg);
      box-shadow: 0 12px 35px rgba(0, 68, 136, 0.6);
    }

    .contact-details {
      position: relative;
      z-index: 2;
    }

    .contact-details h4 {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
      font-size: 1.4rem;
      font-weight: 700;
    }

    .contact-details p {
      color: var(--text-dark);
      font-size: 1.05rem;
      line-height: 1.7;
      font-weight: 500;
    }

    .contact-form {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      padding: 3rem;
      border-radius: 25px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.3);
      position: relative;
      overflow: hidden;
    }

    .contact-form::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
    }

    .contact-form h3 {
      font-size: 2rem;
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 2rem;
      font-weight: 700;
      text-align: center;
    }

    .form-group {
      margin-bottom: 2rem;
      position: relative;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.8rem;
      color: var(--text-dark);
      font-weight: 600;
      font-size: 1rem;
      position: relative;
      padding-left: 25px;
    }

    .form-group label::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 20px;
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
      border-radius: 2px;
    }

    .form-control {
      width: 100%;
      padding: 15px 20px;
      border: 2px solid rgba(0, 68, 136, 0.2);
      border-radius: 15px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
      font-weight: 500;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary-main);
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 0 0 3px rgba(0, 68, 136, 0.1);
      transform: translateY(-2px);
    }

    .form-control::placeholder {
      color: var(--text-light);
      font-style: italic;
    }

    textarea.form-control {
      min-height: 120px;
      resize: vertical;
    }

    /* Advanced Animations & Effects */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.5);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes rotateIn {
      from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
      }
      to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
      }
    }

    /* Scroll Reveal Animations */
    .reveal {
      opacity: 0;
      transform: translateY(60px);
      transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-60px);
      transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .reveal-left.active {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(60px);
      transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .reveal-right.active {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-scale {
      opacity: 0;
      transform: scale(0.8);
      transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .reveal-scale.active {
      opacity: 1;
      transform: scale(1);
    }

    /* Loading Animation */
    .loading-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 10000;
      opacity: 1;
      visibility: visible;
      transition: all 0.5s ease;
    }

    .loading-overlay.hide {
      opacity: 0;
      visibility: hidden;
    }

    .loader {
      width: 80px;
      height: 80px;
      border: 4px solid rgba(255, 255, 255, 0.3);
      border-top: 4px solid var(--white);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-bottom: 2rem;
    }

    .loading-text {
      color: var(--white);
      font-size: 1.2rem;
      font-weight: 600;
      text-align: center;
      animation: fadeInUp 0.5s ease-out;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Particle Effect */
    .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(212, 175, 55, 0.6);
      border-radius: 50%;
      animation: float-particle 6s linear infinite;
    }

    @keyframes float-particle {
      0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
      }
    }

    /* Smooth scrolling enhancement */
    html {
      scroll-behavior: smooth;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--background);
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
      border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
    }

    /* Media queries pour grands écrans */
    @media (min-width: 1400px) {
      .hero {
        height: 80vh;
        max-height: 800px;
      }
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary-main);
    }

    textarea.form-control {
      resize: vertical;
      min-height: 120px;
    }

    .map-container {
      height: 300px;
      background: var(--gray-light);
      border-radius: var(--radius);
      overflow: hidden;
      margin-top: 2rem;
    }

    /* Footer amélioré */
    .footer {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 50%, var(--primary-dark) 100%);
      color: var(--white);
      padding: 60px 0 30px;
      position: relative;
      overflow: hidden;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 68, 136, 0.1) 0%, transparent 50%);
      pointer-events: none;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 2rem;
      margin-bottom: 2rem;
      position: relative;
      z-index: 2;
    }

    .footer-column h3 {
      background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1.5rem;
      font-size: 1.3rem;
      font-weight: 700;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }

    .footer-links a::before {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(135deg, var(--accent-gold), var(--primary-light));
      transition: width 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--accent-gold);
      transform: translateX(3px);
    }

    .footer-links a:hover::before {
      width: 100%;
    }

    .contact-info {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0.8rem;
      color: rgba(255, 255, 255, 0.85);
    }

    .contact-info i {
      color: var(--accent-gold);
      width: 20px;
      text-align: center;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-link {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 175, 55, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .social-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, var(--accent-gold), var(--primary-main));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .social-link:hover::before {
      opacity: 1;
    }

    .social-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
      border-color: var(--accent-gold);
    }

    .social-link i {
      position: relative;
      z-index: 2;
    }

    .footer-form .form-group {
      margin-bottom: 1rem;
    }

    .footer-form .form-control {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 175, 55, 0.3);
      color: var(--white);
      transition: all 0.3s ease;
    }

    /* Newsletter input spécifique */
    .footer-form .newsletter-input {
      background: rgba(255, 255, 255, 0.9) !important;
      color: var(--text-dark) !important;
      border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }

    .footer-form .newsletter-input::placeholder {
      color: #333 !important;
      opacity: 0.8 !important;
    }

    .footer-form .form-control:focus {
      border-color: var(--accent-gold);
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    }

    .footer-form .newsletter-input:focus {
      border-color: var(--accent-gold) !important;
      background: rgba(255, 255, 255, 0.95) !important;
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
    }

    .footer-form .form-control::placeholder {
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(212, 175, 55, 0.3);
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
      position: relative;
      z-index: 2;
    }

    .footer-bottom::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 2px;
      background: linear-gradient(135deg, transparent, var(--accent-gold), transparent);
      margin-top: -1px;
    }

    /* Responsive Design */
    @media (max-width: 968px) {

      .about-content,
      .contact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: stretch; /* Maintenir l'étirement sur mobile */
        min-height: auto; /* Pas de hauteur minimum sur mobile */
      }

      /* Form-row responsive sur tablette */
      .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      
      .about-text {
        min-height: 400px; /* Hauteur minimum pour le texte sur tablette */
      }

      .gallery-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }

      .about-images {
        flex-direction: row; /* Horizontal sur tablette */
        gap: 0.5rem; /* Même écart réduit sur tablette */
      }
      
      .about-img {
        min-height: 130px; /* Hauteur augmentée sur tablette */
        max-height: 150px; /* Limiter mais plus haut */
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      /* Réduire l'espacement du menu sur écrans moyens */
      .nav-menu {
        margin-left: 1rem;
      }
    }

    @media (max-width: 768px) {
      .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        margin-left: 0; /* Réinitialiser la marge sur mobile */
      }

      .nav-menu.active {
        display: flex;
      }

      .hamburger {
        display: flex;
      }

      .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }

      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
      }

      .hero {
        height: calc(100vh - 80px);
        min-height: 500px;
        padding: 60px 0 40px;
        background-attachment: scroll;
      }

      .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
      }

      .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
      }

      .hero-badge {
        padding: 8px 20px;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
      }

      .section {
        padding: 60px 0;
      }

      .section-header h2 {
        font-size: 2rem;
      }

      .about-features {
        grid-template-columns: 1fr;
      }

      .gallery-preview {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .hero {
        height: calc(100vh - 80px);
        min-height: 400px;
        padding: 40px 0 30px;
      }

      .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
      }

      .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
      }

      /* Assurer que le formulaire de contact descend en dessous sur mobile */
      .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
      }
      
      .contact-info {
        order: 1;
      }
      
      .contact-form {
        order: 2;
        margin-top: 1rem;
      }

      /* Form-row responsive comme commander.php */
      .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
      }

      /* Forcer la galerie preview à être en colonne sur mobile */
      .gallery-preview {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
      }
      
      .gallery-preview .gallery-item {
        margin-bottom: 1rem;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-badge {
        padding: 6px 15px;
        font-size: 0.75rem;
        margin-bottom: 1.2rem;
      }

      .container {
        padding: 0 15px;
      }

      .card {
        padding: 1.5rem;
      }
    }

    /* Media query pour très petits écrans (320px et moins) */
    @media (max-width: 320px) {
      .container {
        padding: 0 10px;
        max-width: 100%;
        margin: 0 auto;
      }

      /* Formulaire de contact responsive extrême */
      .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 5px;
      }
      
      .contact-form {
        padding: 1.5rem 1rem !important;
        margin: 0;
      }
      
      .contact-item {
        padding: 1.5rem 1rem !important;
        gap: 1rem !important;
      }
      
      /* Form-row responsive extrême */
      .form-row {
        grid-template-columns: 1fr !important;
        gap: 0.5rem;
        margin-bottom: 1rem;
      }
      
      .form-group {
        margin-bottom: 1rem;
      }
      
      .form-control {
        padding: 12px 15px !important;
        font-size: 0.9rem;
      }
      
      /* Galerie responsive extrême */
      .gallery-preview {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 5px;
      }
      
      .gallery-preview .gallery-item {
        max-width: 280px;
        margin: 0 auto 1rem auto;
      }
      
      /* Navigation responsive extrême */
      .nav-container {
        padding: 0 10px;
      }
      
      /* Hero section responsive extrême */
      .hero {
        padding: 40px 10px 30px;
      }
      
      .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
      }
      
      .hero p {
        font-size: 0.85rem;
        padding: 0 0.5rem;
      }
      
      /* Buttons responsive extrême */
      .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
      }
      
      .hero-buttons .btn {
        min-width: auto;
        margin: 0.5rem 0.25rem;
      }
      
      /* Règles de sécurité globales pour éviter les débordements */
      * {
        max-width: 100%;
        box-sizing: border-box;
      }
      
      body {
        overflow-x: hidden;
      }
      
      .section {
        padding-left: 5px;
        padding-right: 5px;
      }
      
      /* S'assurer que tous les grids sont responsive */
      .grid, .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
      }
      
      /* Images toujours contenues */
      img {
        max-width: 100% !important;
        height: auto !important;
      }
      
      /* Textes toujours lisibles */
      h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        hyphens: auto;
      }
      
      p, span, div {
        word-wrap: break-word;
      }
    }

    /* Cards Produits */
    .card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .product-image {
      position: relative;
      height: 250px;
      overflow: hidden;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .card:hover .product-image img {
      transform: scale(1.05);
    }

    .image-placeholder {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--gray-light), var(--background));
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      gap: 10px;
    }

    .card-content {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .card h3 {
      color: var(--primary-dark);
      margin-bottom: 1rem;
      font-size: 1.4rem;
    }

    .card p {
      color: var(--text-light);
      line-height: 1.6;
      flex-grow: 1;
    }

    /* Services Cards */
    .service-image {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .card:hover .service-image img {
      transform: scale(1.05);
    }

    .card-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 2rem;
      margin: 0 auto 1rem;
      box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
    }

    /* Services Layout */
    .service-header {
      text-align: center;
      padding: 1.5rem 1.5rem 1rem;
      height: 140px; /* Hauteur fixe réduite pour mobile */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .service-header h3 {
      color: var(--primary-dark);
      margin: 0; /* Pas de margin-bottom */
      font-size: 1.2rem; /* Taille réduite pour mobile */
      line-height: 1.2;
      word-wrap: break-word;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
      text-align: center;
    }

    .service-description {
      background: linear-gradient(135deg, var(--background), #f1f3f4);
      margin: 1rem;
      padding: 1.5rem;
      border-radius: var(--radius);
      text-align: center;
      transition: all 0.3s ease;
      border: 1px solid var(--gray-light);
    }

    .service-description:hover {
      background: linear-gradient(135deg, var(--primary-light), var(--primary-main));
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 51, 102, 0.15);
    }

    .service-description p {
      color: var(--text-dark);
      line-height: 1.6;
      margin: 0;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .service-description:hover p {
      color: var(--white);
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: fadeInUp 0.6s ease-out;
    }

    /* Bouton WhatsApp flottant */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #25d366, #128c7e);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.5rem;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
      transition: all 0.3s ease;
      z-index: 1000;
      animation: pulse 2s infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
      color: var(--white);
      text-decoration: none;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    /* Responsive pour le bouton WhatsApp */
    @media (max-width: 768px) {
      .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
      }
    }



    /* ==============================================
       STYLES GALERIE - Section spécifique
       ============================================== */

    /* Background spécifique pour la page galerie */
    body.gallery-page {
      background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 50%, #f0f9f0 100%);
    }

    /* Container plus large pour la galerie */
    .gallery-page .container {
      max-width: 1400px;
    }

    /* S'assurer que le hamburger fonctionne sur la page galerie */
    .gallery-page .hamburger {
      position: relative;
      z-index: 1000;
    }

    /* Header Section Galerie */
    .gallery-header {
      padding: 120px 0 60px;
      text-align: center;
      background: linear-gradient(135deg, rgba(0, 34, 68, 0.1), rgba(0, 51, 102, 0.05)), 
                  url('https://images.unsplash.com/photo-1448375240586-882707db888b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
      background-size: cover;
      background-position: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .gallery-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 34, 68, 0.7);
      z-index: 1;
    }

    .gallery-header .container {
      position: relative;
      z-index: 2;
    }

    .gallery-header h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    }

    .gallery-header p {
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      max-width: 800px;
      margin: 0 auto 2rem;
      opacity: 0.95;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    /* Gallery Filters */
    .gallery-filters {
      padding: 60px 0 40px;
      text-align: center;
    }

    .filter-tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 15px 30px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(0, 68, 136, 0.2);
      border-radius: 50px;
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .filter-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
      transition: left 0.4s ease;
      z-index: -1;
    }

    .filter-btn:hover::before,
    .filter-btn.active::before {
      left: 0;
    }

    .filter-btn:hover,
    .filter-btn.active {
      color: var(--white);
      border-color: var(--primary-main);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 68, 136, 0.3);
    }

    .filter-btn i {
      margin-right: 8px;
    }

    /* Gallery Grid */
    .gallery-section {
      padding: 0 0 80px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Même principe que grid-3 */
      gap: 2rem;
      margin-bottom: 3rem;
      align-items: stretch; /* Étirer pour avoir la même hauteur */
    }

    .gallery-item {
      position: relative;
      border-radius: 20px;
      overflow: hidden; /* Comme les cardes dans grid-3 */
      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);
      cursor: default; /* Curseur normal par défaut */
      background: var(--white);
      display: flex;
      flex-direction: column;
      height: 100%; /* Hauteur égale comme les cardes dans grid-3 */
      min-height: 500px; /* Hauteur minimum pour garantir l'uniformité */
    }

    .gallery-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .gallery-item:hover .gallery-item-image {
      /* Réinitialiser le transform de l'image quand l'item est en hover */
      transform: none;
    }

    .gallery-item-image {
      position: relative;
      height: 280px;
      overflow: hidden; /* Garder overflow hidden pour l'image seulement */
      background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
      cursor: pointer; /* Curseur pointer seulement sur l'image */
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      flex-shrink: 0; /* Empêcher la compression de l'image */
    }

    .gallery-item-image:hover {
      /* Effet visuel supplémentaire pour indiquer que c'est cliquable */
      transform: scale(1.02);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.4s ease;
      position: relative;
      z-index: 2;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
      filter: brightness(1.1);
    }

    .image-placeholder {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--white);
      text-align: center;
      padding: 2rem;
      opacity: 1;
      z-index: 1;
    }

    .image-placeholder.hide {
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .image-placeholder i {
      font-size: 3rem;
      margin-bottom: 1rem;
      opacity: 0.8;
    }

    .image-placeholder span {
      font-size: 1.1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0, 34, 68, 0.8), rgba(0, 51, 102, 0.6));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.4s ease;
      z-index: 3;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay i {
      font-size: 2.5rem;
      color: var(--white);
      margin-bottom: 1rem;
    }

    .gallery-overlay span {
      color: var(--white);
      font-weight: 600;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .gallery-item-info {
      padding: 1.5rem 1.5rem 2rem; /* Padding bottom plus important pour compenser */
      background: var(--white);
      cursor: default; /* Curseur normal pour le texte */
      user-select: text; /* Permettre la sélection du texte */
      -webkit-user-select: text;
      -moz-user-select: text;
      -ms-user-select: text;
      display: flex;
      flex-direction: column;
      justify-content: space-between; /* Distribuer l'espace comme dans les cardes */
      flex: 1; /* Prendre tout l'espace restant pour égaliser */
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
    }

    .gallery-item-info h3 {
      font-size: 1.3rem;
      color: var(--primary-dark);
      margin-bottom: 0.8rem;
      font-weight: 700;
      cursor: default;
      user-select: text;
      -webkit-user-select: text;
      -moz-user-select: text;
      -ms-user-select: text;
    }

    .gallery-item-info p {
      color: var(--text-light);
      font-size: 0.9rem;
      line-height: 1.6;
      cursor: default;
      user-select: text;
      -webkit-user-select: text;
      -moz-user-select: text;
      -ms-user-select: text;
      transition: color 0.3s ease;
      margin-bottom: 1rem; /* Espacement avant la catégorie */
      overflow-wrap: break-word; /* Permettre les retours à la ligne pour les mots longs */
      word-wrap: break-word;
      flex-grow: 1; /* Grandir pour remplir l'espace - comme dans grid-3 */
      padding-bottom: 0.5rem; /* Padding interne pour compenser les différences */
    }

    .gallery-item-info p:hover {
      color: var(--text-dark); /* Légèrement plus foncé au hover pour indiquer l'interactivité */
    }

    .gallery-item-category {
      display: inline-block;
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
      color: var(--white);
      padding: 4px 12px;
      border-radius: 15px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: auto; /* Pousser la catégorie vers le bas */
      align-self: flex-start; /* Aligner à gauche */
    }

    /* Modal Lightbox */
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 10000;
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 90%;
      margin: auto;
    }

    .lightbox img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .lightbox-close {
      position: absolute;
      top: -50px;
      right: 0;
      color: var(--white);
      font-size: 2rem;
      cursor: pointer;
      background: none;
      border: none;
      padding: 10px;
      transition: all 0.3s ease;
    }

    .lightbox-close:hover {
      color: var(--accent-gold);
      transform: scale(1.2);
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--white);
      font-size: 1.5rem;
      padding: 15px 20px;
      cursor: pointer;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .lightbox-nav:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-50%) scale(1.1);
    }

    .lightbox-prev {
      left: -80px;
    }

    .lightbox-next {
      right: -80px;
    }

    /* Statistics Section */
    .stats-section {
      background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
      padding: 80px 0;
      margin-bottom: 80px;
      color: var(--white);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .stats-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 68, 136, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
      position: relative;
      z-index: 2;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      color: var(--accent-gold);
      display: block;
      margin-bottom: 0.5rem;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .stat-label {
      font-size: 1.1rem;
      font-weight: 500;
      opacity: 0.9;
    }

    /* Loading Animation */
    .loading-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 10000;
      opacity: 1;
      visibility: visible;
      transition: all 0.5s ease;
    }

    .loading-overlay.hide {
      opacity: 0;
      visibility: hidden;
    }

    .loader {
      width: 60px;
      height: 60px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-top: 3px solid var(--white);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-bottom: 1.5rem;
    }

    .loading-text {
      color: var(--white);
      font-size: 1.1rem;
      font-weight: 500;
      text-align: center;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Animations pour la galerie */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: fadeInUp 0.6s ease-out;
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive spécifique à la galerie */
    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .gallery-item-info {
        padding: 1.2rem; /* Réduire légèrement le padding sur mobile */
      }

      .gallery-item-info p {
        font-size: 0.85rem; /* Légèrement plus petit sur mobile */
        line-height: 1.5;
      }

      .filter-tabs {
        flex-direction: column;
        align-items: center;
      }

      .filter-btn {
        width: 100%;
        max-width: 300px;
      }

      .lightbox-nav {
        display: none;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (max-width: 480px) {
      .gallery-header {
        padding: 100px 0 40px;
      }

      .gallery-header h1 {
        font-size: 2rem;
      }

      .gallery-item-info {
        padding: 1rem; /* Encore moins de padding sur très petits écrans */
      }

      .gallery-item-info h3 {
        font-size: 1.1rem; /* Titre plus petit */
        margin-bottom: 0.6rem;
      }

      .gallery-item-info p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ==============================================
       NOTIFICATIONS & MODALES SYSTÈME
       ============================================== */

    /* Notification Toast */
    .notification {
      position: fixed;
      top: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border-radius: 15px;
      padding: 20px 25px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
      z-index: 10001;
      transform: translateX(400px);
      opacity: 0;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      max-width: 400px;
      min-width: 300px;
      pointer-events: auto;
    }

    .notification.show {
      transform: translateX(0);
      opacity: 1;
    }

    .notification.success {
      border-left: 4px solid var(--primary-main);
      background: linear-gradient(135deg, rgba(0, 68, 136, 0.1), rgba(255, 255, 255, 0.95));
    }

    .notification.error {
      border-left: 4px solid #e74c3c;
      background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(255, 255, 255, 0.95));
    }

    .notification.warning {
      border-left: 4px solid var(--accent-gold);
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.95));
    }

    .notification.info {
      border-left: 4px solid #3498db;
      background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(255, 255, 255, 0.95));
    }

    .notification-content {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .notification-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 0.8rem;
      font-weight: 600;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .notification.success .notification-icon {
      background: var(--primary-main);
    }

    .notification.error .notification-icon {
      background: #e74c3c;
    }

    .notification.warning .notification-icon {
      background: var(--accent-gold);
    }

    .notification.info .notification-icon {
      background: #3498db;
    }

    .notification-text {
      flex: 1;
    }

    .notification-title {
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 5px;
      font-size: 1rem;
    }

    .notification-message {
      color: var(--text-light);
      font-size: 0.9rem;
      line-height: 1.4;
    }

    .notification-close {
      position: absolute;
      top: 10px;
      right: 15px;
      background: none;
      border: none;
      color: var(--text-light);
      cursor: pointer;
      font-size: 1.2rem;
      padding: 5px;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .notification-close:hover {
      color: var(--text-dark);
      background: rgba(0, 0, 0, 0.05);
    }

    /* Modal Contact */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 10000;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .modal-overlay.show {
      display: flex;
      opacity: 1;
    }

    .modal-contact {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border-radius: 25px;
      padding: 0;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.3);
      max-width: 500px;
      width: 90%;
      max-height: 80vh;
      overflow: hidden;
      transform: scale(0.8) translateY(50px);
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
    }

    .modal-overlay.show .modal-contact {
      transform: scale(1) translateY(0);
    }

    .modal-header {
      background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
      color: var(--white);
      padding: 2rem 2.5rem;
      text-align: center;
      position: relative;
    }

    .modal-header::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(135deg, var(--accent-gold), var(--primary-light));
    }

    .modal-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .modal-subtitle {
      font-size: 0.9rem;
      opacity: 0.9;
      font-weight: 500;
    }

    .modal-close {
      position: absolute;
      top: 15px;
      right: 20px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--white);
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.1);
    }

    .modal-body {
      padding: 2.5rem;
    }

    .contact-options {
      display: grid;
      gap: 1rem;
    }

    .contact-option {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.8);
      border: 2px solid rgba(0, 68, 136, 0.1);
      border-radius: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      color: var(--text-dark);
      position: relative;
      overflow: hidden;
    }

    .contact-option::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
      transition: left 0.4s ease;
      z-index: 1;
    }

    .contact-option:hover::before {
      left: 0;
    }

    .contact-option:hover {
      border-color: var(--primary-main);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 68, 136, 0.2);
      color: var(--white);
    }

    .contact-option-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary-main), var(--accent-gold));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.3rem;
      position: relative;
      z-index: 2;
      flex-shrink: 0;
    }

    .contact-option-content {
      position: relative;
      z-index: 2;
    }

    .contact-option-title {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 5px;
    }

    .contact-option-desc {
      font-size: 0.85rem;
      opacity: 0.8;
    }

    /* Animation d'entrée pour les notifications */
    @keyframes slideInRight {
      from {
        transform: translateX(400px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes slideOutRight {
      from {
        transform: translateX(0);
        opacity: 1;
      }
      to {
        transform: translateX(400px);
        opacity: 0;
      }
    }

    /* Animation de progression pour les notifications */
    .notification-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: currentColor;
      border-radius: 0 0 15px 15px;
      animation: progressBar 5s linear forwards;
      opacity: 0.3;
    }

    @keyframes progressBar {
      from {
        width: 100%;
      }
      to {
        width: 0%;
      }
    }

    /* Loading Spinner pour formulaires */
    .form-loading {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 1rem;
      color: var(--primary-main);
      font-weight: 600;
    }

    .form-loading.show {
      display: flex;
    }

    .form-spinner {
      width: 20px;
      height: 20px;
      border: 2px solid rgba(0, 68, 136, 0.3);
      border-top: 2px solid var(--primary-main);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    /* Styles pour les boutons de formulaire */
    .btn-form {
      background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
      color: var(--white);
      border: none;
      padding: 15px 30px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .btn-form::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--accent-gold), var(--primary-main));
      transition: left 0.4s ease;
      z-index: 1;
    }

    .btn-form:hover::before {
      left: 0;
    }

    .btn-form:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 68, 136, 0.4);
    }

    .btn-form span {
      position: relative;
      z-index: 2;
    }

    .btn-form:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }

    .btn-form:disabled:hover {
      transform: none;
      box-shadow: none;
    }

    .btn-form:disabled::before {
      left: -100%;
    }

    /* Responsive pour notifications et modales */
    @media (max-width: 768px) {
      .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
        max-width: none;
        min-width: auto;
      }

      .notification.show {
        transform: translateY(0);
      }

      .modal-contact {
        width: 95%;
        margin: 20px;
        max-height: calc(100vh - 40px);
      }

      .modal-header {
        padding: 1.5rem 2rem;
      }

      .modal-body {
        padding: 2rem 1.5rem;
      }

      .contact-option {
        padding: 1.2rem;
      }

      .modal-title {
        font-size: 1.3rem;
      }
    }

    @media (max-width: 480px) {
      .notification {
        top: 5px;
        right: 5px;
        left: 5px;
      }

      .modal-header {
        padding: 1.2rem 1.5rem;
      }

      .modal-body {
        padding: 1.5rem 1rem;
      }

      .contact-option {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
      }

      .contact-option-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
      }
    }

    /* =============================================================================
       FILTRES RESPONSIVE - DROPDOWN MOBILE
    ============================================================================= */

    /* Conteneur des filtres */
    .product-filters {
      position: relative;
    }

    /* Dropdown pour mobile */
    .filter-dropdown {
      display: none;
      position: relative;
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
    }

    .filter-dropdown-button {
      width: 100%;
      padding: 15px 20px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(0, 68, 136, 0.3);
      border-radius: 12px;
      color: var(--text-dark);
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.3s ease;
      text-align: left;
    }

    .filter-dropdown-button:hover {
      background: rgba(255, 255, 255, 1);
      border-color: var(--primary-main);
    }

    .filter-dropdown-button.active {
      background: var(--primary-main);
      color: white;
      border-color: var(--primary-main);
    }

    .filter-dropdown-icon {
      font-size: 0.9rem;
      transition: transform 0.3s ease;
    }

    .filter-dropdown.open .filter-dropdown-icon {
      transform: rotate(180deg);
    }

    .filter-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(0, 68, 136, 0.2);
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      z-index: 1000;
      margin-top: 5px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
    }

    .filter-dropdown.open .filter-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .filter-dropdown-item {
      display: block;
      width: 100%;
      padding: 12px 20px;
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 500;
      border: none;
      background: none;
      text-align: left;
      cursor: pointer;
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(0, 68, 136, 0.1);
    }

    .filter-dropdown-item:last-child {
      border-bottom: none;
      border-radius: 0 0 12px 12px;
    }

    .filter-dropdown-item:first-child {
      border-radius: 12px 12px 0 0;
    }

    .filter-dropdown-item:hover {
      background: rgba(0, 68, 136, 0.1);
      color: var(--primary-main);
    }

    .filter-dropdown-item.active {
      background: var(--primary-main);
      color: white;
    }

    .filter-dropdown-item i {
      margin-right: 10px;
      width: 16px;
      text-align: center;
    }

    /* Filtres desktop cachés sur mobile */
    @media (max-width: 768px) {
      .product-filters .filter-btn {
        display: none !important;
      }
      
      .filter-dropdown {
        display: block;
      }
      
      .product-filters {
        justify-content: center !important;
        margin-bottom: 2rem !important;
      }
    }

    /* Overlay pour fermer le dropdown */
    .filter-dropdown-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 999;
      display: none;
    }

    .filter-dropdown.open + .filter-dropdown-overlay {
      display: block;
    }

    /* Styles spécifiques pour les filtres de galerie */
    .gallery-filters .filter-tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      position: relative;
    }

    @media (max-width: 768px) {
      .gallery-filters .filter-tabs {
        justify-content: center;
      }
      
      .gallery-filters .filter-btn {
        display: none !important;
      }
      
      .gallery-filters .filter-dropdown {
        display: block;
        max-width: 280px;
      }
    }

    /* Amélioration grille galerie responsive */
    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
      }
    }

    @media (max-width: 480px) {
      .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
      }
      
      .gallery-item {
        margin-bottom: 1rem;
      }
    }

    /* Responsive extrême pour galerie.php sur très petits écrans */
    @media (max-width: 320px) {
      .gallery-page .container {
        padding: 0 5px;
      }
      
      .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        padding: 0 5px;
      }
      
      .gallery-item {
        margin: 0 auto 0.5rem auto;
        max-width: 300px;
      }
      
      .gallery-item-info {
        padding: 1rem !important;
      }
      
      .gallery-item-info h3 {
        font-size: 1rem !important;
      }
      
      .gallery-item-info p {
        font-size: 0.8rem !important;
        line-height: 1.4;
      }
      
      .gallery-header {
        padding: 100px 10px 40px !important;
      }
      
      .gallery-header h1 {
        font-size: 1.5rem !important;
      }
      
      .gallery-header p {
        font-size: 0.85rem !important;
        padding: 0 0.5rem;
      }
      
      /* Filtres dropdown responsive extrême */
      .filter-dropdown-button {
        padding: 10px 15px !important;
        font-size: 0.85rem !important;
      }
      
      .filter-dropdown-menu {
        min-width: 280px !important;
      }
      
      .filter-dropdown-item {
        padding: 10px 15px !important;
        font-size: 0.85rem !important;
      }
    }
