/* ========== VARIABLES ========== */
:root {
    --green-900: #1a3a1a;
    --green-800: #1e4d2b;
    --green-700: #2d6a4f;
    --green-600: #40916c;
    --green-500: #52b788;
    --green-400: #74c69d;
    --green-300: #95d5b2;
    --green-200: #b7e4c7;
    --green-100: #d8f3dc;
    --green-50: #f0faf3;

    --white: #ffffff;
    --gray-50: #f8faf9;
    --gray-100: #f1f5f3;
    --gray-200: #e2e8e5;
    --gray-300: #c5cec9;
    --gray-400: #8a9a92;
    --gray-500: #6b7d74;
    --gray-600: #4a5a52;
    --gray-700: #364640;
    --gray-800: #1e2d26;
    --gray-900: #0f1a14;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);

    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

.page-wrapper {
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

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

/* ========== CONTAINER ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    max-width: 100%;
}

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

.btn-primary {
    background: var(--green-700);
    color: var(--white);
    border-color: var(--green-700);
}
.btn-primary:hover {
    background: var(--green-800);
    border-color: var(--green-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--green-800);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--green-800);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--green-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.0);
    backdrop-filter: blur(0px);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    background: var(--green-700);
    padding: 4px 14px;
    border-radius: 10px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.navbar.scrolled .logo-icon {
    color: var(--white);
}

.logo-sub {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 120px;
    line-height: 1.3;
}

.navbar.scrolled .logo-sub {
    color: var(--gray-500);
}

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

.nav-links a {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.navbar.scrolled .nav-links a {
    color: var(--gray-600);
}
.navbar.scrolled .nav-links a:hover {
    color: var(--green-700);
    background: var(--green-50);
}

.nav-cta {
    background: var(--green-600) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--green-700) !important;
}

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .menu-toggle span {
    background: var(--gray-700);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(26, 58, 26, 0.85) 0%, rgba(45, 106, 79, 0.75) 50%, rgba(30, 77, 43, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><rect fill="%232d5a27" width="1440" height="900"/><circle cx="200" cy="300" r="400" fill="%231a472a" opacity="0.3"/><circle cx="1200" cy="600" r="350" fill="%233a7d44" opacity="0.2"/></svg>');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(82, 183, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(64, 145, 108, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 120px 24px 160px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.75;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    opacity: 0.85;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--green-300);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
    display: block;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255,255,255,0.5);
}
.hero-scroll svg {
    width: 32px;
    height: 32px;
}

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    color: var(--green-600);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ========== SERVICES ========== */
.services {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-500), var(--green-700));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--green-100);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--green-700);
}

.service-card:hover .service-icon {
    background: var(--green-700);
}
.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-700);
    font-weight: 600;
    font-size: 0.88rem;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--green-800);
}
.service-link:hover svg {
    transform: translateX(4px);
}

/* ========== WHY US ========== */
.why-us {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 32px 20px;
}

.why-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-200);
    margin-bottom: 12px;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.why-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== ZONES ========== */
.zones {
    background: var(--gray-50);
}

.zones-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.zones-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.zone-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.zone-item:hover {
    border-color: var(--green-300);
    box-shadow: var(--shadow);
}

.zone-main {
    border-color: var(--green-400);
    background: var(--green-50);
}

.zone-icon {
    width: 44px;
    height: 44px;
    background: var(--green-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zone-icon svg {
    width: 22px;
    height: 22px;
    color: var(--green-700);
}

.zone-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
}

.zone-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.zones-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

/* ========== GALERIE ========== */
.galerie {
    background: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--green-300);
    color: var(--green-700);
}

.filter-btn.active {
    background: var(--green-700);
    border-color: var(--green-700);
    color: var(--white);
}

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

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item.hidden {
    display: none;
}

.gallery-img-wrap {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gallery-caption span {
    font-weight: 600;
    font-size: 1.05rem;
}

.gallery-caption small {
    font-size: 0.82rem;
    opacity: 0.8;
}

/* ========== AVIS ========== */
.avis {
    background: var(--green-50);
}

.avis-google-wrap {
    display: flex;
    justify-content: center;
}

.avis-google-card {
    background: var(--white);
    border-radius: 24px;
    padding: 52px 64px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    max-width: 560px;
    width: 100%;
    border: 1px solid rgba(0,0,0,0.06);
}

.avis-google-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.avis-google-header .google-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.avis-google-header strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-800);
    text-align: left;
}

.avis-google-header span {
    display: block;
    font-size: 0.82rem;
    color: var(--gray-400);
    text-align: left;
}

.avis-google-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.avis-google-stars {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 6px;
    letter-spacing: 6px;
}

.avis-google-rating {
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-bottom: 20px;
    font-weight: 500;
}

.avis-google-card > p {
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
    font-size: 0.97rem;
}

.btn-google-avis {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--green-700);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.97rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(30, 100, 55, 0.35);
}

