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

        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: #0a0a0a;
            overflow-x: hidden;
        }

        /* Smooth Scroll */
        html {
          scroll-behavior: smooth;
          scroll-padding-top: 80px; /* hauteur du header fixe */
        }

        @media (max-width: 600px) {
          html {
            scroll-padding-top: 60px;
          }
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(45deg, #0a0a0a, #1a1a2e, #16213e, #0a0a0a);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
            animation: floatBg 20s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes floatBg {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Header futuriste */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: #ffffff;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #7c7ff6, #ff77c6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            position: relative;
            overflow: hidden;
        }

        .logo-icon img {
          width: 60px;         /* Ajustez la taille selon vos besoins */
          height: 60px;
          object-fit: cover;
          border-radius: 50%;  /* Arrondi pour un effet cercle */
          background: #fff;    /* Fond blanc pour la lisibilité */
          box-shadow: 0 2px 8px rgba(0,0,0,0.07);
          border: 2px solid #7c7ff6; /* Optionnel : contour coloré */
          display: block;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #7c7ff6, #ff77c6);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-menu a.active {
          color: #ff77c6;
          background: rgba(124,127,246,0.08);
          font-weight: 700;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(124, 127, 246, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .nav-menu a:hover::before {
            left: 100%;
        }

        .nav-menu a:hover {
            color: #7c7ff6;
            transform: translateY(-2px);
        }

        /* Menu Responsive & Burger */
        .burger {
          display: none;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          width: 44px;
          height: 44px;
          background: none;
          border: none;
          cursor: pointer;
          z-index: 2001;
          margin-left: 1rem;
        }
        .burger span {
          display: block;
          width: 28px;
          height: 4px;
          margin: 4px 0;
          background: linear-gradient(135deg, #7c7ff6, #ff77c6);
          border-radius: 2px;
          transition: all 0.3s;
        }
        @media (max-width: 900px) {
          .burger { display: flex; }
          .nav-menu {
            position: fixed;
            top: 70px;
            right: -100vw;
            width: 220px;
            height: calc(100vh - 70px);
            background: rgba(10,10,10,0.98);
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
            padding: 2rem 1.5rem;
            transition: right 0.4s cubic-bezier(.77,0,.18,1);
            box-shadow: -8px 0 32px rgba(124,127,246,0.07);
            z-index: 2000;
          }
          .nav-menu.open {
            right: 0;
          }
          .nav-menu li {
            width: 100%;
            margin-bottom: 1.2rem;
          }
          .nav-menu a {
            width: 100%;
            display: block;
            padding: 1rem 0;
            font-size: 1.1rem;
            border-radius: 8px;
          }
        }

        /* Hero Section Ultra-Moderne */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Hero Content Modern & Visuel */
        .hero-content {
          max-width: 850px;
          margin: 0 auto;
          padding: 3.5rem 2rem 2.5rem 2rem;
          background: linear-gradient(135deg, rgba(124,127,246,0.13), rgba(255,119,198,0.11));
          border-radius: 36px;
          box-shadow: 0 8px 40px rgba(124,127,246,0.13), 0 1.5px 8px rgba(255,119,198,0.09);
          position: relative;
          z-index: 2;
          display: flex;
          flex-direction: column;
          align-items: center;
          animation: heroFadeIn 1.2s cubic-bezier(.77,0,.18,1);
          overflow: visible;
        }

        @keyframes heroFadeIn {
          0% { opacity: 0; transform: translateY(40px) scale(0.98);}
          100% { opacity: 1; transform: translateY(0) scale(1);}
        }

        .hero-content::before {
          content: '';
          position: absolute;
          top: -48px;
          left: 50%;
          transform: translateX(-50%);
          width: 160px;
          height: 160px;
          background: radial-gradient(circle, #7c7ff6 0%, #ff77c6 60%, transparent 100%);
          opacity: 0.16;
          border-radius: 50%;
          filter: blur(12px);
          z-index: -1;
          animation: heroGlow 4s ease-in-out infinite alternate;
        }

        @keyframes heroGlow {
          0% { opacity: 0.10; filter: blur(8px);}
          100% { opacity: 0.22; filter: blur(18px);}
        }

        .hero-image-wrapper {
          position: relative;
          margin-bottom: 2rem;
          display: flex;
          justify-content: center;
          align-items: center;
        }

        .hero-image {
          width: 180px;
          height: 180px;
          object-fit: cover;
          border-radius: 50%;
          box-shadow: 0 8px 40px rgba(124,127,246,0.18), 0 1.5px 8px rgba(255,119,198,0.10);
          border: 6px solid #fff;
          background: #fff;
          transition: transform 0.3s cubic-bezier(.77,0,.18,1);
          z-index: 2;
        }

        .hero-image-glow {
          position: absolute;
          top: 50%; left: 50%;
          width: 240px; height: 240px;
          transform: translate(-50%, -50%);
          border-radius: 50%;
          background: radial-gradient(circle, #7c7ff6 0%, #ff77c6 60%, transparent 100%);
          opacity: 0.18;
          z-index: 1;
          pointer-events: none;
          filter: blur(12px);
          animation: heroImgGlow 4s ease-in-out infinite alternate;
        }

        @keyframes heroImgGlow {
          0% { opacity: 0.13; filter: blur(10px);}
          100% { opacity: 0.22; filter: blur(20px);}
        }

        @media (max-width: 700px) {
          .hero-content {
            padding: 1.5rem 0.5rem 1.2rem 0.5rem;
            border-radius: 18px;
          }
          .hero-content::before {
            width: 90px;
            height: 90px;
            top: -22px;
          }
          .hero-image { width: 110px; height: 110px; }
          .hero-image-glow { width: 150px; height: 150px; }
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff, #7c7ff6, #ff77c6, #78dbff);
            background-size: 300% 300%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientText 4s ease-in-out infinite;
        }

        @keyframes gradientText {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.8;
        }

        .cta-container {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, #7c7ff6, #ff77c6);
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(124, 127, 246, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(124, 127, 246, 0.6);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px) scale(1.05);
            border-color: rgba(124, 127, 246, 0.5);
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, #7c7ff6, #ff77c6);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 60%; left: 85%; animation-delay: 1s; }
        .floating-element:nth-child(3) { top: 80%; left: 20%; animation-delay: 2s; }
        .floating-element:nth-child(4) { top: 30%; left: 70%; animation-delay: 3s; }
        .floating-element:nth-child(5) { top: 50%; left: 50%; animation-delay: 4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
            50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
        }

        /* Services Section Moderne */
        .services {
            padding: 100px 0;
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff, #7c7ff6);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            opacity: 0.8;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .service-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(124, 127, 246, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(124, 127, 246, 0.3);
            border-color: rgba(124, 127, 246, 0.5);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #7c7ff6, #ff77c6);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .service-card p {
            opacity: 0.8;
            line-height: 1.6;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(124, 127, 246, 0.1), rgba(255, 119, 198, 0.1));
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff, #7c7ff6);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(124, 127, 246, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #7c7ff6, #ff77c6);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-weight: 600;
            opacity: 0.8;
        }

        /* About Visual Modern Style */
        .about-visual {
          display: flex;
          flex-direction: column;
          align-items: center;
          position: relative;
          margin-top: 2rem;
          min-width: 260px;
        }

        .about-img-wrapper {
          position: relative;
          display: inline-block;
          z-index: 1;
        }

        .about-img {
          width: 260px;
          height: 260px;
          object-fit: cover;
          border-radius: 50%;
          box-shadow: 0 8px 40px rgba(124,127,246,0.18), 0 1.5px 8px rgba(255,119,198,0.10);
          border: 6px solid #fff;
          background: #fff;
          transition: transform 0.3s cubic-bezier(.77,0,.18,1);
        }

        .about-img-wrapper:hover .about-img {
          transform: scale(1.04) rotate(-2deg);
        }

        .about-img-glow {
          position: absolute;
          top: 50%; left: 50%;
          width: 320px; height: 320px;
          transform: translate(-50%, -50%);
          border-radius: 50%;
          background: radial-gradient(circle, #7c7ff6 0%, #ff77c6 60%, transparent 100%);
          opacity: 0.18;
          z-index: 0;
          pointer-events: none;
          filter: blur(8px);
          animation: aboutGlow 4s ease-in-out infinite alternate;
        }

        @keyframes aboutGlow {
          0% { opacity: 0.13; filter: blur(8px);}
          100% { opacity: 0.22; filter: blur(16px);}
        }

        .floating-elements-about {
          position: absolute;
          top: 60%;
          left: 50%;
          transform: translate(-50%, 0);
          width: 100%;
          display: flex;
          justify-content: space-around;
          pointer-events: none;
          z-index: 2;
        }

        .floating-elements-about .floating-element {
          background: linear-gradient(135deg, #7c7ff6 60%, #ff77c6 100%);
          color: #fff;
          padding: 0.5rem 1.2rem;
          border-radius: 24px;
          font-size: 1.05rem;
          font-weight: 600;
          box-shadow: 0 2px 12px rgba(124,127,246,0.10);
          animation: floatY 3s ease-in-out infinite alternate;
          opacity: 0.95;
          margin: 0 0.3rem;
        }

        .floating-elements-about .floating-element:nth-child(2) {
          background: linear-gradient(135deg, #ff77c6 60%, #78dbff 100%);
          animation-delay: 1s;
        }
        .floating-elements-about .floating-element:nth-child(3) {
          background: linear-gradient(135deg, #78dbff 60%, #7c7ff6 100%);
          animation-delay: 2s;
        }

        @keyframes floatY {
          0% { transform: translateY(0);}
          100% { transform: translateY(-18px);}
        }

        @media (max-width: 700px) {
          .about-img { width: 170px; height: 170px; }
          .about-img-glow { width: 210px; height: 210px; }
          .floating-elements-about { top: 65%; }
        }

        /* Contact Section Ultra-Moderne */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(255, 119, 198, 0.1), rgba(120, 219, 255, 0.1));
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #7c7ff6, #ff77c6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .map-container {
            margin: 2rem 0;
            border-radius: 20px;
            overflow: hidden;
            height: 300px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .contact-form {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #ffffff;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #7c7ff6;
            box-shadow: 0 0 0 3px rgba(124, 127, 246, 0.2);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Footer Futuriste */
        footer {
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 46, 0.95));
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem 0;
            text-align: center;
        }

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

        .footer-section h3 {
            background: linear-gradient(135deg, #7c7ff6, #ff77c6);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: #7c7ff6;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            opacity: 0.8;
        }

        /* Modals Futuristes */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }

        .modal-content {
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 46, 0.95));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin: 5% auto;
            padding: 2.5rem;
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .close {
            position: absolute;
            right: 1.5rem;
            top: 1.5rem;
            color: #ffffff;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .close:hover {
            background: rgba(255, 0, 0, 0.2);
            transform: scale(1.1);
        }

        /* Galerie de Capsules Vidéos */
        .galerie {
          padding: 60px 0;
          background: linear-gradient(135deg, #f7f8ff 60%, #eaf6ff 100%);
        }
        .galerie-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
          gap: 2rem;
          margin-top: 2.5rem;
        }
        .galerie-card {
          background: #fff;
          border-radius: 16px;
          box-shadow: 0 4px 24px rgba(124,127,246,0.07);
          padding: 1.5rem;
          display: flex;
          flex-direction: column;
          align-items: center;
          transition: box-shadow 0.2s;
        }
        .galerie-card:hover {
          box-shadow: 0 8px 32px rgba(124,127,246,0.15);
        }
        .video-wrapper {
          width: 100%;
          aspect-ratio: 16/9;
          margin-bottom: 1rem;
          border-radius: 12px;
          overflow: hidden;
          background: #000;
        }
        .galerie-card h4 {
          margin: 1rem 0 0.5rem 0;
          color: #7c7ff6;
          font-size: 1.1rem;
        }
        .galerie-card p {
          font-size: 1rem;
          color: #444;
          text-align: center;
        }
        .galerie-card.conseil {
          background: linear-gradient(135deg, #ff77c6 10%, #78dbff 90%);
          color: #fff;
        }
        .galerie-card.conseil .conseil-icon {
          font-size: 2.5rem;
          margin-bottom: 0.7rem;
        }

        /* Podcast Section Esthétique et Pro */
        .podcast-section {
          padding: 64px 0;
          background: linear-gradient(135deg, #f7f8ff 60%, #eaf6ff 100%);
          display: flex;
          justify-content: center;
          align-items: center;
        }

        .podcast-box {
          background: #fff;
          border-radius: 24px;
          box-shadow: 0 8px 40px rgba(124,127,246,0.10), 0 1.5px 8px rgba(120,219,255,0.07);
          max-width: 540px;
          width: 100%;
          margin: 0 auto;
          padding: 2.5rem 2rem 2rem 2rem;
          display: flex;
          flex-direction: column;
          align-items: center;
          position: relative;
        }

        .podcast-box::before {
          content: '';
          position: absolute;
          top: -32px;
          left: 50%;
          transform: translateX(-50%);
          width: 72px;
          height: 72px;
          background: linear-gradient(135deg, #7c7ff6, #ff77c6);
          border-radius: 50%;
          box-shadow: 0 4px 24px rgba(124,127,246,0.15);
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 1;
        }

        .podcast-icon {
          position: absolute;
          top: -16px;
          left: 50%;
          transform: translateX(-50%);
          font-size: 2.5rem;
          color: #fff;
          z-index: 2;
          pointer-events: none;
        }

        .podcast-section .section-title {
          color: #222;
          background: none;
          -webkit-text-fill-color: initial;
          margin-top: 2.5rem;
          margin-bottom: 0.5rem;
          font-size: 2rem;
          font-weight: 800;
          text-align: center;
        }

        .podcast-section .section-subtitle {
          color: #666;
          background: none;
          -webkit-text-fill-color: initial;
          margin-bottom: 2rem;
          font-size: 1.1rem;
          text-align: center;
          max-width: 400px;
        }

        .podcast-audio {
          width: 100%;
          max-width: 400px;
          margin: 0 auto;
          border-radius: 12px;
          box-shadow: 0 2px 12px rgba(124,127,246,0.08);
          background: #f7f8ff;
          padding: 0.5rem 0;
          display: block;
        }

        @media (max-width: 600px) {
          .podcast-box {
            padding: 1.5rem 0.5rem 1.5rem 0.5rem;
          }
          .podcast-section .section-title {
            font-size: 1.3rem;
          }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-title {
                font-size: 3rem;
            }

            .cta-container {
                flex-direction: column;
                align-items: center;
            }

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

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

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Service Details */
        .service-details {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(120, 219, 255, 0.1), rgba(124, 127, 246, 0.1));
        }

        .detail-section {
            display: none;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .detail-section h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #7c7ff6, #ff77c6);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .consultation-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .option-card {
            background: linear-gradient(135deg, rgba(124, 127, 246, 0.2), rgba(255, 119, 198, 0.2));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .option-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(124, 127, 246, 0.3);
        }

        .option-card h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }