/* ==============================================
   VARIABLES CSS ET RESET
   ============================================== */
:root {
    --azure: #009CA6;
    --coral: #FF6B6B;
    --graphite: #2E2E38;
    --pastel-yellow: #FDF3B0;
    --white: #FFFFFF;
    
    --gradient-primary: linear-gradient(135deg, var(--azure) 0%, var(--coral) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--azure) 100%);
    --shadow-light: 0 4px 20px rgba(0, 156, 166, 0.1);
    --shadow-medium: 0 8px 30px rgba(46, 46, 56, 0.15);
    --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.2);
    
    --container-max-width: 1200px;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--graphite);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ==============================================
   UTILITAIRES ET CONTENEUR
   ============================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azure);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Boutons */
.btn-primary, .btn-secondary, .btn-accept, .btn-decline, .btn-info {
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--azure);
    border: 2px solid var(--azure);
}

.btn-secondary:hover {
    background: var(--azure);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ==============================================
   COOKIE POPUP
   ============================================== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
    max-width: 500px;
    margin: 0 auto;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    padding: 20px;
}

.cookie-content h3 {
    color: var(--azure);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-accept {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-decline {
    background: transparent;
    color: var(--coral);
    border: 1px solid var(--coral);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-info {
    background: var(--pastel-yellow);
    color: var(--graphite);
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ==============================================
   HEADER
   ============================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--azure);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--graphite);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--azure);
}

.header-cta .btn-primary {
    padding: 12px 25px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--azure);
    transition: var(--transition);
}

/* ==============================================
   MAIN CONTENT
   ============================================== */
.main {
    padding-top: 80px;
}

/* ==============================================
   HERO SECTION
   ============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 156, 166, 0.9) 0%, rgba(255, 107, 107, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 3rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pastel-yellow);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==============================================
   ABOUT SECTION
   ============================================== */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--pastel-yellow) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 600;
    color: var(--azure);
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* ==============================================
   ADVANTAGES SECTION
   ============================================== */
.advantages {
    padding: 80px 0;
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.advantage-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--azure);
}

.advantage-icon {
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.advantage-title {
    font-size: 1.5rem;
    color: var(--azure);
    margin-bottom: 15px;
}

.advantage-text {
    line-height: 1.6;
}

/* ==============================================
   SERVICES SECTION
   ============================================== */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--graphite) 0%, var(--azure) 100%);
    color: var(--white);
}

.services .section-title {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    color: var(--graphite);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.service-popular {
    transform: scale(1.05);
    border: 3px solid var(--pastel-yellow);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--pastel-yellow) 0%, rgba(253, 243, 176, 0.5) 100%);
}

.service-title {
    font-size: 1.5rem;
    color: var(--azure);
    margin-bottom: 10px;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--coral);
}

.service-content {
    padding: 30px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--azure);
    font-weight: bold;
}

.service-footer {
    padding: 30px;
    text-align: center;
    background: #f9f9f9;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-radio {
    display: none;
}

.service-select {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.service-select:hover {
    background: linear-gradient(135deg, var(--coral) 0%, var(--azure) 100%);
    transform: translateY(-2px);
}

.service-radio:checked + .service-select {
    background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--azure) 100%);
    color: var(--graphite);
    transform: scale(1.05);
}

.service-action {
    text-align: center;
    margin: 40px 0 0 0;
}

.service-order-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    background: var(--gradient-secondary);
    opacity: 0.6;
    pointer-events: none;
    transition: var(--transition);
}

/* Активация кнопки заказа при выборе любого сервиса */
.services:has(input[name="service_choice"]:checked) .service-order-btn {
    opacity: 1;
    pointer-events: auto;
    background: var(--gradient-secondary);
}

/* ==============================================
   PROCESS SECTION
   ============================================== */
.process {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: var(--shadow-light);
}

.step-title {
    font-size: 1.3rem;
    color: var(--azure);
    margin-bottom: 15px;
}

.step-text {
    line-height: 1.6;
}

