/* ===== STYLES COMMUNS YOULAGENCY ===== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo, .nav-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #dc2626;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, #dc2626 0%, #8b5cf6 100%);
    color: white;
    padding: 8rem 0 4rem 0;
    text-align: center;
    margin-top: 0;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== HERO SECTION (Landing Page) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #dc2626 0%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background: 
        radial-gradient(ellipse at 15% 30%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 30%, transparent 60%),
        radial-gradient(ellipse at 85% 20%, rgba(139, 92, 246, 0.6) 0%, rgba(139, 92, 246, 0.3) 35%, transparent 70%),
        radial-gradient(ellipse at 70% 80%, rgba(220, 38, 38, 0.5) 0%, rgba(220, 38, 38, 0.2) 40%, transparent 75%),
        radial-gradient(ellipse at 30% 70%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 25%, transparent 55%),
        radial-gradient(ellipse at 90% 60%, rgba(139, 92, 246, 0.4) 0%, rgba(139, 92, 246, 0.15) 30%, transparent 65%);
    z-index: 1;
    animation: floatingBubbles 15s ease-in-out infinite;
    filter: blur(1px);
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.08) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.08) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.08) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.08) 75%);
    background-size: 80px 80px;
    background-position: 0 0, 0 40px, 40px -40px, -40px 0px;
    z-index: 1;
    opacity: 0.4;
    animation: diagonalMove 25s linear infinite;
    filter: blur(0.5px);
}

/* Ajout de formes géométriques flottantes */
.hero .geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero .shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.hero .shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation: float 6s ease-in-out infinite reverse;
}

.hero .shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation: float 10s ease-in-out infinite;
    border-radius: 20%;
}

.hero .shape-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation: float 7s ease-in-out infinite reverse;
    border-radius: 0;
    transform: rotate(45deg);
}

