* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Reset + base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f9f9f9;
    color: #111;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container global */
section {
    padding: clamp(40px, 8vw, 100px) 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Titres */
h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

/* Paragraphes */
p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    margin-bottom: 1rem;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Boutons */
button,
.btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    background: black;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover,
.btn:hover {
    background: #333;
}

/* Smooth scroll offset for fixed nav */
section {
    scroll-margin-top: 120px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    color: #1a1a1a;
    overflow-x: hidden;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
    animation: tonAnimationPerso 1s ease-out;
}

/* Animated Background with Particles */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 20%, #e3f2fd 40%, #f5f5f5 60%, #fff8e1 80%, #fafafa 100%);
    background-size: 300% 300%;
    animation: gradientShift 20s ease infinite;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 50% 100%;
    }

    75% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animated-bg::before,
.animated-bg::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 25s infinite ease-in-out;
}

.animated-bg::before {
    background: radial-gradient(circle, #00AFF0 0%, rgba(0, 175, 240, 0.3) 50%, transparent 70%);
    top: -400px;
    left: -400px;
    animation-delay: 0s;
}

.animated-bg::after {
    background: radial-gradient(circle, #D4AF37 0%, rgba(212, 175, 55, 0.3) 50%, transparent 70%);
    bottom: -400px;
    right: -400px;
    animation-delay: 12s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    25% {
        transform: translate(200px, -100px) scale(1.2) rotate(90deg);
    }

    50% {
        transform: translate(100px, 200px) scale(0.8) rotate(180deg);
    }

    75% {
        transform: translate(-200px, 100px) scale(1.1) rotate(270deg);
    }
}

/* Particles */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    animation: particle-float 25s infinite linear;
}

.particle:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 15%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    left: 25%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    left: 35%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    left: 45%;
    animation-delay: 12s;
}

.particle:nth-child(6) {
    left: 55%;
    animation-delay: 15s;
}

.particle:nth-child(7) {
    left: 65%;
    animation-delay: 18s;
}

.particle:nth-child(8) {
    left: 75%;
    animation-delay: 21s;
}

.particle:nth-child(9) {
    left: 85%;
    animation-delay: 24s;
}

.particle:nth-child(10) {
    left: 95%;
    animation-delay: 27s;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) translateX(80px) rotate(360deg);
        opacity: 0;
    }
}

/* === Desktop === */
/* Cacher le checkbox partout */
/* === Général === */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: sans-serif;
}

#menu-toggle {
    display: none;
}

/* === Barre de navigation desktop === */
.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    position: relative;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.star-logo {
    font-size: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease-in-out;
    transform-origin: center center;
    /* ← rotation centrée */
}


.logo-text {
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-left: -2px;
}

.burger {
    display: none;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
}

/* === Menu déroulant mobile === */
@media screen and (max-width: 768px) {

    /* Barre du haut */
    .nav-top {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        height: auto;
    }

    /* Logo à gauche */
    .logo-container {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        /* ← rapproche le texte de l’étoile */
    }

    .star-logo {
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.6s ease-in-out;
        transform-origin: center center;
    }

    .logo-text {
        font-size: 1rem;
        font-weight: bold;
        display: flex;
        align-items: center;
    }

    /* Burger bien positionné à droite */
    .burger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1000;
        margin-left: auto;
        padding-left: 1rem;
    }

    .burger span {
        width: 1.2rem;
        height: 2px;
        background: black;
        border-radius: 2px;
    }

    /* Bloc menu centré au milieu de l’écran */
    .nav-links {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 1rem 1.5rem;
  width: min(90vw, 240px);
  font-size: 0.95rem;
  z-index: 999;
  pointer-events: none;
}

/* Quand le menu est ouvert */
.nav-links.menu-open {
  display: flex;
  animation: menuReveal 0.5s ease-out forwards;
  pointer-events: auto;
}

