/* ============================================
   VERT EDEN — Paysagiste Lyon
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #1a3a2a;
    --green-mid: #2d5e3e;
    --green-light: #4a7c59;
    --green-pale: #e8f0e5;
    --green-accent: #6db56d;
    --brown: #8b6f47;
    --brown-light: #c4a97d;
    --white: #ffffff;
    --off-white: #f7f9f5;
    --gray: #666666;
    --gray-light: #e0e0e0;
    --text: #2c2c2c;
    --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

.header-scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.header-scrolled .logo {
    color: var(--green-dark);
}

.logo-icon {
    font-size: 1.8rem;
}

.nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    color: rgba(255,255,255,0.9);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.93rem;
    font-weight: 500;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.header-scrolled .nav-link {
    color: var(--text);
}

.header-scrolled .nav-link:hover {
    background: var(--green-pale);
    color: var(--green-dark);
}

.cta-link {
    background: var(--green-accent) !important;
    color: var(--white) !important;
}

.cta-link:hover {
    background: var(--green-mid) !important;
}

/* --- DROPDOWN NAV --- */
.nav-dropdown {
    position: relative;
}

.nav-arrow {
    font-size: 0.7rem;
    margin-left: 2px;
    display: inline-block;
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-size: 0.93rem;
    font-weight: 500;
    transition: all var(--transition);
}

.nav-dropdown-menu a:hover {
    background: var(--green-pale);
    color: var(--green-dark);
    padding-left: 24px;
}

.nav-dropdown-label {
    display: block;
    padding: 6px 20px 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    pointer-events: none;
}

.nav-dropdown-divider {
    height: 1px;
    background: var(--gray-light);
    margin: 6px 12px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.header-scrolled .menu-toggle span {
    background: var(--green-dark);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(26,58,42,0.85), rgba(45,94,62,0.75)),
        linear-gradient(to bottom right, #2d5e3e, #4a7c59);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(109,181,109,0.2), transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139,111,71,0.15), transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 120px 0 80px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--green-accent);
    color: var(--white);
    border-color: var(--green-accent);
}

.btn-primary:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,94,62,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* --- SECTIONS --- */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green-dark);
    text-align: center;
    margin-bottom: 12px;
}

.section-title-left {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- SERVICES --- */
.services {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- STATS --- */
.stats {
    background: var(--green-dark);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-accent);
    margin-bottom: 4px;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* --- GALLERY / REALISATIONS --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 280px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}

.gallery-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
    border-radius: var(--radius);
}

.gallery-placeholder:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gallery-placeholder span {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
}

/* --- A PROPOS --- */
.apropos {
    background: var(--off-white);
}

.apropos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.apropos-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--green-light), var(--green-mid));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.apropos-placeholder span {
    font-size: 8rem;
    opacity: 0.3;
}

.apropos-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.apropos-list {
    list-style: none;
    margin: 24px 0 32px;
}

.apropos-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text);
    font-weight: 500;
}

.apropos-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: 700;
}

