* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ===== ÉCRAN DE CHARGEMENT AVEC EFFET DE LUMIÈRE ===== */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e4b3c, #0f2b22);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  text-align: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.loader-logo {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f4a261;
  box-shadow: 0 0 30px rgba(244, 162, 97, 0.5);
  animation: logoGlow 2s infinite alternate;
}

@keyframes logoGlow {
  from { box-shadow: 0 0 30px rgba(244, 162, 97, 0.5); }
  to { box-shadow: 0 0 60px rgba(244, 162, 97, 0.8); }
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Effet de lumière qui traverse le logo */
.light-beam {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    rgba(255, 244, 214, 0.8),
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  animation: lightSweep 2.5s infinite ease-in-out;
  pointer-events: none;
}

@keyframes lightSweep {
  0% {
    left: -100%;
  }
  20% {
    left: -100%;
  }
  40% {
    left: 0%;
  }
  60% {
    left: 0%;
  }
  80% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.loader-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  letter-spacing: 4px;
  margin-bottom: 25px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  animation: textFade 2s infinite;
}

@keyframes textFade {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; text-shadow: 0 0 20px #f4a261; }
}

.loader-progress {
  width: 300px;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #f4a261, #f7b731);
  border-radius: 10px;
  animation: progress 2.5s ease-in-out forwards;
  box-shadow: 0 0 20px #f4a261;
}

@keyframes progress {
  0% { width: 0%; }
  20% { width: 30%; }
  40% { width: 50%; }
  60% { width: 70%; }
  80% { width: 85%; }
  100% { width: 100%; }
}

/* Version mobile pour le loader */
@media (max-width: 768px) {
  .loader-logo {
    width: 120px;
    height: 120px;
  }
  
  .loader-text {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
  
  .loader-progress {
    width: 250px;
  }
}

    /* Navigation verte améliorée */
    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 5%;
      background: linear-gradient(135deg, #1e4b3c, #2a6e57);
      backdrop-filter: blur(10px);
      box-shadow: 0 5px 30px rgba(0,0,0,0.2);
      z-index: 1000;
      animation: slideDown 0.8s ease;
      border-bottom: 3px solid #f4a261;
    }

    @keyframes slideDown {
      from { transform: translateY(-100%); }
      to { transform: translateY(0); }
    }

    .logo {
      position: relative;
      width: 65px;
      height: 65px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid #f4a261;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .logo:hover {
      transform: scale(1.08);
      box-shadow: 0 8px 25px rgba(244, 162, 97, 0.5);
    }

    .logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .nav-menu {
      display: flex;
      gap: 2.5rem;
    }

    .nav-menu a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 1px;
      position: relative;
      padding: 0.5rem 0;
      transition: color 0.3s;
      text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #f4a261;
      transition: width 0.3s;
      box-shadow: 0 0 8px #f4a261;
    }

    .nav-menu a:hover {
      color: #f4e6c0;
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    /* Hero Section avec overlay amélioré */
    .hero {
      position: relative;
      height: 100vh;
      background: url("../Follio/Img/Ampa1.jpg") center/cover no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      background-attachment: fixed;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(30, 75, 60, 0.7), rgba(42, 110, 87, 0.5));
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      animation: fadeInUp 1.2s ease;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-title {
      font-size: 90px;
      font-weight: 900;
      margin: 10px 0;
      font-family: 'Playfair Display', serif;
      text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
      letter-spacing: 2px;
    }

    .hero-text {
      max-width: 600px;
      margin: auto;
      margin-bottom: 30px;
      font-size: 1.2rem;
      text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    }

    .hero-buttons a {
      padding: 16px 32px;
      margin: 10px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      display: inline-block;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .btn-primary {
      background: #f4a261;
      color: white;
      border: 2px solid #f4a261;
    }

    .btn-primary:hover {
      background: #e68a3c;
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(244, 162, 97, 0.4);
    }

    .btn-outline {
      border: 2px solid white;
      color: white;
      background: transparent;
    }

    .btn-outline:hover {
      background: white;
      color: #1e4b3c;
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255,255,255,0.3);
    }

    /* Search Box améliorée */
    .search-box {
      position: relative;
      margin: -40px auto 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      z-index: 10;
      width: 90%;
      max-width: 900px;
      border: 1px solid rgba(244, 162, 97, 0.3);
      box-sizing: border-box;
    }

    /* Destination, Date et bouton sur la 2e ligne */
    .search-box input:nth-child(5),
    .search-box input:nth-child(6) {
      grid-column: span 2;
    }

    .search-box button {
      grid-column: span 4;
    }

    .search-box input,
    .search-box select {
      padding: 14px 20px;
      border: 1px solid rgba(224, 224, 224, 0.5);
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      width: 100%;
      box-sizing: border-box;
      background: rgba(255, 255, 255, 0.95);
    }

    .search-box input:focus,
    .search-box select:focus {
      outline: none;
      border-color: #f4a261;
      box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.2);
    }

    .search-box button {
      background: #1e4b3c;
      border: 2px solid #1e4b3c;
      padding: 14px 30px;
      border-radius: 8px;
      color: white;
      cursor: pointer;
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
      transition: all 0.3s;
      box-sizing: border-box;
    }

    .search-box button:hover {
      background: #f4a261;
      border-color: #f4a261;
      transform: translateY(-2px);
    }
    

    /* Section philosophie - Couleurs améliorées */
    .philosophy {
      padding: 5rem 5% 5rem;
      text-align: center;
      background: linear-gradient(135deg, #fef9e7, #fffaf0);
    }

    .philosophy h2 {
      font-size: 2.8rem;
      color: #1e4b3c;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
      font-family: 'Playfair Display', serif;
    }

    .philosophy h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: #f4a261;
      border-radius: 2px;
    }

    .philosophy p {
      max-width: 800px;
      margin: 2rem auto;
      font-size: 1.2rem;
      color: #4a4a4a;
    }

    .features {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      margin-top: 4rem;
      flex-wrap: wrap;
    }

    .feature-item {
      background: #fef7ec;
      backdrop-filter: blur(5px);
      padding: 1.8rem 2.5rem;
      border-radius: 15px;
      font-weight: 600;
      color: #1e4b3c;
      box-shadow: 0 10px 30px rgba(180, 130, 70, 0.08);
      transition: all 0.4s;
      border-bottom: 4px solid transparent;
      font-size: 1.1rem;
      border: 1px solid rgba(244, 162, 97, 0.3);
    }

    .feature-item:hover {
      transform: translateY(-10px);
      border-bottom-color: #f4a261;
      box-shadow: 0 20px 40px rgba(200, 140, 60, 0.15);
      background: #fff5e6;
    }

    .image-separation {
      width: 100%;
      height: 450px;
      background-image: url("../Follio/Img/Ampa1.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      position: relative;
    }

    .image-separation::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(30, 75, 60, 0.3), rgba(244, 162, 97, 0.2));
    }

    /* Destinations - Couleurs améliorées */
    .destinations {
      padding: 5rem 5%;
      background: #f5efe8;
    }

    .section-title {
      text-align: center;
      font-size: 2.8rem;
      color: #1e4b3c;
      margin-bottom: 1rem;
      font-family: 'Playfair Display', serif;
    }

    .section-subtitle {
      text-align: center;
      color: #5a5a5a;
      font-size: 1.2rem;
      margin-bottom: 3rem;
    }

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

    .destination-card {
      background: #fffaf2;
      backdrop-filter: blur(8px);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(140, 90, 40, 0.1);
      transition: all 0.4s;
      border: 1px solid rgba(244, 162, 97, 0.25);
    }

    .destination-card:hover {
      transform: translateY(-20px);
      box-shadow: 0 30px 50px rgba(160, 110, 50, 0.2);
      background: #ffffff;
    }

    .card-image {
      height: 260px;
      overflow: hidden;
      position: relative;
    }

    .card-image::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, transparent 60%, rgba(30, 75, 60, 0.5));
    }

    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s;
    }

    .destination-card:hover .card-image img {
      transform: scale(1.15);
    }

    .card-content {
      padding: 2rem;
    }

    .location-tag {
      display: inline-block;
      background: #f4a261;
      color: white;
      padding: 0.4rem 1.2rem;
      border-radius: 30px;
      font-size: 0.9rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .card-content h3 {
      font-size: 1.8rem;
      color: #1e4b3c;
      margin-bottom: 0.8rem;
      font-weight: 700;
    }

    .card-content p {
      color: #5a5a5a;
      margin-bottom: 1.8rem;
      line-height: 1.7;
    }

    .btn-card {
      display: inline-block;
      background: transparent;
      color: #1e4b3c;
      text-decoration: none;
      font-weight: 700;
      padding: 0.7rem 2rem;
      border-radius: 30px;
      border: 2px solid #1e4b3c;
      transition: all 0.3s;
    }

    .btn-card:hover {
      background: #1e4b3c;
      color: white;
      transform: translateX(5px);
    }

    /* Section vidéo */
    .video-section {
      position: relative;
      height: 70vh;
      overflow: hidden;
    }

    .background-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(30, 75, 60, 0.7), rgba(42, 110, 87, 0.6));
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
      z-index: 1;
    }

    .video-overlay .section-title {
      color: white;
      font-size: 3.5rem;
      text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    }

    .video-overlay .section-subtitle {
      color: #f4e6c0;
      font-size: 1.3rem;
    }

    /* Quick Destinations */
    .quick-dest {
      padding: 5rem 5%;
      background: #f5efe8;
    }

    .dest-tags {
      display: flex;
      justify-content: center;
      gap: 1.2rem;
      flex-wrap: wrap;
      margin: 3rem 0;
    }

    .dest-tag {
      padding: 1rem 2.5rem;
      background: #fffaf0;
      backdrop-filter: blur(4px);
      border-radius: 50px;
      font-weight: 600;
      color: #1e4b3c;
      cursor: pointer;
      transition: all 0.3s;
      border: 2px solid transparent;
      font-size: 1.1rem;
      box-shadow: 0 5px 15px rgba(160, 110, 40, 0.08);
    }

    .dest-tag:hover {
      background: #1e4b3c;
      color: white;
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(30, 75, 60, 0.3);
      border-color: #f4a261;
    }

    .dest-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2.5rem;
      margin-top: 4rem;
    }

    .dest-feature {
      text-align: center;
      padding: 2.5rem 2rem;
      background: #fffaf2;
      backdrop-filter: blur(5px);
      border-radius: 20px;
      transition: all 0.4s;
      border: 1px solid rgba(244, 162, 97, 0.25);
      box-shadow: 0 10px 25px rgba(160, 110, 50, 0.06);
    }

    .dest-feature:hover {
      transform: translateY(-15px);
      box-shadow: 0 30px 40px rgba(160, 110, 40, 0.12);
      border-color: #f4a261;
      background: #fff9f0;
    }

    .dest-feature-icon {
      font-size: 3.5rem;
      margin-bottom: 1.2rem;
    }

    .dest-feature h4 {
      color: #1e4b3c;
      margin-bottom: 0.8rem;
      font-size: 1.4rem;
    }

    /* Team Section */
    .team {
      padding: 5rem 5%;
      background: #f5efe8;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2.5rem;
      margin-top: 3rem;
    }

    .team-member {
      background: #fffaf2;
      backdrop-filter: blur(6px);
      padding: 2.5rem 2rem;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 15px 35px rgba(160, 110, 50, 0.06);
      transition: all 0.4s;
      border: 1px solid rgba(244, 162, 97, 0.2);
    }

    .team-member:hover {
      transform: translateY(-15px);
      box-shadow: 0 30px 50px rgba(160, 110, 40, 0.12);
      border-color: #f4a261;
      background: #ffffff;
    }

    .team-member h4 {
      color: #1e4b3c;
      margin-bottom: 0.8rem;
      font-size: 1.3rem;
      font-weight: 700;
    }

    .team-member p {
      color: #5a5a5a;
      margin-bottom: 1.2rem;
      font-style: italic;
    }

    .image-background {
      width: 100%;
      height: 500px;
      background-image: url("../Follio/Img/Ampa1.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      position: relative;
    }

    .image-background::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(30, 75, 60, 0.4), rgba(244, 162, 97, 0.2));
    }

    /* CTA Section */
    .cta-section {
      padding: 6rem 5%;
      background: linear-gradient(135deg, #1e4b3c, #2a6e57);
      text-align: center;
      color: white;
    }

    .cta-section h2 {
      font-size: 3.5rem;
      margin-bottom: 1.2rem;
      font-family: 'Playfair Display', serif;
    }

    .cta-section p {
      font-size: 1.3rem;
      margin-bottom: 2.5rem;
    }

    .cta-section .btn-primary {
      background: #f4a261;
      border: 2px solid #f4a261;
      padding: 16px 40px;
      font-size: 1.2rem;
    }

    .cta-section .btn-primary:hover {
      background: #e68a3c;
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

    /* Contact Section */
    .contact-section {
      padding: 5rem 5%;
      background: #f5efe8;
    }

    .contact-info-footer {
      text-align: center;
      margin-bottom: 3rem;
    }

    .contact-info-footer h2 {
      font-size: 2.8rem;
      color: #1e4b3c;
      margin-bottom: 1.8rem;
      font-family: 'Playfair Display', serif;
    }

    .contact-info-footer p {
      color: #5a5a5a;
      margin-bottom: 0.8rem;
      font-size: 1.1rem;
    }

    .contact-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      max-width: 900px;
      margin: 0 auto;
    }

    /* Textarea et bouton occupent toute la largeur */
    .contact-form .form-group:nth-child(5),
    .contact-form .form-group:nth-child(6) {
      grid-column: 1 / -1;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 1.2rem;
      border-radius: 12px;
      border: 1px solid rgba(200, 160, 120, 0.3);
      background: #fffdf9;
      backdrop-filter: blur(4px);
      font-size: 1rem;
      transition: all 0.3s;
      font-family: 'Montserrat', sans-serif;
    }

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

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #f4a261;
      box-shadow: 0 0 0 4px rgba(244, 162, 97, 0.15);
    }

    .form-group button {
      width: 100%;
      padding: 1.2rem;
    }

    /* Footer */
    footer {
      background: #1e4b3c;
      color: white;
      padding: 4rem 5% 1.5rem;
    }

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

    .footer-section h4 {
      margin-bottom: 1.8rem;
      position: relative;
      display: inline-block;
      font-size: 1.3rem;
    }

    .footer-section h4::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60px;
      height: 3px;
      background: #f4a261;
      border-radius: 2px;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 0.8rem;
    }

    .footer-section ul li a {
      color: #ddd;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-section ul li a:hover {
      color: #f4a261;
      padding-left: 5px;
    }

    .social-footer {
      display: flex;
      gap: 1.2rem;
    }

    .social-footer a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      color: white;
      text-decoration: none;
      transition: all 0.3s;
      font-size: 1.2rem;
    }

    .social-footer a:hover {
      background: #f4a261;
      transform: translateY(-8px) rotate(360deg);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255,255,255,0.15);
      color: #ddd;
    }

    /* ===== RESPONSIVE AMÉLIORÉ POUR TABLETTE ET MOBILE ===== */

    /* Tablettes (768px - 1024px) */
    @media (max-width: 1024px) and (min-width: 769px) {
      .main-nav {
        padding: 0.8rem 3%;
      }
      
      .nav-menu {
        gap: 1.8rem;
      }
      
      .nav-menu a {
        font-size: 0.95rem;
      }
      
      .hero-title {
        font-size: 5rem;
      }
      
      .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
      }
      
      .search-box {
        grid-template-columns: repeat(2, 1fr);
        width: 90%;
      }

      .search-box input:nth-child(5),
      .search-box input:nth-child(6) {
        grid-column: span 1;
      }

      .search-box button {
        grid-column: span 2;
      }
    }

    /* Petites tablettes et grands mobiles (576px - 768px) */
    @media (max-width: 768px) {
      /* Navigation principale - CORRECTION */
      .main-nav {
        flex-direction: column;
        padding: 0.8rem 1rem;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1e4b3c, #2a6e57);
        z-index: 1000;
      }
      
      .logo {
        width: 55px;
        height: 55px;
        margin-bottom: 0.3rem;
      }
      
      .nav-menu {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.8rem 1.2rem;
        margin-top: 0.3rem;
        width: 100%;
      }
      
      .nav-menu a {
        font-size: 0.9rem;
        padding: 0.3rem 0;
        white-space: nowrap;
        font-weight: 600;
      }
      
      /* Hero Section */
      .hero {
        height: 100vh;
        min-height: unset;
        margin-top: 0;
        padding-top: 110px;
        background-attachment: scroll;
        flex-direction: column;
        justify-content: center;
      }
      
      .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        padding: 0 1rem;
      }
      
      .hero-text {
        font-size: 1rem;
        padding: 0 1.5rem;
        margin-bottom: 1.5rem;
      }
      
      .hero-buttons a {
        padding: 12px 20px;
        margin: 5px;
        font-size: 0.9rem;
      }
      
      /* Search Box - légèrement sur le hero en mobile */
      .search-box {
        margin: -30px auto 0;
        width: 95%;
        padding: 1.5rem;
        grid-template-columns: 1fr;
        gap: 0.8rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      }

      .search-box input:nth-child(5),
      .search-box input:nth-child(6) {
        grid-column: span 1;
      }

      .search-box button {
        grid-column: span 1;
      }

      .search-box input,
      .search-box select,
      .search-box button {
        width: 100%;
        padding: 12px 15px;
      }
      
      /* Section philosophie */
      .philosophy {
        padding: 4rem 1.5rem 3rem;
      }
      
      .philosophy h2 {
        font-size: 2rem;
      }
      
      .philosophy p {
        font-size: 1rem;
        padding: 0 1rem;
      }
      
      .features {
        gap: 1.2rem;
        flex-direction: column;
        align-items: center;
      }
      
      .feature-item {
        width: 100%;
        max-width: 350px;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
      }
      
      /* Images séparation */
      .image-separation,
      .image-background {
        height: 250px;
        background-attachment: scroll;
      }
      
      /* Destinations */
      .destinations {
        padding: 3rem 1.5rem;
      }
      
      .section-title {
        font-size: 2rem;
        line-height: 1.3;
      }
      
      .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
      }
      
      .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
      }
      
      .destination-card:hover {
        transform: translateY(-10px);
      }
      
      .card-image {
        height: 200px;
      }
      
      .card-content {
        padding: 1.5rem;
      }
      
      .card-content h3 {
        font-size: 1.5rem;
      }
      
      /* Section vidéo */
      .video-section {
        height: 50vh;
      }
      
      .video-overlay .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
      }
      
      .video-overlay .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
      }
      
      /* Quick Destinations */
      .quick-dest {
        padding: 3rem 1.5rem;
      }
      
      .dest-tags {
        gap: 0.8rem;
      }
      
      .dest-tag {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
      }
      
      .dest-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      
      .dest-feature {
        padding: 1.8rem 1.5rem;
      }
      
      .dest-feature-icon {
        font-size: 2.8rem;
      }
      
      .dest-feature h4 {
        font-size: 1.2rem;
      }
      
      /* Team Section */
      .team {
        padding: 3rem 1.5rem;
      }
      
      .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      
      .team-member {
        padding: 1.8rem 1.5rem;
      }
      
      .team-member h4 {
        font-size: 1.2rem;
      }
      
      /* CTA Section */
      .cta-section {
        padding: 4rem 1.5rem;
      }
      
      .cta-section h2 {
        font-size: 2rem;
      }
      
      .cta-section p {
        font-size: 1.1rem;
      }
      
      .cta-section .btn-primary {
        padding: 14px 30px;
        font-size: 1rem;
      }
      
      /* Contact Section */
      .contact-section {
        padding: 3rem 1.5rem;
      }
      
      .contact-info-footer h2 {
        font-size: 2rem;
      }
      
      .contact-info-footer p {
        font-size: 1rem;
      }
      
      .contact-form {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      
      .form-group input,
      .form-group select,
      .form-group textarea {
        padding: 1rem;
      }
      
      /* Footer */
      footer {
        padding: 3rem 1.5rem 1rem;
      }
      
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .footer-section {
        text-align: center;
      }
      
      .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .social-footer {
        justify-content: center;
      }
      
      .footer-bottom {
        font-size: 0.9rem;
      }
    }

    /* Petits mobiles (moins de 480px) */
    @media (max-width: 480px) {
      .main-nav {
        padding: 0.5rem 0.8rem;
      }
      
      .logo {
        width: 45px;
        height: 45px;
      }
      
      .nav-menu {
        gap: 0.5rem 0.8rem;
      }
      
      .nav-menu a {
        font-size: 0.8rem;
        padding: 0.2rem 0;
      }
      
      .hero {
        height: 100vh;
        min-height: unset;
        padding-top: 100px;
      }
      
      .hero-title {
        font-size: 2.2rem;
      }
      
      .hero-buttons a {
        display: block;
        width: 200px;
        margin: 10px auto;
      }
      
      .search-box {
        width: 100%;
        padding: 1rem;
      }
      
      .philosophy h2 {
        font-size: 1.8rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .card-content h3 {
        font-size: 1.3rem;
      }
      
      .dest-tag {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
      }
      
      .video-overlay .section-title {
        font-size: 1.5rem;
      }
      
      .cta-section h2 {
        font-size: 1.8rem;
      }
      
      .cta-section p {
        font-size: 1rem;
      }
      
      .footer-bottom {
        font-size: 0.8rem;
      }
    }

    /* Très petits écrans (moins de 360px) */
    @media (max-width: 360px) {
      .nav-menu {
        gap: 0.4rem 0.6rem;
      }
      
      .nav-menu a {
        font-size: 0.7rem;
      }
      
      .hero-title {
        font-size: 1.8rem;
      }
      
      .hero-text {
        font-size: 0.9rem;
      }
      
      .dest-tag {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
      }
    }