/* ==========================================
   Baumpflege Wagels – Stylesheet v2
   ========================================== */

/* ===== VARIABLES ===== */
:root {
    --forest:     #1B4332;
    --green:      #2D6A4F;
    --mid:        #40916C;
    --accent:     #52B788;
    --light:      #95D5B2;
    --pale:       #D8F3DC;
    --bg:         #F0F9F2;
    --dark:       #0D1B12;
    --text:       #1A2E22;
    --muted:      #5C7A69;
    --white:      #FFFFFF;
    --border:     rgba(45, 106, 79, 0.15);
    --sh-sm:      0 2px 12px rgba(0,0,0,.07);
    --sh-md:      0 8px 32px rgba(0,0,0,.11);
    --sh-lg:      0 24px 64px rgba(0,0,0,.16);
    --r-sm:       8px;
    --r-md:       14px;
    --r-lg:       20px;
    --r-xl:       28px;
    --ease:       0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

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

@media (min-width: 992px) {
    body::-webkit-scrollbar { width: 6px; }
    body::-webkit-scrollbar-thumb { background: var(--mid); border-radius: 3px; }
    body::-webkit-scrollbar-track { background: var(--pale); }
}

/* bottom padding for mobile sticky bar */
@media (max-width: 991.98px) {
    body { padding-bottom: 68px; }
}

img { max-width: 100%; height: auto; }
a { color: var(--green); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--mid); }
address { font-style: normal; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}


/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
    color: var(--dark);
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--mid);
}
.section-label.light { color: var(--light); }

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 700;
    margin: 6px 0 0;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    margin: 14px auto 0;
    line-height: 1.75;
}

.section-header { margin-bottom: 8px; }
.section-padding { padding: 96px 0; }

section[id] { scroll-margin-top: 70px; }

.text-muted-custom { color: var(--muted); line-height: 1.8; }
.text-white { color: var(--white) !important; }


/* ===== BUTTONS ===== */
.btn-primary-green {
    display: inline-flex;
    align-items: center;
    background: var(--green);
    color: var(--white) !important;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--green);
    transition: all var(--ease);
    cursor: pointer;
}
.btn-primary-green:hover {
    background: var(--forest);
    border-color: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27,67,50,.35);
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: var(--green);
    color: var(--white) !important;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--green);
    transition: all var(--ease);
}
.btn-hero-primary:hover {
    background: var(--forest);
    border-color: var(--forest);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(27,67,50,.45);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--white) !important;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,.65);
    transition: all var(--ease);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    background: var(--green);
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    transition: all var(--ease);
}
.btn-nav-cta:hover { background: var(--forest); transform: translateY(-1px); }

.btn-usp-cta {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--forest) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--white);
    transition: all var(--ease);
}
.btn-usp-cta:hover {
    background: transparent;
    color: var(--white) !important;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--green);
    color: var(--white);
    padding: 15px 32px;
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--ease);
}
.btn-submit:hover {
    background: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27,67,50,.3);
}


/* ===== NAVBAR ===== */
#mainNav {
    padding: 14px 0;
    background: transparent;
    backdrop-filter: blur(0);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}
#mainNav.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    padding: 8px 0;
    border-color: rgba(0,0,0,.06);
    box-shadow: var(--sh-sm);
}

#mainNav .navbar-brand { padding: 0; }

.nav-logo { height: 80px; transition: height 0.4s ease; }
#mainNav.scrolled .nav-logo { height: 52px; }

.nav-phone-inline a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255,255,255,.9);
    padding: 7px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.3);
    transition: all var(--ease);
}
.nav-phone-inline a:hover { background: rgba(255,255,255,.1); color: var(--white); }
#mainNav.scrolled .nav-phone-inline a { color: var(--text); border-color: var(--border); }
#mainNav.scrolled .nav-phone-inline a:hover { background: var(--bg); }

#mainNav .nav-link {
    color: rgba(255,255,255,.9);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 14px;
    position: relative;
    transition: color var(--ease);
}
#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--light);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--ease);
    border-radius: 1px;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active-link::after { transform: scaleX(1); }
#mainNav.scrolled .nav-link { color: var(--text); }
#mainNav.scrolled .nav-link:hover { color: var(--green); }

#mainNav .navbar-toggler {
    border-color: rgba(255,255,255,.5);
    padding: 6px 10px;
}
#mainNav.scrolled .navbar-toggler { border-color: var(--green); }
#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#mainNav.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2827,67,50,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNav .dropdown-menu {
    border: none;
    border-radius: var(--r-md);
    box-shadow: var(--sh-md);
    padding: 8px;
    margin-top: 6px;
}
#mainNav .dropdown-item {
    border-radius: var(--r-sm);
    font-size: 0.88rem;
    padding: 8px 14px;
    color: var(--text);
    transition: all var(--ease);
}
#mainNav .dropdown-item:hover { background: var(--pale); color: var(--green); }