/* Animations */
@keyframes menuReveal {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px) scale(0.9);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes menuClose {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px) scale(0.9);
    filter: blur(6px);
  }
}

    /* Activation du menu avec animation fluide */
    #menu-toggle:checked~.nav-links {
        display: flex;
        animation: menuReveal 0.5s ease-out forwards;
        pointer-events: auto;
    }

    /* Liens du menu animés individuellement */
    .nav-links li {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
        opacity: 0;
        transform: translateY(10px);
        animation: itemFade 0.4s ease-out forwards;
    }

    .nav-links li:last-child {
        margin-bottom: 0;
    }

    .nav-links li a {
        display: inline-block;
        padding: 0.5rem 1rem;
        color: black;
        text-decoration: none;
        font-weight: 500;
        border-radius: 0.75rem;
        transition: background 0.3s ease;
    }

    .nav-links li a:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    /* Cascade delay pour chaque lien */
    .nav-links li:nth-child(1) {
        animation-delay: 0.2s;
    }

    .nav-links li:nth-child(2) {
        animation-delay: 0.3s;
    }

    .nav-links li:nth-child(3) {
        animation-delay: 0.4s;
    }

    .nav-links li:nth-child(4) {
        animation-delay: 0.5s;
    }

    .nav-links li:nth-child(5) {
        animation-delay: 0.6s;
    }

    @keyframes itemFade {
        0% {
            opacity: 0;
            transform: translateY(10px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Étoile qui tourne sur elle-même */
    #menu-toggle:checked~.nav-top .star-logo {
        transform: rotate(360deg);
    }

    /* Repousser le contenu principal pour ne pas être caché */
    main,
    .hero,
    .content {
        margin-top: clamp(100px, 14vh, 140px);
    }
}

.burger span {
  transition: all 0.4s ease;
}

#menu-toggle:checked ~ .nav-top .burger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle:checked ~ .nav-top .burger span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked ~ .nav-top .burger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation */
nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1350px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    padding: 22px 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12), 0 5px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 1s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 70px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

nav {
    padding: 10px 16px;
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-120px);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.logo-container:hover {
    transform: scale(1.08);
}

.star-logo {
    height: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    /* taille du symbole ✧ */
    color: black;
    animation: spin 6s linear infinite;
    transform-origin: 50% 55%;
    /* rotation autour du centre exact */
}




@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.logo-text {
    font-size: 25px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 3px;
    animation: logoGlow 5s ease-in-out infinite;
}

@keyframes logoGlow {

    0%,
    100% {
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }

    50% {
        text-shadow: 0 0 15px rgba(0, 175, 240, 0.2);
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 45px;
}

nav a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    position: relative;
    padding: 10px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00AFF0, #0088CC);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

nav a:hover {
    color: #00AFF0;
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #000000;
    letter-spacing: 6px;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 38px;
    color: #333333;
    letter-spacing: 5px;
    animation: fadeIn 2.3s ease-out 0.3s both;
}

.hero-slogan {
    font-size: 25px;
    font-style: italic;
    color: #666666;
    margin: 50px 0;
    max-width: 800px;
    line-height: 1.8;
    animation: fadeIn 2.5s ease-out 0.6s both;
}

.cta-buttons {
    display: flex;
    gap: 28px;
    margin-top: 55px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeIn 2.7s ease-out 0.9s both;
}

.btn {
    padding: 22px 55px;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
    cursor: pointer;
    border: none;
    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.7s, height 0.7s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover {
    background: #000000;
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: 130px 50px;
    max-width: 1450px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-size: 52px;
    text-align: center;
    margin-bottom: 80px;
    color: #000000;
    font-weight: 700;
    letter-spacing: 3px;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background: linear-gradient(90deg, #00AFF0 0%, #0088CC 100%);
    animation: expandWidth 1.2s ease-out 0.3s both;
    border-radius: 3px;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 110px;
    }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 4vw, 45px);
  margin-top: clamp(40px, 8vh, 80px);
  padding: 0 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    padding: 55px;
    border-radius: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    padding: clamp(30px, 8vw, 55px);
    border-radius: 20px;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.02), transparent);
    transition: left 1s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-18px) scale(1.03);
    border-color: rgba(0, 175, 240, 0.2);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 32px;
    display: inline-block;
    animation: float-icon 4s ease-in-out infinite;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 22px;
    color: #000000;
    font-weight: 700;
}

.service-card p {
    color: #666666;
    line-height: 1.9;
    font-size: 16px;
}

.onlyfans-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00AFF0 0%, #0088CC 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 175, 240, 0.25);
}

.onlyfans-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 175, 240, 0.45);
}

/* Models */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 55px;
    margin-top: 80px;
}

.model-card {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    background: #f7f7f7;
    transition: transform 0.3s ease, background 0.6s ease;
    box-shadow: #00AFFF 0 10px 40px;
    overflow: hidden;
    font-weight: bold;
}

