/* ==========================================================================
   LMT Paysage - Main Stylesheet
   ========================================================================== */

/* ==========================================================================
   1. CSS Variables
   ========================================================================== */
   :root {
    /* Greens */
    --forest: #1B8A5A;
    --forest-dark: #156B47;
    --forest-deep: #0D4A32;
    --lime: #8BC34A;
    --lime-light: #AED581;
    --lime-pale: #DCEDC8;

    /* Earth tones */
    --earth: #795548;
    --earth-light: #A1887F;
    --earth-dark: #5D4037;

    /* Neutrals */
    --cream: #F9FBF7;
    --cream-warm: #FFF8E7;
    --white: #FFFFFF;
    --text: #2D3436;
    --text-light: #636E72;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
}

/* ==========================================================================
   4. Background Pattern
   ========================================================================== */
.pattern-bg {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 195, 74, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(27, 138, 90, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(121, 85, 72, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ==========================================================================
   5. Navigation
   ========================================================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(27, 138, 90, 0.1);
    padding: 0.8rem 2rem;
}

.nav-logo {
    height: 60px;
    transition: transform 0.3s ease;
}

nav.scrolled .nav-logo {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

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

.nav-links a:hover {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--forest);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 138, 90, 0.3);
}

.nav-cta:hover {
    background: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 138, 90, 0.4);
}

/* ==========================================================================
   6. Mobile Menu
   ========================================================================== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--forest);
    margin: 5px 0;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu a {
    display: block;
    padding: 1rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--lime-pale);
    color: var(--forest);
}

.mobile-menu .mobile-cta {
    display: block;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--forest), var(--forest-dark));
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(27, 138, 90, 0.3);
}

/* ==========================================================================
   7. Buttons
   ========================================================================== */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--forest), var(--forest-dark));
    color: white;
    box-shadow: 0 8px 30px rgba(27, 138, 90, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(27, 138, 90, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--forest);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   8. Focus States (Accessibility)
   ========================================================================== */
.btn:focus-visible,
.nav-cta:focus-visible,
.nav-links a:focus-visible,
.mobile-menu a:focus-visible,
.reviews-cta:focus-visible,
.google-rating-link:focus-visible,
.contact-item-text a:focus-visible,
.footer-links a:focus-visible,
.footer-legal a:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 2px;
}

.mobile-toggle:focus-visible {
    outline: 2px solid var(--forest);
    outline-offset: 2px;
    border-radius: 4px;
}

.comparison-slider input:focus-visible + .comparison-handle {
    box-shadow: 0 0 0 3px var(--lime), 0 0 20px rgba(0,0,0,0.3);
}

/* ==========================================================================
   9. Hero Section
   ========================================================================== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 6rem;
    color: var(--white);
    background: var(--forest-deep);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1558905540-2129015928d1?q=80&w=2069&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    mix-blend-mode: overlay;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 74, 50, 0.95) 0%, rgba(21, 107, 71, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: var(--lime-pale);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeDown 0.8s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease-out 0.2s backwards;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero h1 span {
    color: var(--lime);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    animation: fadeUp 0.8s ease-out 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease-out 0.6s backwards;
}

.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.hero-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--forest);
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 1.5rem 5rem;
        text-align: left;
        min-height: auto;
    }
    
    .hero-content {
        margin: 0;
    }
    
    .hero-cta {
        justify-content: stretch;
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   10. Stats Section
   ========================================================================== */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 1.5rem auto 3rem;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(27, 138, 90, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: var(--lime-pale);
    border: 2px solid var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ==========================================================================
   11. Section Header (Reusable)
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: 5rem 2rem;
    background: var(--cream);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 400px;
    min-height: 250px;
    border-radius: 20px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 195, 74, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 195, 74, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 50%, var(--forest-deep) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-main::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: url('../lmt-paysage.webp') center/contain no-repeat;
    opacity: 0.9;
    filter: brightness(1.1) drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.about-image-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(255,255,255,0.02) 30px,
            rgba(255,255,255,0.02) 60px
        );
    pointer-events: none;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.about-image-badge strong {
    display: block;
    font-size: 1.5rem;
    color: var(--forest);
    font-family: 'Cormorant Garamond', serif;
}

.about-image-badge span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content h2 span {
    color: var(--forest);
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--lime-pale);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--lime-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--forest);
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

/* Founders */
.founders {
    background: var(--cream);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    border: 2px solid var(--lime-pale);
}

.founders-title {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founders-list {
    display: flex;
    gap: 2rem;
}

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

.founder-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--forest), var(--lime));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.founder-info strong {
    display: block;
    color: var(--text);
}

.founder-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ==========================================================================
   13. Services Section
   ========================================================================== */
.services {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(27, 138, 90, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(27, 138, 90, 0.15);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--lime-pale), var(--cream));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.4s ease;
}

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

