
    /* HEADER PAGE */
    .page-header {
      background: linear-gradient(135deg, var(--secondary) 0%, #8b4513 100%);
      color: #8b4513;
      padding: 80px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-header {
  background:
    linear-gradient(
      rgba(255, 250, 245, 0.8),
      rgba(255, 250, 245, 0.9)
    ),
    url("https://images.pexels.com/photos/1055272/pexels-photo-1055272.jpeg");
  background-size: cover;
  background-position: center;
  height: auto;

}

    .page-header::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(254, 153, 0, 0.2) 0%, transparent 70%);
      border-radius: 50%;
    }

    .page-header h1 {
      font-family: 'Pacifico', cursive;
      font-size: 56px;
      margin-bottom: 15px;
      position: relative;
      z-index: 2;
    }

    .page-header p {
      font-size: 20px;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.95;
      position: relative;
      z-index: 2;
    }

    /* CONTAINER PRINCIPAL */
    .contact-container {
      max-width: 1300px;
      margin: -50px auto 80px;
      padding: 0 30px;
    }

    /* MÉTHODES DE CONTACT */
    .contact-methods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }

    .contact-card {
      background: white;
      padding: 40px 30px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .contact-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--primary);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .contact-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .contact-card:hover::before {
      transform: scaleX(1);
    }

    .contact-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary) 0%, #ffa726 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin: 0 auto 25px;
      box-shadow: 0 8px 20px rgba(254, 153, 0, 0.3);
    }

    .contact-card h3 {
      font-size: 24px;
      color: var(--secondary);
      margin-bottom: 15px;
      font-weight: 700;
    }

    .contact-card p {
      font-size: 16px;
      color: #666;
      margin-bottom: 25px;
      line-height: 1.6;
    }

    .contact-btn {
      display: inline-block;
      padding: 12px 30px;
      background: var(--secondary);
      color: white;
      text-decoration: none;
      border-radius: 25px;
      font-weight: 600;
      transition: all 0.3s ease;
      font-size: 15px;
    }

    .contact-btn:hover {
      background: var(--primary);
      transform: scale(1.05);
      box-shadow: 0 5px 20px rgba(254, 153, 0, 0.4);
    }

    .whatsapp-card .contact-icon {
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    }

    .email-card .contact-icon {
      background: linear-gradient(135deg, #EA4335 0%, #FBBC05 100%);
    }

    /* SECTION PRINCIPALE */
    .main-section {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 50px;
      background: white;
      border-radius: 25px;
      padding: 50px;
      box-shadow: 0 15px 50px rgba(0,0,0,0.1);
      margin-bottom: 60px;
    }

    /* FORMULAIRE */
    .form-section h2 {
      font-family: 'Pacifico', cursive;
      font-size: 36px;
      color: var(--secondary);
      margin-bottom: 15px;
    }

    .form-section > p {
      font-size: 16px;
      color: #666;
      margin-bottom: 35px;
      line-height: 1.7;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      color: var(--secondary);
      margin-bottom: 8px;
      font-size: 15px;
    }

    .form-group label .required {
      color: #ff4444;
      margin-left: 3px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 18px;
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      transition: all 0.3s ease;
      background: #fafafa;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      background: white;
      box-shadow: 0 0 0 4px rgba(254, 153, 0, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 140px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .submit-btn {
      width: 100%;
      padding: 16px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(254, 153, 0, 0.3);
    }

    .submit-btn:hover {
      background: var(--secondary);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(254, 153, 0, 0.4);
    }

    /* MESSAGE SUCCÈS */
    .success-message {
      display: none;
      background: #4CAF50;
      color: white;
      padding: 20px;
      border-radius: 12px;
      margin-bottom: 25px;
      text-align: center;
      font-weight: 600;
      animation: slideDown 0.5s ease;
    }

    .success-message.show {
      display: block;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* INFO SECTION */
    .info-section h3 {
      font-size: 24px;
      color: var(--secondary);
      margin-bottom: 25px;
      font-weight: 700;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 20px;
      background: var(--light-cream);
      border-radius: 15px;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

    .info-item:hover {
      background: #ffe4cc;
      transform: translateX(5px);
    }

    .info-item-icon {
      width: 50px;
      height: 50px;
      background: var(--primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
    }

    .info-item-content h4 {
      font-size: 16px;
      color: var(--secondary);
      margin-bottom: 5px;
      font-weight: 600;
    }

    .info-item-content p {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
    }

    .info-item-content a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
    }

    .info-item-content a:hover {
      text-decoration: underline;
    }

    /* HORAIRES */
    .hours-box {
      background: linear-gradient(135deg, var(--secondary) 0%, #8b4513 100%);
      color: white;
      padding: 30px;
      border-radius: 15px;
      margin-top: 30px;
    }

    .hours-box h4 {
      font-size: 20px;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .hours-box ul {
      list-style: none;
      padding: 0;
    }

    .hours-box li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.2);
      display: flex;
      justify-content: space-between;
      font-size: 15px;
    }

    .hours-box li:last-child {
      border-bottom: none;
    }

    .hours-box .day {
      font-weight: 600;
    }

    /* MAP SECTION */
    .map-section {
      margin-bottom: 60px;
    }

    .map-section h2 {
      font-family: 'Pacifico', cursive;
      font-size: 36px;
      color: var(--secondary);
      text-align: center;
      margin-bottom: 40px;
    }

    .map-container {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .map-placeholder {
      text-align: center;
      padding: 40px;
    }

    .map-placeholder .icon {
      font-size: 64px;
      margin-bottom: 20px;
    }

    .map-placeholder h3 {
      font-size: 24px;
      color: var(--secondary);
      margin-bottom: 10px;
    }

    .map-placeholder p {
      font-size: 16px;
      color: #666;
      margin-bottom: 20px;
    }

    .map-btn {
      display: inline-block;
      padding: 12px 30px;
      background: var(--primary);
      color: white;
      text-decoration: none;
      border-radius: 25px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .map-btn:hover {
      background: var(--secondary);
      transform: scale(1.05);
    }

    /* SOCIAL MEDIA */
    .social-section {
      text-align: center;
      background: var(--light-cream);
      padding: 60px 30px;
      border-radius: 20px;
      margin-bottom: 60px;
    }

    .social-section h2 {
      font-family: 'Pacifico', cursive;
      font-size: 36px;
      color: var(--secondary);
      margin-bottom: 20px;
    }

    .social-section p {
      font-size: 18px;
      color: #666;
      margin-bottom: 40px;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
    }

    .social-link {
      width: 60px;
      height: 60px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      text-decoration: none;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .social-link:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .social-link.facebook {
      color: #1877F2;
    }

    .social-link.instagram {
      color: #E4405F;
    }

    .social-link.whatsapp {
      color: #25D366;
    }

    .social-link.email {
      color: #EA4335;
    }

    /* WHATSAPP FLOTTANT */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: #25D366;
      color: white;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 28px;
      text-decoration: none;
      box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
      z-index: 2000;
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }

    @keyframes pulse {
      0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
      }
      50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
      }
    }

    /* FOOTER */
    footer {
      background: var(--secondary);
      color: white;
      text-align: center;
      padding: 40px 20px;
    }

    footer p {
      margin: 8px 0;
    }

    /* RESPONSIVE */
    @media (max-width: 968px) {
      .page-header h1 {
        font-size: 38px;
      }

      .contact-methods {
        grid-template-columns: 1fr;
      }

      .main-section {
        grid-template-columns: 1fr;
        padding: 35px 25px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .info-section {
        order: -1;
      }

      nav ul {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      nav ul.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        right: 20px;
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      }

      .social-links {
        gap: 20px;
      }

      .social-link {
        width: 55px;
        height: 55px;
        font-size: 24px;
      }
    }