@keyframes floatingBubbles {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(10px, -10px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-5px, 10px) scale(0.9);
        opacity: 1;
    }
    75% {
        transform: translate(15px, 5px) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes diagonalMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(80px, 80px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: white;
    z-index: 2;
    position: relative;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideUp 1s ease-out;
}

.hero-text .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideUp 1s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    animation: slideUp 1s ease-out 0.4s both;
    justify-content: center;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 18px 35px;
    background: white;
    color: #dc2626;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-15deg);
    transition: all 0.5s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb a {
    color: #dc2626;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #8b5cf6;
}

.breadcrumb span {
    color: #666;
    margin: 0 0.5rem;
}

/* ===== SECTIONS COMMUNES ===== */
section {
    padding: 6rem 0;
}

.main-content {
    background: #f8fafc;
    padding: 3rem 0 5rem 0; /* Ajusté pour plus d'espace en bas */
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.stat-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* ===== DIFFÉRENCIATION ===== */
.differentiation {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.diff-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.diff-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.diff-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.diff-features {
    list-style: none;
}

.diff-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: #333;
}

.diff-features li::before {
    content: '✓';
    color: #dc2626;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.diff-visual {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

/* ===== PROCESS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(135deg, #dc2626 0%, #8b5cf6 100%);
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===== PRICING ===== */
.pricing {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.featured {
    border: 3px solid #dc2626;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'POPULAIRE';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: #666;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #555;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
    display: block;
    text-align: center;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #dc2626;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1rem 2rem 2rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #dc2626 0%, #8b5cf6 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===== LEGAL SECTIONS ===== */
.legal-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid #dc2626;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #dc2626;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    color: #555;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #555;
}

.contact-item strong {
    min-width: 145px;
    color: #333;
}

.contact-item a {
    color: #dc2626;
    text-decoration: none;
}

.contact-item a:hover {
    color: #8b5cf6;
}

.highlight {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(139, 92, 246, 0.1));
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #dc2626;
    margin: 1rem 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.data-table th {
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    color: white;
    font-weight: 600;
}

.data-table tbody tr:hover {
    background: #f8fafc;
}

.cookies-table-container {
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* Mobile responsive table */
@media (max-width: 768px) {
    .cookies-table-container {
        overflow-x: visible;
    }
    
    .data-table {
        border: 0;
        box-shadow: none;
        background: transparent;
    }
    
    .data-table thead {
        display: none;
    }
    
    .data-table tr {
        display: block;
        background: white;
        margin-bottom: 1.5rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        padding: 1.5rem;
        border: none;
        border-left: 4px solid #dc2626;
    }
    
    .data-table td {
        display: block;
        padding: 0.8rem 0;
        border: none;
        text-align: left;
        border-bottom: 1px solid #f1f5f9;
        line-height: 1.5;
    }
    
    .data-table td:last-child {
        border-bottom: none;
    }
    
    .data-table td::before {
        content: attr(data-label) " :";
        font-weight: 700;
        color: #dc2626;
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
    
    .data-table td::after {
        content: "";
        display: block;
        clear: both;
    }
    
    .data-table tbody tr:hover {
        background: white;
    }
}

.retention-period {
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff);
    border: 1px solid #c7d2fe;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.retention-period h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

/* ===== CONTACT FORMS ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid #dc2626;
}

.contact-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #dc2626;
}

.contact-section p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-form {
    grid-column: span 2;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.contact-info-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
    margin: 1rem 0;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    color: #8b5cf6;
}

.office-hours {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.hours-item {
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 10px;
    text-align: center;
}

.hours-item h4 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.hours-item p {
    color: #666;
    font-size: 0.9rem;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 0.8rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

/* ===== FOOTER AMÉLIORÉ ===== */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1.5rem 0; /* Réduit de 4rem à 3rem en haut et 2rem à 1.5rem en bas */
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* ===== TITRES H4 AVEC SOULIGNEMENT ===== */
.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid;
    border-image: linear-gradient(135deg, #dc2626, #8b5cf6) 1;
    transition: all 0.3s ease;
}

.footer-section h4:hover {
    color: #dc2626;
    transform: translateY(-2px);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-decoration: none;
    display: inline-block;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.footer .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.2rem;
}

.footer .stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* ===== ALIGNEMENT DES LIENS COMME "NOUS CONTACTER" ===== */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

/* Ajout d'icônes pour "Navigation" */
.footer-links li:nth-child(1)::before { content: '🏠'; }
.footer-links li:nth-child(2)::before { content: '⚙️'; }
.footer-links li:nth-child(3)::before { content: '⭐'; }
.footer-links li:nth-child(4)::before { content: '🔄'; }
.footer-links li:nth-child(5)::before { content: '💬'; }
.footer-links li:nth-child(6)::before { content: '💰'; }
.footer-links li:nth-child(7)::before { content: '📞'; }

/* Icônes pour "Services" (3ème section du footer) */
.footer-section:nth-child(3) .footer-links li:nth-child(1)::before { content: '🎯'; }
.footer-section:nth-child(3) .footer-links li:nth-child(2)::before { content: '📅'; }
.footer-section:nth-child(3) .footer-links li:nth-child(3)::before { content: '⚡'; }
.footer-section:nth-child(3) .footer-links li:nth-child(4)::before { content: '📊'; }
.footer-section:nth-child(3) .footer-links li:nth-child(5)::before { content: '🔍'; }

.footer-links li::before {
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #dc2626;
    padding-left: 5px;
}

.footer-contact-info {
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    gap: 0.8rem;
}

.footer-contact-icon {
    font-size: 1.1rem;
    margin-top: 0.1rem;
    width: 20px;
    text-align: left;
    flex-shrink: 0;
}

.footer-contact-item div {
    display: flex;
    flex-direction: column;
}

.footer-contact-label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.2rem;
}

.footer-contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #8b5cf6;
}

.footer-contact-item span:not(.footer-contact-label):not(.footer-contact-icon) {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-cta {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem; /* Réduit de 2rem à 1.5rem */
    padding-bottom: 1rem; /* Ajout d'un padding bottom */
    margin-bottom: 1rem; /* Ajout d'une marge en bas */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 0.5rem; /* Espacement supplémentaire pour les liens du footer-bottom */
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #8b5cf6;
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container, .wide-container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 120px;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(220, 38, 38, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-links a:hover {
        background: rgba(220, 38, 38, 0.05);
        transform: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-text .subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .dashboard-preview {
        transform: none;
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 10px;
    }
    
    .stat-card {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 2rem;
        margin: 0;
    }
    
    .diff-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 10px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 10px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin: 0;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 10px;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .pricing-card {
        margin: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-item strong {
        min-width: auto;
        margin-bottom: 0.2rem;
    }

    /* Plus d'espace en bas du main-content sur mobile */
    .main-content {
        padding: 3rem 0 6rem 0; /* Encore plus d'espace en bas sur mobile */
    }
    
    /* Footer plus compact sur mobile */
    .footer {
        padding: 2.5rem 0 1rem 0; /* Encore plus compact sur mobile */
    }
    
    /* Repositionnement de la flèche sur mobile pour éviter les conflits */
    .back-to-top {
        bottom: 1rem; /* Plus bas sur mobile */
        right: 1.5rem; /* Légèrement plus à gauche */
        width: 45px; /* Légèrement plus petit */
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* S'assurer que le footer-bottom a assez d'espace */
    .footer-bottom {
        padding-top: 1.5rem; /* Réduit de 2rem à 1.5rem */
        padding-bottom: 1rem; /* Ajout d'un padding bottom */
        margin-bottom: 1rem; /* Ajout d'une marge en bas */
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Espacement supplémentaire pour les liens du footer-bottom */
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-section h4 {
        margin-bottom: 1.2rem;
    }
    
    .footer-links li {
        justify-content: flex-start;
    }
    
    .footer-contact-info {
        text-align: left;
        max-width: 300px;
        margin: 0 auto 2rem auto;
    }
    
    .footer-contact-item {
        align-items: center;
        margin-bottom: 1rem;
        gap: 1rem;
    }
    
    .footer-contact-icon {
        flex-shrink: 0;
        width: 20px;
        text-align: center;
    }
    
    .footer-contact-item div {
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-contact-label {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    
    .footer-contact-item a,
    .footer-contact-item span:not(.footer-contact-label):not(.footer-contact-icon) {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .footer-stats {
        justify-content: center;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .header h1 {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin: 0 10px 2rem;
    }
    
    .faq-container {
        padding: 0 10px;
    }
    
    .faq-item {
        margin: 0 0 1rem 0;
    }
    
    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .cta-section .container {
        padding: 0 15px;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    
    .cta-section p {
        font-size: 1.1rem;
        padding: 0 10px;
    }
}

/* Ajustement pour les très petits écrans */
@media (max-width: 480px) {
    .main-content {
        padding: 3rem 0 7rem 0; /* Encore plus d'espace sur très petits écrans */
    }
    
    .back-to-top {
        bottom: 0.8rem;
        right: 1rem;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

.section-container {
    position: relative;
}

.section-container::before {
    content: '';
    display: block;
    height: 80px;
    margin-top: -80px;
    visibility: hidden;
}


/* ===== BANDEAU COOKIES ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(51, 65, 85, 0.98));
    backdrop-filter: blur(10px);
    border-top: 2px solid;
    border-image: linear-gradient(135deg, #dc2626, #8b5cf6) 1;
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hide {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cookie-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-description {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.cookie-description a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-description a:hover {
    color: #8b5cf6;
}

.cookie-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    justify-content: center;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: #cbd5e1;
    border: 1px solid rgba(203, 213, 225, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(203, 213, 225, 0.1);
    color: white;
}

.cookie-btn-settings {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 0.8rem;
    padding: 8px 16px;
}

.cookie-btn-settings:hover {
    background: rgba(148, 163, 184, 0.1);
    color: #cbd5e1;
}

/* ===== MODAL PARAMÈTRES COOKIES ===== */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: #f1f5f9;
    color: #dc2626;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 3px solid #dc2626;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-title {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 24px;
    background: #cbd5e1;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle.active {
    background: linear-gradient(135deg, #dc2626, #8b5cf6);
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cookie-toggle.active::after {
    transform: translateX(26px);
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

/* ===== RESPONSIVE COOKIES ===== */
@media (max-width: 768px) {
    .cookie-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: auto;
    }
    
    .cookie-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}