:root {
    --green: #6CBE45;
    --green-dark: #55a132;
    --bg: #0c0e0c;
    --bg-2: #121512;
    --card: #181c18;
    --line: #242a24;
    --text: #e8ece7;
    --muted: #9aa39a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(12, 14, 12, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; max-width: 1100px; margin: 0 auto;
}
.brand {
    font-weight: 800; font-size: 1.15rem; letter-spacing: 0.5px;
    color: var(--text); text-decoration: none; white-space: nowrap;
}
.brand span { color: var(--green); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
    color: var(--muted); text-decoration: none; font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.btn {
    display: inline-block; background: var(--green); color: #0c0e0c;
    font-weight: 600; text-decoration: none; padding: 10px 22px;
    border-radius: 8px; transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline {
    background: transparent; color: var(--text);
    border: 1.5px solid var(--line);
}
.btn-outline:hover { background: var(--card); border-color: var(--green); }

/* ---------- Hero ---------- */
header.hero {
    position: relative; overflow: hidden;
    padding: 90px 0 70px;
    background:
        radial-gradient(ellipse 800px 400px at 70% -10%, rgba(108, 190, 69, 0.13), transparent),
        var(--bg);
    text-align: center;
}
.hero-logo {
    max-width: 420px; width: 85%; height: auto; display: block;
    filter: drop-shadow(0 0 28px rgba(108, 190, 69, 0.22));
}
.hero-logo-card { display: inline-block; margin-bottom: 36px; }
.eyebrow {
    display: inline-block; color: var(--green); font-weight: 600;
    font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 16px;
}
h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 800;
    line-height: 1.12; margin-bottom: 18px;
}
h1 em { font-style: normal; color: var(--green); }
.hero p.lead {
    color: var(--muted); font-size: 1.15rem; max-width: 560px;
    margin: 0 auto 34px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-ctas .btn { padding: 14px 30px; font-size: 1.05rem; }

/* ---------- Trust strip ---------- */
.strip {
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    background: var(--bg-2);
}
.strip-inner {
    display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
    padding: 22px 24px; max-width: 1100px; margin: 0 auto;
}
.strip-item { color: var(--muted); font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.strip-item strong { color: var(--text); font-weight: 600; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 10px; }
.sec-head p { color: var(--muted); max-width: 520px; margin: 0 auto; }

/* Services */
.grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.card {
    background: var(--card); border: 1px solid var(--line); border-radius: 14px;
    padding: 28px 24px; transition: border-color 0.25s, transform 0.25s;
}
.card:hover { border-color: var(--green); transform: translateY(-4px); }
.card .icon {
    width: 46px; height: 46px; border-radius: 10px;
    background: rgba(108, 190, 69, 0.12); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 16px;
}
.card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.93rem; }

/* About */
#about { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
}
.about-grid h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 800; margin-bottom: 18px; }
.about-grid p { color: var(--muted); margin-bottom: 14px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
    background: var(--card); border: 1px solid var(--line); border-radius: 14px;
    padding: 26px 20px; text-align: center;
}
.stat .num { font-size: 2rem; font-weight: 800; color: var(--green); }
.stat .lbl { color: var(--muted); font-size: 0.88rem; margin-top: 4px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; }
.contact-card {
    background: var(--card); border: 1px solid var(--line); border-radius: 14px;
    padding: 32px;
}
.contact-card h3 {
    color: var(--green); text-transform: uppercase; letter-spacing: 1.5px;
    font-size: 0.8rem; font-weight: 600; margin-bottom: 6px;
}
.contact-card .big { font-size: 1.35rem; font-weight: 600; margin-bottom: 22px; }
.contact-card .big a { color: var(--text); text-decoration: none; }
.contact-card .big a:hover { color: var(--green); }
.hours { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours td { padding: 7px 0; color: var(--muted); font-size: 0.95rem; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; color: var(--text); }
.hours tr.closed td:last-child { color: #c0705a; }
.map-frame {
    border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
    min-height: 380px; height: 100%;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(30%); }

/* Forms */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea {
    width: 100%; padding: 12px 14px; border-radius: 8px;
    background: var(--bg-2); border: 1.5px solid var(--line);
    color: var(--text); font-family: inherit; font-size: 0.98rem;
    transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.field textarea { resize: vertical; min-height: 110px; }
.form-status { margin-top: 12px; font-size: 0.93rem; display: none; }
.form-status.ok { display: block; color: var(--green); }
.form-status.err { display: block; color: #c0705a; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Newsletter */
#newsletter {
    background:
        radial-gradient(ellipse 600px 300px at 50% 120%, rgba(108, 190, 69, 0.12), transparent),
        var(--bg);
    text-align: center;
}
.nl-form {
    display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap;
}
.nl-form input {
    flex: 1; min-width: 220px; padding: 14px 16px; border-radius: 8px;
    background: var(--card); border: 1.5px solid var(--line);
    color: var(--text); font-family: inherit; font-size: 1rem;
}
.nl-form input:focus { outline: none; border-color: var(--green); }
.nl-form .btn { padding: 14px 28px; border: none; cursor: pointer; font-size: 1rem; font-family: inherit; }

.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--bg-2); border: 1px solid var(--line);
    color: var(--text); text-decoration: none; font-weight: 700;
    transition: all 0.25s;
}
.socials a:hover { background: var(--green); color: #0c0e0c; transform: translateY(-3px); }

/* Footer */
footer {
    border-top: 1px solid var(--line); background: var(--bg-2);
    padding: 30px 0; text-align: center; color: var(--muted); font-size: 0.88rem;
}
footer .brand { font-size: 1rem; display: block; margin-bottom: 8px; }

/* Floating call button (mobile) */
.call-fab {
    display: none; position: fixed; right: 18px; bottom: 18px; z-index: 200;
    background: var(--green); color: #0c0e0c; font-weight: 700;
    padding: 14px 22px; border-radius: 50px; text-decoration: none;
    box-shadow: 0 8px 24px rgba(108, 190, 69, 0.35);
}

/* ---------- Mobile menu + bottom call bar ---------- */
.menu-btn {
    display: none; background: none; border: 1.5px solid var(--line);
    border-radius: 8px; padding: 6px 12px; color: var(--text);
    font-size: 1.25rem; line-height: 1; cursor: pointer;
}
.menu-btn:hover { border-color: var(--green); }
.call-bar { display: none; }

@media (max-width: 820px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    section { padding: 60px 0; }
    .call-fab { display: none !important; }
    body { padding-bottom: 74px; }

    /* Hamburger replaces the call button in the header */
    .menu-btn { display: block; }
    .nav-links a.btn { display: none; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; gap: 0; padding: 6px 0;
        background: rgba(12, 14, 12, 0.98); backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--line);
    }
    .nav-links.open { display: flex; }
    .nav-links a { display: block; width: 100%; padding: 14px 24px; font-size: 1.05rem; }
    nav { position: sticky; }
    .nav-inner { position: relative; }

    /* Fixed bottom call bar */
    .call-bar {
        display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
        background: rgba(12, 14, 12, 0.95); backdrop-filter: blur(10px);
        border-top: 1px solid var(--line);
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    }
    .call-bar .btn {
        display: block; width: 100%; text-align: center;
        padding: 14px; font-size: 1.05rem; color: #0c0e0c;
    }
}

/* ---------- Coming soon badge ---------- */
.badge {
    display: inline-block; padding: 4px 12px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; vertical-align: middle;
}
.badge-soon { background: rgba(108, 190, 69, 0.15); color: var(--green); border: 1px solid var(--green); }

/* ---------- Service pages ---------- */
.page-hero {
    padding: 70px 0 50px; text-align: center;
    background:
        radial-gradient(ellipse 700px 350px at 50% -10%, rgba(108, 190, 69, 0.12), transparent),
        var(--bg);
    border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.page-hero p.lead { color: var(--muted); font-size: 1.1rem; max-width: 620px; margin: 14px auto 0; }
.breadcrumb { font-size: 0.88rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }

.checklist { list-style: none; max-width: 640px; margin: 0 auto; }
.checklist li {
    padding: 14px 0 14px 36px; position: relative;
    border-bottom: 1px solid var(--line); color: var(--muted);
}
.checklist li strong { color: var(--text); }
.checklist li::before {
    content: "\2713"; position: absolute; left: 0; top: 12px;
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(108, 190, 69, 0.15); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700;
}

.cta-band {
    background: var(--bg-2); border-top: 1px solid var(--line);
    text-align: center;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: var(--muted); margin-bottom: 26px; }

.soon-panel {
    max-width: 640px; margin: 0 auto; text-align: center;
    background: var(--card); border: 1px solid var(--green); border-radius: 14px;
    padding: 40px 32px;
}
.soon-panel .big-badge {
    font-size: 1rem; padding: 8px 20px; margin-bottom: 20px;
}
.soon-panel p { color: var(--muted); margin-bottom: 12px; }

/* Cards as links */
a.card { display: block; color: inherit; text-decoration: none; }
.card .more { color: var(--green); font-size: 0.88rem; font-weight: 600; margin-top: 12px; display: inline-block; }

/* Fix: nav call button text (was overridden by .nav-links a colour) */
.nav-links a.btn { color: #0c0e0c; font-weight: 600; }
.nav-links a.btn:hover { color: #0c0e0c; background: var(--green-dark); }

/* ---------- WhatsApp ---------- */
.btn-wa { background: #25D366; color: #0c0e0c; }
.btn-wa:hover { background: #1fb457; }
.call-bar-inner { display: flex; gap: 10px; max-width: 520px; margin: 0 auto; }
.call-bar .btn { flex: 1; text-align: center; padding: 14px 8px; font-size: 1rem; }

.wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 300;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, background 0.2s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); background: #1fb457; }
.wa-float svg { width: 32px; height: 32px; fill: #ffffff; }

@media (max-width: 820px) {
    .wa-float { display: none; }
}

/* WhatsApp pulse */
@keyframes wa-pulse {
    0%   { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.55); }
    70%  { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}
.wa-float { animation: wa-pulse 2.2s ease-out infinite; }
.wa-float:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* Dark Google Maps embed */
.map-frame { background: #17181a; }
.map-frame iframe {
    filter: invert(88%) hue-rotate(180deg) saturate(170%) brightness(108%) contrast(94%);
}

/* ---------- FAQ ---------- */
details {
    background: var(--card); border: 1px solid var(--line); border-radius: 12px;
    margin-bottom: 12px; overflow: hidden;
}
details summary {
    cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--text);
    list-style: none; position: relative; padding-right: 48px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
    content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    color: var(--green); font-size: 1.4rem; font-weight: 400; transition: transform 0.2s;
}
details[open] summary::after { content: "\2212"; }
details[open] { border-color: var(--green); }
details p { padding: 0 22px 18px; color: var(--muted); font-size: 0.95rem; }

/* ---------- Footer credit ---------- */
.footer-links { margin-top: 14px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; margin: 0 9px; }
.footer-links a:hover { color: var(--green); }
.credit { margin-top: 10px; font-size: 0.85rem; color: var(--muted); }
.credit .heart { color: #e0245e; }
.credit a {
    font-weight: 700; text-decoration: none;
    background: linear-gradient(90deg, #4f9cf9, #8b5cf6);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.credit a:hover { filter: brightness(1.2); }

/* ---------- Footer & newsletter mobile polish ---------- */
@media (max-width: 600px) {
    .f-sep { display: none; }
    .f-item { display: block; margin: 4px 0; }
    .nl-form .btn { width: 100%; }
}

/* ---------- Branded social buttons ---------- */
.socials { justify-content: center; }
.socials a svg { width: 22px; height: 22px; }
.soc-fb { background: #1877F2 !important; border-color: #1877F2 !important; }
.soc-fb svg { fill: #ffffff; }
.soc-fb:hover { background: #0f66d8 !important; transform: translateY(-3px); }
.soc-g { background: #ffffff !important; border-color: #ffffff !important; }
.soc-g:hover { transform: translateY(-3px); }

/* ---------- Services dropdown ---------- */
.nav-item { position: relative; }
.nav-item > a::after { content: ' \25BE'; font-size: 0.72em; opacity: 0.65; }
.sub-menu {
    display: none; position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%); padding-top: 14px; z-index: 60;
}
.nav-item:hover .sub-menu, .nav-item:focus-within .sub-menu { display: block; }
.sub-menu-inner {
    background: var(--card); border: 1px solid var(--line); border-radius: 12px;
    padding: 8px; min-width: 250px; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.sub-menu a {
    display: block; padding: 9px 14px; border-radius: 8px;
    color: var(--text); font-size: 0.95rem; white-space: nowrap;
}
.sub-menu a:hover { background: rgba(108, 190, 69, 0.12); color: var(--green); }
.sub-menu .soon { color: var(--muted); font-size: 0.8em; }

@media (max-width: 820px) {
    .nav-item { position: static; }
    .nav-item > a::after { content: ''; }
    .sub-menu { display: block; position: static; transform: none; padding-top: 0; }
    .sub-menu-inner { background: transparent; border: none; box-shadow: none; padding: 0; }
    .sub-menu a { display: block; width: 100%; padding: 11px 24px 11px 44px; font-size: 0.98rem; color: var(--muted); }
    .sub-menu a:hover { background: transparent; }
}

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
    position: fixed; bottom: 18px; left: 18px; z-index: 200;
    max-width: 380px; padding: 18px 20px;
    background: var(--card); border: 1px solid var(--line); border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}
.cookie-banner p { color: var(--muted); font-size: 0.88rem; line-height: 1.55; margin-bottom: 14px; }
.cookie-banner a { color: var(--green); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { flex: 1; padding: 10px 16px; font-size: 0.92rem; text-align: center; }
@media (max-width: 820px) {
    .cookie-banner { left: 12px; right: 12px; bottom: 86px; max-width: none; }
}

/* ---------- Map placeholder (click-to-load, no Google cookies until then) ---------- */
.map-consent {
    min-height: 380px; height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 14px;
    background:
        radial-gradient(ellipse 500px 260px at 50% 0%, rgba(108, 190, 69, 0.07), transparent),
        var(--bg-2);
    text-align: center; padding: 32px 24px;
}
.map-consent .map-pin { font-size: 2rem; }
.map-consent p { color: var(--muted); font-size: 0.95rem; max-width: 420px; }
.map-consent .map-note { font-size: 0.8rem; opacity: 0.75; }
