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

        :root {
            --primary: #00b4d8;
            --secondary: #0077b6;
            --accent: #90e0ef;
            --dark: #03045e;
            --light: #caf0f8;
            --white: #ffffff;
            --gray: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, rgba(220, 222, 223, 0.925), rgba(188, 188, 189, 0.692)),
                        url('images/photo-1629909613654-28e377c37b09.jpeg') center/cover;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            background: rgba(255, 255, 255, 0.975);
            backdrop-filter: blur(10px);
            padding: 10px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logokenzi{
            width: 150px;
        }

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

        nav a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--primary);
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-bg.active {
            opacity: 1;
        }

        .hero-bg:nth-child(1) {
            background: linear-gradient(135deg, rgba(5, 48, 178, 0.642), rgba(26, 106, 196, 0.587)),
                        url('images/photo-1629909613654-28e377c37b09.jpeg') center/cover;
        }

        .hero-bg:nth-child(2) {
            background: linear-gradient(135deg, rgba(0, 118, 182, 0.642), rgba(3, 5, 94, 0.587)),
                        url('images/photo-1606811841689-23dfddce3e95.jpeg') center/cover;
        }

         .hero-bg:nth-child(3) {
            background: linear-gradient(135deg, rgba(0, 118, 182, 0.642), rgba(3, 5, 94, 0.587)),
                        url('images/cabinet-dentaire-26.jpg') center/cover;
        }

         .hero-bg:nth-child(4) {
            background: linear-gradient(135deg, rgba(0, 118, 182, 0.642), rgba(3, 5, 94, 0.587)),
                        url('images/OIP\ \(2\).webp') center/cover;
        }

         .hero-bg:nth-child(5) {
            background: linear-gradient(135deg, rgba(0, 118, 182, 0.642), rgba(3, 5, 94, 0.587)),
                        url('images/OIP\ \(3\).webp') center/cover;
        }
         .hero-bg:nth-child(6) {
            background: linear-gradient(135deg, rgba(0, 118, 182, 0.642), rgba(3, 5, 94, 0.587)),
                        url('images/dentistry-224.webp') center/cover;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            padding: 2rem;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: white;
            color: var(--primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

                /* Variables CSS */
        :root {
            --primary-color: #2a7de1;
            --secondary-color: #1a5bb5;
            --accent-color: #e67e22;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* Styles généraux */
       

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
            color: var(--primary-color);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }

        /* Section À Propos */
        .about {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--white) 0%, #c9cacdd1 100%);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(42, 125, 225, 0.1) 0%, rgba(42, 125, 225, 0) 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-text {
            padding-right: 20px;
        }

        .about-text h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
        }

        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }

        .about-text p:first-of-type {
            font-weight: 600;
            color: var(--text-color);
        }

        /* Section Image avec animation */
        .about-image {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .image-container {
            position: relative;
            width: 300px;
            height: 300px;
            margin-bottom: 30px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            animation: float 6s ease-in-out infinite;
        }

        .image-container::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-color));
            border-radius: 50%;
            z-index: -1;
            animation: rotate 10s linear infinite;
        }

        .image-container::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            right: 3px;
            bottom: 3px;
            background-color: var(--white);
            border-radius: 50%;
            z-index: -1;
        }

        .image-container:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            transition: var(--transition);
        }

        .image-container:hover img {
            transform: scale(1.05);
        }

        .doctor-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-align: center;
            margin-top: 20px;
            padding: 15px 30px;
            background: linear-gradient(135deg, var(--white) 0%, #f0f7ff 100%);
            border-radius: 50px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .doctor-name::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
            transition: var(--transition);
        }

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

        .doctor-name:hover::before {
            left: 100%;
        }

        /* Certifications */
        .certifications {
            max-width: 1200px;
            margin: 60px auto 0;
            padding: 40px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .certifications h3 {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--secondary-color);
        }

        .cert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .cert-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: var(--light-bg);
            border-radius: 12px;
            transition: var(--transition);
        }

        .cert-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }

        .cert-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            background: rgba(42, 125, 225, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cert-text h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--secondary-color);
        }

        .cert-text p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
        }

        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-text {
                padding-right: 0;
                text-align: center;
            }

            .about-text h2::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .about {
                padding: 60px 15px;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-text h2 {
                font-size: 1.8rem;
            }

            .image-container {
                width: 250px;
                height: 250px;
            }

            .doctor-name {
                font-size: 1.5rem;
            }

            .certifications {
                padding: 30px 20px;
            }

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

        @media (max-width: 480px) {
            .image-container {
                width: 200px;
                height: 200px;
            }

            .doctor-name {
                font-size: 1.3rem;
                padding: 12px 25px;
            }
        }

        

        /* Services Section */
        .services {
            padding: 55px 3%;
             background: linear-gradient(135deg, rgba(220, 238, 248, 0.82), rgba(188, 188, 189, 0.692)),
                        url('images/dentistry-224.webp') center/cover;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary);
            margin: 1rem auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .service-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-image {
            transform: scale(1.1);
        }

        .service-content {
            padding: 2rem;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

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

        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .service-card:hover .service-icon {
            animation: rotate 0.6s ease;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .service-card h3 {
            color: var(--dark);
            margin-bottom: 1rem;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 50px 3%;
             background: linear-gradient(135deg, rgba(207, 211, 215, 0.932), rgba(162, 162, 165, 0.936)),
                        url('images/photo-1629909613654-28e377c37b09.jpeg') center/cover;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 3rem auto 0;
        }

        .feature-item {
            text-align: center;
            padding: 30px;
        }

      
       
       

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, yellow, black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            color: white;
            transition: all 0.3s;
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.1) rotate(360deg);
        }

        /* Motivational Section */
        .motivation {
            padding: 150px 5%;
            background: linear-gradient(135deg, rgba(0, 180, 216, 0.708), rgba(0, 118, 182, 0.699)),
                        url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?w=1600') center/cover fixed;
            color: white;
            text-align: center;
        }

        .motivation h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .motivation p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Statistics */
        .statistics {
            padding: 100px 5%;
            background: var(--dark);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 3rem auto 0;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Gallery */
        .gallery {
            padding: 50px 5%;
            background: linear-gradient(135deg, rgba(135, 137, 138, 0.349), rgba(157, 158, 158, 0.326));

        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            max-width: 1400px;
            margin: 3rem auto 0;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 300px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 2rem;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

       
        /* Testimonials */
        .testimonials {
            padding: 70px 5%;
            background: linear-gradient(135deg, rgba(237, 152, 23, 0.434), rgba(244, 66, 66, 0.466));
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 3rem auto;
            background: rgb(255, 255, 255);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            color: #555;
            margin-bottom: 2rem;
        }

        .testimonial-author {
            font-weight: bold;
            color: var(--primary);
        }

        .stars {
            color: #ffd700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        /* Blog */
        .blog {
            padding: 70px 5%;
            background: rgba(197, 196, 196, 0.728);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 3rem auto 0;
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

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

       .blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

        .blog-content {
            padding: 1.5rem;
        }

        .blog-date {
            color: var(--primary);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .blog-card h3 {
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s;
        }

        .read-more:hover {
            gap: 10px;
        }


    /* ==================== Variables & Reset ==================== */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --accent-color: #8b5cf6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}



/* ==================== Contact Section ==================== */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: backgroundMove 20s linear infinite;
}

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

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* ==================== Animations d'entrée ==================== */
.fade-in {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== Contact Info Side ==================== */
.contact-info {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) rotateY(-15deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

.contact-info.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.3); }
    50% { text-shadow: 2px 2px 30px rgba(255, 255, 255, 0.6); }
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 20px;
    transition: var(--transition);
    transform-style: preserve-3d;
    cursor: pointer;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) scale(1.02) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform-style: preserve-3d;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotateZ(0deg); }
    50% { transform: translateY(-10px) rotateZ(5deg); }
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-text h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* ==================== Map Section ==================== */
.map-integrated {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    animation: mapReveal 1s ease-out 0.3s both;
}

@keyframes mapReveal {
    from {
        opacity: 0;
        transform: scale(0.9) rotateX(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateX(0);
    }
}

.map-integrated h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.map-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.map-direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.map-direction-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==================== Emergency Info ==================== */
.emergency-info {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    animation: emergencyPulse 2s ease-in-out infinite;
}

@keyframes emergencyPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(239, 68, 68, 0.8);
        transform: scale(1.02);
    }
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: emergencyRotate 3s linear infinite;
}

@keyframes emergencyRotate {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.emergency-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.emergency-text h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.emergency-text p {
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== Appointment Form ==================== */
.appointment-form {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.8s ease-out;
    transform-style: preserve-3d;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) rotateY(15deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

.appointment-form:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.appointment-form h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.appointment-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% { width: 60px; }
    50% { width: 100px; }
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px) scale(1.01);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-submit {
    text-align: center;
    margin-top: 35px;
}

.submit-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.submit-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.submit-btn i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .appointment-form {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .appointment-form {
        padding: 30px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .submit-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .appointment-form h3 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .map-integrated {
        padding: 20px;
    }
}

/* ==================== Animations 3D avancées ==================== */
@keyframes rotate3D {
    0% { transform: perspective(1000px) rotateY(0deg); }
    100% { transform: perspective(1000px) rotateY(360deg); }
}

.contact-icon:hover {
    animation: rotate3D 1s ease-in-out;
}

/* Animation de profondeur pour les éléments au survol */
.contact-item,
.appointment-form,
.map-integrated {
    perspective: 1000px;
}

/* Effet de parallaxe léger au scroll */
@media (prefers-reduced-motion: no-preference) {
    .contact-section {
        animation: parallaxEffect 20s ease-in-out infinite;
    }
    
    @keyframes parallaxEffect {
        0%, 100% { transform: translateZ(0); }
        50% { transform: translateZ(10px); }
    }
}
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 5%;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
        }

        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .footer-section p, .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-section a:hover {
            color: var(--accent);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }
         .lowcostoffices{
            text-decoration: none;
            color: #f4fff9;
        }

          /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: bounce 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #128c7e;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }


        /* Responsive */
        @media (max-width: 768px) {
                   body, html {
        max-width: 100%;
        overflow-x: hidden;
    }
            nav ul {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: white;
                width: 100%;
                padding: 2rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transition: left 0.3s;
            }

            nav ul.active {
                left: 0;
            }

            .menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }
         

            .motivation h2 {
                font-size: 2rem;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }