/* Variables & Reset */
:root {
    --primary-color: #2E7D32;
    /* Forest Green */
    --primary-dark: #1B5E20;
    --secondary-color: #795548;
    /* Earthy Brown */
    --accent-color: #FF6D00;
    /* Safety Orange */
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --bg-light: #FFFFFF;
    --bg-off-white: #F9F9F9;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

ul {
    list-style: none;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-weight: 800 !important;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

.btn-accent:hover {
    background-color: #E65100;
}

.section-padding {
    padding: 3rem 0 2rem 0;
}

.text-center {
    text-align: center;
}

/* Header & Nav */
header {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow);
    color: white;
    position: sticky;
    font-weight: bold;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: 500;
    color: white;
}

/* Service Card - Image takes full width */
.service-card {
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin-bottom: 1.5rem;
}

.service-link {
    color: white;
    background-color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-link:hover {
    background-color: #1e5a21;
    transform: translateY(2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    transition: var(--transition);
    padding: 0.75rem 1rem;
    /* padding: 2rem 1.5rem; */
}

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

/* Dropdown Menu - Improved hover experience */
.dropdown {
    position: relative;
}

.dropdown>a {
    display: block;
    padding: 0.75rem 1rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1000;
}

/* Bridge gap between link and dropdown */
.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.75rem;
    background: transparent;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    transition: var(--transition);
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--bg-off-white);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: white;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: var(--transition);
}

/* Hero Section Improvements */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    font-weight: bold;
    position: absolute;
    left: 0;
}

.container h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem !important;
    color: var(--primary-color);
}

.service-content p {
    margin-bottom: 1rem;
    color: #444;
}

/* Reasons Grid - Design harmonieux avec palette du site */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-top: 5px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(46, 125, 50, 0.03) 100%);
    z-index: 0;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.reason-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.reason-card:hover .reason-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.reason-icon {
    font-size: 2.5rem;
}

.reason-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
}

.reason-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Variantes de couleurs pour chaque carte */
.reason-card-maladie {
    border-top-color: #c62828;
}

.reason-card-maladie .reason-icon-box {
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.3);
}

.reason-card-danger {
    border-top-color: var(--accent-color);
}

.reason-card-danger .reason-icon-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, #E65100 100%);
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.3);
}

.reason-card-dommages {
    border-top-color: var(--secondary-color);
}

.reason-card-dommages .reason-icon-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #5d4037 100%);
    box-shadow: 0 4px 15px rgba(121, 85, 72, 0.3);
}

.reason-card-mort {
    border-top-color: #424242;
}

