/* ========================= */
/* RESET GLOBAL */
/* ========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #070d1a;
    color: #ffffff;
    overflow-x: hidden;
}

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

/* ========================= */
/* HEADER / NAVBAR */
/* ========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 28, 55, 0.95);
    border-bottom: 1px solid rgba(0, 217, 255, 0.25);
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.header-container {
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.6));
    animation: logoGlow 3s infinite alternate;
}

.logo-text {
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 5px #00d9ff);
    }

    to {
        filter: drop-shadow(0 0 18px #7b2cff);
    }
}

.nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav a {
    color: #b8bfd3;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.nav a:hover {
    color: #00d9ff;
}


/* ========================= */
/* BARRE + LOGO */
/* ========================= */

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;

    pointer-events: none;
}

/* barre */
.loader-bar {
    position: absolute;
    top: 0;
    left: 0;

    width: 0%;
    height: 3px;

    background: linear-gradient(90deg, #00d9ff, #7b2cff, #ff6900);
    box-shadow: 0 0 12px rgba(0, 217, 255, 0.8);

    transition: width 0.3s ease;
}

/* logo centré */
.loader-logo-wrapper {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.4s ease;
}

/* logo */
.loader-logo {
    width: 80px;
    height: 80px;

    animation: logoPulse 1.6s infinite ease-in-out;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
}

/* animation */
@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.9); }
}

/* actif */
#page-loader.active .loader-logo-wrapper {
    opacity: 1;
}

/* ========================= */
/* CURSEUR PERSONNALISÉ */
/* ========================= */

.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: #00d9ff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 10px #00d9ff,
        0 0 25px #00d9ff;
}

.cursor-glow {
    position: fixed;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 217, 255, 0.22), transparent 70%);
    transition: 0.08s linear;
}

.custom-cursor.active {
    width: 34px;
    height: 34px;
    background: transparent;
    border: 2px solid #ff6900;
    box-shadow:
        0 0 15px #ff6900,
        0 0 35px rgba(255, 105, 0, 0.7);
}

/* ========================= */
/* HERO PREMIUM */
/* ========================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;

    background:
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.15), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(123, 44, 255, 0.12), transparent 40%),
        linear-gradient(rgba(7, 13, 26, 0.85), rgba(7, 13, 26, 0.96)),
        url("../asset/images/background.png");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* GRID */
.hero-premium {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* TEXTE */
.hero-text {
    text-align: left;
}

/* BADGE */
.hero-badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 10px 16px;

    border-radius: 999px;
    border: 1px solid rgba(0, 217, 255, 0.35);

    color: #00d9ff;
    background: rgba(0, 217, 255, 0.08);

    font-size: 14px;
    font-weight: 800;

    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

/* TITRE */
.hero h1 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.1;
    margin-bottom: 24px;
}

/* TEXTE */
.hero p {
    color: #b8bfd3;
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 650px;
}

/* ========================= */
/* BOUTONS HERO */
/* ========================= */

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;

    margin-bottom: 35px;
}

.hero-buttons .btn {
    min-width: 200px;
    text-align: center;
    padding: 16px 28px;
    font-size: 15px;
}

/* Effet glow */
.hero-buttons .btn-primary {
    box-shadow: 0 0 25px rgba(255, 105, 0, 0.35);
}

.hero-buttons .btn-secondary {
    border: 1px solid rgba(0, 217, 255, 0.5);
}

/* ========================= */
/* FIX BOUTONS HERO */
/* ========================= */

.hero-buttons a,
.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 64px;
    padding: 0 32px;

    border-radius: 10px;
    text-decoration: none !important;

    font-size: 17px;
    font-weight: 800;

    transition: 0.3s ease;
}

/* Bouton orange */
.hero-buttons .btn-primary {
    background: #ff6900 !important;
    color: #ffffff !important;
    border: 1px solid #ff6900;
    box-shadow: 0 0 28px rgba(255, 105, 0, 0.45);
}

/* Bouton bleu */
.hero-buttons .btn-secondary {
    background: rgba(0, 217, 255, 0.05) !important;
    color: #00d9ff !important;
    border: 2px solid #00d9ff;
}

/* Hover */
.hero-buttons .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 38px rgba(255, 105, 0, 0.7);
}

.hero-buttons .btn-secondary:hover {
    background: #00d9ff !important;
    color: #07101f !important;
    transform: translateY(-4px);
}

