
    /* HEADER */
    .page-header {
      background: linear-gradient(135deg, var(--secondary) 0%, #8b4513 100%);
      color: #8b4513;
      padding: 100px 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%;
      left: -10%;
      width: 600px;
      height: 600px;
      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: 20px;
      position: relative;
      z-index: 2;
    }

    .page-header p {
      font-size: 20px;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0.95;
      position: relative;
      z-index: 2;
      line-height: 1.6;
    }

    /* CONTAINER */
    .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 80px 30px;
    }

    /* SERVICES GRID */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 35px;
      margin-bottom: 80px;
    }

    .service-card {
      background: white;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .service-image {
      position: relative;
      width: 100%;
      height: 280px;
      overflow: hidden;
    }

    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .service-card:hover .service-image img {
      transform: scale(1.1);
    }

    .service-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--primary);
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .service-content {
      padding: 35px;
    }

    .service-content h3 {
      font-size: 26px;
      color: var(--secondary);
      margin-bottom: 15px;
      font-weight: 700;
    }

    .service-content p {
      font-size: 16px;
      color: #666;
      line-height: 1.8;
      margin-bottom: 25px;
    }

    .service-features {
      list-style: none;
      padding: 0;
      margin-bottom: 25px;
    }

    .service-features li {
      padding: 10px 0;
      color: #555;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .service-features li::before {
      content: '✓';
      color: var(--primary);
      font-weight: bold;
      font-size: 20px;
      flex-shrink: 0;
    }

    .devis-btn {
      display: block;
      width: 100%;
      padding: 14px;
      background: var(--primary);
      color: white;
      text-align: center;
      text-decoration: none;
      border-radius: 12px;
      font-weight: 700;
      transition: all 0.3s ease;
      font-size: 16px;
    }

    .devis-btn:hover {
      background: var(--secondary);
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(254, 153, 0, 0.4);
    }

    /* NOS PRODUITS */
    .products-section {
      background: white;
      padding: 80px 40px;
      border-radius: 25px;
      margin-bottom: 80px;
    }

    .products-section h2 {
      font-family: 'Pacifico', cursive;
      font-size: 42px;
      color: var(--secondary);
      text-align: center;
      margin-bottom: 20px;
    }

    .products-section > p {
      text-align: center;
      font-size: 18px;
      color: #666;
      margin-bottom: 50px;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
      max-width: 1100px;
      margin: 0 auto 40px;
    }

    .product-tag {
      background: var(--light-cream);
      padding: 18px 25px;
      border-radius: 15px;
      text-align: center;
      font-weight: 600;
      color: var(--secondary);
      border: 2px solid transparent;
      transition: all 0.3s ease;
      font-size: 15px;
    }

    .product-tag:hover {
      border-color: var(--primary);
      background: white;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .product-tag::before {
      content: '🎂';
      display: block;
      font-size: 32px;
      margin-bottom: 10px;
    }

    /* CONDITIONS SECTION */
    .conditions-section {
      background: linear-gradient(135deg, var(--light-cream) 0%, #ffe4cc 100%);
      padding: 80px 40px;
      border-radius: 25px;
      margin-bottom: 80px;
    }

    .conditions-section h2 {
      font-family: 'Pacifico', cursive;
      font-size: 42px;
      color: var(--secondary);
      text-align: center;
      margin-bottom: 50px;
    }

    .conditions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .condition-card {
      background: white;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

    .condition-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    }

    .condition-icon {
      font-size: 42px;
      margin-bottom: 20px;
    }

    .condition-card h3 {
      font-size: 22px;
      color: var(--secondary);
      margin-bottom: 15px;
      font-weight: 700;
    }

    .condition-card p {
      font-size: 15px;
      color: #666;
      line-height: 1.7;
    }

    .condition-card .highlight {
      color: var(--primary);
      font-weight: 700;
    }

    /* PAYMENT METHODS */
    .payment-section {
      text-align: center;
      padding: 60px 40px;
      background: white;
      border-radius: 25px;
      margin-bottom: 80px;
    }

    .payment-section h2 {
      font-family: 'Pacifico', cursive;
      font-size: 42px;
      color: var(--secondary);
      margin-bottom: 40px;
    }

    .payment-methods {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .payment-method {
      background: var(--light-cream);
      padding: 25px 35px;
      border-radius: 15px;
      font-size: 18px;
      font-weight: 600;
      color: var(--secondary);
      border: 3px solid transparent;
      transition: all 0.3s ease;
    }

    .payment-method:hover {
      border-color: var(--primary);
      background: white;
      transform: scale(1.05);
    }

    .payment-method::before {
      display: block;
      font-size: 36px;
      margin-bottom: 10px;
    }

    .payment-method.cash::before {
      content: '💵';
    }

    .payment-method.bank::before {
      content: '🏦';
    }

    .payment-method.mobile::before {
      content: '📱';
    }

    /* CTA SECTION */
    .cta-section {
      background: linear-gradient(135deg, var(--secondary) 0%, #8b4513 100%);
      color: white;
      padding: 80px 40px;
      text-align: center;
      border-radius: 25px;
    }

    .cta-section h2 {
      font-family: 'Pacifico', cursive;
      font-size: 48px;
      margin-bottom: 20px;
    }

    .cta-section p {
      font-size: 20px;
      margin-bottom: 35px;
      opacity: 0.95;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cta-btn {
      padding: 16px 40px;
      background: var(--primary);
      color: white;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 700;
      display: inline-block;
      transition: all 0.3s ease;
      font-size: 18px;
      box-shadow: 0 5px 20px rgba(254, 153, 0, 0.4);
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(254, 153, 0, 0.6);
    }

    .cta-btn.secondary {
      background: green;
      color: white;
    }

    .cta-btn.secondary:hover {
      background: var(--secondary);
    }

    /* WHATSAPP */
    .whatsapp {
      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;
    }

    .whatsapp:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }

    /* 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;
      }

      .services-grid,
      .products-grid,
      .conditions-grid {
        grid-template-columns: 1fr;
      }

      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);
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .cta-btn {
        width: 100%;
        max-width: 300px;
      }
    }