/* --- TEMOIGNAGES --- */
.temoignages {
    background: var(--white);
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.temoignage-card {
    background: var(--off-white);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
}

.temoignage-stars {
    color: #f5a623;
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.temoignage-text {
    color: var(--gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.temoignage-author strong {
    display: block;
    color: var(--green-dark);
}

.temoignage-author span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* --- ZONE --- */
.zone {
    background: var(--off-white);
}

.zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.zone-tag {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--green-dark);
    border: 1px solid var(--gray-light);
    transition: all var(--transition);
}

.zone-tag:hover {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
}

/* --- CONTACT --- */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
}

/* --- FORM --- */
.contact-form {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-accent);
    box-shadow: 0 0 0 3px rgba(109,181,109,0.15);
}

.form-group textarea {
    resize: vertical;
}

/* --- FOOTER --- */
.footer {
    background: var(--green-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.logo-footer {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-col nav {
    display: flex;
    flex-direction: column;
}

.footer-col address {
    font-style: normal;
}

.footer-col a {
    display: block;
    padding: 4px 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom a:hover {
    color: var(--green-accent);
}

.contact-details address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item a {
    color: var(--gray);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-item a:hover {
    color: var(--green-dark);
}

.footer-col a:hover {
    color: var(--green-accent);
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* --- PAGE HERO (subpages) --- */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(26,58,42,0.9), rgba(45,94,62,0.8)),
                linear-gradient(to bottom right, #2d5e3e, #4a7c59);
    color: var(--white);
}

.page-hero-haies {
    background: linear-gradient(135deg, rgba(26,58,42,0.9), rgba(74,124,89,0.8)),
                linear-gradient(to bottom right, #1a3a2a, #4a7c59);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 650px;
    line-height: 1.7;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.breadcrumb span {
    opacity: 0.8;
}

/* --- PAGE INTRO GRID --- */
.page-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-intro-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.page-intro-placeholder {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-intro-placeholder span {
    font-size: 6rem;
    opacity: 0.3;
}

.page-highlights {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.page-highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-accent);
}

.page-highlight-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* --- SECTION ALT --- */
.section-alt {
    background: var(--off-white);
}

/* --- DETAIL CARDS --- */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.detail-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
}

.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.detail-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.detail-card h3 {
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.detail-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- STEPS --- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-accent);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.1rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.step p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* --- PRICING --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.pricing-card-featured {
    border-color: var(--green-accent);
    box-shadow: 0 0 0 2px var(--green-accent), var(--shadow);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-accent);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 20px;
    border-radius: 50px;
}

.pricing-card h3 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.pricing-price strong {
    font-size: 2.2rem;
    color: var(--green-dark);
    font-weight: 800;
}

.pricing-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--off-white);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: 700;
}

.btn-outline-dark {
    background: transparent;
    color: var(--green-dark);
    border-color: var(--gray-light);
}

.btn-outline-dark:hover {
    background: var(--green-pale);
    border-color: var(--green-mid);
    color: var(--green-mid);
}

/* --- FAQ --- */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: var(--white);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--green-dark);
    cursor: pointer;
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}

.faq-item summary:hover {
    background: var(--off-white);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--green-accent);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* --- SERVICE LIST (taillage page) --- */
.services-list {
    max-width: 800px;
    margin: 0 auto;
}

.service-list-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-light);
}

.service-list-item:last-child {
    border-bottom: none;
}