/* Mobile */
@media (max-width: 600px) {
    .hero-buttons a,
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* ========================= */
/* HERO TRUST ANIMATION */
/* ========================= */

.hero-trust span {
    position: relative;
    overflow: hidden;

    animation: trustFloat 4s ease-in-out infinite;
    transition: 0.35s ease;
}

/* Décalage animation */
.hero-trust span:nth-child(2) {
    animation-delay: 0.35s;
}

.hero-trust span:nth-child(3) {
    animation-delay: 0.7s;
}

/* Glow interne */
.hero-trust span::before {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at center,
        rgba(0, 217, 255, 0.24),
        transparent 65%
    );

    opacity: 0;
    transition: 0.35s ease;
}

/* Barre lumineuse */
.hero-trust span::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );

    transform: skewX(-20deg);
}

/* Hover */
.hero-trust span:hover {
    transform: translateY(-6px) scale(1.04);
    color: #ffffff;
    border-color: #00d9ff;

    box-shadow:
        0 0 22px rgba(0, 217, 255, 0.28),
        0 0 45px rgba(123, 44, 255, 0.14);
}

.hero-trust span:hover::before {
    opacity: 1;
}

.hero-trust span:hover::after {
    animation: trustLight 0.8s ease;
}

/* Animation flottante */
@keyframes trustFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Animation lumière */
@keyframes trustLight {
    to {
        left: 130%;
    }
}

/* ========================= */
/* TRUST */
/* ========================= */

.hero-trust {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-trust span {
    padding: 10px 14px;
    border-radius: 10px;

    font-size: 14px;
    color: #d8ddec;

    background: rgba(10, 16, 30, 0.75);
    border: 1px solid rgba(0, 217, 255, 0.18);
}

/* ========================= */
/* CARTE DROITE */
/* ========================= */

.hero-card {
    position: relative;
    padding: 32px;

    border-radius: 22px;
    border: 1px solid rgba(0, 217, 255, 0.25);

    background:
        linear-gradient(180deg, rgba(13, 22, 42, 0.9), rgba(6, 11, 22, 0.96));

    box-shadow:
        0 0 35px rgba(0, 217, 255, 0.18),
        0 0 70px rgba(123, 44, 255, 0.12);

    animation: heroFloat 4s ease-in-out infinite;
}

/* contour glow */
.hero-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 22px;

    background: linear-gradient(
        135deg,
        rgba(0, 217, 255, 0.4),
        transparent,
        rgba(255, 105, 0, 0.3)
    );

    opacity: 0.5;
    z-index: -1;
}

/* contenu */
.hero-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.hero-card p {
    font-size: 15px;
    color: #b8bfd3;
    margin-bottom: 26px;
}

/* stats */
.hero-card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hero-card-stats div {
    padding: 16px;
    border-radius: 12px;

    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.18);
}

.hero-card-stats strong {
    display: block;
    font-size: 28px;
}

.hero-card-stats span {
    font-size: 13px;
    color: #b8bfd3;
}

/* animation flottante */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

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

@media (max-width: 900px) {

    .hero-premium {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================= */
/* SECTIONS GLOBALES */
/* ========================= */

section {
    padding: 110px 0;
}

section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    animation: titleAppear 1s ease both;
}

.section-line {
    width: 90px;
    height: 4px;
    margin: 0 auto 60px;
    border-radius: 50px;
    background: linear-gradient(90deg, #00d9ff, #7b2cff, #ff6900);
}



/* ========================= */
/* SERVICES PREMIUM */
/* ========================= */

.services {
    background: rgba(7, 13, 26, 0.96);
}

/* Grille responsive automatique */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: stretch;
}

/* Carte */
.service-card {
    width: 100%;
    min-width: 0;
    min-height: 520px;

    display: flex;
    flex-direction: column;

    overflow: hidden;
    position: relative;

    background: linear-gradient(
        180deg,
        rgba(13, 22, 42, 0.96),
        rgba(6, 11, 22, 0.98)
    );

    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 20px;

    transition: 0.35s ease;
}

/* Hover carte */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 0 35px rgba(0, 217, 255, 0.22),
        0 0 70px rgba(123, 44, 255, 0.14);
}

/* Zone image */
.service-image-box {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Dégradé sur image */
.service-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(7, 13, 26, 0.05),
            rgba(7, 13, 26, 0.92)
        ),
        linear-gradient(
            120deg,
            rgba(0, 217, 255, 0.12),
            transparent 45%
        );
}

