/* ===== VARIABLES CSS ===== */
:root {
    /* Couleurs principales */
    --primary-bg: #f4f8fb;           /* Arrière-plan principal */
    --accent-coral: #ff6f61;         /* Corail-rose accent */
    --secondary-indigo: #24305e;     /* Indigo profond */
    --text-dark: #1c1c1c;           /* Texte noir profond */
    --text-secondary: #6b6b6b;      /* Texte secondaire */
    
    /* Gradients néon */
    --gradient-neon: linear-gradient(135deg, #b2fefa 0%, #0ed2f7 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-coral) 0%, var(--secondary-indigo) 100%);
    
    /* Polices */
    --font-primary: "Inter", sans-serif;
    
    /* Espacements */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 24px;
    
    /* Transitions */
    --transition-smooth: 0.3s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== CONTENEUR PRINCIPAL ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

/* ===== BOUTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 111, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 111, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-indigo);
    border-color: var(--secondary-indigo);
}

.btn-secondary:hover {
    background: var(--secondary-indigo);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-coral);
    border-color: var(--accent-coral);
}

.btn-outline:hover {
    background: var(--accent-coral);
    color: white;
}

.btn-choice {
    width: 100%;
    justify-content: center;
    background: var(--gradient-neon);
    color: var(--secondary-indigo);
    font-weight: 700;
}

.btn-choice:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(178, 254, 250, 0.5);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    background: var(--gradient-accent);
    color: white;
    padding: 18px 30px;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 111, 97, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes checkAnimation {
    0% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
}

@keyframes circleAnimation {
    0% { stroke-dashoffset: 440; }
    100% { stroke-dashoffset: 0; }
}

/* ===== HEADER ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(36, 48, 94, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.nav {
    position: relative;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: var(--secondary-indigo);
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-coral);
}

.nav-link.cta-nav {
    background: var(--gradient-neon);
    color: var(--secondary-indigo);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
}

/* ===== COOKIES POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(36, 48, 94, 0.2);
    max-width: 400px;
    padding: 2rem;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-smooth);
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content h3 {
    color: var(--secondary-indigo);
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.cookie-btn.accept {
    background: var(--accent-coral);
    color: white;
}

.cookie-btn.decline {
    background: #f0f0f0;
    color: var(--text-dark);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* ===== MAIN CONTENT ===== */
.main {
    margin-top: 80px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: var(--section-padding);
    background: var(--gradient-neon);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-indigo);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 25px 60px rgba(36, 48, 94, 0.2);
    transition: var(--transition-smooth);
}

.hero-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(36, 48, 94, 0.3);
}

/* ===== SECTIONS GÉNÉRALES ===== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ===== SERVICES DESCRIPTION ===== */
.services-description {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(36, 48, 94, 0.1);
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(36, 48, 94, 0.15);
    border-color: var(--accent-coral);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-indigo);
}

.service-card h3 {
    color: var(--secondary-indigo);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== SERVICE CHOICE ===== */
.service-choice {
    background: var(--primary-bg);
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.choice-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(36, 48, 94, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}

.choice-card.featured {
    border: 3px solid var(--accent-coral);
    transform: scale(1.05);
}

.choice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(36, 48, 94, 0.2);
}

.choice-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.choice-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-coral);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.choice-header {
    background: var(--gradient-neon);
    padding: 2rem;
    text-align: center;
}

.choice-header h3 {
    color: var(--secondary-indigo);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.choice-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-indigo);
}

.period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.choice-image {
    padding: 2rem;
    text-align: center;
}

.choice-img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}

