    /* ============================================================
   DIZONS EL AB – CLONE
   Author: PixelWebDesign
   Stack: Poppins / AOS / Swiper / Fancybox
============================================================ */

    /* ------------------------------
   CSS VARIABLES (THEME)
------------------------------ */
    :root {
        --dz-bg: #E2DDCF;
        /* Warm beige background from reference */
        --dz-ink: #171717;
        /* Main text */
        --dz-ink-2: #404040;
        /* Secondary text */
        --dz-white: #ffffff;
        --dz-black: #000000;
        --dz-accent: #009921;
        /* Gold/olive CTA from reference */
        --dz-accent-2: #005d14;
        /* Darker hover */
        --dz-muted: #8d8d8d;
        --dz-line: #e7e4da;

        --dz-shadow-1: 0 6px 16px rgba(0, 0, 0, .08);
        --dz-shadow-2: 0 10px 30px rgba(0, 0, 0, .12);

        --dz-radius: 16px;
        --dz-radius-sm: 10px;
        --dz-radius-lg: 22px;

        --dz-space-1: 10px;
        --dz-space-2: 16px;
        --dz-space-3: 24px;
        --dz-space-4: 32px;
        --dz-space-5: 48px;
        --dz-space-6: 72px;
        --dz-space-7: 35px;
        --dz-header-h: 80px;

        --dz-footer-bg: #1f1f1b;
        /* deep charcoal */
        --dz-footer-ink: #f8f9f9;
        /* near white */
        --dz-footer-muted: #c9c9c3;
        /* soft grey */
        --dz-footer-accent: #d7c894;
        /* warm gold-beige (headings) */
        --dz-divider: #2b2b26;
    }

    /* ------------------------------
   RESET / BASE
------------------------------ */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    html,
    body {
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: var(--dz-ink);
        background: var(--dz-bg);
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    a:hover {
        text-decoration: none;
    }

    /* Utility containers */
    .dz-container {
        width: 100%;
        max-width: 1200px;
        padding: 0 var(--dz-space-3);
        margin: 0 auto;
    }

    .dz-section {
        padding: var(--dz-space-7) 0;
        position: relative;
    }

    /* Head blocks */
    .dz-head {
        text-align: center;
        margin-bottom: var(--dz-space-5);
    }

    .dz-head h2 {
        margin: 0 0 var(--dz-space-2);
        font-size: clamp(28px, 3.2vw, 40px);
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .dz-head p {
        margin: 0 auto;
        /*max-width: 720px;*/
        color: var(--dz-ink-2);
    }

    /* ------------------------------
   BUTTONS & LINKS
------------------------------ */
    .dz-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 22px;
        border-radius: 999px;
        font-weight: 600;
        border: 2px solid transparent;
        transition: all .25s ease;
        background: var(--dz-accent);
        color: var(--dz-white);
        box-shadow: var(--dz-shadow-1);
    }

    .dz-btn:hover {
        background: var(--dz-accent-2);
        transform: translateY(-1px);
    }

    .dz-btn--primary {
        background: var(--dz-accent);
    }

    .dz-btn--ghost {
        background: transparent;
        color: var(--dz-ink);
        border-color: var(--dz-ink);
    }

    .dz-btn--ghost:hover {
        background: var(--dz-ink);
        color: var(--dz-white);
    }

    /* Simple link */
    .dz-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--dz-ink);
        font-weight: 600;
        border-bottom: 2px solid currentColor;
        padding-bottom: 2px;
        transition: color .2s ease;
    }

    .dz-link:hover {
        color: #fff;
    }

    /* ------------------------------
   HEADER
------------------------------ */
    .dz-header {
        --dz-header-h: 80px;
        --dz-ink: #111;
        --dz-accent: #009921;
        --dz-bg: #fff;
        --dz-line: #009921;
        --dz-shadow-1: 0 2px 8px rgba(0, 0, 0, .06);
    }

    /* HEADER */
    .dz-header {
        position: fixed;
        inset: 0 0 auto 0;
        height: var(--dz-header-h);
        display: flex;
        align-items: center;
        z-index: 999;
        background: rgba(255, 255, 255, .95);
        transition: background .25s, box-shadow .25s;
    }

    .dz-header.scrolled {
        background: rgba(255, 255, 255, .95);
        box-shadow: var(--dz-shadow-1);
        backdrop-filter: saturate(160%) blur(8px);
    }

    .dz-header .dz-container {
        max-width: 1250px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .dz-logo img {
        height: 65px;
        display: block;
    }

    .dz-nav {
        position: relative;
    }

    .dz-menu {
        display: flex;
        align-items: center;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .dz-menu>a,
    .dz-menu li>a {
        color: var(--dz-ink);
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        transition: all .3s ease;
    }

    .dz-menu li:hover>a {
        color: var(--dz-accent);
    }

    /* desktop dropdown */
    .has-submenu {
        position: relative;
    }

    .dz-submenu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: max-content;
        background: var(--dz-bg);
        border-radius: 8px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all .22s ease;
        z-index: 20;
        max-height: 315px;
        overflow: auto;
    }

    .dz-submenu li {
        list-style: none;
    }

    .dz-submenu a {
        display: block;
        padding: 10px 16px;
        color: var(--dz-ink);
        font-size: 14px;
    }

    .dz-submenu a:hover {
        background: #f7f7f7;
        color: var(--dz-accent);
    }

    .has-submenu:hover>.dz-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* plus icon (desktop sits inline but non-click) */
    .dz-toggle {
        /* display: none; */
        font-size: 12px;
        transition: transform 0.25s ease;
        margin-left: 5px;
        border: 0;
        outline: none;
        background: transparent;
        transition: all .3s ease;
        padding: 0;
    }

    /* Plus icons for dropdowns */
    .has-submenu .dz-toggle i {
        transition: all .3s ease;
    }

    .has-submenu:hover .dz-toggle i {
        transform: rotate(45deg);
        color: var(--dz-accent);
    }

    /* Burger */
    .dz-burger {
        display: none;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        border: 1px solid var(--dz-line);
        background: var(--dz-bg);
        color: var(--dz-ink);
        align-items: center;
        justify-content: center;
    }

    /* MOBILE */
    @media (max-width:960px) {
        .dz-burger {
            display: flex;
        }

        .dz-nav {
            position: fixed;
            top: var(--dz-header-h);
            left: 0;
            right: 0;
            background: #fff;
            transform: translateY(-120%);
            opacity: 0;
            visibility: hidden;
            transition: all .3s ease;
            box-shadow: var(--dz-shadow-1);
        }

        .dz-header.nav-open .dz-nav {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .dz-menu {
            flex-direction: column;
            align-items: stretch;
            padding: 10px 12px;
            gap: 0;
        }

        .dz-menu>li {
            position: relative;
            border-bottom: 1px solid var(--dz-line);
        }

        .dz-menu>li>a {
            display: block;
            padding: 14px 44px 14px 6px;
            font-size: 16px;
            line-height: 1.35;
        }

        /* make + a separate right-aligned button */
        .has-submenu>.dz-toggle {
            display: flex;
            position: absolute;
            right: 6px;
            top: 6px;
            width: 32px;
            height: 32px;
            border: 1px solid var(--dz-line);
            border-radius: 8px;
            background: #fff;
            align-items: center;
            justify-content: center;
            color: var(--dz-ink);
            transition: transform .2s ease, color .2s ease;
        }

        .has-submenu.open>.dz-toggle {
            color: var(--dz-accent);
        }

        .has-submenu.open>.dz-toggle i {
            transform: rotate(45deg);
        }

        /* turn submenu into slide-down */
        .dz-submenu {
            position: relative;
            top: auto;
            left: auto;
            min-width: 0;
            box-shadow: none;
            border-radius: 0;
            background: #fafafa;
            border-left: 2px solid var(--dz-accent);
            margin: 0 0 10px 6px;
            padding: 0;
            opacity: 1;
            visibility: visible;
            transform: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height .28s ease;
        }

        .has-submenu.open>.dz-submenu {
            max-height: 600px;
        }

        /* big enough */

        .dz-submenu a {
            padding: 10px 12px 10px 12px;
            font-size: 15px;
        }
    }

    /* ------------------------------
   HERO
------------------------------ */
    .dz-hero {
        position: relative;
        height: min(86vh, 820px);
        min-height: 560px;
        display: grid;
        place-items: center;
        margin-top: var(--dz-header-h);
        overflow: hidden;
    }

    .dz-hero__video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .dz-hero__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .70) 100%);
    }

    .dz-hero__content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--dz-white);
        padding: 0 var(--dz-space-3);
        max-width: 900px;
    }

    .dz-hero__content h1 {
        font-size: clamp(30px, 5vw, 56px);
        line-height: 1.15;
        margin: 0 0 var(--dz-space-3);
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .dz-hero__content p {
        margin: 0 auto var(--dz-space-4);
        max-width: 760px;
        color: #f1f1f1;
    }

    /* ------------------------------
   GRID UTILS
------------------------------ */
    .dz-grid {
        display: grid;
        gap: var(--dz-space-4);
    }

    .dz-grid--2 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .dz-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }

    /* ------------------------------
   ABOUT
------------------------------ */
    .dz-about__media .dz-img {
        border-radius: var(--dz-radius);
        box-shadow: var(--dz-shadow-2);
    }

    .dz-about__content h2 {
        font-size: clamp(26px, 3vw, 38px);
        margin: 0 0 var(--dz-space-2);
    }

    .dz-about__content p {
        color: var(--dz-ink-2);
        margin-bottom: var(--dz-space-3);
    }

    .dz-list {
        list-style: none;
        padding: 0;
        margin: 0 0 var(--dz-space-3);
        display: grid;
        gap: 10px;
    }

    .dz-list li {
        display: flex;
        gap: 10px;
        align-items: center;
        color: var(--dz-ink-2);
    }

    .dz-list i {
        color: var(--dz-accent);
    }

    /* ------------------------------
   LOGOS (PARTNERS)
------------------------------ */
    .dz-logos {
        padding: var(--dz-space-5) 100px;
        background: #000000;
    }

    .dz-logos .swiper-wrapper {
        align-items: center;
    }

    section.dz-section.dz-logos img {
        max-height: 100px;
        align-items: center;
    }

    .dz-logos__wrap {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: var(--dz-space-4);
        align-items: center;
        justify-items: center;
    }

    .dz-logos__wrap img {
        max-height: 34px;
        opacity: .7;
        transition: opacity .2s ease, transform .2s ease;
    }

    .dz-logos__wrap img:hover {
        opacity: 1;
        transform: translateY(-2px);
    }

    /* ------------------------------
   SERVICES
------------------------------ */
    .dz-section {
        padding: 48px 0;
    }

    .dz-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 16px;
    }

    .dz-head h2 {
        margin: 0 0 6px;
        font-size: 28px
    }

    .dz-head p {
        margin: 0 0 24px;
        color: #666
    }

    .dz-grid {
        display: grid;
        gap: 16px
    }

    .dz-grid--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    @media (max-width: 900px) {
        .dz-grid--3 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 560px) {
        .dz-grid--3 {
            grid-template-columns: 1fr;
        }
    }

    .dz-service {
        position: relative;
        min-height: 340px;
        /* bigger box */
        border-radius: var(--radius);
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        transition: transform .25s ease, box-shadow .25s ease;
    }

    .dz-service::after {
        /* darken image */
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        pointer-events: none;
        transition: background .25s ease;
    }

    .dz-service:hover {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
    }

    .dz-service:hover::after {
        background: rgba(0, 0, 0, .55);
    }

    /* Top-left link on the image */
    .dz-service__toplink {
        position: absolute;
        left: 16px;
        top: 16px;
        z-index: 2;
        transition: all .3s ease;
    }

    .dz-link {
        display: inline-block;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        padding: 8px 12px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .28);
        backdrop-filter: blur(2px);
        transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }

    .dz-link:hover {
        transform: translateY(-1px);
        background: var(--dz-accent);;
        border-color: rgba(255, 255, 255, .4);
    }

    /* Bottom-left text over image */
    .dz-service__content {
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 16px;
        z-index: 2;
        color: #fff;
    }

    .dz-service__title {
        margin: 0 0 6px;
        font-size: 22px;
        line-height: 1.25;
        color: #fff;
    }

    .dz-service__desc {
        margin: 0;
        color: rgba(255, 255, 255, .92);
    }

    /* ------------------------------
   FEATURE / SHOWCASE
------------------------------ */
    .dz-feature {
        position: relative;
        overflow: hidden;
        min-height: 420px;
        display: grid;
        place-items: center;
    }

    .dz-feature__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .dz-feature__img {
        position: absolute;
        inset: 0;
        margin: 0;
    }

    .dz-feature__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .5) 100%);
    }

    .dz-feature__content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--dz-white);
        padding: var(--dz-space-5) var(--dz-space-3);
    }

    .dz-feature__content h2 {
        margin: 0 0 12px;
        font-size: clamp(26px, 3.4vw, 40px);
    }

    .dz-feature__content p {
        margin: 0 0 var(--dz-space-3);
        color: #f3f3f3;
    }

    /* ------------------------------
   PROJECTS (Gallery)
------------------------------ */
    .dz-projects__grid a.dz-project {
        position: relative;
        overflow: hidden;
        border-radius: var(--dz-radius);
        display: block;
        box-shadow: var(--dz-shadow-1);
    }

    .dz-projects__grid a.dz-project img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .35s ease;
    }

    .dz-projects__grid a.dz-project:hover img {
        transform: scale(1.06);
    }

    .dz-project__label {
        position: absolute;
        left: 12px;
        bottom: 12px;
        background: rgba(0, 0, 0, .55);
        color: #fff;
        padding: 8px 12px;
        border-radius: 999px;
        font-size: 13px;
        letter-spacing: .2px;
        backdrop-filter: blur(4px);
    }

    /* Fancybox small tweaks */
    .fancybox__backdrop {
        background: rgba(0, 0, 0, .9);
    }

    /* ------------------------------
   FAQ (Accordion)
------------------------------ */
    .dz-accordion {
        display: grid;
        gap: 12px;
    }

    .dz-acc {
        background: var(--dz-white);
        border: 1px solid var(--dz-line);
        border-radius: var(--dz-radius-sm);
        overflow: hidden;
    }

    .dz-acc__head {
        width: 100%;
        text-align: left;
        background: var(--dz-white);
        border: 0;
        padding: 16px 18px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        font-family: "Poppins";
        font-size: 16px;
    }

    .dz-acc__head i {
        transition: transform .2s ease;
        color: var(--dz-accent);
    }

    .dz-acc__head[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    .dz-acc__panel {
        padding: 0 18px;
        height: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        border-top: 1px solid var(--dz-line);
        font-size: 14px;
    }

    .dz-acc__panel p {
        margin: 16px 0;
        color: var(--dz-ink-2);
    }

    .dz-acc__panel.is-open {
        padding: 16px 18px;
    }

    /* JS helper class for smooth open */
    .dz-acc__panel[hidden] {
        display: block;
    }

    /* ------------------------------
   TESTIMONIALS (Swiper)
------------------------------ */
    .dz-testimonials .dz-container {
        position: relative;
    }

    .dz-testimonial {
        background: var(--dz-white);
        border: 1px solid var(--dz-line);
        border-radius: var(--dz-radius);
        padding: var(--dz-space-4);
        box-shadow: var(--dz-shadow-1);
        height: 100%;
        display: grid;
        align-content: start;
        gap: 12px;
    }

    .dz-testimonial__stars {
        color: #f7b900;
        font-size: 16px;
    }

    .dz-testimonial__author {
        font-weight: 600;
        color: var(--dz-ink);
    }

    /* Swiper nav/pagination */
    .dz-swiper {
        padding-bottom: 44px;
    }

    .dz-swiper__nav {
        position: absolute;
        inset: 0 0 auto 0;
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        pointer-events: none;
    }

    .dz-swiper__prev,
    .dz-swiper__next {
        pointer-events: all;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--dz-white);
        border: 1px solid var(--dz-line);
        color: var(--dz-ink);
        box-shadow: var(--dz-shadow-1);
        transition: transform .2s ease, background .2s ease;
    }

    .dz-swiper__prev:hover,
    .dz-swiper__next:hover {
        transform: translateY(-2px);
        background: #faf9f5;
    }

    .dz-swiper__pagination .swiper-pagination-bullet {
        background: var(--dz-ink-2);
        opacity: .4;
    }

    .dz-swiper__pagination .swiper-pagination-bullet-active {
        background: var(--dz-accent);
        opacity: 1;
    }

    /* ------------------------------
   FOOTER
------------------------------ */
    .dz-footer {
        background: var(--dz-footer-bg);
        color: var(--dz-footer-ink);
        font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
        padding-top: 44px;
    }

    .dz-footer__wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px 36px;
        display: grid;
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
        gap: 40px 36px;
        border-bottom: 1px solid var(--dz-divider);
        font-size: 14px;
    }

    .dz-footer__logo img {
        height: auto;
        width: 100%;
        max-width: 300px;
        display: block;
        margin-bottom: 18px;
    }

    .dz-footer__intro {
        line-height: 1.7;
        color: var(--dz-footer-muted);
        margin: 0 0 10px;
        max-width: 46ch;
    }

    .dz-footer__org {
        color: var(--dz-footer-muted);
        margin: 6px 0 0;
    }

    .dz-footer__title {
        color: var(--dz-footer-accent);
        font-weight: 600;
        font-size: 18px;
        margin: 4px 0 14px;
        letter-spacing: .2px;
    }

    .dz-footer__list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .dz-footer__list li {
        margin: 8px 0;
    }

    .dz-footer__list a {
        color: var(--dz-footer-ink);
        text-decoration: none;
        opacity: .9;
        transition: opacity .2s ease, color .2s ease;
    }

    .dz-footer__list a:hover {
        opacity: 1;
        color: #ffffff;
    }

    .dz-footer__addr {
        font-style: normal;
        color: var(--dz-footer-muted);
        margin-bottom: 14px;
        line-height: 1.6;
    }

    .dz-footer__contact-row a {
        color: var(--dz-footer-ink);
        text-decoration: none;
        display: inline-block;
        margin: 3px 0;
        opacity: .95;
    }

    .dz-footer__contact-row a:hover {
        opacity: 1;
        text-decoration: underline;
    }

    .dz-footer__social {
        display: flex;
        gap: 10px;
        margin-top: 12px;
    }

    .dz-social {
        height: 36px;
        width: 36px;
        border: 1px solid var(--dz-divider);
        border-radius: 6px;
        display: grid;
        place-items: center;
        color: var(--dz-footer-ink);
        opacity: .9;
        transition: .2s ease;
    }

    .dz-social:hover {
        opacity: 1;
        background: rgba(255, 255, 255, .06);
    }

    /* Bottom bar */
    .dz-footer__bar {
        padding: 14px 0;
        font-size: 14px;
    }

    .dz-footer__bar-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 18px;
        align-items: center;
    }

    .dz-copy {
        margin: 0;
        color: var(--dz-footer-muted);
    }

    .dz-policy {
        color: var(--dz-footer-ink);
        text-decoration: none;
        opacity: .9;
    }

    .dz-policy:hover {
        text-decoration: underline;
    }

    .dz-partner {
        margin: 0;
        color: var(--dz-footer-muted);
    }

    .dz-partner a {
        color: var(--dz-footer-ink);
        text-decoration: none;
    }

    .dz-partner a:hover {
        text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 1100px) {
        .dz-footer__wrap {
            grid-template-columns: 1fr 1fr 1fr;
        }

        .dz-footer__brand {
            grid-column: 1 / -1;
        }
    }

    @media (max-width: 780px) {
        .dz-footer__wrap {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 560px) {
        .dz-footer__wrap {
            grid-template-columns: 1fr;
        }

        .dz-footer__bar-inner {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

    /* ------------------------------
   RESPONSIVE
------------------------------ */
    @media (max-width: 1100px) {
        .dz-grid--3 {
            grid-template-columns: repeat(2, 1fr);
        }

        .dz-logos__wrap {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 920px) {
        .dz-grid--2 {
            grid-template-columns: 1fr;
        }

        .dz-feature__content {
            padding: var(--dz-space-6) var(--dz-space-3);
        }

        .dz-footer__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 760px) {
        .dz-header .dz-container {
            gap: 10px;
        }

        .dz-nav {
            position: fixed;
            inset: var(--dz-header-h) 0 auto 0;
            background: rgba(255, 255, 255, .98);
            backdrop-filter: blur(6px);
            transform: translateY(-20px);
            opacity: 0;
            pointer-events: none;
            transition: .25s ease;
        }

        .dz-nav ul {
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            padding: 12px;
        }

        .dz-nav li a {
            display: block;
            padding: 14px 10px;
            border-radius: 8px;
        }

        .dz-nav li a:hover {
            background: #f6f4ee;
        }

        .dz-header.nav-open .dz-nav {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .dz-burger {
            display: inline-flex;
        }

        .dz-grid--3 {
            grid-template-columns: 1fr;
        }

        .dz-logos__wrap {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .dz-footer__grid {
            grid-template-columns: 1fr;
        }

        .dz-footer__bottom {
            flex-direction: column;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .dz-hero {
            min-height: 520px;
        }

        .dz-hero__content h1 {
            font-size: 32px;
        }

        .dz-logos__wrap img {
            max-height: 28px;
        }
    }

    /* ------------------------------
   SMALL ENHANCEMENTS
------------------------------ */
    ::selection {
        background: var(--dz-accent);
        color: #fff;
    }

    /* Smooth hover for images */
    .dz-img,
    .dz-project img {
        will-change: transform;
    }

    /* AOS animation performance */
    [data-aos] {
        transform-origin: center bottom;
        will-change: transform, opacity;
    }


    /* ------------------------------
   ABOUT PAGE 
------------------------------ */
    .innerpage_banner {
        position: relative;
        width: 100%;
        height: 100%;
        max-height: 60vh;
        margin-top: var(--dz-header-h);
        overflow: hidden;
    }

    .innerpage_banner img {
        width: 100%;
        height: 100%;
        max-height: 60vh;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* ========== Benefits strip (scoped) ========== */
    .em-benefits {
        --em-bg: #0099211c;
        /* soft beige like screenshot */
        --em-ink: #0f0f0f;
        /* main text */
        --em-muted: #5a5a5a;
        /* paragraph */
        --em-accent: #c83a38;
        /* your theme color for subtle accents if needed */
        background: var(--em-bg);
        border-top: 1px solid rgba(0, 0, 0, .06);
        border-bottom: 1px solid rgba(0, 0, 0, .06);
    }

    .em-benefits__wrap {
        max-width: 1180px;
        margin-inline: auto;
        padding: 34px 24px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }

    .em-benefits__item {
        display: grid;
        grid-template-columns: 64px 1fr;
        column-gap: 18px;
        align-items: flex-start;
    }

    .em-benefits__icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: #111;
        background: transparent;
    }

    .em-benefits__icon i {
        font-size: 34px;
        opacity: .9;
    }

    .em-benefits__title {
        grid-column: 2/-1;
        margin: 2px 0 8px;
        font-weight: 800;
        font-size: 20px;
        line-height: 1.25;
        color: var(--em-ink);
    }

    .em-benefits__text {
        grid-column: 2/-1;
        margin: 0;
        font-size: 16px;
        line-height: 1.7;
        color: var(--em-muted);
    }

    /* Small motion on reveal (optional) */
    .em-benefits__item {
        transform: translateY(8px);
        opacity: 0;
        transition: transform .35s ease, opacity .35s ease;
    }

    .em-benefits__item.is-in {
        transform: none;
        opacity: 1;
    }

    /* Responsive */
    @media (max-width: 980px) {
        .em-benefits__wrap {
            grid-template-columns: 1fr;
            row-gap: 28px;
        }

        .em-benefits__item {
            grid-template-columns: 52px 1fr;
        }

        .em-benefits__icon {
            width: 52px;
            height: 52px;
        }

        .em-benefits__icon i {
            font-size: 28px;
        }

        .em-benefits__title {
            font-size: 19px;
        }
    }

    /* ===== Scoped Team Styles ===== */
    .el-team {
        --accent: #c83a38;
        --ink: #111;
        --muted: #666;
        --line: #e8e8e8;
        background: #fff;
    }

    .el-team__wrap {
        max-width: 1180px;
        margin: 0 auto;
        padding: 32px 24px 42px;
    }

    .el-team__quote {
        text-align: center;
        font-weight: 800;
        font-size: 22px;
        line-height: 1.35;
        color: #6f6a61;
        font-style: italic;
        margin: 8px auto 32px;
    }

    .el-team__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        align-items: start;
        justify-items: center;
    }

    .el-team__card {
        text-align: center;
        max-width: 340px;
    }

    .el-team__portrait {
        width: 340px;
        height: 340px;
        margin: 0 auto 18px;
        border-radius: 50%;
        overflow: hidden;
        background: #ddd;
        position: relative;
    }

    .el-team__portrait img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%);
        /* like the screenshot */
    }

    .el-team__name {
        font-size: 20px;
        font-weight: 900;
        margin: 6px 0 2px;
        color: var(--ink);
    }

    .el-team__role {
        margin: 0 0 10px;
        font-weight: 700;
        color: #0f0f0f;
        font-size: 14px;
    }

    .el-team__bio {
        margin: 0 auto 10px;
        color: var(--muted);
        line-height: 1.65;
        font-size: 14px;
    }

    .el-team__contact {
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
    }

    .el-team__contact a {
        color: #000;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .el-team__contact strong {
        font-weight: 800;
    }

    /* subtle top/bottom separators like the ref page */
    .el-team {
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    /* Responsive */
    @media (max-width: 1100px) {
        .el-team__portrait {
            width: 300px;
            height: 300px;
        }
    }

    @media (max-width: 900px) {
        .el-team__grid {
            grid-template-columns: 1fr;
            row-gap: 36px;
        }

        .el-team__card {
            max-width: 420px;
        }

        .el-team__portrait {
            width: 320px;
            height: 320px;
        }
    }


    /* ===========================
   SERVICE DETAILS (Scoped)
   =========================== */
    .el-help {
        --bg: #e8e3d7;
        --ink: #111;
        --muted: #333;
        --accent: #009921;
        background: var(--bg);
        padding: 50px 20px;
    }

    .el-help__wrap {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        align-items: center;
        gap: 60px;
    }

    .el-help__left h2 {
        font-size: 28px;
        font-weight: 800;
        color: var(--ink);
        margin-bottom: 12px;
    }

    .el-help__left p {
        color: var(--muted);
        line-height: 1.6;
        font-size: 16px;
        margin: 0 0 14px;
    }

    .el-help__btn {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 24px;
        border-radius: 999px;
        background: var(--accent);
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        font-size: 15px;
        transition: 0.3s ease background;
    }

    .el-help__btn:hover {
        background: #8c7a4f;
    }

    .el-help__list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .el-help__list li {
        display: flex;
        align-items: center;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 4px;
    }

    .el-help__list i {
        color: var(--accent);
        margin-right: 10px;
        font-size: 17px;
    }

    /* ============ Responsive ============ */
    @media (max-width: 900px) {
        .el-help__wrap {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .el-help__left h2 {
            text-align: center;
        }

        .el-help__btn {
            display: block;
            text-align: center;
            margin-inline: auto;
        }
    }

    /* =========================================================
   Elmera – Kontakta oss (scoped)
   Drop this in your stylesheet. Uses CSS vars for easy theming.
   ========================================================= */
    .el-contact {
        /* Theme tokens */
        --bg: #e8e3d7;
        /* beige background */
        --ink: #101820;
        /* headings / labels */
        --text: #2a2a2a;
        /* body text */
        --muted: #6b665c;
        /* meta/secondary */
        --line: #d7d0c2;
        /* borders */
        --field: #bfb8a9;
        /* input borders */
        --panel: #f8f6f2;
        /* form panel bg */
        --accent: #009921;
        /* buttons & highlights */
        --brand: #c83a38;
        /* required star / links if needed */

        background: var(--bg);
        border-top: 1px solid rgba(0, 0, 0, .06);
        color: var(--text);
        font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }

    /* ---------- layout ---------- */
    .el-contact__wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 26px 24px 40px;
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 36px 48px;
        align-items: start;
    }

    /* ---------- left column ---------- */
    .el-contact__left h2 {
        margin: 0 0 10px;
        font-weight: 800;
        font-size: 24px;
        line-height: 1.25;
        color: var(--ink);
    }

    .el-contact__left p {
        margin: 0 0 12px;
        color: var(--text);
        line-height: 1.6;
    }

    .el-contact__call {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 10px 0 18px;
        padding: 9px 16px;
        border-radius: 999px;
        background: var(--accent);
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        transition: filter .2s ease, transform .02s ease-in;
    }

    .el-contact__call:hover {
        filter: brightness(.95);
    }

    .el-contact__call:active {
        transform: translateY(1px);
    }

    .el-contact__company h3 {
        margin: 10px 0 6px;
        font-size: 16px;
        font-weight: 900;
        color: var(--ink);
    }

    .el-contact__company h4 {
        margin: 14px 0 6px;
        font-size: 14px;
        font-weight: 900;
        color: var(--ink);
    }

    .el-contact__company a {
        color: var(--text);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .el-contact__company address {
        font-style: normal;
        line-height: 1.5;
        color: var(--text);
    }

    /* ---------- form panel ---------- */
    .el-contact__form {
        background: var(--panel);
        border: 1px solid var(--line);
        padding: 14px;
        border-radius: 2px;
    }

    /* Row/Col flex system */
    .el-row {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 12px;
    }

    .el-col {
        flex: 1 1 100%;
        /* default: full width (mobile-first) */
        min-width: 0;
    }

    .el-col--full {
        flex-basis: 100%;
    }

    .el-row--2 .el-col {
        flex: 1 1 calc(50% - 7px);
    }

    /* 50/50 */
    .el-row--3 .el-col {
        flex: 1 1 calc(33.3333% - 9.34px);
    }

    /* thirds */

    /* Form controls */
    .el-field {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .el-label {
        font-size: 14px;
        font-weight: 600;
        color: var(--ink);
    }

    .req {
        color: var(--brand);
    }

    .el-field input,
    .el-field select,
    .el-field textarea {
        background: #fff;
        border: 1px solid var(--field);
        border-radius: 2px;
        padding: 8px 10px;
        font-size: 14px;
        color: var(--ink);
        outline: none;
        transition: border-color .15s ease, box-shadow .15s ease;
    }

    .el-field textarea {
        resize: vertical;
    }

    .el-field input:focus,
    .el-field select:focus,
    .el-field textarea:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent), transparent 80%);
    }

    /* HTML5 validity hints (optional) */
    .el-field input:invalid:focus,
    .el-field select:invalid:focus,
    .el-field textarea:invalid:focus {
        border-color: var(--brand);
        box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand), transparent 80%);
    }

    /* File input row */
    .el-file {
        align-items: flex-start;
    }

    .el-file input[type="file"] {
        margin-top: 2px;
    }

    .el-file__name {
        font-size: 12px;
        color: var(--muted);
        margin-left: 8px;
        margin-top: 6px;
    }

    /* Checkbox */
    .el-check {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: var(--text);
    }

    .el-check input {
        width: 16px;
        height: 16px;
        accent-color: var(--accent);
    }

    /* Submit + legal */
    .el-submit {
        appearance: none;
        border: 0;
        cursor: pointer;
        background: var(--accent);
        color: #fff;
        padding: 10px 14px;
        font-weight: 800;
        border-radius: 3px;
        transition: filter .2s ease, transform .02s ease-in;
    }

    .el-submit:hover {
        filter: brightness(.95);
    }

    .el-submit:active {
        transform: translateY(1px);
    }

    .el-legal {
        font-size: 12px;
        color: var(--muted);
        margin: 10px 0 0;
    }

    .el-legal a {
        color: var(--muted);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    /* ---------- responsive ---------- */
    @media (max-width: 1024px) {
        .el-contact__wrap {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 760px) {

        .el-row--2 .el-col,
        .el-row--3 .el-col {
            flex-basis: 100%;
        }

        /* stack rows on small screens */
        .el-contact__left h2 {
            font-size: 22px;
        }

        .el-contact__left p {
            font-size: 15px;
        }
    }
    
    .eapps-widget-toolbar-panel-wrapper {
    display: none !important;
}