.service-card h3 {
    font-size: 1.4rem;
    color: var(--forest-deep);
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   14. Zone d'intervention Section
   ========================================================================== */
.zone {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.zone-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.zone-map {
    background: linear-gradient(135deg, var(--forest), var(--lime));
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(27, 138, 90, 0.2);
    position: sticky;
    top: 100px;
}

.zone-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.zone-pin {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.zone-center strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.zone-center span {
    opacity: 0.9;
    font-size: 0.95rem;
}

.zone-cities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.zone-region {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(27, 138, 90, 0.08);
}

.zone-region h3 {
    font-size: 1.1rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--lime-pale);
}

.city-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.city-list li a {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--cream);
    border-radius: 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.city-list li a:hover {
    background: var(--lime-pale);
    border-color: var(--lime);
    color: var(--forest-dark);
}

.city-list li a strong {
    color: var(--forest);
}

.zone-cta {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    text-align: center;
    background: var(--cream-warm);
    padding: 2rem;
    border-radius: 20px;
    border: 2px dashed var(--lime);
}

.zone-cta p {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   15. Gallery Section
   ========================================================================== */
.gallery {
    padding: 4rem 2rem;
    background: var(--forest-deep);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238BC34A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.gallery .section-header h2 {
    color: var(--white);
}

.gallery .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.comparison {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/10;
    cursor: ew-resize;
}

.comparison-layer {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.comparison-before {
    background: 
        linear-gradient(135deg, rgba(121, 85, 72, 0.9) 0%, rgba(93, 64, 55, 0.9) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,0.1) 20px, rgba(0,0,0,0.1) 40px);
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    z-index: 2;
}

.comparison-after {
    background: 
        linear-gradient(135deg, rgba(27, 138, 90, 0.9) 0%, rgba(139, 195, 74, 0.9) 100%),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(255,255,255,0.1) 20px, rgba(255,255,255,0.1) 40px);
    z-index: 1;
}

.comparison-label {
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.comparison-desc {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    text-align: center;
}

.comparison-slider {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.comparison-slider input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}

.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--white);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.comparison-handle::before {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    color: var(--forest);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.gallery-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   16. Google Reviews Section
   ========================================================================== */
.google-reviews {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

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

.reviews-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-header h2 {
    font-size: 2.8rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.google-logo {
    width: 32px;
    height: 32px;
}

.google-logo svg {
    width: 100%;
    height: 100%;
}

.rating-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars svg {
    width: 20px;
    height: 20px;
    fill: #FBBC04;
}

.rating-text {
    font-size: 0.95rem;
    color: var(--text-light);
}

.rating-text strong {
    color: var(--text);
    font-size: 1.1rem;
}

.google-rating-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.google-rating-link:hover {
    transform: translateY(-2px);
}

.google-rating-link:hover .google-rating {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(27, 138, 90, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--forest), var(--lime));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.testimonial-stars svg {
    width: 14px;
    height: 14px;
    fill: #FBBC04;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.testimonial-text::before {
    content: '"';
    font-size: 2rem;
    color: var(--lime);
    font-family: 'Cormorant Garamond', serif;
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 4px;
}

.reviews-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.reviews-footer p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.reviews-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--forest);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid var(--forest);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 138, 90, 0.1);
}

.reviews-cta:hover {
    background: var(--forest);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 138, 90, 0.25);
}

.reviews-cta svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   17. Contact Section
   ========================================================================== */
.contact {
    padding: 4rem 2rem;
    background: var(--cream);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.8rem;
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--lime-pale);
    border: 2px solid var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.contact-item-text span,
.contact-item-text a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-item-text a:hover {
    color: var(--forest);
}

.contact-cta {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(27, 138, 90, 0.1);
    text-align: center;
}

.contact-cta h3 {
    font-size: 1.8rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-cta .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--lime-pale);
}

.contact-hours h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contact-hours p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================================================
   18. Footer
   ========================================================================== */
footer {
    background: var(--forest-deep);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-legal h4 {
    color: var(--lime);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--lime);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal-info {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==========================================================================
   20. Responsive - Tablets (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .zone-map {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   21. Responsive - Mobile Menu (max-width: 900px)
   ========================================================================== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

/* ==========================================================================
   22. Responsive - Mobile (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 5rem 1.5rem 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .stats {
        margin-top: 0;
        gap: 0.5rem;
        padding: 0.75rem;
        background: var(--cream);
        border-radius: 20px 20px 0 0;
    }

    .stat-card {
        padding: 0.75rem 0.5rem;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(27, 138, 90, 0.08);
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 0.5rem;
    }
    
    .stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .about {
        padding: 2.5rem 1.5rem;
    }

    .about-container {
        gap: 2rem;
    }

    .about-image {
        max-width: 100%;
    }

    .about-image-main {
        height: 250px;
        border-radius: 16px;
    }

    .about-image-badge {
        bottom: -15px;
        right: 10px;
        padding: 1rem;
    }

    .about-image-badge strong {
        font-size: 1.2rem;
    }

    .about-image-badge span {
        font-size: 0.75rem;
    }

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

    .founders-list {
        flex-direction: column;
        gap: 1rem;
    }

    .services {
        padding: 2.5rem 1.5rem;
    }

    .section-header h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .gallery {
        padding: 2.5rem 1.5rem;
    }

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

    .google-reviews {
        padding: 2.5rem 1.5rem;
    }

    .reviews-header h2 {
        font-size: 2rem;
    }

    .google-badge {
        padding: 1.5rem 2rem;
    }

    .contact {
        padding: 2.5rem 1.5rem;
    }

    .contact-container {
        gap: 2rem;
    }

    footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   23. Responsive - Small Mobile (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .section-header h2,
    .about-content h2,
    .contact-info h2,
    .reviews-header h2 {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-cta {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   24. City Pages - Specific Styles
   ========================================================================== */

/* Breadcrumb */
.breadcrumb {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--forest);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--forest-dark);
}

.breadcrumb span {
    color: var(--text-light);
}

/* City Hero */
.city-hero {
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
    padding: 4rem 2rem;
    color: white;
    text-align: center;
}

.city-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.city-hero h1 span {
    color: var(--lime);
}

.city-hero p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.city-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* City hero buttons variant */
.city-hero .btn-primary {
    background: var(--lime);
    color: var(--forest-deep);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.city-hero .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: none;
}

.city-hero .btn-secondary:hover {
    background: white;
    color: var(--forest);
}

/* City Content */
.city-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.city-content h2 {
    font-size: 2.2rem;
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
}

.city-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.city-content strong {
    color: var(--forest);
}

.city-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-light);
}

.city-content li {
    margin-bottom: 0.5rem;
}

/* Services Mini Cards (City pages) */
.services-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-mini-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(27, 138, 90, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(27, 138, 90, 0.15);
}

.service-mini-card h3 {
    font-size: 1.2rem;
    color: var(--forest-deep);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-mini-card p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-light);
}