/* ==============================================
   TESTIMONIALS SECTION
   ============================================== */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-stars {
    color: var(--coral);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.author-name {
    color: var(--azure);
    font-weight: 600;
    margin-bottom: 5px;
}

.author-role {
    color: var(--graphite);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==============================================
   CONTACT FORM SECTION
   ============================================== */
.contact-form {
    padding: 80px 0;
    background: var(--graphite);
    color: var(--white);
}

.contact-form .section-title {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--pastel-yellow);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--azure);
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--graphite);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--azure);
    box-shadow: 0 0 0 3px rgba(0, 156, 166, 0.1);
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    transform: scale(1.2);
    accent-color: var(--azure);
}

.checkbox-group label {
    color: var(--graphite);
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--azure);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
    background: var(--graphite);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--pastel-yellow);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--azure);
}

.contact-info p {
    margin-bottom: 10px;
}

.footer .contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer .contact-info a:hover {
    color: var(--azure);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 5px;
    opacity: 0.8;
}

/* ==============================================
   MERCI PAGE
   ============================================== */
.merci-page {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--white) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.merci-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.merci-animation {
    margin-bottom: 30px;
}

.checkmark-svg {
    animation: checkmarkAppear 1s ease-out;
}

@keyframes checkmarkAppear {
    from {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.checkmark-circle {
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    animation: drawCircle 1s ease-out 0.5s forwards;
}

.checkmark-path {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: drawCheck 0.8s ease-out 1.2s forwards;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.merci-title {
    font-size: 3rem;
    color: var(--azure);
    margin-bottom: 20px;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.merci-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.merci-next-steps {
    margin-bottom: 40px;
    text-align: left;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    animation: slideInUp 0.8s ease-out 0.7s both;
}

.merci-next-steps h2 {
    color: var(--azure);
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    list-style: none;
}

.steps-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.steps-list li:last-child {
    border-bottom: none;
}

.merci-contact {
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease-out 0.9s both;
}

.merci-contact h3 {
    color: var(--coral);
    margin-bottom: 15px;
}

.contact-urgent p {
    margin-bottom: 5px;
}

.contact-urgent a {
    color: var(--azure);
    text-decoration: none;
}

.contact-urgent a:hover {
    text-decoration: underline;
}

.merci-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideInUp 0.8s ease-out 1.1s both;
}

/* ==============================================
   TEAM SECTION
   ============================================== */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-content {
    max-width: 1000px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.team-title {
    font-size: 2.5rem;
    color: var(--azure);
    margin-bottom: 15px;
}

.team-subtitle {
    font-size: 1.2rem;
    color: var(--graphite);
    margin-bottom: 30px;
}

.team-divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.team-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.team-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.team-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.team-stat {
    display: flex;
    flex-direction: column;
}

.team-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--coral);
    margin-bottom: 5px;
}

.team-stat .stat-label {
    font-size: 0.9rem;
    color: var(--graphite);
}

/* ==============================================
   PAGES LÉGALES COMMUNES
   ============================================== */
.legal-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--pastel-yellow) 100%);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-title {
    font-size: 2.5rem;
    color: var(--azure);
    margin-bottom: 20px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    color: var(--azure);
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--pastel-yellow);
    padding-bottom: 5px;
}

.legal-section h3 {
    color: var(--graphite);
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.legal-section p {
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-page .contact-info {
    background: var(--pastel-yellow);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.legal-page .contact-info h3 {
    color: var(--azure);
    margin-bottom: 15px;
}

.legal-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--border-radius);
}

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .team-info {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 80vh;
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin: 2rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-toggle:checked ~ .nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-medium);
        padding: 20px;
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-popular {
        transform: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .team-info {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .merci-title {
        font-size: 2.2rem;
    }
    
    .merci-actions {
        flex-direction: column;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        margin: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .service-image {
        height: 150px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .merci-content {
        padding: 0 10px;
    }
    
    .legal-content {
        padding: 20px;
    }
}

/* ==============================================
   ANIMATIONS ET EFFETS SUPPLÉMENTAIRES
   ============================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Effet de survol pour les cartes */
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Animation de chargement */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
} 