/* Variables et reset */
:root {
    --color-primary: #2A9DFF; /* Électric-bleu */
    --color-accent-1: #FFC857; /* Ambre */
    --color-accent-2: #2EDCBE; /* Néphrite */
    --color-light: #E5E5E5; /* Gris platine */
    --color-dark: #1A1A1D; /* Gris charbon */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray: #6C757D;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --radius: 6px;
    --container-width: 1200px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
}

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 20px;
    margin: 0 auto;
}

.section {
    padding: 130px 0;
}

.section__header {
    margin-bottom: 50px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col {
    padding: 15px;
}

.col--50 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col--33 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col--25 {
    flex: 0 0 25%;
    max-width: 25%;
}

/* Composants */
/* Boutons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border-radius: var(--radius);
    border: none;
    transition: var(--transition);
    font-size: 1rem;
    font-family: var(--font-primary);
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn--primary:hover {
    background-color: #1e8ae6;
    transform: translateY(-2px);
}

.btn--secondary {
    background-color: var(--color-accent-1);
    color: var(--color-dark);
}

.btn--secondary:hover {
    background-color: #e5b54d;
    transform: translateY(-2px);
}

.btn--outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn--outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Header et navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    z-index: 100;
    transition: var(--transition);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
}

.nav__list {
    display: flex;
    align-items: center;
}

.nav__list li {
    margin-left: 25px;
}

.nav__link {
    font-weight: 500;
    color: var(--color-dark);
}

.nav__link:hover {
    color: var(--color-primary);
}

.nav__link--cta {
    padding: 8px 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius);
}

.nav__link--cta:hover {
    background-color: #1e8ae6;
    color: var(--color-white);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}
.reviews__cta{
    margin-top: 40px;
}
.hero__content {
    text-align: center;
    max-width: 650px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: var(--radius);
}
.thank-you{
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.thank-you__content {
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
    background-color: var(--color-white);
    position: relative;
    z-index: 2;
}
.hero__title {
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-gray);
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.about__image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about__content {
    padding: 20px 0;
}

/* Services Section */
.services {
    background-color: var(--color-light);
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card__icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 2rem;
}

.service-card__title {
    margin-bottom: 15px;
    color: var(--color-dark);
}

.service-card__content {
    color: var(--color-gray);
}

/* Advantages Section */
.advantage-card {
    display: flex;
    margin-bottom: 30px;
}

.advantage-card__icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: rgba(42, 157, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.advantage-card__content {
    flex: 1;
}

.advantage-card__title {
    margin-bottom: 10px;
    color: var(--color-dark);
}

.advantage-card__text {
    color: var(--color-gray);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-light);
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    margin-top: 40px;
    height: calc(100% - 40px);
}

.testimonial-card__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: 30px;
    overflow: hidden;
    border: 4px solid var(--color-white);
}

.testimonial-card__content {
    margin-top: 40px;
}

.testimonial-card__name {
    margin-bottom: 5px;
    color: var(--color-dark);
}

.testimonial-card__position {
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.testimonial-card__text {
    color: var(--color-gray);
    position: relative;
    padding-left: 20px;
}

.testimonial-card__text::before {
    content: '"';
    font-size: 3rem;
    color: var(--color-accent-1);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.5;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-item__question {
    background-color: var(--color-white);
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
}

.faq-item__question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-primary);
}

.faq-item.active .faq-item__question::after {
    content: "-";
}

.faq-item__answer {
    background-color: var(--color-light);
    padding: 20px;
    display: none;
}

.faq-item.active .faq-item__answer {
    display: block;
}

/* Contact Section */
.contact {
    position: relative;
}

.contact-form {
    background-color: var(--color-white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-dark);
    background-color: var(--color-white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(42, 157, 255, 0.1);
}

.form-select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6" viewBox="0 0 12 6"><path d="M0 0l6 6 6-6z" fill="%236c757d"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 30px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check-input {
    margin-top: 5px;
    margin-right: 10px;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.form-check-label a {
    color: var(--color-primary);
}

.form-check-label a:hover {
    text-decoration: underline;
}

.form-buttons {
    margin-top: 30px;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 80px 0 30px;
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer__col {
    flex: 1;
    min-width: 200px;
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer__logo {
    display: block;
    margin-bottom: 20px;
}

.footer__desc {
    color: #aaa;
    line-height: 1.5;
    font-size: 0.9rem;
}

.footer__title {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: #aaa;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer__address {
    font-style: normal;
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer__address a {
    color: var(--color-primary);
}

.footer__address a:hover {
    text-decoration: underline;
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: #777;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 15px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.cookie-consent.active {
    bottom: 0;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.cookie-content p {
    margin-right: 20px;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .col--50,
    .col--33,
    .col--25 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .hero {
        padding: 140px 0 70px;
    }

    .hero__image {
        width: 45%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }
    .row-mobile{
        flex-direction: column;
    }
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: 99;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav__list {
        flex-direction: column;
    }

    .nav__list li {
        margin-left: 0;
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }

    .nav__link--cta {
        display: block;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero__content {
        max-width: 100%;
        padding-bottom: 50px;
    }

    .hero__image {
        position: absolute;
        width: 100%;
        height: 100%;
        margin-top: 0;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .col--50,
    .col--33,
    .col--25 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section {
        padding: 90px 0;
    }

    .testimonial-card__image {
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-card__content {
        margin-top: 50px;
        text-align: center;
    }

    .footer__col {
        flex: 0 0 100%;
    }
} 