/* Moove City - Index-specific styles (loaded after global.css) */

html {
    height: 100%;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--secondary-color);
    overflow-x: hidden;
    position: relative;
    padding-top: 118px;
    margin: 0;
    padding-bottom: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* body::before → inherited from global.css */

/* Pattern overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    background-image:
        linear-gradient(45deg, rgba(74, 85, 104, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(5, 150, 105, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(107, 114, 128, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(74, 85, 104, 0.02) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    z-index: -1;
    opacity: 0.3;
    overflow: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Professional Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 70px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.logo img {
    display: block;
    width: 96px;
    height: 96px;
}

.logo:hover {
    color: var(--blue-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-menu a:hover {
    color: white;
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-buttons .btn-primary {
    background: rgba(15, 23, 42, 0.95);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.nav-buttons .btn-primary:hover {
    background: rgba(30, 41, 59, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-buttons .whatsapp-btn {
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-outline {
    border-color: var(--border-color);
    color: var(--text-primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent-color);
    border-color: var(--blue-primary);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.35);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.3);
}

.btn-large {
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Bouton WhatsApp */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 2px solid #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Bouton WhatsApp dans le formulaire */
.btn[onclick="redirectToWhatsApp()"]:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.whatsapp-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hero {
    position: relative;
    padding: 2.5rem 0 4rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-image: url('../images/hero-moove-city.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 8px;
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Si la vidéo ne charge pas, afficher l'image de fond */
.hero-video[poster] {
    background-image: url('../images/hero-moove-city.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 118, 110, 0.45) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
}

.hero h1 {
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.2rem);
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Professional Booking Form */
.booking-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem 2.75rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    max-width: 720px;
    margin: 1rem auto 0;
    position: relative;
    z-index: 2;
    border: none;
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.booking-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.form-row .form-group {
    min-width: 0;
}

.form-row-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.cta-call,
.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 75%;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
}

.cta-call {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.3);
}

.cta-call:hover {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.4);
}

.cta-call:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.3);
}

.cta-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
}

.cta-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.cta-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(37, 211, 102, 0.25);
}

.cta-subtext {
    margin: 0.1rem 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.form-group input,
.form-group select {
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
    font-family: var(--font-family);
    color: #0f172a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 48px;
}

.form-group input:hover,
.form-group select:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    background: #ffffff;
}

.form-group input::placeholder {
    color: #94a3b8;
}

.error-message {
    background: #fee2e2;
    border: 2px solid #fca5a5;
    color: #dc2626;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.3s ease-out;
}

.contact-card {
    margin-top: 2.5rem;
    background: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.contact-card h3 {
    margin-bottom: 2rem;
    color: #0f172a;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.contact-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #ffffff;
    font-family: var(--font-family);
    color: #0f172a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form label {
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.contact-actions {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.contact-actions .btn-primary {
    width: 100%;
    max-width: 400px;
}

/* === Below-the-fold (Services, Gallery, Footer, etc.) === */

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

/* Fond commun Services + Features */
.services-features-bg {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 118, 110, 0.6) 100%), url('../images/hero-moove-city.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.services {
    padding: 100px 0 60px;
    position: relative;
}
.services .container { position: relative; z-index: 2; }
.services-features-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(30deg, rgba(74, 85, 104, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(74, 85, 104, 0.02) 87.5%, rgba(74, 85, 104, 0.02) 100%),
        linear-gradient(150deg, rgba(5, 150, 105, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(5, 150, 105, 0.02) 87.5%, rgba(5, 150, 105, 0.02) 100%);
    background-size: 80px 80px;
    opacity: 0.4;
    z-index: 0;
}
.services h2 { text-align: center; margin-bottom: 3rem; color: var(--secondary-color); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-heavy); border-color: var(--blue-primary); }
.service-price { font-size: 1.5rem; font-weight: 700; color: var(--blue-primary); margin: 15px 0; text-align: center; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--text-primary); }
.service-card p { color: var(--text-secondary); line-height: 1.6; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
    background: var(--gradient-secondary);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}
.service-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium); }

