  /* RESET ET BASE */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
    overflow-x: hidden;
  }

  /* HEADER ET NAVIGATION */
  header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 1002;
  }

  .logo:hover {
    opacity: 0.8;
  }

  .logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
  }

  .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
  }

  /* BOUTON MENU HAMBURGER */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
  }

  .menu-toggle span {
    width: 100%;
    height: 3px;
    background: #d4af37;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }

  /* MENU NAVIGATION (CACHÉ PAR DÉFAUT) */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    padding: 2rem;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s;
    padding: 1rem 2rem;
    display: block;
    border-radius: 10px;
  }

  .nav-links a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(-5px);
  }

  /* SECTION HÉRO */
  .hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.6)), url('valetbackground.jpg') center/cover no-repeat;
    padding: 150px 2rem 100px;
    text-align: center;
    color: white;
    margin-top: 70px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: 700;
  }

  .hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .cta-button {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  }

  .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
  }

  /* SECTION SERVICES */
  .services {
    padding: 5rem 2rem;
    background: #fff;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 700;
  }

  .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
  }

  /* DISPOSITION EN CARTES VERTICALES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  }

  .service-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
  }

  .service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .service-card h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.6rem;
  }

  .service-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
  }

  /* SECTION RÉSERVATION */
  .reservation {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  }

  .booking-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
  }

  .form-header {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
    padding: 2.5rem;
    text-align: center;
  }

  .form-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
    font-weight: 700;
  }

  .form-header p {
    font-size: 1.1rem;
    opacity: 0.9;
  }

  .form-body {
    padding: 2.5rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .form-row.single {
    grid-template-columns: 1fr;
  }

  .form-group {
    position: relative;
  }

  .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 1.1rem;
    z-index: 1;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }

  .submit-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  }

  .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
  }

  .success-message {
    background: #d4edda;
    color: #155724;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 5px solid #28a745;
    font-weight: 500;
    display: none;
    font-size: 1rem;
  }

  #priceDisplay {
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    text-align: center;
    color: #d4af37;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 10px;
  }

  /* FOOTER */
  footer {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 3px solid #d4af37;
  }

  .contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
  }

  .contact-item i {
    color: #d4af37;
    font-size: 1.3rem;
  }

  /* ===== RESPONSIVE ===== */

  /* Tablettes */
  @media (max-width: 992px) {
    .hero h1 {
      font-size: 2.5rem;
    }

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

    .service-image {
      height: 220px;
    }
  }

  /* Mobiles */
  @media (max-width: 768px) {
    nav {
      padding: 0 1rem;
    }

    .logo img {
      height: 40px;
    }

    .logo-text {
      font-size: 1.2rem;
    }

    .nav-links {
      width: 75%;
      max-width: 300px;
    }

    .hero {
      margin-top: 60px;
      padding: 100px 1.5rem 80px;
      min-height: 60vh;
    }

    .hero h1 {
      font-size: 2rem;
    }

    .hero p {
      font-size: 1.1rem;
    }

    .cta-button {
      padding: 1rem 2rem;
      font-size: 1.1rem;
    }

    .services {
      padding: 3rem 1.5rem;
    }

    .section-title {
      font-size: 2.2rem;
    }

    .section-subtitle {
      font-size: 1.1rem;
    }

    .services-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .service-image {
      height: 200px;
    }

    .service-content {
      padding: 1.5rem;
    }

    .service-card h3 {
      font-size: 1.4rem;
    }

    .form-header {
      padding: 2rem 1.5rem;
    }

    .form-header h3 {
      font-size: 1.8rem;
    }

    .form-body {
      padding: 1.5rem;
    }

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

    .contact-info {
      flex-direction: column;
      gap: 1.5rem;
    }
  }

  /* Petits smartphones */
  @media (max-width: 480px) {
    .logo img {
      height: 35px;
    }

    .logo-text {
      font-size: 1rem;
    }

    .hero {
      padding: 80px 1rem 60px;
    }

    .hero h1 {
      font-size: 1.6rem;
    }

    .hero p {
      font-size: 1rem;
    }

    .cta-button {
      padding: 0.9rem 1.8rem;
      font-size: 1rem;
    }

    .section-title {
      font-size: 1.8rem;
    }

    .service-image {
      height: 180px;
    }

    .service-content {
      padding: 1.2rem;
    }

    .service-card h3 {
      font-size: 1.3rem;
    }

    .form-header h3 {
      font-size: 1.6rem;
    }

    .form-body {
      padding: 1.2rem;
    }

    .submit-btn {
      font-size: 1rem;
      padding: 1rem 2rem;
    }
  }

  /* SECTION AVIS CLIENTS */
  .testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  }

  .google-rating {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .google-logo {
    height: 40px;
    width: auto;
  }

  .rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .stars {
    display: flex;
    gap: 0.3rem;
    font-size: 1.5rem;
    color: #fbbc04;
  }

  .score {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
  }

  .review-count {
    font-size: 0.9rem;
    color: #666;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }

  .testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
  }

  .client-info {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
  }

  .stars-small {
    display: flex;
    gap: 0.2rem;
    font-size: 0.9rem;
    color: #fbbc04;
  }

  .google-badge {
    height: 20px;
    width: auto;
    opacity: 0.7;
  }

  .testimonial-text {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
  }

  .testimonial-date {
    font-size: 0.85rem;
    color: #999;
  }

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

  .google-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: #4285f4;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
  }

  .google-btn:hover {
    background: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
    }

    .rating-header {
      flex-direction: column;
      gap: 1rem;
    }

    .google-rating {
      padding: 1.5rem;
    }

    .testimonial-card {
      padding: 1.5rem;
    }
  }

  /* BOUTON FLOTTANT RÉSERVATION */
  .floating-reservation-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
  }

  .floating-reservation-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .floating-reservation-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f4d03f, #d4af37);
  }

  .floating-reservation-btn i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.1);
    }
  }

  /* Animation d'entrée */
  .floating-reservation-btn.show {
    animation: slideInUp 0.5s ease-out;
  }

  @keyframes slideInUp {
    from {
      transform: translateY(100px);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .floating-reservation-btn {
      bottom: 20px;
      right: 20px;
      padding: 12px 20px;
      font-size: 0.9rem;
    }

    .floating-reservation-btn span {
      display: none;
    }

    .floating-reservation-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      justify-content: center;
      padding: 0;
    }

    .floating-reservation-btn i {
      font-size: 1.5rem;
      margin: 0;
    }
  }

  /* Pour éviter que le bouton chevauche le contenu */
  @media (max-width: 768px) {

    .reservation,
    .testimonials,
    .services {
      padding-bottom: 100px;
    }
  }