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

:root {
    --orange: #ff6b35;
    --dark: #0f1419;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --beige: #fef5e7;
    --yellow: #fff9e6;
    --gray: #f0f4f8;
    --text-color: #1a1a1a;
    --text-light: #666666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: var(--orange);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--orange);
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-orange:hover {
    background: #e55a2b;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: var(--white);
}

.hero-content {
    text-align: center;
    margin-bottom: 50px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .highlight {
    color: var(--orange);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-dark {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-dark:hover {
    background: #1a1f28;
}

.hero-image {
    max-width: 800px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* Pourquoi Section */
.pourquoi {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.pourquoi h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 20px;
}

.pourquoi p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Point de Départ Section */
.point-depart {
    padding: 80px 0;
    background: var(--white);
}

.point-depart h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 60px;
}

.depart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.depart-card {
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.depart-card:hover {
    transform: translateY(-5px);
}

.card-beige {
    background: var(--beige);
}

.card-yellow {
    background: var(--yellow);
}

.card-gray {
    background: var(--gray);
}

.card-icon {
    margin-bottom: 20px;
}

.depart-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
    line-height: 1.4;
}

/* Formations Section */
.formations {
    padding: 80px 0;
    background: var(--dark);
}

.formations h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
}

.formations-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.formation-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.formation-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.formation-info h3 {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

.formation-price .price {
    background: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
}

/* Pourquoi Choisir Section */
.pourquoi-choisir {
    padding: 80px 0;
    background: var(--white);
}

.pourquoi-choisir h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 60px;
}

.choisir-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.choisir-icon {
    margin-bottom: 20px;
}

.choisir-card h3 {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

/* Témoignages Section */
.temoignages {
    padding: 80px 0;
    background: var(--light-bg);
}

.temoignages h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 60px;
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.temoignage-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.temoignage-card p {
    font-size: 15px;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.info-block p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-block strong {
    color: var(--text-color);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.btn-orange-full {
    background: var(--orange);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-orange-full:hover {
    background: #e55a2b;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: var(--orange);
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .depart-grid,
    .temoignages-grid {
        grid-template-columns: 1fr;
    }

    .choisir-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 580px) {
    .choisir-grid {
        grid-template-columns: 1fr;
    }
}