@media (max-width: 991.98px) {
    #mainNav {
        background: rgba(13, 27, 18, 0.97) !important;
        backdrop-filter: blur(16px);
        padding: 10px 0;
    }
    #mainNav .nav-link { color: rgba(255,255,255,.9) !important; }
    #mainNav.scrolled .nav-link { color: rgba(255,255,255,.9) !important; }
    #mainNav .btn-nav-cta { margin: 8px 14px; }
    .nav-logo { height: 48px; }
    #mainNav.scrolled .nav-logo { height: 40px; }
}


/* ===== HERO ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 640px;
    background: url('bg.webp') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(5, 18, 9, 0.72) 0%, rgba(5, 18, 9, 0) 30%),
        linear-gradient(to bottom, rgba(5, 18, 9, 0) 60%, rgba(5, 18, 9, 0.72) 100%),
        rgba(5, 18, 9, 0.68);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(82, 183, 136, 0.18);
    border: 1px solid rgba(82, 183, 136, 0.4);
    color: var(--light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
    text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.hero-title em {
    font-style: italic;
    color: var(--light);
}

.hero-sub {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,.78);
    margin: 0 auto 38px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero trust bar */
.hero-trust-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 18px 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.88);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 6px 28px;
}
.trust-item i { color: var(--light); font-size: 0.9rem; }

.trust-sep {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,.2);
}

.hero-scroll-btn {
    position: absolute;
    bottom: 76px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.6);
    font-size: 1.1rem;
    z-index: 4;
    animation: bounceArrow 2.2s ease-in-out infinite;
    text-decoration: none;
}
.hero-scroll-btn:hover { color: var(--white); }

@keyframes bounceArrow {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}

@media (max-width: 767px) {
    .trust-sep { display: none; }
    .trust-item { padding: 5px 16px; font-size: 0.78rem; }
    .trust-bar-inner { gap: 0; }
    .hero-trust-bar { padding: 12px 0; }
    .hero-scroll-btn { bottom: 72px; }
}


/* ===== SERVICE CARDS ===== */
.service-card {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--sh-sm);
    border: 1px solid rgba(0,0,0,.05);
    transition: transform var(--ease), box-shadow var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sh-lg);
}

.service-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: rgba(255,255,255,.25);
    line-height: 1;
    z-index: 3;
    transition: color var(--ease);
}
.service-card:hover .service-num { color: rgba(255,255,255,.45); }

.service-img {
    height: 230px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}
.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.32));
}
.service-icon {
    position: absolute;
    bottom: -22px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    z-index: 4;
    box-shadow: 0 4px 16px rgba(45,106,79,.4);
    border: 3px solid var(--white);
    transition: background var(--ease);
}
.service-card:hover .service-icon { background: var(--forest); }

.service-body {
    padding: 36px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.service-body p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.65;
}


/* Extra services box */
.extra-box {
    background: var(--bg);
    border-radius: var(--r-xl);
    padding: 44px;
    border: 1px solid var(--pale);
}
.extra-box-header h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.extra-box-header p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

.extra-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid rgba(0,0,0,.04);
    transition: all var(--ease);
    height: 100%;
}
.extra-item:hover {
    background: var(--pale);
    border-color: var(--pale);
    transform: translateY(-3px);
    box-shadow: var(--sh-sm);
}
.extra-icon {
    width: 38px;
    height: 38px;
    background: var(--pale);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: background var(--ease);
}
.extra-item:hover .extra-icon { background: var(--light); }
.extra-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark);
    line-height: 1.3;
}
.extra-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.4;
    margin-top: 2px;
}

@media (max-width: 575px) {
    .extra-box { padding: 28px 20px; }
}


/* ===== USP SECTION ===== */
.usp-section {
    position: relative;
    background: linear-gradient(135deg, var(--forest) 0%, #0d3020 60%, #091a10 100%);
    overflow: hidden;
}

.usp-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(82,183,136,.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(82,183,136,.06) 0%, transparent 40%);
    pointer-events: none;
}

.usp-lead {
    color: rgba(255,255,255,.7);
    font-size: 1rem;
    line-height: 1.85;
}

