/* =========================
   VARIABLES — #82d225 LIME-GREEN PALETTE
========================= */
:root {
    --green-dark: #4a7a14;
    /* pressed / hover-dark: darker lime */
    --green-main: #82d225;
    /* PRIMARY brand colour */
    --green-mid: #a0e040;
    /* lighter accent, section-label */
    --green-light: #c2f07a;
    /* soft accent, why-num, decorative */
    --green-pale: #eefad0;
    /* very light tint, hover surfaces */
    --green-mist: #f6fde8;
    /* near-white surface, icon bg */

    --beige: #f6fde8;
    --cream: #fafef2;
    --anthracite: #1c2a0e;
    /* darkest text on light bg */
    --gray-mid: #5a6b45;
    /* body text, muted */
    --gray-light: #dff0b8;
    /* borders, dividers */
    --white: #ffffff;

    --shadow-sm: 0 2px 8px rgba(82, 173, 25, 0.10);
    --shadow-md: 0 8px 32px rgba(82, 173, 25, 0.15);
    --shadow-lg: 0 20px 60px rgba(82, 173, 25, 0.20);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Segoe UI', sans-serif;

    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =========================
   GLOBAL LAYOUT + UTILITY
========================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 96px 0;
}

.text-center {
    text-align: center;
}

.bg-beige {
    background: var(--beige);
}

.bg-white {
    background: var(--white);
}

/* =========================
   GLOBAL TYPOGRAPHY
========================= */
body {
    font-family: var(--font-body);
    color: var(--anthracite);
    background: var(--cream);
    font-size: 16px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    color: var(--gray-mid);
    line-height: 1.75;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-dark);
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-body);
}

.btn-outline {
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--green-main);
}

.btn-outline:hover {
    background: var(--green-main);
    color: #1c2a0e;
    transform: translateY(-2px);
}

.btn-outline:active {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
    transform: translateY(0);
}

.btn-white {
    background: var(--white);
    color: var(--green-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--green-pale);
    color: var(--green-dark);
    transform: translateY(-2px);
}