.service-list-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-list-content h3 {
    font-size: 1.1rem;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.service-list-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- CALENDAR GRID --- */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.calendar-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.calendar-season {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.calendar-months {
    font-size: 0.9rem;
    color: var(--green-accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.calendar-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- PAGE CTA --- */
.page-cta {
    background: var(--green-dark);
    padding: 80px 0;
    text-align: center;
}

.page-cta-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.page-cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* --- NAV ACTIVE --- */
.nav-active {
    background: var(--green-pale) !important;
    color: var(--green-dark) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .services-grid,
    .temoignages-grid,
    .detail-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps,
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item-large {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 4px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right var(--transition);
    }

    .nav-open {
        right: 0;
    }

    .nav-link {
        color: var(--text);
        padding: 12px 16px;
        width: 100%;
        border-radius: 8px;
    }

    .nav-link:hover {
        background: var(--green-pale);
        color: var(--green-dark);
    }

    /* Mobile dropdowns */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease;
        background: var(--off-white);
        border-radius: 8px;
        margin-top: 2px;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 600px;
        padding: 4px 0;
    }

    .nav-dropdown-menu a {
        padding: 10px 20px 10px 32px;
        font-size: 0.9rem;
    }

    .nav-dropdown-menu a:hover {
        padding-left: 36px;
    }

    .nav-dropdown-label {
        padding: 6px 20px 4px 32px;
    }

    .nav-dropdown-divider {
        margin: 4px 20px;
    }

    .nav-arrow {
        float: right;
        transition: transform var(--transition);
    }

    .nav-dropdown.open .nav-arrow {
        transform: rotate(180deg);
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid,
    .detail-grid,
    .pricing-grid,
    .steps,
    .calendar-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-intro-placeholder {
        height: 260px;
    }

    .page-highlights {
        gap: 24px;
    }

    .apropos-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .apropos-placeholder {
        height: 300px;
    }

    .temoignages-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-placeholder {
        height: 220px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   STICKY PHONE BAR (mobile)
   ============================================ */
.sticky-phone {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--green-dark);
    box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
}

.sticky-phone-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sticky-phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 20px;
    width: 50%;
    text-align: center;
    transition: background var(--transition);
}

.sticky-phone a:hover {
    background: rgba(255,255,255,0.1);
}

.sticky-phone .sticky-phone-call {
    background: var(--green-accent);
}

.sticky-phone .sticky-phone-call:hover {
    background: var(--green-mid);
}

.sticky-phone-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .sticky-phone {
        display: block;
    }

    .sticky-phone-inner {
        gap: 0;
    }

    body {
        padding-bottom: 56px;
    }

    .footer {
        padding-bottom: 56px;
    }
}

/* ============================================
   GOOGLE MAPS EMBED
   ============================================ */
.map-container {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    text-align: center;
}

.error-icon {
    font-size: 5rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.error-content h1 {
    font-size: 6rem;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 12px;
}

.error-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.error-text {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.error-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.error-suggestions {
    padding-top: 24px;
    border-top: 1px solid var(--gray-light);
    display: inline-block;
}

.error-suggestions p {
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 0.95rem;
}

.error-suggestions a {
    display: inline-block;
    padding: 6px 14px;
    margin: 4px;
    background: var(--green-pale);
    color: var(--green-dark);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.error-suggestions a:hover {
    background: var(--green-dark);
    color: var(--white);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h2 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green-pale);
}

.legal-page h2:first-child {
    margin-top: 0;
}

.legal-page p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul {
    color: var(--gray);
    margin: 0 0 16px 24px;
    line-height: 2;
}

.legal-page a {
    color: var(--green-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page a:hover {
    color: var(--green-dark);
}

/* ============================================
   SKIP TO CONTENT (accessibility)
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--green-dark);
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Focus visible for keyboard nav */
*:focus-visible {
    outline: 3px solid var(--green-accent);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--green-accent);
    outline-offset: 2px;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-dark);
    color: #fff;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 90;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--green-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 72px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 84px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 90;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--text);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 72px;
        right: 68px;
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   ANIMATED COUNTERS
   ============================================ */
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-accent);
    margin-bottom: 4px;
}

/* ============================================
   BEFORE / AFTER SLIDER
   ============================================ */
.ba-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: var(--shadow);
}

.ba-slider-image {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.ba-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.ba-slider-overlay .ba-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    max-width: none;
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.ba-slider-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-slider-handle::before {
    content: '◀ ▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
    color: var(--green-dark);
    font-weight: 700;
    z-index: 4;
    letter-spacing: 2px;
    white-space: nowrap;
}

.ba-label {
    position: absolute;
    bottom: 16px;
    padding: 6px 14px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.ba-label-before {
    left: 16px;
}

.ba-label-after {
    right: 16px;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .ba-grid {
        grid-template-columns: 1fr;
    }

    .ba-slider-image {
        height: 260px;
    }
}

/* ============================================
   TRUST LOGOS BAR
   ============================================ */
.trust-bar {
    background: #fff;
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-light);
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

.trust-logo-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: var(--green-pale);
    color: var(--green-dark);
}

.trust-logo span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray);
    text-align: center;
}

@media (max-width: 768px) {
    .trust-bar-inner {
        gap: 24px;
    }

    .trust-logo-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .trust-logo span {
        font-size: 0.72rem;
    }
}

/* ============================================
   SERVICE CARD 3D HOVER
   ============================================ */
.service-card {
    perspective: 800px;
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
    box-shadow: var(--shadow-hover);
}

.detail-card:hover {
    transform: translateY(-4px) rotateX(1deg) rotateY(-1deg);
}

/* ============================================
   BUTTON RIPPLE EFFECT
   ============================================ */
.btn {
    position: relative;
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--green-dark);
    color: rgba(255,255,255,0.9);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text a {
    color: var(--green-accent);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--green-accent);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #5aa55a;
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .cookie-banner {
        bottom: 56px;
    }
}
