/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #fff;
    color: #111;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === VARIABLES === */
:root {
    --orange: #FF914C;
    --orange-dark: #e07b3a;
    --black: #111111;
    --white: #FFFFFF;
    --gray-light: #F5F5F7;
    --gray: #86868b;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
}

/* === TYPOGRAPHY === */
.text-orange { color: var(--orange); }
.section {
    padding: 6rem 0;
}
.section__header {
    text-align: center;
    margin-bottom: 4rem;
}
.section__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.section__subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: transparent;
    color: inherit;
}
.btn--primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255,145,76,0.25);
}
.btn--primary:hover {
    background: var(--orange-dark);
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(255,145,76,0.35);
}
.btn--outline {
    border: 2px solid var(--white);
    color: var(--white);
    backdrop-filter: blur(5px);
}
.btn--outline:hover {
    background: var(--white);
    color: var(--black);
}
.btn--whatsapp {
    background: #25D366;
    color: #fff;
    padding: 0.9rem 2.2rem;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.btn--whatsapp:hover {
    background: #1da851;
    transform: scale(1.03);
}

/* === HEADER & NAV === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(17,17,17,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.7rem 0;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
}
.logo-img {
    height: 70px;
    width: auto;
}
.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav__link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition);
}
.nav__link:hover,
.nav__link.active {
    color: var(--white);
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}
.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}
.nav__lang {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 1rem;
}
.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    transition: color var(--transition);
}
.lang-btn.active {
    color: var(--orange);
}
.lang-sep {
    color: rgba(255,255,255,0.3);
}
.nav__toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    background: #0a0a0a;
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 7rem 0 4rem;
}
.hero__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.35);
    z-index: 0;
}
.hero__bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}
.shape--1 {
    width: 500px;
    height: 500px;
    background: rgba(255,145,76,0.15);
    top: -150px;
    right: -100px;
}
.shape--2 {
    width: 400px;
    height: 400px;
    background: rgba(255,145,76,0.1);
    bottom: -100px;
    left: -80px;
}
.shape--3 {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero__badge {
    display: inline-block;
    background: rgba(255,145,76,0.12);
    color: var(--orange);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}
.hero__title {
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero__description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2rem;
    max-width: 480px;
}
.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero__visual {
    display: flex;
    justify-content: center;
}
.hero__card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}
.hero__icon {
    font-size: 4rem;
    color: var(--orange);
    margin-bottom: 1rem;
}
.hero__card-text {
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* === ABOUT === */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about__img-placeholder {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--orange);
    box-shadow: var(--shadow-sm);
}
.about__content p {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}
.about__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
    flex: 1;
    min-width: 90px;
}
.stat__number {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--orange);
    display: block;
}
.stat__label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.2rem;
}

/* === SERVICES === */
.services {
    background: var(--gray-light);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255,145,76,0.3);
}
.service-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(255,145,76,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--orange);
    margin-bottom: 1.2rem;
}
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.service-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    flex: 1;
    line-height: 1.6;
}
.service-card__link {
    font-weight: 600;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s;
    margin-top: auto;
}
.service-card__link:hover {
    gap: 0.5rem;
}

/* === WHY US === */
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
}
.why-card {
    text-align: center;
    padding: 2.5rem 1.8rem;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.why-card i {
    font-size: 2.2rem;
    color: var(--orange);
    margin-bottom: 1rem;
}
.why-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.why-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === SHOP REDIRECT === */
.shop {
    background: var(--black);
    color: var(--white);
    text-align: center;
}
.shop__redirect {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,145,76,0.15);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}
.shop__badge {
    display: inline-block;
    background: var(--orange);
    color: #000;
    font-weight: 700;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}
.shop__redirect h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.shop__redirect p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* === CONTACT === */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact__item i {
    font-size: 1.4rem;
    color: var(--orange);
    margin-top: 0.2rem;
}
.contact__item h4 {
    margin-bottom: 0.2rem;
    font-weight: 600;
}
.contact__item a {
    color: var(--black);
    font-weight: 500;
}
.contact__action {
    background: var(--gray-light);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.contact__action p {
    margin-bottom: 1.5rem;
    color: #333;
}

/* === FOOTER === */
.footer {
    background: var(--black);
    color: #aaa;
    padding: 3rem 0 2rem;
}
.footer__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}
.footer__logo .logo-img {
    height: 40px;
}
.footer__links h4,
.footer__social h4 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
}
.footer__links ul li {
    margin-bottom: 0.4rem;
}
.footer__links ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer__links ul li a:hover {
    color: var(--orange);
}
.social-icons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.social-icons a {
    width: 38px;
    height: 38px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 1rem;
    transition: var(--transition);
}
.social-icons a:hover {
    background: var(--orange);
    color: #000;
}

/* === BOUTON FERMETURE MENU MOBILE === */
.nav__close {
    display: none;               /* caché sur desktop */
    text-align: right;
    width: 100%;
    padding: 0.5rem 1rem;
}

#nav-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

#nav-close:hover {
    color: var(--orange);
}

/* === RESPONSIVE (mobile optimisé) === */
@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__description {
        margin: 0 auto 2rem;
    }
    .hero__buttons {
        justify-content: center;
    }
    .hero__visual {
        display: none;
    }
    .about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about__image {
        order: -1;
    }
    .contact__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .nav__list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(17,17,17,0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.35s ease;
        z-index: 999;
    }
    .nav__list.show {
        right: 0;
    }
    .nav__toggle {
        display: block;
    }
    .nav__close {
        display: block;          /* affiché uniquement sur mobile */
    }
    .section {
        padding: 4rem 0;
    }
    .hero {
        padding: 5rem 0 3rem;
    }
    .about__stats {
        justify-content: center;
    }
    .services__grid {
        grid-template-columns: 1fr;
    }
    .why-us__grid {
        grid-template-columns: 1fr;
    }
    .shop__redirect {
        padding: 3rem 1.5rem;
    }
}
@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    .footer__container {
        flex-direction: column;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}