.btn-white:active {
    background: var(--green-light);
    transform: translateY(0);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-outline-white {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-phone {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-phone:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}



/* =========================
   HERO SECTION
========================= */
.hero {
    padding: 160px 0 96px;
    position: relative;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.hero-badge::before {
    content: '●';
    color: var(--green-light);
    font-size: 0.6rem;
}

.hero h1 {
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero h1 em {
    color: var(--green-pale);
    font-style: normal;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    font-weight: 500;
}

.trust-item::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.hero-badge,
.trust-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-badge.hero-visible,
.trust-item.hero-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    color: white;
}

.hero-card-main {
    background: rgba(255, 255, 255, 0.97);
    color: var(--anthracite);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.hero-card-main h3 {
    color: var(--anthracite);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.hcm-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
}

.hcm-stat:last-child {
    border-bottom: none;
}

.hcm-icon {
    width: 36px;
    height: 36px;
    background: var(--green-mist);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hcm-text small {
    font-size: 0.75rem;
    color: var(--gray-mid);
    display: block;
}

.hcm-text strong {
    font-size: 0.92rem;
    color: var(--anthracite);
    font-weight: 600;
}

.hcm-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 10px;
}

.hcm-link:hover {
    background: rgba(130, 210, 37, 0.08);
    transform: translateX(4px);
    padding-left: 8px;
    padding-right: 8px;
}

.hcm-link:hover .hcm-icon {
    transform: scale(1.06);
}

.hcm-link .hcm-icon {
    transition: var(--transition);
}

.hcm-link:focus-visible {
    outline: 2px solid var(--green-main);
    outline-offset: 4px;
}

.hero-card-small {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-card-small span {
    font-size: 0.88rem;
    line-height: 1.4;
}

.hero-card-emoji {
    font-size: 1.5rem;
}

.hero-card-title {
    color: white;
}

/* =========================
   SERVICES SECTION
========================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-main), var(--green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--green-mist);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.service-card:hover .service-icon {
    background: var(--green-pale);
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--anthracite);
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    cursor: pointer;
}

.service-link:hover {
    gap: 10px;
    color: var(--anthracite);
}

.section-btn-wrapper {
    margin-top: 40px;
}

/* =========================
   WHY SECTION
========================= */
.why-section {
    background: var(--green-main);
    color: var(--anthracite);
}

.why-section .section-label {
    color: var(--green-dark);
}

.why-section .section-title {
    color: rgba(255, 255, 255, 0.8);
}

.why-section .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.why-item {
    background: rgba(255, 255, 255, 0.30);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.48);
    transform: translateY(-4px);
}

.why-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-dark);
    font-family: var(--font-display);
    margin-bottom: 12px;
    line-height: 1;
}

.why-item h4 {
    color: var(--anthracite);
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.why-item p {
    color: rgba(28, 42, 14, 0.72);
    font-size: 0.88rem;
    line-height: 1.6;
}

.why-subtitle {
    color: rgba(28, 42, 14, 0.72);
}

/* =========================
   PROCESS SECTION
========================= */
.process-section {
    background: var(--beige);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 56px;
}

.step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--green-main);
    color: var(--anthracite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(130, 210, 37, 0.38);
}

.step h4 {
    color: var(--anthracite);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.step p {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* =========================
   GALLERY SECTION
========================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--green-mist);
    position: relative;
    cursor: pointer;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item.tall>div {
    height: 100%;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 58, 42, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.gallery-item .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.home-gallery-header {
    margin-bottom: 40px;
}

.home-gallery-btn {
    text-align: center;
    margin-top: 40px;
}

.home-gallery-gradient-hecke {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.home-gallery-gradient-rasen {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.home-gallery-gradient-pflaster {
    background: linear-gradient(135deg, #ecfdf5, #c6f6d5);
}

.home-gallery-gradient-zaun {
    background: linear-gradient(135deg, #f0fdf4, #d1fae5);
}

.home-gallery-gradient-reinigung {
    background: linear-gradient(135deg, #e0fef4, #b2f5e0);
}

/* =========================
   TESTIMONIALS SECTION
========================= */
.testimonials-section {
    background: var(--cream);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--gray-light);
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-stars {
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.star-filled {
    color: #f4a118;
}

.star-empty {
    color: #e0e0e0;
}

.review-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--anthracite);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--green-dark);
    font-size: 0.88rem;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--anthracite);
}

.review-location {
    font-size: 0.78rem;
    color: var(--gray-mid);
}

/* =========================
   AREA SECTION
========================= */
.area-section {
    background: var(--green-mist);
    border-top: 1px solid var(--gray-light);
}

.area-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.map-placeholder {
    height: 420px;
    border-radius: 24px;
    background: var(--cream);
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
}

.map-placeholder p {
    max-width: 420px;
    color: var(--gray);
}

.area-map {
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    height: 420px;
    box-shadow: var(--shadow-sm);
}

.area-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.area-map h3 {
    color: var(--anthracite);
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

.area-map p {
    color: rgba(28, 42, 14, 0.72);
    position: relative;
    z-index: 1;
}

.area-info h3 {
    color: var(--anthracite);
    margin-bottom: 16px;
}

.area-info p {
    margin-bottom: 24px;
}

.area-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.city-tag {
    background: var(--white);
    border: 1px solid var(--gray-light);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--green-dark);
}

/* =========================
   CTA SECTION
========================= */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================
   HOME PAGE OVERRIDES
========================= */
.home-gallery-header {
    margin-bottom: 40px;
}

.home-gallery-btn {
    text-align: center;
    margin-top: 40px;
}

.whatsapp-fixed {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--green-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-fixed:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    color: var(--green-light);
}

.whatsapp-fixed svg {
    width: 30px;
    height: 30px;
    display: block;
}


/* =========================
   RESPONSIVE STYLES
========================= */
@media(max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .area-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .area-info {
        text-align: center;
    }

    .area-cities {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    section {
        padding: 64px 0;
    }

    .hero {
        padding: 140px 0 72px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.tall {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns .btn {
        justify-content: center;
    }

    .whatsapp-fixed {
        display: none;
    }
}

@media(max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}