/* --- CONFIGURATION FINALE 2025/2026 --- */
:root {
    --primary: #FF5F1F;
    --primary-alt: #FF8C00;
    --dark: #070707;
    --dark-soft: #121212;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--dark);
    color: #CCC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.center { text-align: center; }
.alternate-bg { background: #0c0c0c; }
.text-gradient { background: linear-gradient(135deg, var(--primary), var(--primary-alt)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* --- HEADER --- */
.main-header {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.header-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo img { height: 35px; }
.main-nav ul { display: flex; list-style: none; align-items: center; }
.main-nav li { margin-left: 25px; }
.main-nav a { color: var(--white); text-decoration: none; font-weight: 600; font-size: 13px; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.main-nav a:hover { color: var(--primary); }

/* --- HERO --- */
.hero { height: 100vh; display: flex; align-items: center; text-align: center; background: radial-gradient(circle at center, #25120a 0%, var(--dark) 75%); }
.hero-title { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 20px; letter-spacing: -2px; }
.hero-subtitle { font-size: 1.1rem; max-width: 700px; margin: 0 auto 40px; opacity: 0.8; }

/* --- BOUTONS --- */
.btn-primary { background: var(--primary); color: white; padding: 16px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; transition: 0.4s; border: none; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255, 95, 31, 0.4); }
.btn-secondary { color: white; margin-left: 20px; text-decoration: none; font-weight: 600; border-bottom: 2px solid var(--primary); padding-bottom: 5px; }

/* --- SERVICES (BENTO) --- */
.section-main-title { font-size: 2.8rem; color: var(--white); margin-bottom: 50px; text-align: center; font-weight: 800; }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-card { background: var(--dark-soft); border: 1px solid var(--border); padding: 40px; border-radius: 24px; transition: 0.3s; }
.bento-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.card-num { color: var(--primary); font-weight: 800; display: block; margin-bottom: 10px; font-size: 1.2rem; }
.bento-card h3 { color: var(--white); margin-bottom: 15px; font-size: 1.4rem; }

/* --- PORTFOLIO (VIDÉOS) --- */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.video-card { background: var(--dark-soft); border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: 0.3s; }
.video-card:hover { border-color: var(--primary); }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* --- CALENDLY --- */
.calendly-card { max-width: 900px; margin: 0 auto; }

/* --- CONTACT --- */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-form { background: var(--dark-soft); padding: 40px; border-radius: 24px; border: 1px solid var(--border); }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: white; border-radius: 10px; margin-bottom: 15px; font-family: inherit; }
.full-width { width: 100%; cursor: pointer; }

/* --- SECTION TÉMOIGNAGES --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--dark-soft);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    font-style: italic;
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.user-info a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
}

.user-info a:hover {
    color: var(--primary);
}

/* --- FOOTER --- */
.main-footer { padding: 60px 0; border-top: 1px solid var(--border); }
.footer-logo { height: 30px; margin-bottom: 20px; filter: grayscale(1) brightness(2); }
.social-links a { color: var(--white); margin: 0 15px; text-decoration: none; font-size: 14px; transition: 0.3s; }
.social-links a:hover { color: var(--primary); }
.copyright { margin-top: 20px; font-size: 12px; opacity: 0.5; }

/* --- MOBILE --- */
@media (max-width: 900px) {
    .bento-grid, .contact-container { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.8rem; }
    .main-nav { display: none; }
    .btn-secondary { display: block; margin: 20px 0 0 0; border: none; }
}