.choice-features {
    list-style: none;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.choice-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.choice-card .btn-choice {
    margin: 0 2rem 2rem;
}

/* ===== WHY US ===== */
.why-us {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: var(--primary-bg);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(36, 48, 94, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.why-card h3 {
    color: var(--secondary-indigo);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--gradient-neon);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(36, 48, 94, 0.1);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(36, 48, 94, 0.15);
}

.testimonial-quote {
    color: var(--accent-coral);
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author strong {
    color: var(--secondary-indigo);
    font-size: 1.1rem;
}

.testimonial-author span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* ===== ADVANTAGES ===== */
.advantages {
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.advantage-card {
    background: var(--primary-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    position: relative;
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(36, 48, 94, 0.1);
}

.advantage-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--gradient-accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.advantage-card h3 {
    color: var(--secondary-indigo);
    margin: 1rem 0;
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== ORDER FORM ===== */
.order-form {
    background: var(--gradient-neon);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(36, 48, 94, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--secondary-indigo);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-coral);
    box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.1);
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-coral);
    margin-top: 2px;
}

.checkbox-group label {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--accent-coral);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-indigo);
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--secondary-indigo);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--accent-coral);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-indigo);
    color: white;
    padding: var(--section-padding);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    background: var(--gradient-neon);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-services,
.footer-legal {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-services li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: white;
    text-decoration: underline;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--accent-coral);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    color: var(--accent-coral);
}

/* ===== THANK YOU PAGE ===== */
.thank-you-section {
    padding: var(--section-padding);
    background: var(--gradient-neon);
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-animation {
    margin-bottom: 2rem;
}

.success-circle {
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    animation: circleAnimation 1s ease-in-out forwards;
}

.success-check {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: checkAnimation 1s ease-in-out 0.5s forwards;
}

.thank-you-title {
    font-size: 3rem;
    color: var(--secondary-indigo);
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(36, 48, 94, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-text h3 {
    color: var(--secondary-indigo);
    margin-bottom: 0.5rem;
}

.info-text p {
    color: var(--text-secondary);
    margin: 0;
}

/* ===== TEAM SECTION ===== */
.team-section,
.next-steps-section {
    background: white;
    padding: var(--section-padding);
}

.team-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-card,
.step-card {
    background: var(--primary-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-smooth);
}

.team-card:hover,
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(36, 48, 94, 0.1);
}

.team-avatar {
    margin-bottom: 1.5rem;
}

.team-role {
    color: var(--accent-coral);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    color: var(--secondary-indigo);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== EMERGENCY CONTACT ===== */
.emergency-contact {
    background: var(--gradient-neon);
    padding: var(--section-padding);
}

.emergency-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 20px 50px rgba(36, 48, 94, 0.2);
}

.emergency-content h2 {
    color: var(--secondary-indigo);
    margin-bottom: 1rem;
}

.emergency-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.emergency-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BACK SECTION ===== */
.back-section {
    background: white;
    padding: 2rem 0;
    text-align: center;
}

.back-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: var(--section-padding);
    background: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary-bg);
}

.legal-header h1 {
    color: var(--secondary-indigo);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-subtitle {
    color: var(--text-secondary);
    font-style: italic;
}

.legal-body {
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--secondary-indigo);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-coral);
    padding-left: 1rem;
}

.legal-section h3 {
    color: var(--secondary-indigo);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-section a {
    color: var(--accent-coral);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-bg);
    text-align: center;
}

.legal-footer p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /* Navigation mobile */
    .menu-icon {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(36, 48, 94, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-smooth);
    }
    
    .menu-toggle:checked ~ .nav-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Sections */
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons,
    .emergency-buttons,
    .legal-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .choice-card.featured {
        transform: none;
    }
    
    .choice-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .thank-you-title {
        font-size: 2.5rem;
    }
    
    .thank-you-info {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-popup {
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .emergency-card {
        padding: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== ACCESSIBILITÉ ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles pour l'accessibilité */
button:focus,
input:focus,
select:focus,
a:focus {
    outline: 2px solid var(--accent-coral);
    outline-offset: 2px;
}

/* ===== АДРЕС В КОНТАКТАХ ===== */
.address-black {
    color: #000000 !important;
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .cookie-popup,
    .btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .main {
        margin-top: 0 !important;
    }
} 