/* Image */
.service-img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    transition: 0.7s ease;
}

/* Hover image */
.service-card:hover .service-img {
    transform: scale(1.12);
    filter: brightness(1.15) contrast(1.08);
}

/* Badge */
.service-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;

    padding: 8px 14px;
    border-radius: 999px;

    color: #00d9ff;
    background: rgba(0, 217, 255, 0.12);
    border: 1px solid rgba(0, 217, 255, 0.35);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;

    backdrop-filter: blur(8px);
    box-shadow: 0 0 18px rgba(0, 217, 255, 0.18);
}

/* Contenu */
.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;

    position: relative;
    z-index: 2;
}

/* Titre */
.service-content h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 16px;

    color: #ffffff;
    word-break: normal;
}

/* Texte */
.service-content p {
    color: #b8bfd3;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;

    word-break: normal;
}

/* Lien */
.service-link {
    margin-top: auto;
    margin-bottom: 22px;

    color: #00d9ff;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;

    transition: 0.3s ease;
}

.service-link:hover {
    color: #ff6900;
    transform: translateX(6px);
}

/* Ligne lumineuse */
.service-content::after {
    content: "";
    width: 65px;
    height: 3px;

    border-radius: 99px;

    background: linear-gradient(90deg, #00d9ff, #7b2cff, #ff6900);
    box-shadow: 0 0 18px rgba(0, 217, 255, 0.55);

    transition: 0.35s ease;
}

.service-card:hover .service-content::after {
    width: 130px;
}

/* Responsive */
@media (max-width: 700px) {
    .service-card {
        min-height: auto;
    }

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

    .service-content {
        padding: 24px;
    }

    .service-content h3 {
        font-size: 22px;
    }
}


/* ========================= */
/* COMMENT ÇA MARCHE PREMIUM */
/* ========================= */

.process {
    background:
        radial-gradient(circle at top, rgba(0, 217, 255, 0.08), transparent 35%),
        rgba(7, 13, 26, 0.96);
}

.process-intro {
    max-width: 780px;
    margin: 0 auto 70px;
    text-align: center;
    color: #b8bfd3;
    font-size: 18px;
    line-height: 1.8;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* Ligne lumineuse derrière les étapes */
.process-timeline::before {
    content: "";
    position: absolute;
    top: 48px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(
        90deg,
        #00d9ff,
        #7b2cff,
        #ff6900
    );
    box-shadow: 0 0 18px rgba(0, 217, 255, 0.55);
    opacity: 0.75;
}

.process-step {
    position: relative;
    z-index: 2;
    background: rgba(10, 16, 30, 0.9);
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 16px;
    padding: 34px 24px;
    text-align: center;
    overflow: hidden;
    transition: 0.35s ease;
}

/* Glow hover */
.process-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        420px circle at center,
        rgba(0, 217, 255, 0.13),
        transparent 55%
    );
    opacity: 0;
    transition: 0.35s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: #00d9ff;
    box-shadow:
        0 0 25px rgba(0, 217, 255, 0.24),
        0 0 55px rgba(123, 44, 255, 0.16);
}

.process-number {
    position: absolute;
    top: 14px;
    right: 18px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 42px;
    font-weight: 900;
}

.process-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d9ff, #7b2cff);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    box-shadow: 0 0 35px rgba(0, 217, 255, 0.45);
    animation: floatIcon 3s ease-in-out infinite;
}

.process-step h3 {
    position: relative;
    z-index: 2;
    font-size: 21px;
    margin-bottom: 14px;
}

.process-step p {
    position: relative;
    z-index: 2;
    color: #b8bfd3;
    line-height: 1.7;
}

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

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: 100%;
    }
}

/* ========================= */
/* SECTION ENVOI COLIS */
/* ========================= */

.shipping {
    background: rgba(7, 13, 26, 0.96);
    text-align: center;
}

.shipping-intro {
    max-width: 850px;
    margin: 0 auto 55px;
    color: #b8bfd3;
    font-size: 18px;
    line-height: 1.8;
}

.shipping-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 45px;
}

.shipping-card {
    background: rgba(10, 16, 30, 0.85);
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 14px;
    padding: 34px;
    text-align: left;
    transition: 0.35s ease;
}

.shipping-card:hover {
    transform: translateY(-8px);
    border-color: #00d9ff;
    box-shadow:
        0 0 25px rgba(0, 217, 255, 0.22),
        0 0 50px rgba(123, 44, 255, 0.12);
}