/* Features */
.features {
    padding: 60px 0 100px;
    position: relative;
}
.features h2 { text-align: center; margin-bottom: 3rem; color: var(--secondary-color); }
.features .container { position: relative; z-index: 2; }
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, minmax(200px, 1fr));
    column-gap: 1.5rem;
    row-gap: 1.5rem;
    align-items: stretch;
}
.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 1.25rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 200px;
    height: 100%;
    border: none;
    box-sizing: border-box;
}
.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--text-primary); }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; flex-grow: 1; }
.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.feature-icon img { width: 1.5rem !important; height: 1.5rem !important; max-width: 1.5rem !important; max-height: 1.5rem !important; }
footer img, .whatsapp-btn img { width: 1rem !important; height: 1rem !important; max-width: 1rem !important; max-height: 1rem !important; }
.whatsapp-btn img { width: 1.2rem !important; height: 1.2rem !important; max-width: 1.2rem !important; max-height: 1.2rem !important; }

/* FAQ */
.faq { padding: 100px 0; background: var(--secondary-color); }
.faq h2 { text-align: center; margin-bottom: 2.5rem; color: var(--text-primary); }
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 1.5rem; }
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--accent-color);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}
.faq-item summary {
    cursor: pointer;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    list-style: none;
    position: relative;
}
.faq-item summary::marker,
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--blue-primary);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item div { padding: 0 1.5rem 1.5rem; color: var(--text-secondary); }

/* Gallery */
.gallery { padding: 100px 0; background: var(--secondary-color); }
.gallery h2 { text-align: center; margin-bottom: 1rem; color: var(--text-primary); }
.gallery > .container > p { text-align: center; max-width: 640px; margin: 0 auto 3rem; color: var(--text-secondary); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    aspect-ratio: 1 / 1;
    background: #1e293b;
}
.gallery-item picture { display: block; width: 100%; height: 100%; }
.gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item span {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.7) 100%);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Cities / Coverage */
.cities { padding: 100px 0; background: var(--secondary-color); }
.cities h2 { text-align: center; margin-bottom: 1rem; color: var(--text-primary); }
.cities > .container > p { text-align: center; font-size: 1.1rem; margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.city-item {
    background: var(--accent-color);
    padding: 0;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}
.city-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}
.city-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: 0; }
.city-item h4, .city-item p, .city-item .city-link { position: relative; z-index: 2; padding: 0 1.5rem; }
.city-item h4 {
    margin-top: 2rem; margin-bottom: 0.5rem; color: #ffffff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.8);
    font-size: 1.5rem; font-weight: 700;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}