/* Nearby Cities Section */
.nearby {
    background: var(--lime-pale);
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.nearby-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.nearby h2 {
    font-size: 2rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.nearby p {
    color: var(--text-light);
}

.nearby-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.nearby-cities a {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: var(--forest);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nearby-cities a:hover {
    background: var(--forest);
    color: white;
}

/* CTA Section (City pages) */
.cta-section {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-phone {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}

.cta-section .btn-primary {
    background: var(--lime);
    color: var(--forest-deep);
}

/* City Page Footer (simplified) */
.footer-simple {
    background: var(--forest-deep);
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-simple p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-simple a {
    color: var(--lime);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-simple a:hover {
    color: var(--lime-light);
}

/* City Pages Responsive */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0 1.5rem;
    }

    .city-hero {
        padding: 3rem 1.5rem;
    }

    .city-hero h1 {
        font-size: 2rem;
    }

    .city-content {
        padding: 2.5rem 1.5rem;
    }

    .city-content h2 {
        font-size: 1.8rem;
    }

    .nearby {
        padding: 2rem 1.5rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Trust Badges
   ========================================================================== */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeUp 0.8s ease-out 0.8s backwards;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.trust-badge:hover {
    transform: translateY(-2px);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--forest);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-badges {
        margin-top: 1.5rem;
        gap: 0.4rem;
        max-width: 100%;
    }
    
    .trust-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
        gap: 0.3rem;
    }
    
    .trust-badge svg {
        width: 12px;
        height: 12px;
    }
}

/* ==========================================================================
   Service Icons (SVG)
   ========================================================================== */
.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--forest);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    stroke: var(--forest-dark);
    transform: scale(1.1);
}

/* ==========================================================================
   Stats Icons (SVG)
   ========================================================================== */
.stat-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--forest);
}

/* ==========================================================================
   Contact Form & Icons
   ========================================================================== */
.contact-item-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--forest);
    fill: none;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--forest-deep);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid var(--lime-pale);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--cream);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(27, 138, 90, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group 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='%23636E72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Mobile Sticky Call Button
   ========================================================================== */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest), var(--forest-dark));
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(27, 138, 90, 0.4);
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-call 2s infinite;
}

.mobile-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(27, 138, 90, 0.5);
}

.mobile-call-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 4px 20px rgba(27, 138, 90, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(27, 138, 90, 0.6), 0 0 0 10px rgba(27, 138, 90, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(27, 138, 90, 0.4);
    }
}

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

/* Ensure body has padding for sticky button */
@media (max-width: 768px) {
    footer {
        padding-bottom: 100px;
    }
}