.shipping-number {
    color: #00d9ff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
    text-shadow: 0 0 12px rgba(0, 217, 255, 0.7);
}

.shipping-card h3 {
    font-size: 23px;
    margin-bottom: 14px;
}

.shipping-card p {
    color: #b8bfd3;
    line-height: 1.7;
}

.shipping-warning {
    max-width: 900px;
    margin: 0 auto 35px;
    padding: 20px 25px;
    border: 1px solid rgba(255, 105, 0, 0.45);
    border-radius: 12px;
    background: rgba(255, 105, 0, 0.08);
    color: #d8ddec;
    line-height: 1.7;
}

.shipping-warning strong {
    color: #ff6900;
}

/* ========================= */
/* STATS */
/* ========================= */

.stats {
    padding: 70px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat h3 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.45);
}

.stat p {
    color: #b8bfd3;
    font-size: 18px;
}

/* ========================= */
/* TÉMOIGNAGES */
/* ========================= */

.testimonials {
    background: rgba(7, 13, 26, 0.97);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 16, 30, 0.85);
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 14px;
    padding: 45px;
    text-align: center;
    transition: 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 25px rgba(0, 217, 255, 0.25),
        0 0 55px rgba(123, 44, 255, 0.15);
}

.stars {
    color: #ff6900;
    font-size: 24px;
    margin-bottom: 25px;
}

.quote {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.author strong {
    display: block;
    color: #00d9ff;
    margin-bottom: 6px;
}

.author span {
    color: #b8bfd3;
}

/* ========================= */
/* CTA LAISSER UN AVIS */
/* ========================= */

.review-cta {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 35px;
    text-align: center;

    background: rgba(10, 16, 30, 0.85);
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 16px;

    box-shadow:
        0 0 25px rgba(0, 217, 255, 0.15),
        0 0 55px rgba(123, 44, 255, 0.08);
}

.review-cta h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.review-cta p {
    color: #b8bfd3;
    margin-bottom: 25px;
    font-size: 17px;
}

/* ========================= */
/* SÉPARATEUR AVIS */
/* ========================= */

.separator {
    position: relative;
    margin: 60px 0;
    text-align: center;
}

.separator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #00d9ff,
        #7b2cff,
        #ff6900,
        transparent
    );
    opacity: 0.6;
}

.separator span {
    position: relative;
    background: #070d1a;
    padding: 0 20px;
    color: #00d9ff;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}

/* ========================= */
/* AVIS EN GRILLE CÔTE À CÔTE */
/* ========================= */

.reviews-list {
    max-width: 1200px;
    margin: 0 auto 60px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.reviews-list .testimonial-card {
    width: 100%;
    max-width: none;
    margin: 0;

    min-height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reviews-list .quote {
    font-size: 20px;
}

.reviews-list .author {
    margin-top: auto;
}

/* Mobile */
@media (max-width: 700px) {
    .reviews-list {
        grid-template-columns: 1fr;
    }
}

/* ========================= */
/* FORMULAIRE AVIS */
/* ========================= */

.review-form {
    max-width: 800px;
    margin: 0 auto 50px;
    display: grid;
    gap: 18px;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.25);
    background: rgba(10, 16, 30, 0.85);
    color: #ffffff;
    font-size: 15px;
    outline: none;
}

.review-form textarea {
    min-height: 130px;
    resize: vertical;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
    color: #8f98b3;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    border-color: #00d9ff;
    box-shadow: 0 0 18px rgba(0, 217, 255, 0.2);
}

.reviews-list {
    display: grid;
    gap: 25px;
}

/* ========================= */
/* CTA */
/* ========================= */

.cta {
    text-align: center;
    background:
        linear-gradient(rgba(7, 13, 26, 0.9), rgba(7, 13, 26, 0.96)),
        url("../images/background.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: backgroundMove 18s ease-in-out infinite alternate;
}

.cta h2 {
    font-size: 52px;
    line-height: 1.25;
    margin-bottom: 35px;
}

.cta-btn {
    margin-bottom: 40px;
}

.cta-infos {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin: 35px 0;
}

.cta-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b8bfd3;
    font-size: 18px;
}

.cta-info span {
    color: #00d9ff;
}

.cta-tags {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-tags span {
    padding: 15px 25px;
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 8px;
    color: #b8bfd3;
    background: rgba(10, 16, 30, 0.7);
}


/* ========================= */
/* CTA TAGS EFFECTS PREMIUM */
/* ========================= */

.cta-tags span {
    position: relative;
    overflow: hidden;

    background: rgba(10, 16, 30, 0.78);
    border: 1px solid rgba(0, 217, 255, 0.32);

    transition: 0.35s ease;
}

/* glow interne */
.cta-tags span::before {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at center,
        rgba(0, 217, 255, 0.22),
        transparent 65%
    );

    opacity: 0;
    transition: 0.35s ease;
}

/* effet lumière qui traverse */
.cta-tags span::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );

    transform: skewX(-20deg);
}

