/* ==========================================
   PARALAXE - Stylesheet Principal
   ========================================== */

/* Reset & Variables */
:root {
    --primary-color: #0D47A1;      /* Bleu foncé du logo */
    --secondary-color: #00BCD4;     /* Bleu cyan du logo */
    --accent-color: #7CB342;        /* Vert lime du logo */
    --dark-color: #1A237E;          /* Bleu très foncé */
    --light-color: #f8fafc;
    --text-color: #37474F;          /* Gris bleuté */
    --border-color: #E0E0E0;
    --success-color: #7CB342;       /* Vert lime */
    --warning-color: #FFA726;
    --error-color: #EF5350;
    --gradient-primary: linear-gradient(135deg, #0D47A1 0%, #00BCD4 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(13, 71, 161, 0.9) 0%, rgba(0, 188, 212, 0.85) 100%);
    --shadow-sm: 0 1px 2px rgba(13, 71, 161, 0.08);
    --shadow-md: 0 4px 6px rgba(13, 71, 161, 0.12);
    --shadow-lg: 0 10px 15px rgba(13, 71, 161, 0.15);
    --shadow-xl: 0 20px 25px rgba(13, 71, 161, 0.2);
    --transition: all 0.3s ease;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

#header {
    background: #fff;
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

#header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin: 0;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-phone {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0D47A1 0%, #00BCD4 50%, #7CB342 100%);
    position: relative;
    padding-top: 80px;
    padding-bottom: 3rem;
    overflow: hidden;
    margin-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7CB342 0%, #00BCD4 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary-color);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid currentColor;
}

.btn-block {
    width: 100%;
    display: block;
}

/* ==========================================
   STATS SECTION
   ========================================== */

.stats-section {
    padding: 4rem 0;
    background: var(--light-color);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-item:hover .stat-number {
    color: var(--accent-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

/* Variantes de couleur pour les stats */
.stat-item:nth-child(2) .stat-number {
    color: var(--secondary-color);
}

.stat-item:nth-child(3) .stat-number {
    color: var(--accent-color);
}

.stat-item:nth-child(4) .stat-number {
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* ==========================================
   SECTIONS
   ========================================== */

section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--primary-color);
}

.about-text em {
    color: var(--secondary-color);
}

.about-values {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.value-item:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.value-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.95rem;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
}

.image-caption {
    position: absolute;
    bottom: -30px;
    left: -30px;
    right: 30px;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
}

.image-caption i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.image-caption p {
    font-style: italic;
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-section {
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #7CB342 0%, #00BCD4 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card ul {
    margin-bottom: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

.additional-services {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.additional-services h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.additional-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

.additional-item i {
    color: var(--success-color);
    font-size: 1.3rem;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */

.process-section {
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--border-color);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-color);
    line-height: 1.6;
}

/* ==========================================
   TEAM SECTION
   ========================================== */

.team-section {
    background: var(--light-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    background: var(--gradient-primary);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,112C960,117,1056,107,1152,90.7C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.info-card:hover {
    background: #fff;
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.info-card:hover i {
    background: linear-gradient(135deg, #7CB342 0%, #00BCD4 100%);
    transform: scale(1.05) rotate(-5deg);
}

.info-card i {
    font-size: 2.5rem;
    color: #fff;
    background: var(--gradient-primary);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-color);
}

.info-card a {
    color: var(--text-color);
    font-weight: 500;
}

.info-card a:hover {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    display: block;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--dark-color);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #7CB342 0%, #00BCD4 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-legal {
    margin-bottom: 1rem;
}

.footer-legal a {
    opacity: 0.8;
    margin: 0 0.5rem;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-legal span {
    opacity: 0.5;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.footer-bottom a {
    color: var(--accent-color);
}

.disclaimer {
    font-size: 0.85rem !important;
    opacity: 0.6 !important;
    max-width: 800px;
    margin: 1rem auto 0 !important;
}

/* ==========================================
   SCROLL TO TOP
   ========================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.scroll-top.show {
    display: flex;
}

/* ==========================================
   COOKIE CONSENT
   ========================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: #fff;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .image-caption {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .btn-phone {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ZONES DESSERVIES SECTION
   ========================================== */

.zones-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zone-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.zone-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.zone-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.zone-card:hover .zone-icon {
    background: linear-gradient(135deg, #7CB342 0%, #00BCD4 100%);
    transform: scale(1.1);
}

.zone-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.zone-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.zone-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.zones-footer {
    margin-top: 3rem;
    text-align: center;
}

.zones-notice {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-size: 1rem;
}

.zones-notice i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* ==========================================
   HEURES D'OUVERTURE SECTION
   ========================================== */

.heures-section {
    padding: 5rem 0;
    background: #fff;
}

.heures-content {
    margin-top: 3rem;
}

.heures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.heures-card {
    background: var(--light-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 3px solid transparent;
}

.heures-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.heures-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.heures-card:hover .heures-icon {
    background: linear-gradient(135deg, #7CB342 0%, #00BCD4 100%);
    transform: rotate(-5deg) scale(1.05);
}

.heures-icon i {
    font-size: 2rem;
    color: #fff;
}

.heures-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.heures-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.time-start,
.time-end {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.time-separator {
    font-size: 1.5rem;
    color: var(--text-color);
    opacity: 0.5;
}

.time-closed {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    opacity: 0.5;
}

.heures-status {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 1rem;
}

.heures-status.open {
    background: rgba(124, 179, 66, 0.15);
    color: var(--accent-color);
}

.heures-status.closed {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-color);
}

.heures-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-box-heures {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.info-box-heures i {
    font-size: 2.5rem;
    color: var(--primary-color);
    min-width: 50px;
}

.info-box-heures h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.info-box-heures p {
    color: var(--text-color);
    margin: 0;
}

.info-box-heures a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-box-heures a:hover {
    color: var(--accent-color);
}

/* ==========================================
   RESPONSIVE - ZONES & HEURES
   ========================================== */

@media (max-width: 768px) {
    .zones-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .heures-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .zones-notice {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }
    
    .info-box-heures {
        flex-direction: column;
        text-align: center;
    }
}
/* ==========================================
   LANGUAGE SWITCHER
   ========================================== */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
    border: 1px solid rgba(13, 71, 161, 0.25);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.lang-switcher a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(13, 71, 161, 0.55);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
}

.lang-switcher a .flag {
    font-size: 16px;
    line-height: 1;
    display: inline-block;
}

.lang-switcher a:first-child {
    border-right: 1px solid rgba(13, 71, 161, 0.18);
}

.lang-switcher a:hover {
    color: var(--primary-color);
    background: rgba(13, 71, 161, 0.06);
}

.lang-switcher a.active {
    color: var(--primary-color);
    background: rgba(13, 71, 161, 0.1);
    cursor: default;
    pointer-events: none;
}

/* Mobile */
@media (max-width: 768px) {
    .lang-switcher {
        position: absolute;
        top: 18px;
        right: 70px;
        margin-left: 0;
    }
    
    .lang-switcher a {
        padding: 5px 9px;
        font-size: 12px;
    }

    .lang-switcher a .flag {
        font-size: 14px;
    }
}
