        /* --- VARIABLES CSS & RESET --- */
        :root {
            --primary: #2A9D8F;       /* Vert d'eau rassurant */
            --primary-dark: #21867a;
            --secondary: #EAC14D;     /* Jaune du logo "À vos papattes" */
            --accent: #E76F51;        /* Terracotta chaleureux */
            --logo-yellow: #EAC14D;   /* Jaune officiel du logo */
            --bg-light: #FFFEF8;      /* Fond légèrement crème (harmonieux avec le logo) */
            --bg-white: #FFFFFF;
            --text-dark: #264653;     /* Texte principal */
            --text-gray: #666666;
            --radius: 16px;           /* Coins arrondis "friendly" */
            --shadow: 0 10px 30px rgba(0,0,0,0.08);
            --container-width: 1200px;
        }

        /* Mode sombre */
        [data-theme="dark"] {
            --bg-light: #1a1a2e;
            --bg-white: #16213e;
            --text-dark: #eaeaea;
            --text-gray: #b0b0b0;
            --shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        [data-theme="dark"] .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        }

        [data-theme="dark"] .service-card,
        [data-theme="dark"] .price-card,
        [data-theme="dark"] .testimonial-card,
        [data-theme="dark"] .pet-card {
            background: var(--bg-white);
        }

        [data-theme="dark"] footer {
            background-color: #0f0f1a;
        }

        [data-theme="dark"] .contact-info {
            background-color: #0f3d38;
        }

        [data-theme="dark"] .contact-container {
            background-color: #145249;
        }

        /* Transition douce pour le changement de thème */
        body, header, .service-card, .price-card, .testimonial-card, 
        .pet-card, .contact-form, footer {
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Bouton toggle thème */
        .theme-toggle {
            background: none;
            border: 2px solid var(--primary);
            border-radius: 50%;
            width: 42px;
            height: 42px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            transition: all 0.3s;
            margin-right: 10px;
        }

        .theme-toggle:hover {
            background-color: var(--primary);
            color: white;
            transform: rotate(20deg);
        }

        .nav-right {
            display: flex;
            align-items: center;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Fredoka', sans-serif; /* Police aux coins arrondis */
            font-weight: 600;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s ease;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
            border-radius: var(--radius);
        }

        /* --- LAYOUT UTILITIES --- */
        .container {
            width: 90%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 15px;
        }

        .section-padding {
            padding: 80px 0;
            position: relative;
        }

        .text-center { text-align: center; }
        
        .btn {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            border: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 157, 143, 0.4);
        }

        .btn-secondary {
            background-color: var(--accent);
            color: white;
        }

        .btn-secondary:hover {
            background-color: #d65b3b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 111, 81, 0.4);
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto 3rem auto;
        }

        /* --- ILLUSTRATIONS SVG DÉCORATIVES --- */
        .paw-pattern {
            position: absolute;
            opacity: 0.05;
            pointer-events: none;
        }

        .floating-pet {
            position: absolute;
            pointer-events: none;
            z-index: 0;
        }

        /* Animation flottante */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(3deg); }
        }

        @keyframes floatReverse {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(15px) rotate(-3deg); }
        }

        @keyframes pawWalk {
            0% { opacity: 0.3; transform: scale(0.8); }
            50% { opacity: 0.6; transform: scale(1); }
            100% { opacity: 0.3; transform: scale(0.8); }
        }

        .float-animation {
            animation: float 4s ease-in-out infinite;
        }

        .float-reverse-animation {
            animation: floatReverse 5s ease-in-out infinite;
        }

        /* --- HEADER & NAV --- */
        header {
            background-color: var(--bg-white);
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 18px 0;
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 0;
            }
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Fredoka', sans-serif;
            font-size: 1.8rem;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            gap: 15px;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-img {
            height: 85px;
            width: auto;
            border-radius: 12px;
            object-fit: contain;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(234, 193, 77, 0.3);
        }

        .logo-img:hover {
            box-shadow: 0 6px 20px rgba(234, 193, 77, 0.5);
        }

        .logo-text {
            font-weight: 600;
            white-space: nowrap;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @media (max-width: 968px) {
            .logo-text {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 768px) {
            .logo-img {
                height: 70px;
                border-radius: 10px;
            }

            .logo {
                font-size: 1.5rem;
                gap: 12px;
            }
        }

        @media (max-width: 480px) {
            .logo-img {
                height: 65px;
            }

            .logo-text {
                font-size: 0.9rem;
            }
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            font-weight: 600;
            color: var(--text-dark);
        }

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

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

        /* --- HERO SECTION --- */
        .hero {
            background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            flex: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-gray);
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-image {
            flex: 1;
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Forme organique */
            box-shadow: var(--shadow);
            animation: morph 8s ease-in-out infinite;
            object-fit: cover;
        }

        @keyframes morph {
            0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
            50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
            100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
        }

        /* Décors Hero */
        .hero-deco-cat {
            position: absolute;
            right: -50px;
            bottom: 10%;
            width: 120px;
            opacity: 0.15;
            animation: float 6s ease-in-out infinite;
        }

        .hero-deco-dog {
            position: absolute;
            left: -30px;
            top: 20%;
            width: 100px;
            opacity: 0.12;
            animation: floatReverse 5s ease-in-out infinite;
        }

        .hero-paws {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%232A9D8F' opacity='0.08'%3E%3Cpath d='M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z'/%3E%3C/svg%3E");
            background-size: 50px;
            background-repeat: repeat-x;
            opacity: 0.5;
        }

        /* --- FEATURES / SERVICES --- */
        .services-section {
            position: relative;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .service-card {
            background: var(--bg-white);
            padding: 40px 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100px;
            height: 100px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%232A9D8F' opacity='0.05'%3E%3Cpath d='M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z'/%3E%3C/svg%3E");
            background-size: contain;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .icon-box {
            width: 80px;
            height: 80px;
            background-color: rgba(42, 157, 143, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            color: var(--primary);
            font-size: 2rem;
        }

        .service-card h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        /* Illustration décorative entre les services */
        .services-deco {
            position: absolute;
            width: 150px;
            opacity: 0.08;
            z-index: 1;
        }

        .services-deco-left {
            left: -50px;
            top: 50%;
            transform: translateY(-50%);
        }

        .services-deco-right {
            right: -50px;
            bottom: 20%;
        }

        /* --- PETS GALLERY SECTION --- */
        .pets-gallery {
            background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .pets-strip {
            display: flex;
            gap: 30px;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .pet-illustration {
            flex-shrink: 0;
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-white);
            border-radius: 50%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            padding: 20px;
        }

        .pet-illustration svg {
            width: 100%;
            height: 100%;
        }

        /* --- ABOUT --- */
        .about {
            background-color: var(--bg-white);
            position: relative;
            overflow: hidden;
        }

        .about .container {
            display: flex;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .about-img {
            flex: 1;
            position: relative;
        }

        .about-img img {
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        /* Badge décoratif sur l'image */
        .about-img-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            animation: float 3s ease-in-out infinite;
        }

        .about-img-badge svg {
            width: 60px;
            height: 60px;
        }

        .about-content {
            flex: 1;
        }

        .about-tags {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .tag {
            background-color: var(--secondary);
            color: var(--text-dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
        }

        /* Décor about */
        .about-deco {
            position: absolute;
            right: 5%;
            top: 10%;
            width: 200px;
            opacity: 0.06;
        }

        /* --- PRICING --- */
        .pricing-section {
            position: relative;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        .price-card {
            background: var(--bg-white);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            position: relative;
            border: 2px solid transparent;
        }

        .price-card.popular {
            border-color: var(--primary);
            transform: scale(1.05);
            z-index: 2;
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
        }

        .price-header h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .price {
            font-size: 2.5rem;
            font-family: 'Fredoka', sans-serif;
            color: var(--primary-dark);
            font-weight: 700;
        }

        .price span {
            font-size: 1rem;
            color: var(--text-gray);
            font-family: 'Nunito', sans-serif;
            font-weight: 400;
        }

        .price-features {
            margin: 30px 0;
            text-align: left;
        }

        .price-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .price-features i {
            color: var(--primary);
        }

        /* Illustration Prix */
        .price-card-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 50px;
            height: 50px;
            opacity: 0.15;
        }

        /* --- TESTIMONIALS --- */
        .testimonials {
            background-color: var(--bg-white);
            position: relative;
            overflow: hidden;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background-color: var(--bg-light);
            padding: 30px;
            border-radius: var(--radius);
            position: relative;
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: #dceceb;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Pet type badge */
        .pet-type-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: var(--secondary);
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-top: 5px;
        }

        .pet-type-badge svg {
            width: 14px;
            height: 14px;
        }

        /* Décor témoignages */
        .testimonials-deco {
            position: absolute;
            left: -80px;
            bottom: 10%;
            width: 200px;
            opacity: 0.05;
        }

        /* --- CUTE PETS SECTION --- */
        .cute-pets {
            padding: 80px 0;
            background: linear-gradient(135deg, #E9C46A15 0%, #2A9D8F10 100%);
            position: relative;
            overflow: hidden;
        }

        .pets-showcase {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .pet-card {
            background: var(--bg-white);
            padding: 30px;
            border-radius: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
            width: 200px;
        }

        .pet-card:hover {
            transform: translateY(-10px) rotate(2deg);
        }

        .pet-card svg {
            width: 100px;
            height: 100px;
            margin-bottom: 15px;
        }

        .pet-card h4 {
            color: var(--primary-dark);
            margin-bottom: 5px;
        }

        .pet-card p {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        /* --- CONTACT --- */
        .contact-section {
            position: relative;
        }

        .contact-container {
            background-color: var(--primary);
            border-radius: var(--radius);
            overflow: hidden;
            display: flex;
            box-shadow: var(--shadow);
            position: relative;
            z-index: 2;
        }

        .contact-info {
            background-color: var(--primary-dark);
            color: white;
            padding: 50px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .contact-info::after {
            content: '';
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='white' opacity='0.1'%3E%3Cpath d='M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z'/%3E%3C/svg%3E");
            background-size: contain;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .contact-form {
            background-color: var(--bg-white);
            padding: 50px;
            flex: 1.5;
        }

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

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

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #eee;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }

        /* Décor contact */
        .contact-deco {
            position: absolute;
            right: 10%;
            top: -60px;
            width: 120px;
            opacity: 0.1;
            animation: float 4s ease-in-out infinite;
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 50px 0 20px;
            position: relative;
            overflow: hidden;
        }

        .footer-pets {
            position: absolute;
            top: 20px;
            right: 10%;
            display: flex;
            gap: 20px;
            opacity: 0.1;
        }

        .footer-pets svg {
            width: 60px;
            height: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .social-icons a:hover {
            background-color: var(--primary);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.5rem; }
            .hero .container { flex-direction: column-reverse; text-align: center; }
            .hero p { margin: 0 auto 30px auto; }
            .about .container { flex-direction: column; }
            .price-card.popular { transform: none; }
            .hero-deco-cat, .hero-deco-dog { display: none; }
            .about-deco { display: none; }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background-color: var(--bg-white);
                flex-direction: column;
                padding: 40px 0;
                box-shadow: 0 10px 10px rgba(0,0,0,0.05);
                transition: 0.3s ease-in-out;
            }

            .nav-links.active { left: 0; }
            
            .contact-container { flex-direction: column; }
            
            .section-title { font-size: 2rem; }

            .pets-showcase { gap: 20px; }
            .pet-card { width: 150px; padding: 20px; }
            .pet-card svg { width: 70px; height: 70px; }

            .pets-strip { animation-duration: 20s; }

            .logo { font-size: 1.4rem; } /* Ajustement logo mobile */
        }

        /* --- ACCESSIBILITÉ : FOCUS KEYBOARD --- */
        /* Indicateur de focus visible pour la navigation au clavier */
        *:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 3px;
            border-radius: 4px;
        }

        /* Focus spécifique pour les boutons */
        button:focus-visible,
        .btn:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 3px;
        }

        /* Focus pour les champs de formulaire */
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }

        /* Skip to content link pour accessibilité (optionnel) */
        .skip-to-content {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary);
            color: white;
            padding: 8px;
            text-decoration: none;
            z-index: 100;
        }

        .skip-to-content:focus {
            top: 0;
        }

        /* --- FAQ SECTION --- */
        .faq-section {
            background-color: var(--bg-light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--bg-white);
            border-radius: var(--radius);
            margin-bottom: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.12);
        }

        .faq-item[open] {
            border-left: 4px solid var(--primary);
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
            list-style: none;
            user-select: none;
            transition: background-color 0.2s;
        }

        .faq-question::-webkit-details-marker {
            display: none;
        }

        .faq-question:hover {
            background-color: var(--bg-light);
        }

        .faq-question i {
            color: var(--primary);
            transition: transform 0.3s ease;
            font-size: 0.9rem;
        }

        .faq-item[open] .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 25px 20px 25px;
            color: var(--text-gray);
            line-height: 1.8;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-answer p {
            margin-bottom: 15px;
        }

        .faq-answer ul {
            list-style: none;
            padding-left: 0;
        }

        .faq-answer ul li {
            padding: 5px 0;
            padding-left: 30px;
            position: relative;
        }

        .faq-answer ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }

        /* --- MAP SECTION --- */
        .map-section {
            background-color: var(--bg-white);
        }

        .map-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            align-items: start;
        }

        #service-map {
            height: 450px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            z-index: 1;
        }

        .map-info {
            background-color: var(--bg-light);
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .map-info h3 {
            color: var(--primary-dark);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .cities-list {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .cities-list li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-dark);
        }

        .cities-list i {
            color: var(--primary);
            font-size: 0.9rem;
        }

        .map-note {
            background-color: var(--secondary);
            padding: 15px;
            border-radius: 8px;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        /* Responsive carte */
        @media (max-width: 992px) {
            .map-container {
                grid-template-columns: 1fr;
            }

            #service-map {
                height: 350px;
            }
        }

        /* --- GALLERY SECTION --- */
        .gallery-section {
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

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

        .gallery-overlay h4 {
            color: white;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .gallery-overlay p {
            color: rgba(255,255,255,0.9);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            align-items: center;
            justify-content: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            border-radius: var(--radius);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 40px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            background: none;
            border: none;
            transition: color 0.3s;
        }

        .lightbox-close:hover {
            color: var(--secondary);
        }

        .lightbox-caption {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            background-color: rgba(0,0,0,0.7);
            padding: 15px 30px;
            border-radius: 25px;
        }
