
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bitcount+Prop+Single:wght@100..900&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Mystery+Quest&family=Playwrite+DE+SAS:wght@100..400&family=Saira+Stencil:ital,wght@0,100..900;1,100..900&display=swap');

 
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
    
      scroll-behavior: smooth;
      background-color: #fefcf5;
      overflow-x: hidden;
    }

   

    /* Custom Scrollbar */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #e0ece8; border-radius: 10px; }
    ::-webkit-scrollbar-thumb { background: #FFA500; border-radius: 10px; }
    ::-webkit-scrollbar-thumb:hover { background: #e68900; }

    /* ========== NAVBAR REFINED WITH ELEGANT DROPDOWN ========== */
    .navbar {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(12px);
      padding: 0.9rem 2rem;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .navbar.scrolled {
      padding: 0.6rem 2rem;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .nav-container {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 1001;
    }

    .brand-logo {
      width: 48px;
      height: 48px;
      object-fit: cover;
      border-radius: 50%;
      box-shadow: 0 6px 14px rgba(0, 184, 184, 0.2);
      transition: transform 0.4s ease;
    }

    .brand:hover .brand-logo {
      transform: rotate(5deg) scale(1.05);
    }

    .brand-name {
      font-size: 1.6rem;
      font-weight: 800;
      background: linear-gradient(135deg, #008b8b, #FFA500);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.3px;
    }

    /* MENU PRINCIPAL */
    .nav-links {
      list-style: none;
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 600;
      color: #1e2f2f;
      transition: 0.3s;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 0;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #FFA500, #008b8b);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-links a:hover {
      color: #FFA500;
    }

    .nav-links a i {
      font-size: 0.75rem;
      transition: transform 0.3s ease;
    }

    /* DROPDOWN EMBELLI - MODERN & FLUID */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(255, 255, 245, 0.98);
      backdrop-filter: blur(16px);
      list-style: none;
      min-width: 240px;
      padding: 0.8rem 0;
      border-radius: 1.2rem;
      box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-12px);
      transition: opacity 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), visibility 0.4s, transform 0.4s ease;
      z-index: 1050;
      border: 1px solid rgba(255, 165, 0, 0.25);
    }

    .dropdown-menu li {
      margin: 0;
      padding: 0;
    }

    .dropdown-menu li a {
      display: block;
      padding: 0.7rem 1.8rem;
      color: #1e2f2f;
      font-weight: 500;
      transition: all 0.3s;
      font-size: 0.95rem;
      letter-spacing: -0.2px;
      gap: 12px;
    }

    .dropdown-menu li a i {
      width: 24px;
      font-size: 1rem;
      color: #FFA500;
      transition: transform 0.3s;
    }

    .dropdown-menu li a:hover {
      background: linear-gradient(90deg, rgba(255, 165, 0, 0.1), transparent);
      color: #FFA500;
      padding-left: 2rem;
    }

    .dropdown-menu li a:hover i {
      transform: translateX(5px);
    }

    /* show dropdown on hover (desktop) */
    @media (min-width: 861px) {
      .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(6px);
      }
      .dropdown:hover > a i {
        transform: rotate(180deg);
        color: #FFA500;
      }
    }

    /* Hamburger menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      z-index: 1001;
      background: transparent;
      border: none;
      padding: 8px;
    }

    .hamburger span {
      display: block;
      width: 28px;
      height: 2.5px;
      background: linear-gradient(90deg, #008b8b, #FFA500);
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* overlay + responsive */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(5px);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: 0.4s;
    }
    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    @media (max-width: 860px) {
      .hamburger {
        display: flex;
      }
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 340px;
        height: 100vh;
        background: rgba(255, 255, 245, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 1.5rem;
        transition: right 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        box-shadow: -8px 0 35px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        padding: 2rem 1.8rem;
        overflow-y: auto;
      }
      .nav-links.active {
        right: 0;
      }
      .nav-links li {
        width: 100%;
      }
      .nav-links a {
        font-size: 1.2rem;
        justify-content: space-between;
        padding: 0.8rem 0;
      }
      .dropdown-menu {
        position: static;
        background: rgba(0, 0, 0, 0.03);
        backdrop-filter: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
        border-radius: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        transition: none;
      }
      .dropdown-menu.active {
        display: block;
        animation: slideDown 0.3s ease;
      }
      @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
      }
      .dropdown-menu li a {
        padding: 0.7rem 1rem;
        font-size: 1rem;
      }
      .dropdown.open > a i {
        transform: rotate(180deg);
      }
    }

    /* Hero section with parallax */
    .hero {
      height: 100vh;
      min-height: 700px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 0;
      overflow: hidden;
    }

    .bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.55) saturate(1.2);
      transform: scale(1.02);
      transition: transform 12s ease;
    }

    .hero:hover .bg-video {
      transform: scale(1.08);
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 40, 40, 0.7), rgba(0, 100, 100, 0.5));
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      color: white;
      padding: 2rem;
      max-width: 900px;
      animation: fadeInUp 1.2s ease-out;
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(50px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .logo {
      width: 130px;
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
      border-radius: 50%;
      background: rgba(255,255,240,0.15);
      padding: 10px;
      backdrop-filter: blur(8px);
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    .hero h1 {
      font-size: 4rem;
      font-weight: 800;
      margin-bottom: 1.2rem;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      background: linear-gradient(135deg, #fff, #ffe0b3);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      max-width: 650px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .btn {
      display: inline-block;
      padding: 1rem 2.5rem;
      background: linear-gradient(135deg, #FFA500, #ff7700);
      color: white;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      border-radius: 50px;
      transition: all 0.4s ease;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
      position: relative;
      overflow: hidden;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn:hover {
      background: linear-gradient(135deg, #ff7700, #e68900);
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(255, 119, 0, 0.4);
    }

    /* Section intro */
    .section-intro {
      max-width: 1280px;
      margin: 6rem auto;
      padding: 0 2rem;
      text-align: center;
    }

    .section-intro h2 {
      font-size: 3rem;
      background: linear-gradient(135deg, #006b6b, #008b8b);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
      font-weight: 800;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      justify-content: center;
      margin-top: 3rem;
    }

    .feature-card {
      background: white;
      border-radius: 2rem;
      padding: 2.2rem 1.8rem;
      width: 300px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      border: 1px solid #e9f3f0;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,165,0,0.1), transparent);
      transition: left 0.6s;
    }

    .feature-card:hover::before {
      left: 100%;
    }

    .feature-card:hover {
      transform: translateY(-16px);
      box-shadow: 0 35px 55px rgba(0, 139, 139, 0.2);
      border-color: #FFA500;
    }

    .feature-icon {
      font-size: 3.8rem;
      margin-bottom: 1.2rem;
      display: inline-block;
      transition: transform 0.3s;
    }

    .feature-card:hover .feature-icon {
      transform: scale(1.1);
    }

    .feature-card h3 {
      font-size: 1.7rem;
      color: #008b8b;
      margin-bottom: 0.8rem;
    }

    /* SLIDER */
    .slider-section {
      background: linear-gradient(145deg, #fef7e6 0%, #f5f9f7 100%);
      padding: 5rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .slider-section::before {
      content: '✦';
      position: absolute;
      font-size: 200px;
      opacity: 0.03;
      bottom: -50px;
      left: -50px;
      transform: rotate(-15deg);
      pointer-events: none;
    }

    .slider-container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .slider-title {
      font-size: 2.8rem;
      background: linear-gradient(135deg, #006b6b, #008b8b);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 2rem;
      font-weight: 800;
    }

    .slider-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 2rem;
      box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
      margin: 0 auto;
    }

    .slider {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    .slide {
      min-width: 100%;
      height: 520px;
      position: relative;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .slide-caption {
      position: absolute;
      bottom: 30px;
      left: 20px;
      right: 20px;
      background: linear-gradient(90deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
      backdrop-filter: blur(10px);
      color: white;
      padding: 14px 24px;
      text-align: center;
      font-weight: 600;
      font-size: 1.2rem;
      border-radius: 60px;
      letter-spacing: 0.5px;
    }

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.6);
      color: white;
      border: none;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.8rem;
      transition: 0.3s;
      z-index: 10;
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slider-btn:hover {
      background: #FFA500;
      transform: translateY(-50%) scale(1.1);
    }

    .prev { left: 20px; }
    .next { right: 20px; }

    .dots {
      text-align: center;
      margin-top: 2rem;
    }

    .dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #bbb;
      margin: 0 6px;
      cursor: pointer;
      transition: 0.3s;
    }

    .dot.active {
      background: linear-gradient(135deg, #FFA500, #ff7700);
      width: 28px;
      border-radius: 20px;
    }

    /* Témoignage */
    .testimonial {
      background: linear-gradient(135deg, #ffffff 0%, #fef3e0 100%);
      padding: 5rem 2rem;
      text-align: center;
      position: relative;
    }

    .testimonial::after {
      content: '✧';
      position: absolute;
      font-size: 150px;
      opacity: 0.05;
      bottom: 20px;
      right: 30px;
      pointer-events: none;
    }

    .quote {
      max-width: 850px;
      margin: 0 auto;
      font-style: italic;
      font-size: 1.7rem;
      color: #1a4747;
      font-weight: 500;
      position: relative;
      line-height: 1.4;
    }

    .quote:before {
      content: "“";
      font-size: 7rem;
      background: linear-gradient(135deg, #FFA500, #ff7700);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      opacity: 0.5;
      position: absolute;
      left: -30px;
      top: -45px;
      font-family: serif;
    }

    .author {
      margin-top: 2rem;
      font-weight: 700;
      color: #008b8b;
      font-size: 1.1rem;
    }

    /* FOOTER EMBELLI */
    .footer {
      background: linear-gradient(135deg, #0a2626, #0d3535);
      color: #e0f0f0;
      padding: 4rem 2rem 1.5rem;
      position: relative;
      border-top-left-radius: 3rem;
      border-top-right-radius: 3rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2.5rem;
    }

    .footer-col {
      flex: 1;
      min-width: 220px;
      text-align: left;
    }

    .footer-col h3 {
      font-size: 1.5rem;
      background: linear-gradient(135deg, #FFA500, #ffcc80);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1.2rem;
      font-weight: 700;
      position: relative;
      display: inline-block;
    }

    .footer-col h3:after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, #FFA500, #ffcc80);
      border-radius: 3px;
    }

    .footer-col p {
      margin: 0.8rem 0;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.95rem;
      transition: transform 0.3s;
    }

    .footer-col p:hover {
      transform: translateX(5px);
    }

    .footer-col i {
      width: 28px;
      color: #FFA500;
      font-size: 1.2rem;
    }

    .social-icons {
      display: flex;
      gap: 1.2rem;
      margin-top: 1rem;
      flex-wrap: wrap;
    }

    .social-icon {
      background: rgba(255, 165, 0, 0.15);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s;
      text-decoration: none;
      color: #FFA500;
      font-size: 1.5rem;
      border: 1px solid rgba(255, 165, 0, 0.3);
    }

    .social-icon:hover {
      background: linear-gradient(135deg, #FFA500, #ff7700);
      color: white;
      transform: translateY(-6px) rotate(360deg);
      border-color: transparent;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      margin-top: 2.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.85rem;
      opacity: 0.8;
    }

    .floating-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: linear-gradient(135deg, #FFA500, #ff7700);
      color: white;
      border-radius: 60px;
      padding: 15px 28px;
      font-weight: bold;
      z-index: 99;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      font-family: 'Playfair Display', serif;
      animation: pulseGlow 2s infinite;
    }

    @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 15px 35px rgba(255, 119, 0, 0.3); }
      50% { box-shadow: 0 15px 45px rgba(255, 119, 0, 0.6); }
    }

    .floating-btn:hover {
      transform: scale(1.08) translateY(-3px);
      background: linear-gradient(135deg, #ff7700, #e68900);
    }

    @media (max-width: 860px) {
      .hero h1 { font-size: 2.5rem; }
      .hero p { font-size: 1rem; }
      .slide { height: 350px; }
      .slider-title { font-size: 2rem; }
      .quote { font-size: 1.3rem; }
      .footer-content { flex-direction: column; text-align: center; }
      .footer-col { text-align: center; }
      .footer-col h3:after { left: 50%; transform: translateX(-50%); width: 60px; }
      .footer-col p { justify-content: center; }
      .social-icons { justify-content: center; }
      .quote:before { font-size: 5rem; left: -10px; top: -30px; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 2rem; }
      .slide { height: 280px; }
      .quote { font-size: 1.1rem; }
      .feature-card { width: 100%; max-width: 320px; }
      .floating-btn { padding: 12px 20px; font-size: 0.9rem; }
    }