/* hover */
.cta-tags span:hover {
    transform: translateY(-6px) scale(1.03);
    color: #ffffff;
    border-color: #00d9ff;

    box-shadow:
        0 0 22px rgba(0, 217, 255, 0.28),
        0 0 45px rgba(123, 44, 255, 0.14);
}

.cta-tags span:hover::before {
    opacity: 1;
}

.cta-tags span:hover::after {
    animation: tagLight 0.8s ease;
}

/* animation légère continue */
.cta-tags span {
    animation: tagFloat 4s ease-in-out infinite;
}

.cta-tags span:nth-child(2) {
    animation-delay: 0.4s;
}

.cta-tags span:nth-child(3) {
    animation-delay: 0.8s;
}

.cta-tags span:nth-child(4) {
    animation-delay: 1.2s;
}

@keyframes tagFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes tagLight {
    to {
        left: 130%;
    }
}

/* ========================= */
/* PAGE CONTACT PREMIUM */
/* ========================= */

.contact-page {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 100px;

    background:
        radial-gradient(circle at top, rgba(0, 217, 255, 0.08), transparent 40%),
        linear-gradient(rgba(7, 13, 26, 0.9), rgba(7, 13, 26, 0.97)),
        url("../images/background.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* CONTENEUR */
.contact-container {
    max-width: 750px;
    margin: auto;
    text-align: center;
}

/* TITRE */
.contact-container h1 {
    font-size: 52px;
    margin-bottom: 20px;
    animation: titleAppear 1s ease;
}

/* TEXTE */
.contact-container p {
    color: #b8bfd3;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 45px;
}

/* ========================= */
/* FORMULAIRE */
/* ========================= */

.contact-form {
    max-width: 750px;
    margin: 0 auto;
    padding: 35px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    background: rgba(10, 16, 30, 0.85);
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    display: block;
    width: 100%;
    min-height: 55px;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.25);
    background: rgba(7, 13, 26, 0.95);
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8f98b3;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #00d9ff;
    box-shadow: 0 0 18px rgba(0, 217, 255, 0.25);
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* ========================= */
/* FIX BUTTON FORM */
/* ========================= */

button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 60px;

    border-radius: 10px;
    border: none;

    font-size: 16px;
    font-weight: 800;

    cursor: pointer;
}

/* style orange */
button.btn-primary {
    background: #ff6900;
    color: #ffffff;

    box-shadow: 0 0 25px rgba(255, 105, 0, 0.35);
}

/* hover */
button.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(255, 105, 0, 0.6);
}

/* ========================= */
/* CORRECTION SELECT */
/* ========================= */

.contact-form select {
    -webkit-appearance: none; /* Chrome / Safari */
    -moz-appearance: none;    /* Firefox */
    appearance: none;

    background: rgba(7, 13, 26, 0.9);
    color: #ffffff;

    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 10px;

    padding: 16px;

    cursor: pointer;
}

.contact-form select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%2300d9ff' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
    
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;

    padding-right: 40px;
}

/* Glow hover */
.contact-form:hover {
    border-color: #00d9ff;
    box-shadow:
        0 0 25px rgba(0, 217, 255, 0.2),
        0 0 55px rgba(123, 44, 255, 0.12);
}

/* INPUT / SELECT / TEXTAREA */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;

    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.2);

    background: rgba(7, 13, 26, 0.9);
    color: #ffffff;

    font-size: 15px;

    outline: none;

    transition: 0.3s;
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8f98b3;
}

/* Focus */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #00d9ff;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.25);
    transform: scale(1.01);
}

/* TEXTAREA */
.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* ========================= */
/* BOUTON */
/* ========================= */

.contact-form .btn {
    margin-top: 10px;
}

/* ========================= */
/* ANIMATION APPARITION */
/* ========================= */

