/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --red: #E60000;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --dark-gray: #333;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    opacity: 0.5;
}

a:hover ~ .cursor,
button:hover ~ .cursor {
    transform: scale(2);
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    .cursor,
    .cursor-follower {
        display: none;
    }
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}

.logo span {
    color: var(--red);
}

#nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

#nav a {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

#nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}

#nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-urgence {
    background: var(--red);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-urgence svg.icon {
    width: 18px;
    height: 18px;
}

.btn-urgence:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 0, 0, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1625047509168-a7026f36de04?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.badge .icon {
    font-size: 20px;
}

.badge svg.icon {
    width: 20px;
    height: 20px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn svg.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(230, 0, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(230, 0, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.hero-address {
    font-size: 18px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-address svg.icon {
    width: 20px;
    height: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 6px;
    height: 10px;
    background: var(--white);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

/* Services Section */
#services {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--red);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

svg.service-icon {
    width: 60px;
    height: 60px;
    stroke: var(--red);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--black);
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
}

.btn-link {
    color: var(--red);
    font-weight: 700;
    transition: var(--transition);
}

.btn-link:hover {
    transform: translateX(5px);
    display: inline-block;
}

.service-note {
    text-align: center;
    background: #FFF9E6;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-note svg.icon {
    width: 24px;
    height: 24px;
    stroke: #FFD700;
    flex-shrink: 0;
}

/* Urgence Section */
#urgence {
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.urgence-parallax {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}

.urgence-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(115, 107, 107, 0.75) 100%);
    z-index: 1;
}

.urgence-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(230, 0, 0, 0.2) 0%, transparent 70%);
}

.urgence-icon {
    font-size: 80px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

svg.urgence-icon {
    width: 80px;
    height: 80px;
    stroke: var(--white);
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(230, 0, 0, 0.8));
}

.pulse-slow {
    animation: pulseSlow 3s infinite;
}

@keyframes pulseSlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

#urgence h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.urgence-subtitle {
    font-size: 20px;
    margin-bottom: 60px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

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

.urgence-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.urgence-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.urgence-card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

svg.urgence-card-icon {
    width: 50px;
    height: 50px;
    stroke: var(--white);
    margin: 0 auto 20px;
}

.urgence-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.btn-urgence-large {
    background: var(--red);
    color: var(--white);
    padding: 25px 60px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(230, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.btn-urgence-large svg.icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-urgence-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(230, 0, 0, 0.7);
}

.phone-number {
    display: block;
    font-size: 28px;
    margin-top: 10px;
    letter-spacing: 2px;
}

.urgence-reassurance {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.urgence-reassurance svg.icon {
    width: 18px;
    height: 18px;
}

#urgence .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .urgence-parallax {
        background-attachment: scroll;
    }
}

/* À Propos Section */
#apropos {
    padding: 100px 0;
    background: var(--gray);
}

.apropos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.apropos-text h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    margin-bottom: 25px;
    color: var(--black);
}

.apropos-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.apropos-list {
    list-style: none;
    margin: 30px 0;
}

.apropos-list li {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
}

.apropos-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.apropos-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

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

/* Avantages Section */
#avantages {
    padding: 100px 0;
    background: var(--white);
}

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

.avantage-card {
    background: var(--gray);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.avantage-card:hover {
    background: var(--white);
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.avantage-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.avantage-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black);
}

.avantage-card h4 {
    font-size: 16px;
    color: var(--red);
    margin-bottom: 15px;
    font-weight: 600;
}

.avantage-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Galerie Section */
#galerie {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

#galerie .section-title {
    color: var(--white);
}

#galerie .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Avis Section */
#avis {
    padding: 100px 0;
    background: var(--white);
}

.avis-carousel {
    overflow: hidden;
    margin-bottom: 40px;
}

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

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

.avis-track:hover {
    animation-play-state: paused;
}