.usp-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    height: 100%;
    transition: all var(--ease);
}
.usp-card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(82,183,136,.35);
    transform: translateY(-4px);
}
.usp-icon {
    width: 48px;
    height: 48px;
    background: rgba(82,183,136,.2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.15rem;
    margin-bottom: 16px;
    transition: background var(--ease);
}
.usp-card:hover .usp-icon { background: rgba(82,183,136,.3); }
.usp-card h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.usp-card p {
    color: rgba(255,255,255,.62);
    font-size: 0.87rem;
    line-height: 1.65;
    margin: 0;
}


/* ===== KAMINHOLZ ===== */
.kaminholz-section { background: var(--white); }

.kaminholz-frame {
    position: relative;
    border-radius: var(--r-xl);
    overflow: visible;
}
.kaminholz-frame::before {
    content: '';
    position: absolute;
    inset: -14px 14px 14px -14px;
    background: var(--pale);
    border-radius: var(--r-xl);
    z-index: 0;
}
.kaminholz-frame img {
    position: relative;
    z-index: 1;
    border-radius: var(--r-xl);
    box-shadow: var(--sh-md);
    width: 100%;
    display: block;
}

.kaminholz-badge-float {
    position: absolute;
    bottom: 24px;
    right: -14px;
    z-index: 5;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--sh-md);
    border: 1px solid var(--pale);
}
.kaminholz-badge-float i {
    color: #e05b1e;
    font-size: 1.4rem;
}
.kaminholz-badge-float strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
    line-height: 1.2;
}
.kaminholz-badge-float span {
    font-size: 0.75rem;
    color: var(--muted);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--pale);
}
.feature-list li:last-child { border-bottom: none; }
.fcheck {
    width: 30px;
    height: 30px;
    background: var(--pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.feature-list strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.3;
}
.feature-list span {
    font-size: 0.82rem;
    color: var(--muted);
}

@media (max-width: 767px) {
    .kaminholz-badge-float { right: 0; bottom: 16px; }
    .kaminholz-frame::before { display: none; }
}


/* ===== TEAM ===== */
.team-section {
    background: var(--dark);
}

.team-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: all var(--ease);
    height: 100%;
}
.team-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(82,183,136,.3);
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.team-card.highlighted {
    border-color: rgba(82,183,136,.25);
    background: rgba(82,183,136,.06);
}

.team-cert-area {
    background: rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-cert-img {
    height: 64px;
    opacity: 0.75;
    filter: brightness(0) invert(1);
    transition: opacity var(--ease);
}
.team-card:hover .team-cert-img { opacity: 1; }

.team-body {
    padding: 32px;
    text-align: center;
}
.team-name {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 10px;
}
.team-role-badge {
    display: inline-block;
    background: rgba(149,213,178,.15);
    color: var(--light);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.team-role-badge.etw {
    background: rgba(82,183,136,.2);
    color: var(--accent);
}
.team-desc {
    color: rgba(255,255,255,.58);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.team-cta-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.85) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.83rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.15);
    transition: all var(--ease);
}
.team-cta-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white) !important;
}


/* ===== GALLERY ===== */
.gallery-section { background: var(--bg); }

.gallery-masonry {
    columns: 3;
    column-gap: 14px;
}
@media (max-width: 768px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px) { .gallery-masonry { columns: 1; } }

.gallery-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,18,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease;
}
.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.35s ease;
}
.gallery-item:hover .gallery-overlay { background: rgba(13,27,18,.5); }
.gallery-item:hover .gallery-overlay i { opacity: 1; transform: scale(1); }


/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }

.lb-img-wrap {
    max-width: 90vw;
    max-height: 86vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-img-wrap img {
    max-width: 90vw;
    max-height: 86vh;
    object-fit: contain;
    border-radius: var(--r-sm);
    box-shadow: 0 0 80px rgba(0,0,0,.7);
}

.lb-btn {
    position: fixed;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    color: var(--white);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--ease);
    font-size: 1rem;
}
.lb-btn:hover { background: var(--green); border-color: var(--green); }
.lb-close { top: 20px; right: 20px; }
.lb-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 16px; top: 50%; transform: translateY(-50%); }

.lb-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.55);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
}


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

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid rgba(0,0,0,.06);
    color: var(--text) !important;
    text-decoration: none;
    transition: all var(--ease);
    flex: 1;
}
.contact-card:hover {
    border-color: var(--green);
    box-shadow: var(--sh-sm);
    transform: translateX(4px);
}
.contact-card.phone-card { border-left: 4px solid var(--green); }
.contact-card.static-card:hover { transform: none; cursor: default; border-color: rgba(0,0,0,.06); box-shadow: none; }

.cc-icon {
    width: 44px;
    height: 44px;
    background: var(--pale);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: background var(--ease);
}
.contact-card:hover .cc-icon { background: var(--pale); }
.phone-card .cc-icon { background: var(--pale); color: var(--green); }