.contact-form {
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

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

@media (max-width: 768px) {

    .contact-container h1 {
        font-size: 36px;
    }

    .contact-container p {
        font-size: 16px;
    }

    .contact-form {
        padding: 25px;
    }
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
    background: #060b16;
    border-top: 1px solid rgba(0, 217, 255, 0.25);
    padding: 55px 0 35px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-logo {
    color: #00d9ff;
    font-size: 32px;
}

.footer-brand h3 {
    margin-bottom: 8px;
}

.footer-brand p,
.footer-copy p {
    color: #b8bfd3;
}

.footer-copy {
    text-align: right;
    line-height: 1.8;
}

.footer-line {
    height: 1px;
    background: rgba(0, 217, 255, 0.2);
    margin: 45px 0 30px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 35px;
}

.footer-nav a {
    color: #b8bfd3;
    text-decoration: none;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: #00d9ff;
}


.footer-brand {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-brand-logo {
    width: 76px;
    height: 76px;
    object-fit: contain;
    padding: 8px;

    border-radius: 18px;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.25);

    filter: drop-shadow(0 0 14px rgba(0, 217, 255, 0.45));
}

.footer-brand-text h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.footer-brand-text p {
    color: #b8bfd3;
    font-size: 18px;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .footer-brand {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand-logo {
        width: 90px;
        height: 90px;
    }
}

/* ========================= */
/* FOOTER LOGO */
/* ========================= */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.footer-logo-img {
    width: 34px;
    height: 34px;
    object-fit: contain;

    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.4));
    transition: 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.1);
}

/* ========================= */
/* FIX GLOBAL BOUTONS */
/* ========================= */

a.btn,
button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 58px;
    padding: 0 30px;

    border-radius: 10px;
    text-decoration: none !important;

    font-size: 16px;
    font-weight: 800;

    cursor: pointer;
    transition: 0.3s ease;
}

a.btn-primary,
button.btn-primary {
    background: #ff6900 !important;
    color: #ffffff !important;
    border: 1px solid #ff6900 !important;
    box-shadow: 0 0 25px rgba(255, 105, 0, 0.35);
}

a.btn-primary:hover,
button.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 38px rgba(255, 105, 0, 0.7);
}

a.btn-secondary,
button.btn-secondary {
    background: rgba(0, 217, 255, 0.05) !important;
    color: #00d9ff !important;
    border: 2px solid #00d9ff !important;
}

a.btn-secondary:hover,
button.btn-secondary:hover {
    background: #00d9ff !important;
    color: #07101f !important;
}

/* ========================= */
/* ANIMATIONS */
/* ========================= */

.hidden {
    opacity: 0;
    transform: translateY(45px) scale(0.98);
    filter: blur(8px);
}

.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition: 0.8s ease;
}

@keyframes titleAppear {
    from {
        opacity: 0;
        transform: translateY(35px);
        filter: blur(8px);
    }

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

@keyframes glitchText {
    0%, 100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-1px, 1px);
    }

    40% {
        transform: translate(1px, -1px);
    }

    60% {
        transform: translate(-1px, -1px);
    }

    80% {
        transform: translate(1px, 1px);
    }
}

@keyframes backgroundMove {
    from {
        background-position: center center;
    }

    to {
        background-position: center top;
    }
}

@keyframes buttonLight {
    to {
        left: 130%;
    }
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 0 18px rgba(255, 105, 0, 0.35);
    }

    50% {
        box-shadow: 0 0 35px rgba(255, 105, 0, 0.65);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

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

@media (max-width: 900px) {
    .hero-container h1,
    .cta h2 {
        font-size: 42px;
    }

    .services-container,
    .steps,
    .stats-container,
    .shipping-steps {
        grid-template-columns: 1fr;
    }

    .shipping-card {
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-copy {
        text-align: center;
    }
}

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

@media (max-width: 768px) {
    .custom-cursor,
    .cursor-glow {
        display: none;
    }

    body {
        cursor: auto;
    }

    .hero,
    .cta,
    .contact-page {
        background-attachment: scroll;
    }

    .service-image-box {
        height: 190px;
    }

    .premium-card {
        transform: none !important;
    }
}

@media (max-width: 600px) {
    .nav {
        display: none;
    }

    .hero-container h1 {
        font-size: 34px;
    }

    .hero-container p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    section h2 {
        font-size: 32px;
    }

    .cta h2 {
        font-size: 34px;
    }

    .cta-infos {
        flex-direction: column;
        gap: 18px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 18px;
    }
}