.avis-card {
    min-width: 350px;
    background: var(--gray);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.stars {
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFD700;
}

.avis-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.avis-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.avis-author strong {
    color: var(--black);
    font-size: 16px;
}

.avis-author span {
    color: #999;
    font-size: 14px;
}

.avis-rating {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
}

#avis .btn-secondary {
    display: inline-block;
    margin: 0 auto;
    color: var(--black);
    border-color: var(--black);
}

#avis .btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

.avis-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

/* Contact Section */
#contact {
    padding: 100px 0;
    background: var(--gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    margin-bottom: 40px;
    color: var(--black);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-item a {
    color: var(--red);
    font-weight: 600;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

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

.contact-buttons .btn-secondary {
    color: var(--black);
    border-color: var(--black);
}

.contact-buttons .btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: var(--transition);
    color: var(--dark-gray);
}

.social-links a svg {
    width: 28px;
    height: 28px;
}

.social-links a:hover {
    transform: scale(1.2);
    color: var(--red);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 450px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

.map-info {
    background: var(--white);
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--red);
}

.tagline {
    color: var(--red);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--red);
    padding-left: 5px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8);
}

.footer-social a svg {
    width: 28px;
    height: 28px;
}

.footer-social a:hover {
    transform: scale(1.2);
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--red);
}

/* Mobile CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--red);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 5px 25px rgba(230, 0, 0, 0.5);
    z-index: 999;
    animation: pulse 2s infinite;
}

/* Responsive Design */

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    #nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        padding: 40px 0;
        transition: var(--transition);
        overflow-y: auto;
    }

    #nav.active {
        left: 0;
    }

    #nav ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    #nav a {
        font-size: 16px;
    }

    .menu-toggle {
        display: flex;
    }

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

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

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

    .btn-urgence {
        padding: 10px 20px;
        font-size: 12px;
    }

    .btn-urgence svg.icon {
        width: 16px;
        height: 16px;
    }

    #services,
    #apropos,
    #avantages,
    #galerie,
    #avis,
    #contact {
        padding: 60px 0;
    }

    .apropos-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .urgence-grid {
        gap: 30px;
    }

    .btn-urgence-large {
        padding: 20px 40px;
        font-size: 18px;
    }

    .phone-number {
        font-size: 24px;
    }
}