.city-item p {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem; font-weight: 500;
    background: rgba(0, 0, 0, 0.35);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    display: inline-block;
}
.city-item .city-link { margin-top: auto; margin-bottom: 2rem; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(34, 197, 94, 0.4); font-weight: 600; }
.city-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); border-color: var(--green-primary); }
.city-item:hover::before { background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%); }
.city-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background: var(--green-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}
.city-link:hover { background: var(--green-secondary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover { background: #128C7E; transform: scale(1.1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6); }
}
@media (max-width: 768px) { .whatsapp-float { display: none; } }

/* Sticky Mobile Footer */
.sticky-mobile-footer {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1001;
    flex-direction: row;
    padding: 8px 12px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    gap: 8px;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    justify-content: center;
    align-items: center;
}
.sticky-mobile-footer.visible { display: flex; animation: stickyFooterSlideUp 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
@keyframes stickyFooterSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.sticky-mobile-footer .footer-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.sticky-mobile-footer .footer-btn:active { transform: scale(0.98); }
.sticky-mobile-footer .footer-btn-call {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(5, 150, 105, 0.3);
}
.sticky-mobile-footer .footer-btn-call:hover { box-shadow: 0 5px 16px rgba(5, 150, 105, 0.4); }
.sticky-mobile-footer .footer-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}
.sticky-mobile-footer .footer-btn-whatsapp:hover { box-shadow: 0 5px 16px rgba(37, 211, 102, 0.45); }
.sticky-mobile-footer .footer-btn svg { flex-shrink: 0; width: 16px; height: 16px; }
@media (min-width: 769px) { .sticky-mobile-footer { display: none !important; } }
@media (max-width: 768px) { .scroll-to-top.visible { bottom: 100px; } }

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

/* Footer */
footer {
    background: #0f172a;
    color: var(--secondary-color);
    padding: 60px 0 20px;
    margin: 0;
    margin-bottom: 0;
    width: 100%;
}
footer .container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
footer:last-child { margin-bottom: 0; }
body > footer { margin-bottom: 0; }
main { flex: 1; }
footer { margin-top: auto; }
.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1.5fr 1.2fr 1.2fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.footer-section { display: flex; flex-direction: column; }
.footer-section:first-child { max-width: 300px; }
.footer-section h3 { color: var(--secondary-color); margin-bottom: 1rem; font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em; }
.footer-section h4 { color: var(--secondary-color); margin-bottom: 1rem; font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
.footer-section p { color: rgba(255, 255, 255, 0.85); margin-bottom: 0.75rem; font-size: 0.9rem; line-height: 1.6; }
.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-section ul li { margin-bottom: 0.65rem; }
.footer-section ul li a { font-size: 0.9rem; transition: all 0.2s ease; display: inline-block; }
.footer-section ul li a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: var(--transition); }
.footer-section ul li a:hover { color: var(--secondary-color); }
.footer-section a { color: rgba(255, 255, 255, 0.8) !important; text-decoration: none; transition: var(--transition); }
.footer-section a:hover { color: var(--secondary-color) !important; }
footer a { color: rgba(255, 255, 255, 0.8) !important; text-decoration: none; }
footer a:hover { color: var(--secondary-color) !important; }
footer a:link, footer a:visited, footer a:active { color: rgba(255, 255, 255, 0.8) !important; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem; text-align: center; }
.footer-bottom p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.social-links a { transition: all 0.3s ease; }
.social-links a:hover { background: rgba(255, 255, 255, 0.2) !important; transform: translateY(-3px); }
.social-links a:hover svg { transform: scale(1.1); }

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 100px; right: 30px;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.scroll-to-top.visible { display: flex; opacity: 1; transform: translateY(0); }
.scroll-to-top:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(15, 23, 42, 0.5); background: linear-gradient(135deg, #1e293b 0%, #334155 100%); }
.scroll-to-top svg { width: 24px; height: 24px; fill: currentColor; }

/* Google Maps Autocomplete - Thème Slate-900 */
.pac-container {
    z-index: 999999 !important;
    position: absolute !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #0f172a !important;
    border: 1px solid #1e293b !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-heavy) !important;
    margin-top: 5px !important;
    font-family: var(--font-family) !important;
    max-width: none !important;
    width: 100% !important;
    min-width: 300px !important;
    overflow: visible !important;
    top: 100% !important;
    left: 0 !important;
}
.form-group, .booking-form .form-row > div, .form-row > div { position: relative !important; }
.pac-container::after { display: none !important; content: none !important; }
.pac-logo, .pac-logo:after, .pac-container .pac-logo, .pac-container::after {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.pac-item { padding: 10px 15px; border-bottom: 1px solid #1e293b; cursor: pointer; transition: var(--transition); color: #f8fafc; }
.pac-item:hover { background: #1e293b; }
.pac-item-query { font-weight: 600; color: #f8fafc; }
.pac-matched { font-weight: 600; }

/* Animations */
.fade-in { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-in-left { opacity: 1; transform: translateX(0); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.slide-in-right { opacity: 1; transform: translateX(0); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 1; transform: scale(1); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.scale-in.visible { opacity: 1; transform: scale(1); }
.stagger-delay-1, .stagger-delay-2, .stagger-delay-3, .stagger-delay-4 { transition-delay: 0s !important; }

/* Responsive */
@media (max-width: 1400px) { .footer-content { max-width: 1400px; gap: 2.5rem; } }
@media (max-width: 1200px) { .footer-content { grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 100%; } }
@media (max-width: 968px) { .footer-content { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    /* --- Header / Nav --- */
    body { padding-top: 90px; }
    nav {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        padding: 0.6rem 0;
        min-height: auto;
    }
    .logo { font-size: 1.3rem; gap: 0.6rem; }
    .logo img { width: 56px; height: 56px; }
    .nav-menu { display: none; }
    .nav-buttons {
        gap: 0.4rem;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
    }
    .nav-buttons .btn {
        padding: 0.55rem 0.9rem;
        font-size: 0.78rem;
        flex: 1;
        text-align: center;
        min-width: 0;
    }
    .nav-buttons .whatsapp-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        flex: 1;
        min-width: 0;
    }
    .whatsapp-btn svg { width: 16px; height: 16px; }

    /* --- Hero / Formulaire --- */
    .hero-video { display: none; }
    .hero { padding: 100px 0 50px; }
    .hero-content { padding: 0 1rem; }
    .hero h1 { font-size: 1.75rem; margin-bottom: 1rem; }
    .hero p { font-size: 0.95rem; margin-bottom: 1rem; }
    .booking-form {
        padding: 1.25rem 1rem 1.5rem;
        border-radius: 16px;
        max-width: 100%;
        margin: 0.5rem auto 0;
        overflow: hidden;
        box-sizing: border-box;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }
    .form-group label { font-size: 0.85rem; }
    .form-group input,
    .form-group select {
        font-size: 0.9rem;
        padding: 0.7rem 0.9rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    .form-group input[type="date"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        overflow: hidden;
    }
    .form-group {
        max-width: 100%;
        overflow: hidden;
    }
    .form-row {
        max-width: 100%;
        overflow: hidden;
    }
    .cta-call { width: 100%; font-size: 0.9rem; padding: 0.75rem 1rem; }
    .cta-whatsapp { width: 100%; font-size: 0.85rem; padding: 0.65rem 1rem; }

    /* --- Sections --- */
    .services { padding: 60px 0; }
    .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .service-card { padding: 2rem 1.5rem; }

    .features { padding: 60px 0; }
    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }
    .feature-card {
        padding: 1.25rem 1rem;
        min-height: auto;
    }

    .gallery { padding: 60px 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

    .faq { padding: 60px 0; }
    .faq-item summary { padding: 1rem 2.5rem 1rem 1rem; font-size: 0.9rem; }
    .faq-item div { padding: 0 1rem 1rem; }

    .cities { padding: 40px 0 !important; }
    .content-section { padding: 40px 0; }

    /* --- Footer --- */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-section:first-child { max-width: 100%; }
    .footer-section { align-items: center; }
    .footer-section h3 { font-size: 1.1rem; }
    .footer-section h4 { font-size: 0.9rem; }
    .footer-section ul { text-align: center; }
    footer .container { padding: 0 20px; }
    .social-links { margin-top: 1rem !important; }
    .social-links div { justify-content: center !important; }
    .social-links a { width: 38px !important; height: 38px !important; }
    .social-links svg { width: 18px !important; height: 18px !important; }
    .scroll-to-top { bottom: 90px; right: 16px; width: 42px; height: 42px; }

    /* --- Contact inline --- */
    .contact-inline { grid-template-columns: 1fr; }

    /* --- Divers --- */
    .btn-outline { font-size: 0.85rem; padding: 0.6rem 1rem; }
    hr { margin: 40px 0; }
}

@media (max-width: 480px) {
    body { padding-top: 80px; }
    .container { padding: 0 12px; }
    nav { gap: 0.5rem; padding: 0.5rem 0; }
    .logo { font-size: 1.15rem; gap: 0.4rem; }
    .logo img { width: 48px; height: 48px; }
    .hero { padding: 90px 0 40px; }
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 0.9rem; }
    .booking-form { padding: 1rem 0.75rem 1.25rem; border-radius: 14px; overflow: hidden; }
    .service-card { padding: 1.5rem 1rem; }
    .feature-card { padding: 1rem 0.75rem; }
    .gallery-grid { gap: 0.5rem; }
    .gallery-item span { font-size: 0.75rem; padding: 0.5rem 0.75rem; }
    .footer-content { gap: 1.5rem; }
    footer .container { padding: 0 15px; }
}