.reason-card-mort .reason-icon-box {
    background: linear-gradient(135deg, #424242 0%, #212121 100%);
    box-shadow: 0 4px 15px rgba(66, 66, 66, 0.3);
}

.reason-card-amenagement {
    border-top-color: var(--primary-color);
}

.reason-card-amenagement .reason-icon-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

/* Process Container - Étapes visuelles */
.process-container {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.process-step:last-child {
    grid-template-columns: 80px 1fr;
}

.process-step:last-child .step-arrow {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(46, 125, 50, 0.5);
}

.step-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .step-content {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.step-content h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2.5rem;
    color: var(--accent-color);
    text-align: center;
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Mobile Nav */
@media (max-width: 1200px) {

    .section-padding {
        padding: 1rem 0;
    }

    .container {
        padding: 1rem 0rem;
        margin: 0 auto;
    }

    .hamburger {
        display: block;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--primary-dark);
        color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 0rem 0 1rem 0 !important;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        /* border: 1px solid red; */
        padding: 0.5rem 0;
    }

    .nav-links.active {
        left: 0%;
    }

    .nav-links.active .dropdown-content {
        display: block;
        position: relative;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        min-height: 50vh;
    }

    /* Mobile adjustments for reasons grid */
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Mobile adjustments for process steps */
    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }

    .process-step:last-child {
        grid-template-columns: 60px 1fr;
    }

    .step-arrow {
        display: none !important;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-content {
        padding: 1rem 1.5rem;
    }

    .step-icon {
        font-size: 2rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }
}

/* Benefits Grid - Cartes de bienfaits pour élagage */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Variantes de couleurs pour les bienfaits */
.benefit-sante::before {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
}

.benefit-securite::before {
    background: linear-gradient(135deg, #FF6D00 0%, #E65100 100%);
}

.benefit-esthetique::before {
    background: linear-gradient(135deg, #795548 0%, #5d4037 100%);
}

.benefit-ensoleillement::before {
    background: linear-gradient(135deg, #FFA726 0%, #FB8C00 100%);
}

.benefit-production::before {
    background: linear-gradient(135deg, #66BB6A 0%, #43A047 100%);
}

/* Techniques Grid - Badges horizontaux */
.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 4rem;
}

.technique-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.technique-badge:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.technique-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    flex-shrink: 0;
}

.technique-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.technique-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Timing Section - Section temporelle */
.timing-section {
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e9 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 4rem 0 2rem;
    text-align: center;
    border: 2px solid rgba(46, 125, 50, 0.1);
    position: relative;
    overflow: hidden;
}

.timing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.timing-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.timing-section h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.timing-section p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.timing-highlight {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.season-badge {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: white;
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.season-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Mobile adjustments for elagage page */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .technique-badge {
        flex-direction: column;
        text-align: center;
    }

    .timing-section {
        padding: 2rem 1.5rem;
    }

    .timing-highlight {
        flex-direction: column;
        align-items: center;
    }

    .season-badge {
        width: 100%;
        max-width: 250px;
    }
}

/* Importance Grid - Cartes d'importance pour taillage */
.importance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.importance-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(46, 125, 50, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.importance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.importance-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.importance-card:hover .importance-icon {
    transform: scale(1.2) rotate(-5deg);
}

.importance-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.importance-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Trimming Services Grid - Services de taille */
.trimming-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.trimming-service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trimming-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2rem 1.5rem;
    text-align: center;
    color: white;
}

.service-icon-trim {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-header h4 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
    color: white;
}

.trimming-service-card p {
    padding: 1.5rem;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* Professional Section - Section professionnelle */
.professional-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 4rem 0 2rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 6px 25px rgba(46, 125, 50, 0.15);
}

.professional-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.professional-icon {
    font-size: 3.5rem;
    display: inline-block;
}

.professional-header h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 0;
}

.professional-section>p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.professional-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.pro-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pro-benefit:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.check-icon {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pro-benefit span:last-child {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Mobile adjustments for taillage page */
@media (max-width: 1200px) {
    .importance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trimming-services-grid {
        grid-template-columns: 1fr;
    }

    .professional-section {
        padding: 2rem 1.5rem;
    }

    .professional-header {
        flex-direction: column;
        text-align: center;
    }

    .professional-header h3 {
        font-size: 1.5rem;
    }

    .professional-benefits {
        grid-template-columns: 1fr;
    }
}

/* Plantation Timeline - Timeline horizontale */
.plantation-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 2rem 0 4rem;
    position: relative;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover .timeline-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.5);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.timeline-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.timeline-connector {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    align-self: flex-start;
    margin-top: 38px;
    position: relative;
}

.timeline-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: -12px;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Planting Benefits Grid - Cartes de bénéfices nature */
.planting-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.planting-benefit-card {
    background: linear-gradient(135deg, #f1f8f4 0%, #e8f5e9 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(46, 125, 50, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.planting-benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.planting-benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.2);
    border-color: var(--primary-color);
}

.planting-benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.planting-benefit-card:hover .planting-benefit-icon {
    transform: scale(1.15) rotate(-5deg);
}

.planting-benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
}

.planting-benefit-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Care Guide Section - Section guide de soins */
.care-guide-section {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3e0 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 4rem 0 2rem;
    border: 3px solid #FFA726;
    box-shadow: 0 6px 25px rgba(255, 167, 38, 0.2);
}

.care-guide-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.care-guide-icon {
    font-size: 3.5rem;
    display: inline-block;
}

.care-guide-header h3 {
    font-size: 1.8rem;
    color: #E65100;
    margin: 0;
}

.care-guide-section>p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.care-guide-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.care-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.care-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.care-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.care-feature span:last-child {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    font-weight: 500;
}

/* Mobile adjustments for plantation page */
@media (max-width: 1200px) {
    .plantation-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-connector {
        display: none;
    }

    .timeline-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .planting-benefits-grid {
        grid-template-columns: 1fr;
    }

    .care-guide-section {
        padding: 2rem 1.5rem;
    }

    .care-guide-header {
        flex-direction: column;
        text-align: center;
    }

    .care-guide-header h3 {
        font-size: 1.5rem;
    }

    .care-guide-features {
        grid-template-columns: 1fr;
    }
}

/* Clearing Services Grid - Services de déboisement */
.clearing-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.clearing-service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 3px solid rgba(121, 85, 72, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.clearing-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, #5d4037 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.clearing-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(121, 85, 72, 0.25);
    border-color: var(--secondary-color);
}

.clearing-service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.clearing-service-card:hover .clearing-service-icon {
    transform: scale(1.2) rotate(10deg);
}

.clearing-service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.clearing-service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Eco Options - Options écologiques */
.eco-options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.eco-option-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.eco-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.eco-option-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    text-align: center;
    color: white;
    position: relative;
}

.eco-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.eco-option-header h4 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    color: white;
}

.eco-option-card p {
    padding: 2rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.eco-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Why Choose Section - Section avantages */
.why-choose-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 4rem 0 2rem;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 8px 30px rgba(121, 85, 72, 0.2);
}

.why-choose-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.why-icon {
    font-size: 3.5rem;
    display: inline-block;
}

.why-choose-header h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 0;
}

.why-choose-section>p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-feature:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.why-feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.why-feature span:last-child {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    font-weight: 500;
}

/* Mobile adjustments for deboisement page */
@media (max-width: 1200px) {
    .clearing-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .eco-options-container {
        grid-template-columns: 1fr;
    }

    .why-choose-section {
        padding: 2rem 1.5rem;
    }

    .why-choose-header {
        flex-direction: column;
        text-align: center;
    }

    .why-choose-header h3 {
        font-size: 1.5rem;
    }

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

/* Cabling Benefits Grid - Bénéfices du haubanage */
.cabling-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.cabling-benefit-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 3px solid rgba(33, 150, 243, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cabling-benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.cabling-benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.3);
    border-color: #2196F3;
}

.cabling-benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.cabling-benefit-card:hover .cabling-benefit-icon {
    transform: scale(1.15) rotate(-5deg);
}

.cabling-benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1565C0;
    position: relative;
    z-index: 1;
}

.cabling-benefit-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Warning Signs - Signes d'alerte */
.warning-signs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.warning-sign-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 3px solid rgba(255, 152, 0, 0.3);
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.warning-sign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.25);
    border-color: var(--accent-color);
}