/* Mobile landscape and below (768px) */
@media (max-width: 768px) {
    #header .container {
        padding: 12px 15px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .header-cta {
        gap: 10px;
    }

    .btn-urgence {
        padding: 8px 14px;
        font-size: 10px;
        gap: 4px;
        letter-spacing: 0.5px;
    }

    .btn-urgence svg.icon {
        width: 14px;
        height: 14px;
    }

    #hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: clamp(28px, 6vw, 40px);
        margin-bottom: 15px;
    }

    .hero-content h2 {
        font-size: clamp(14px, 3vw, 18px);
        margin-bottom: 30px;
    }

    .trust-badges {
        gap: 10px;
        margin-bottom: 30px;
    }

    .badge {
        padding: 10px 15px;
        font-size: 12px;
    }

    .badge svg.icon {
        width: 16px;
        height: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-bottom: 25px;
    }

    .btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 14px;
        justify-content: center;
    }

    .btn svg.icon {
        width: 18px;
        height: 18px;
    }

    .hero-address {
        font-size: 14px;
        flex-wrap: wrap;
    }

    .scroll-indicator {
        display: none;
    }

    .section-title {
        font-size: clamp(28px, 5vw, 36px);
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .services-grid,
    .urgence-grid,
    .avantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card,
    .urgence-card,
    .avantage-card {
        padding: 30px 25px;
    }

    .service-card h3,
    .urgence-card h3,
    .avantage-card h3 {
        font-size: 20px;
    }

    .service-note {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        font-size: 14px;
    }

    #urgence {
        padding: 60px 0;
        min-height: auto;
    }

    svg.urgence-icon {
        width: 60px;
        height: 60px;
    }

    #urgence h2 {
        font-size: clamp(24px, 5vw, 32px);
    }

    .urgence-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .btn-urgence-large {
        padding: 18px 30px;
        font-size: 16px;
        flex-direction: column;
        text-align: center;
    }

    .btn-urgence-large svg.icon {
        width: 20px;
        height: 20px;
    }

    .phone-number {
        font-size: 20px;
        margin-top: 8px;
    }

    .urgence-reassurance {
        font-size: 14px;
        gap: 6px;
    }

    .urgence-reassurance svg.icon {
        width: 16px;
        height: 16px;
    }

    .apropos-text h2 {
        font-size: clamp(24px, 4vw, 32px);
    }

    .apropos-text p {
        font-size: 15px;
    }

    .apropos-list li {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .avis-card {
        min-width: 280px;
        padding: 25px 20px;
    }

    .avis-card p {
        font-size: 14px;
    }

    .avis-rating {
        font-size: 20px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 25px;
    }

    .contact-icon {
        font-size: 32px;
    }

    .contact-item h3 {
        font-size: 18px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .contact-buttons .btn {
        width: 100%;
    }

    .contact-map {
        min-height: 350px;
    }

    .contact-map iframe {
        min-height: 350px;
    }

    .mobile-cta {
        display: block;
        padding: 12px 24px;
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-social,
    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        font-size: 14px;
    }
}

/* Small mobile (480px) */
@media (max-width: 480px) {
    #header .container {
        padding: 10px 12px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .header-cta {
        gap: 8px;
    }

    .btn-urgence {
        padding: 6px 12px;
        font-size: 9px;
        gap: 3px;
        border-radius: 30px;
    }

    .btn-urgence svg.icon {
        width: 12px;
        height: 12px;
    }

    .menu-toggle {
        gap: 4px;
    }

    .menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content h2 {
        font-size: 14px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 8px;
    }

    .badge {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .service-card,
    .urgence-card,
    .avantage-card {
        padding: 25px 20px;
    }

    svg.service-icon {
        width: 50px;
        height: 50px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card li {
        font-size: 14px;
    }

    #urgence h2 {
        font-size: 22px;
    }

    .urgence-subtitle {
        font-size: 14px;
    }

    svg.urgence-icon {
        width: 50px;
        height: 50px;
    }

    svg.urgence-card-icon {
        width: 40px;
        height: 40px;
    }

    .btn-urgence-large {
        padding: 15px 25px;
        font-size: 14px;
    }

    .phone-number {
        font-size: 18px;
    }

    .urgence-reassurance {
        font-size: 12px;
    }

    .apropos-text h2 {
        font-size: 22px;
    }

    .apropos-text p,
    .apropos-list li {
        font-size: 14px;
    }

    .avantage-card h3 {
        font-size: 18px;
    }

    .avantage-card h4 {
        font-size: 14px;
    }

    .avantage-card p {
        font-size: 13px;
    }

    .avis-card {
        min-width: 260px;
        padding: 20px 15px;
    }

    .contact-info h2 {
        font-size: 22px;
    }

    .mobile-cta {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 13px;
    }

    .contact-map {
        min-height: 300px;
    }

    .contact-map iframe {
        min-height: 300px;
    }
}

/* Extra small devices (360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    #header .container {
        padding: 8px 10px;
    }

    .logo h1 {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .btn-urgence {
        padding: 5px 10px;
        font-size: 8px;
    }

    .btn-urgence svg.icon {
        width: 10px;
        height: 10px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .section-title {
        font-size: 22px;
    }

    .service-card,
    .urgence-card,
    .avantage-card {
        padding: 20px 15px;
    }

    .btn-urgence-large {
        padding: 12px 20px;
        font-size: 13px;
    }

    .phone-number {
        font-size: 16px;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Shining Stars Effect */
.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: shine 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes shine {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

#urgence .star {
    background: var(--red);
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.8);
}