.model-card:hover p {
    color: white;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.model-card:hover h3 {
    color: white;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.model-card:hover {
    transform: scale(1.03);
    background: linear-gradient(135deg, #2c60ce, #4564c9, #618dce);
    background-size: 400% 400%;
    animation: gradient-move 6s ease infinite;
    box-shadow: #27273f 0 10px 40px;
}

/* Pour remplacer les noms et ajouter des photos :
           1. Changez le texte "Ola.K" et "Amyle.M" dans les spans class="model-name-overlay"
           2. Remplacez le background du .model-image par : background-image: url('chemin-vers-votre-photo.jpg');
           3. Ajoutez background-size: cover; background-position: center; pour bien ajuster l'image
           Exemple :
           
           .model-image.ola {
               background-image: url('images/ola.jpg');
               background-size: cover;
               background-position: center;
           }
        */

.model-image {
    position: relative;
    height: 0;
    /* on retire le bloc visuel */
}

.onlyfans-overlay {
    width: 150px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease-in-out;
}

.model-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

.model-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 100px;
    height: auto;
    z-index: 10;
    opacity: 0.9;
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.model-name-overlay {
    position: relative;
    z-index: 1;
}

.model-content {
    padding: 45px;
}


.model-content h3 {
    font-size: 32px;
    margin-bottom: 22px;
    color: #000000;
    font-weight: 700;
}

.model-content p {
    color: #666666;
    line-height: 2;
    margin-bottom: 32px;
    font-size: 17px;
}


.stat-number {
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(135deg, #00AFF0 0%, #00AFF0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 0.8s ease;
}

.model-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

.model-card:hover .stat-number,
.model-card:hover .stat-label {
    text-shadow: 0 0 45px #00eeff;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.model-stats {
    display: default;
    flex-wrap: wrap;
    gap: 15px;
}

.model-stats .stat-number,
.model-stats .stat-label {
    display: block;
    text-align: center;
    min-width: 60px;
}


.stat-label {
    font-size: 16px;
    color: #999999;
    margin-top: 10px;
    font-weight: 500;
}

/* Join Section */
.join-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(51, 51, 51, 0.97) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    padding: 110px 90px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.join-section h2 {
    font-size: 52px;
    margin-bottom: 45px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 3px;
}

.join-section>p {
    font-size: 22px;
    line-height: 2;
    margin-bottom: 65px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.88);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 32px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 24px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border-radius: 18px;
    font-size: 17px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00AFF0;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 35px rgba(0, 175, 240, 0.18);
    transform: translateY(-3px);
}

/* Contact */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 80px;
    justify-items: center;
}

.contact-item {
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-width: 380px;
}

.contact-item:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-item:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-item:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 175, 240, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    font-size: 56px;
    margin-bottom: 25px;
    display: inline-block;
    animation: float-icon 4s ease-in-out infinite;
}

.contact-item h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #000000;
    font-weight: 700;
}

.contact-item a {
    color: #00AFF0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s;
    font-size: 18px;
    word-break: break-word;
}

.contact-item a:hover {
    color: #D4AF37;
    transform: scale(1.05);
    display: inline-block;
}

/* Footer */
/* Footer global */
.footer {
  background: rgba(0, 0, 0, 0.97);
  color: #fff;
  padding: 45px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Contenu principal */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1450px;
  margin: 0 auto 60px;
  gap: 30px;
}

/* Logo */
.footer-logo {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #ffffff;
}

/* Tags plateformes */
.footer-platform-tags {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.platform-tag {
  background: #00AFF0; /* bleu DA */
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.platform-tag:hover {
  background: #0090c0;
}

/* Liens navigation */
.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links li {
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: 0.4s ease;
  font-size: 17px;
  font-weight: 500;
}

.footer-links a:hover {
  color: #00AFF0;
  transform: translateY(-2px);
}

/* Bas du footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  margin-top: 10px;
}

.footer-legal a {
  font-size: 14px;
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.45s;
}

.footer-legal a:hover {
  color: #00AFF0;
}

/* Responsive */
@media (max-width: 968px) {
    nav {
        padding: 20px 35px;
        width: 95%;
        top: 20px;
    }

    nav ul {
        gap: 30px;
    }

    nav a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px 28px;
        flex-direction: column;
        gap: 25px;
    }

    nav ul {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero-slogan {
        font-size: 20px;
    }

    section {
        padding: 100px 28px;
    }

    .section-title {
        font-size: 40px;
    }

    .services-grid,
    .models-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .join-section {
        padding: 70px 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}