.warning-sign-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #E65100 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.3);
}

.warning-icon {
    font-size: 1.2rem;
}

.warning-label {
    letter-spacing: 0.5px;
}

.warning-sign-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.warning-sign-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Inspection Section - Section inspection */
.inspection-section {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 4rem 0 2rem;
    border: 3px solid #9C27B0;
    box-shadow: 0 6px 25px rgba(156, 39, 176, 0.2);
}

.inspection-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.inspection-icon {
    font-size: 3.5rem;
    display: inline-block;
}

.inspection-header h3 {
    font-size: 1.8rem;
    color: #6A1B9A;
    margin: 0;
}

.inspection-section>p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.inspection-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.inspection-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inspection-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.inspection-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.inspection-feature span:last-child {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    font-weight: 500;
}

/* Mobile adjustments for haubanage page */
@media (max-width: 1200px) {
    .cabling-benefits-grid {
        grid-template-columns: 1fr;
    }

    .warning-signs-container {
        grid-template-columns: 1fr;
    }

    .inspection-section {
        padding: 2rem 1.5rem;
    }

    .inspection-header {
        flex-direction: column;
        text-align: center;
    }

    .inspection-header h3 {
        font-size: 1.5rem;
    }

    .inspection-features {
        grid-template-columns: 1fr;
    }
}

/* Haubanage Benefits Grid - Style épuré avec couleurs du site */
.haubanage-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.haubanage-benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(46, 125, 50, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.haubanage-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.2);
    border-color: var(--primary-color);
}

.haubanage-benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.haubanage-benefit-card:hover .haubanage-benefit-icon {
    transform: scale(1.15) rotate(-5deg);
}

.haubanage-benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.haubanage-benefit-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Haubanage Warning Signs - Style épuré avec orange */
.haubanage-warning-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.haubanage-warning-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border-top: 5px solid var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.haubanage-warning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.2);
}

.haubanage-warning-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.haubanage-warning-card:hover .haubanage-warning-icon {
    transform: scale(1.2) rotate(10deg);
}

.haubanage-warning-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.haubanage-warning-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Haubanage Inspection Section - Style épuré avec vert */
.haubanage-inspection-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 4rem 0 2rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 6px 25px rgba(46, 125, 50, 0.15);
}

.haubanage-inspection-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.haubanage-inspection-icon {
    font-size: 3.5rem;
    display: inline-block;
}

.haubanage-inspection-header h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 0;
}

.haubanage-inspection-section>p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.haubanage-inspection-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.haubanage-inspection-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.haubanage-inspection-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.haubanage-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.haubanage-inspection-feature span:last-child {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    font-weight: 500;
}

/* Mobile adjustments for haubanage page */
@media (max-width: 1200px) {
    .haubanage-benefits-grid {
        grid-template-columns: 1fr;
    }

    .haubanage-warning-signs {
        grid-template-columns: 1fr;
    }

    .haubanage-inspection-section {
        padding: 2rem 1.5rem;
    }

    .haubanage-inspection-header {
        flex-direction: column;
        text-align: center;
    }

    .haubanage-inspection-header h3 {
        font-size: 1.5rem;
    }

    .haubanage-inspection-features {
        grid-template-columns: 1fr;
    }
}

.showcase {
    display: flex;
    flex-direction: row;
    /* border: 1px solid red; */
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2rem 0 0 0;
}

.showcase img {
    max-height: 600px;
    max-width: 400px;
}