/* Variables et réinitialisation */
:root {
    --color-mint: #00e6b8;
    --color-neon-blue: #00a8ff;
    --color-coral: #ff6b6b;
    --color-maple: #d13800;
    --color-gold: #ffd700;
    --color-dark-blue: #003366;
    --color-white: #ffffff;
    --border-radius-2xl: 16px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-dark-blue);
    background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-neon-blue) 100%);
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-neon-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-coral);
}

section {
    padding: 5rem 0;
}

/* Backgrounds alternés */
section:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.1);
}

section:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--color-dark-blue);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo svg {
    margin-right: 10px;
    color: var(--color-neon-blue);
}

.logo-text {
    display: flex;
    align-items: center;
    height: 40px; /* Même hauteur que le SVG */
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
}

.menu a {
    color: var(--color-dark-blue);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-coral);
    transition: var(--transition);
}

.menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(to right, var(--color-coral), var(--color-maple));
    color: var(--color-white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--border-radius-2xl);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

/* Main Content Styles */
main {
    padding-top: 80px;
}

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
    background-image: url('./img/HTrHlv.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    margin: 0;
    padding: 5rem 0;
    text-align: center;
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    padding: 2rem;
    color: var(--color-white);
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

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

.subtitle {
    font-size: 1.2rem;
    color: var(--color-dark-blue);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-2xl);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-neon-blue);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-mint), var(--color-neon-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    font-size: 2.5rem;
}

.process-step {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    background-color: var(--color-gold);
    color: var(--color-dark-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

/* Process container layout */
.process-container {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.process-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-image img {
    max-width: 100%;
    border-radius: var(--border-radius-2xl);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.process-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.rounded-image {
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
}

/* Form Styles */
.form-container {
    background-color: var(--color-white);
    border-radius: var(--border-radius-2xl);
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--color-coral), var(--color-neon-blue));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info {
    background-color: var(--color-white);
    border-radius: var(--border-radius-2xl);
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--color-dark-blue);
}

.contact-info-list {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-info-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.contact-info-list i {
    margin-right: 10px;
    color: var(--color-coral);
    min-width: 20px;
    text-align: center;
}

.contact-image {
    margin-top: 2rem;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    max-height: 200px;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e1e1e1;
    border-radius: var(--border-radius-2xl);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--color-neon-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 6px;
    margin-right: 10px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* FAQ Styles */
.accordion {
    margin-bottom: 1rem;
}

.accordion-header {
    background-color: var(--color-white);
    padding: 1.25rem;
    border-radius: var(--border-radius-2xl);
    cursor: pointer;
    position: relative;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    color: var(--color-dark-blue);
    text-decoration: none;
}

.accordion-header:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-coral);
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    background-color: var(--color-white);
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
    border-radius: 0 0 var(--border-radius-2xl) var(--border-radius-2xl);
    opacity: 0;
}

.accordion-content.show {
    padding: 1.25rem;
    max-height: 500px;
    opacity: 1;
}

/* Testimonial Styles */
.testimonial {
    background-color: var(--color-white);
    border-radius: var(--border-radius-2xl);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.05);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

/* Footer Styles */
footer {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 4rem 0 0;
    margin-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-coral);
}

.footer-links, .footer-contact-info {
    list-style: none;
}

.footer-links li, .footer-contact-info li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-contact-info i {
    margin-right: 10px;
    color: var(--color-coral);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-2xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    padding: 2rem;
    text-align: center;
    transition: bottom 0.5s ease-in-out;
}

.cookie-popup.show {
    bottom: 20px;
}

.cookie-content h3 {
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        position: relative;
        z-index: 2000;
    }
    
    .nav-toggle-label span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: var(--color-dark-blue);
        margin: 6px 0;
        transition: var(--transition);
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .menu li {
        margin: 1rem 0;
    }
    
    .nav-toggle:checked ~ .menu {
        right: 0;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 8px);
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -8px);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem;
    }

    .process-container {
        grid-template-columns: 1fr;
    }
    
    .process-image {
        margin-top: 2rem;
        order: -1;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.slide-in-left {
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInLeft 1s forwards;
}

.slide-in-right {
    transform: translateX(50px);
    opacity: 0;
    animation: slideInRight 1s forwards;
}

.scale-in {
    transform: scale(0.9);
    opacity: 0;
    animation: scaleIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Utilitaires */
.mt-5 {
    margin-top: 2.5rem;
} 