/* Variables */
:root {
    /* Palette de couleurs */
    --dark-graphite: #111927;
    --raspberry-red: #E63946;
    --milky-white: #F1FAEE;
    --muted-turquoise: #A8DADC;
    --text-color: #CFCFCF;
    
    /* Espacement */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Fonts */
    --font-family: 'Poppins', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--dark-graphite);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--milky-white);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: var(--spacing-sm);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--raspberry-red), var(--muted-turquoise));
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--muted-turquoise);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--raspberry-red);
    text-shadow: 0px 0px 8px rgba(230, 57, 70, 0.5);
}

/* Buttons */
.btn {
 
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--raspberry-red), var(--muted-turquoise));
    color: var(--milky-white);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(230, 57, 70, 0.5);
    color: var(--milky-white);
    text-shadow: 0px 0px 10px rgba(241, 250, 238, 0.8);
}

.btn-primary:active {
    transform: translateY(1px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(17, 25, 39, 0.95);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--milky-white);
    letter-spacing: 1px;
}

.logo:hover {
    text-shadow: 0px 0px 10px rgba(230, 57, 70, 0.7);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: var(--spacing-md);
}

.nav-link {
    color: var(--milky-white);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--raspberry-red), var(--muted-turquoise));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-line {
    width: 25px;
    height: 3px;
    background-color: var(--milky-white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to right, rgba(17, 25, 39, 0.9), rgba(17, 25, 39, 0.7)), url('../img/ZKVWa0.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}
.header-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.hero h1 {
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 1s ease-out;
    max-width: 600px;
    margin:10px auto;
    
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
    max-width: 600px;
    margin: 15px auto;
    
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
 
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text {
    animation: fadeIn 1s ease-out;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
}

/* Services Section */
.services {
    padding: var(--spacing-xl) 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: var(--spacing-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(168, 218, 220, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(230, 57, 70, 0.2);
    border: 1px solid rgba(168, 218, 220, 0.3);
}

.service-icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--raspberry-red), var(--muted-turquoise));
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    color: var(--milky-white);
}

.service-icon i {
    line-height: 70px;
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.benefit-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.benefit-card:hover img {
    transform: scale(1.05);
}

.benefit-card h3 {
    margin-top: var(--spacing-sm);
}

.benefit-card p {
    color: var(--text-color);
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-xl) 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: var(--spacing-md);
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid rgba(168, 218, 220, 0.1);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(230, 57, 70, 0.2);
    border: 1px solid rgba(168, 218, 220, 0.3);
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.testimonial blockquote::before {
    content: '"';
    font-size: 3rem;
    color: rgba(230, 57, 70, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial cite {
    display: block;
    font-weight: 500;
    color: var(--muted-turquoise);
    font-style: normal;
    margin-top: var(--spacing-sm);
}

/* Contact Section */
.contact {
    padding: var(--spacing-xl) 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-lg);
    border-radius: 10px;
    border: 1px solid rgba(168, 218, 220, 0.1);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.required {
    color: var(--raspberry-red);
    margin-left: 3px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(168, 218, 220, 0.2);
    background-color: rgb(17, 25, 39);
    border-radius: 5px;
    color: var(--milky-white);
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--muted-turquoise);
    box-shadow: 0 0 0 2px rgba(168, 218, 220, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
    accent-color: var(--muted-turquoise);
}

.checkbox-group label {
    margin-bottom: 0;
}

/* Footer */
.footer {
    padding: var(--spacing-lg) 0;
    background-color: rgba(17, 25, 39, 0.95);
    border-top: 1px solid rgba(168, 218, 220, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--raspberry-red), var(--muted-turquoise));
}

.footer-column p {
    margin-bottom: var(--spacing-xs);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(168, 218, 220, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -600px;
    left: 0;
    right: 0;
    background-color: rgba(17, 25, 39, 0.95);
    color: var(--text-color);
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.5s ease;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(168, 218, 220, 0.1);
}

.cookie-popup.show {
    transform: translateY(-100px);
}

.cookie-popup p {
    margin: 0;
    padding-right: var(--spacing-md);
}

.cookie-popup .btn {
    background: var(--muted-turquoise);
    color: var(--dark-graphite);
    font-weight: 600;
}

.cookie-popup .btn:hover {
    background: var(--raspberry-red);
    color: var(--milky-white);
}

/* Icons (Font Icons Replacement) */
.icon-chart::before {
    content: "📊";
    font-size: 1.8rem;
}

.icon-check::before {
    content: "✓";
    font-size: 1.8rem;
}

.icon-shield::before {
    content: "🛡️";
    font-size: 1.8rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }

    .services-grid,
    .benefits-grid,
    .testimonial-slider,
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }
    
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(17, 25, 39, 0.95);
        padding: var(--spacing-sm) 0;
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        margin: var(--spacing-xs) 0;
    }
    
    .burger-menu {
        display: block;
    }
    
    .services-grid,
    .benefits-grid,
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .cookie-popup {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-popup p {
        margin-bottom: var(--spacing-sm);
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
    }
} 