.btn-google-avis:hover {
    background: var(--green-800, #1a5c30);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 100, 55, 0.45);
}

.btn-google-avis svg {
    width: 16px;
    height: 16px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 50%, var(--green-600) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-content p {
    opacity: 0.85;
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    max-width: 100%;
}

.contact-form {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
}

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

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

label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

input, select, textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

input::placeholder, textarea::placeholder {
    color: var(--gray-400);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7d74' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 44px;
}

.form-note {
    text-align: center;
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--gray-400);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
}

.info-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}

.info-item:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
}

.info-item svg {
    width: 20px;
    height: 20px;
    color: var(--green-600);
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 0.82rem;
    color: var(--gray-500);
    font-weight: 500;
}

.info-item a, .info-item span {
    font-size: 0.95rem;
    color: var(--gray-800);
}

.info-item a:hover {
    color: var(--green-700);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    width: 100%;
}

.social-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-link.facebook {
    background: #1877F2;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
}
.social-link.facebook:hover {
    background: #0d6edf;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.45);
}

.info-card.highlight {
    background: var(--green-700);
    border-color: var(--green-700);
    color: var(--white);
    text-align: center;
}

.info-card.highlight h3 {
    color: var(--white);
}

.highlight-icon {
    margin-bottom: 8px;
}

.highlight-icon svg {
    width: 32px;
    height: 32px;
    color: var(--green-300);
}

.info-card.highlight p {
    font-size: 1rem;
    opacity: 0.95;
}

.highlight-note {
    font-size: 0.82rem !important;
    opacity: 0.7 !important;
    margin-top: 8px;
    word-break: break-word;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-brand .logo-sub {
    color: rgba(255,255,255,0.5);
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}
.footer-links a:hover {
    color: var(--green-400);
}

.footer-contact p {
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.footer-contact a:hover {
    color: var(--green-400);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ========== BARRE APPEL FIXE MOBILE ========== */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: var(--green-700);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.call-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--white);
    color: var(--green-800);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.05rem;
}

.call-bar-btn svg {
    width: 22px;
    height: 22px;
}

.call-bar-btn:hover {
    background: var(--green-50);
}

@media (max-width: 768px) {
    .mobile-call-bar {
        display: block;
    }

    /* Espace en bas du footer pour pas que la barre cache le contenu */
    .footer-bottom {
        padding-bottom: 80px;
    }
}

/* ========== MODAL ========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 440px;
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-icon svg {
    width: 56px;
    height: 56px;
    color: var(--green-500);
    margin-bottom: 16px;
}

.modal h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.modal p {
    color: var(--gray-500);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* ========== SHAKE ANIMATION ========== */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

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

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

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

/* Scroll animations */
.service-card,
.why-card,
.zone-item,
.gallery-item,
.avis-google-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible,
.why-card.visible,
.zone-item.visible,
.gallery-item.visible,
.avis-google-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zones-content {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        height: 300px;
    }


    .contact-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* --- Global mobile --- */
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 72px 0;
    }

    .btn {
        white-space: normal !important;
        word-break: break-word;
    }

    /* --- Navbar mobile (≤640px — voir bloc dédié ci-dessous) --- */

    /* --- Hero mobile --- */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 100px 20px 160px;
    }

    .hero-wave svg {
        height: 80px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 16px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 14px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 6px;
    }

    .hero-tagline {
        font-size: 0.85rem;
        margin-bottom: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 0.92rem;
    }

    .hero-buttons .btn-outline {
        border-width: 1.5px;
    }

    .hero-trust {
        flex-direction: row;
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
    }

    .trust-item {
        font-size: 0.72rem;
        gap: 4px;
        opacity: 0.75;
        background: rgba(255,255,255,0.08);
        padding: 5px 10px;
        border-radius: var(--radius-full);
    }

    .trust-item svg {
        width: 13px;
        height: 13px;
    }

    /* --- Grids mobile --- */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }


    /* --- CTA mobile --- */
    .cta-banner {
        padding: 60px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    /* --- Contact mobile (FIX OVERFLOW) --- */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form,
    .contact-info,
    .contact-grid {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .contact-form {
        padding: 24px 16px;
    }

    .info-card {
        padding: 20px 16px;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .social-link {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .info-card.highlight,
    .info-card.highlight p,
    .highlight-note {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* --- Footer mobile --- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Hamburger — mobile uniquement (≤640px) */
@media (max-width: 640px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 1000;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        color: var(--gray-700) !important;
        padding: 14px 20px;
        font-size: 1rem;
        width: 100%;
        border-radius: var(--radius);
    }

    .nav-links a:hover {
        background: var(--green-50) !important;
        color: var(--green-700) !important;
    }

    .nav-cta {
        margin-top: 16px;
        text-align: center;
        width: 100%;
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 140px 16px 60px;
    }

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

/* Print */
@media print {
    .navbar, .hero-scroll, .modal-overlay, .mobile-call-bar {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 30px 0;
        break-inside: avoid;
    }
}