.cc-body { flex: 1; min-width: 0; }
.cc-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); margin-bottom: 2px; }
.cc-value { font-size: 0.92rem; font-weight: 600; color: var(--dark); line-height: 1.3; }
.cc-hint { font-size: 0.78rem; color: var(--muted); }
.cc-arrow { color: var(--muted); font-size: 0.8rem; transition: transform var(--ease), color var(--ease); }
.contact-card:hover .cc-arrow { transform: translateX(4px); color: var(--green); }

/* Form wrapper */
.form-wrap {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 40px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: var(--sh-sm);
}

.form-success {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--pale);
    border: 1px solid var(--light);
    border-radius: var(--r-md);
    padding: 16px 20px;
    margin-bottom: 24px;
}
.form-success i { color: var(--green); font-size: 1.4rem; margin-top: 2px; }
.form-success strong { display: block; color: var(--dark); font-size: 0.92rem; }
.form-success p { margin: 2px 0 0; font-size: 0.85rem; color: var(--muted); }

.f-field {
    display: flex;
    flex-direction: column;
}
.f-field label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.f-field input,
.f-field textarea,
.f-field select {
    border: 1.5px solid #e0ebe3;
    border-radius: var(--r-sm);
    padding: 11px 14px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--ease), box-shadow var(--ease);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.f-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C7A69' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}
.f-field input:focus,
.f-field textarea:focus,
.f-field select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45,106,79,.1);
}
.f-field textarea { resize: vertical; min-height: 120px; }

.check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.check-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--green);
    cursor: pointer;
}
.check-row span {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}
.check-row a { color: var(--green); }

@media (max-width: 575px) {
    .form-wrap { padding: 24px 20px; }
}


/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.2fr 1.4fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand-col p {
    font-size: 0.88rem;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    margin: 16px 0;
    max-width: 260px;
}

.footer-logo {
    height: 72px;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

.footer-etw {
    height: 44px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: opacity var(--ease);
}
.footer-etw:hover { opacity: 0.75; }

.footer-col h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,.85);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-col ul a {
    color: rgba(255,255,255,.48);
    font-size: 0.88rem;
    transition: color var(--ease);
}
.footer-col ul a:hover { color: var(--light); }

.footer-col address p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,.48);
    font-size: 0.88rem;
    margin-bottom: 10px;
    line-height: 1.5;
}
.footer-col address i {
    color: var(--accent);
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-col address a { color: rgba(255,255,255,.48); transition: color var(--ease); }
.footer-col address a:hover { color: var(--light); }

.footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.3); font-size: 0.82rem; transition: color var(--ease); }
.footer-legal a:hover { color: var(--light); }

@media (max-width: 991.98px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 575px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand-col p { max-width: 100%; }
}


/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13,27,18,.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 14px 0;
    z-index: 8000;
}
@media (max-width: 991.98px) {
    .cookie-banner { bottom: 68px; }
}
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.cookie-inner p {
    margin: 0;
    font-size: 0.86rem;
    color: rgba(255,255,255,.75);
}
.cookie-inner a { color: var(--light); }
.btn-cookie-ok {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background var(--ease);
    white-space: nowrap;
}
.btn-cookie-ok:hover { background: var(--forest); }


/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(14px) scale(0.85);
    transition: all 0.35s ease;
    box-shadow: 0 4px 18px rgba(45,106,79,.45);
    z-index: 700;
}
.back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); }
.back-to-top:hover { background: var(--forest); color: var(--white); transform: translateY(-3px) scale(1); }

@media (max-width: 991.98px) {
    .back-to-top { bottom: 88px; right: 14px; width: 42px; height: 42px; font-size: 0.9rem; }
}


/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    height: 68px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.mobile-cta-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--green);
    color: var(--white) !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background var(--ease);
}
.mobile-cta-call:hover { background: var(--forest); }
.mobile-cta-form {
    flex: 0 0 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    background: var(--forest);
    color: var(--white) !important;
    font-size: 1.1rem;
    text-decoration: none;
    border-left: 1px solid rgba(255,255,255,.15);
    transition: background var(--ease);
}
.mobile-cta-form span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.mobile-cta-form:hover { background: var(--green); }


/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero reveal animations */
.rh {
    opacity: 0;
    transform: translateY(22px);
}
.rh.go { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.rh-1.go { transition-delay: 0.1s; }
.rh-2.go { transition-delay: 0.25s; }
.rh-3.go { transition-delay: 0.45s; }
.rh-4.go { transition-delay: 0.62s; }
