/* Variables globales */
:root {
    --color-dark-blue: #0A1F2E;
    --color-gold: #FDC500;
    --color-red: #FF3C38;
    --color-turquoise: #00B8A9;
    --color-text-light: #F7F7F7;
    --color-text-secondary: #C0C0C0;
    --font-primary: 'Poppins', Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease-in-out;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark-blue);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-gold);
    transition: var(--transition);
}

a:hover {
    color: var(--color-turquoise);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

section {
    padding: 5rem 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1.5rem;
}

ul {
    list-style: none;
}

/* Utilitaires */
.highlight {
    color: var(--color-gold);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-out;
}

h2:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.accent-dot {
    color: var(--color-gold);
    font-size: 1.5em;
    font-weight: bold;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-dark-blue);
}

.btn-primary:hover {
    background-color: #eab700;
    color: var(--color-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 197, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-dark-blue);
    transform: translateY(-2px);
}

.btn-service {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-turquoise);
    font-weight: 500;
    position: relative;
}

.btn-service::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.btn-service:hover {
    color: var(--color-gold);
}

.btn-service:hover::after {
    transform: translateX(5px);
}

.btn-full {
    width: 100%;
}

/* Header */
header {
    background-color: rgba(10, 31, 46, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
  
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 35px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 10px;
    color: var(--color-text-light);
}

.logo-text span {
    color: var(--color-gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu a {
    color: var(--color-text-light);
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: var(--color-gold);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-menu a:hover::before {
    transform: scaleX(1);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(10, 31, 46, 0.9) 0%, rgba(10, 31, 46, 0.7) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/vpThQX.jpg') no-repeat center center;
    background-size: cover;
    filter: brightness(0.2);
    z-index: -1;
}

.hero-content {
    margin: 0 auto;
    text-align: center;
    max-width: 650px;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    color: var(--color-text-secondary);
}

.cta-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* About Section */
.about-section {
    background-color: rgba(255, 255, 255, 0.02);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-secondary);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-turquoise));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    position: relative;
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: var(--color-turquoise);
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: var(--transition);
}

.advantage-icon {
    margin-bottom: 1rem;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
    background-color: rgba(255, 255, 255, 0.02);
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

blockquote {
    position: relative;
    font-style: italic;
    margin-bottom: 1.5rem;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--color-gold);
}

.author-info h4 {
    margin-bottom: 0.3rem;
    color: var(--color-gold);
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Process Section */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-gold);
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--color-gold);
    color: var(--color-dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 0 5px var(--color-dark-blue);
    z-index: 1;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgb(10 31 46);
    border-radius: 5px;
    color: var(--color-text-light);
    font-family: var(--font-primary);
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.contact-info {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-details li svg {
    margin-right: 15px;
    min-width: 24px;
}

.opening-hours {
    margin-bottom: 2rem;
}

.opening-hours li {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.opening-hours span {
    font-weight: 600;
    color: var(--color-gold);
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 5px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 3rem 0 1rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-about p {
    color: var(--color-text-secondary);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-gold);
    transform: translateY(-3px);
}

.social-links a svg path {
    transition: var(--transition);
}

.social-links a:hover svg path {
    fill: var(--color-dark-blue);
}

/* Styles pour les contacts dans le footer */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--color-text-secondary);
}

.footer-contact svg {
    min-width: 18px;
    margin-right: 10px;
    margin-top: 3px;
}

.footer-contact a {
    color: var(--color-text-secondary);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: rgba(15, 36, 51, 0.95);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content h3 {
    margin-bottom: 0.5rem;
    flex-basis: 100%;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .logo-text {
        font-weight: 700;
        font-size: 1.2rem;
        margin-left: 10px;
        color: var(--color-text-light);
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: rgba(10, 31, 46, 0.98);
        padding: 2rem;
        transition: right 0.3s ease;
        align-items: center;
        justify-content: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }

    .cta-container {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .process-step {
        padding-left: 60px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .testimonials-slider {
        flex-direction: column;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-features {
        padding-left: 1rem;
    }

    .service-features li::before {
        left: -1rem;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
    }
    
    .footer-col.footer-about {
        grid-column: span 2;
    }
}

.fade-in.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Animation des cartes de service au survol */
.service-card:hover .service-icon {
    transform: scale(1.1);
    transition: var(--transition);
}

/* Animation du formulaire */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 197, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(253, 197, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(253, 197, 0, 0);
    }
}

.btn-primary:focus {
    animation: pulse 1.5s infinite;
}

.testimonial-card.visible {
    animation: slideIn 0.8s ease-out forwards;
} 