@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


.lato-thin, .lato-light, .lato-regular, .lato-bold, .lato-black,
.lato-thin-italic, .lato-light-italic, .lato-regular-italic, .lato-bold-italic, .lato-black-italic {
    font-family: "Lato", sans-serif;
    font-style: normal;
}

.lato-thin {
    font-weight: 100;
}

.lato-light {
    font-weight: 300;
}

.lato-regular {
    font-weight: 400;
}

.lato-bold {
    font-weight: 700;
}

.lato-black {
    font-weight: 900;
}

.lato-thin-italic, .lato-light-italic, .lato-regular-italic, .lato-bold-italic, .lato-black-italic {
    font-style: italic;
}

.lato-thin-italic {
    font-weight: 100;
}

.lato-light-italic {
    font-weight: 300;
}

.lato-regular-italic {
    font-weight: 400;
}

.lato-bold-italic {
    font-weight: 700;
}

.lato-black-italic {
    font-weight: 900;
}


:root {
    --green: #7AC323;
    --green-dark: #5b9d2b;
    --gray-100: #f5f6f7;
    --gray-200: #eceff1;
    --gray-700: #3a3a3a;
    --text-default-color: rgb(89, 87, 79);
    --container: 1100px;
    --gray-accent: #59574F;
    --gray-bdlogistics: #848374;
    --light-grey-bg: #ECECEA;
    --grey-bd-light: #BFBEA8;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: "Lato", sans-serif;
    color: var(--text-default-color);
    line-height: 24px;
    font-weight: 400;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.container, .is-style-bd-container {
    width: min(var(--container), calc(100% - 2rem));
    margin-inline: auto !important;
}

h2 {
    font-weight: 700;
    font-style: Bold;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: 0%;
    color: rgb(132, 131, 116)
}

h4 {
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 36px;
    letter-spacing: 0%;
    color: #7ac323;
}

h1 {
    margin: 0;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 0;
    color: #7AC323
}

.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    z-index: 10
}

/* Breadcrumb */
.breadcrumb {
    background: #fff;
    padding: 1.6rem 0;
    font-size: 14px
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumb a {
    color: var(--green);
    text-decoration: none;
    font-weight: 500
}

.breadcrumb a:hover {
    text-decoration: underline
}

.breadcrumb-current {
    color: var(--gray-accent);
    font-weight: 400
}

.breadcrumb-home {
    color: var(--green)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 0
}

.branding {
    display: flex;
    align-items: center;
    gap: .75rem
}

.branding .logo {
    font-weight: 800;
    color: #111;
    text-decoration: none
}

.branding .logo span {
    color: var(--green)
}

.branding .logo-image {
    display: inline-block
}

.branding .logo-image img {
    display: block;
    max-height: 50px;
    width: auto
}

.primary-nav .menu {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0
}

.primary-nav a {
    text-decoration: none !important;
    color: #848374;
    padding: .5rem .75rem;
    border-radius: .4rem;
    transition: color 500ms ease;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current-menu-ancestor > a,
.primary-nav .current-page-ancestor > a {
    color: var(--green);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: .5rem;
    cursor: pointer;
    z-index: 100
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* Dropdowns */
.primary-nav .menu > li {
    position: relative
}

.primary-nav .menu li {
    list-style: none
}

.primary-nav .menu > li > a::after {
    content: " ";
    margin-left: .35rem;
    font-size: 1.4em
}

.primary-nav .menu > li.menu-item-has-children > a::after {
    content: "▾";
    margin-left: .35rem;
    color: currentColor;
    font-size: 1.4em;
    display: inline-block;
    transition: transform 500ms ease;
}


.primary-nav .menu > li.menu-item-has-children > a {
    color: var(--gray-bdlogistics);
}

.primary-nav .menu > li.menu-item > a {
    color: var(--gray-bdlogistics);
}

.primary-nav .menu > li.menu-item > a:hover {
    color: var(--green);
}

.primary-nav .menu > li.current-menu-ancestor > a {
    color: var(--green);
}

.primary-nav .menu > li.menu-item-has-children:hover > a,
.primary-nav .menu > li.menu-item-has-children:focus-within > a {
    color: var(--green);
}

.primary-nav .menu > li.menu-item-has-children:hover > a::after,
.primary-nav .menu > li:focus-within > a::after {
    transform: rotate(180deg)
}

.primary-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: .5rem;
    padding: .25rem 0;
    margin-top: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .15s ease, transform .15s ease;
    z-index: 20
}

.primary-nav .sub-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 22px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    filter: drop-shadow(0 -1px 0 var(--gray-200))
}

.primary-nav .sub-menu li a {
    display: block;
    padding: .3rem .9rem .3rem 1.4rem;
    background: #fff;
    border-radius: 0;
    color: #848374;
}

.primary-nav .sub-menu li a:hover,
.primary-nav .sub-menu li.current-menu-item > a {
    background: var(--gray-100);
    color: var(--green);
}

.primary-nav .sub-menu li a::before {
    content: "";
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
    margin-right: .5rem;
    position: relative;
    top: -.05rem
}

.primary-nav .menu > li:hover > .sub-menu,
.primary-nav .menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

/* Nested submenu positioning */
.primary-nav .sub-menu .sub-menu {
    top: -1px;
    left: 100%;
    margin-left: .25rem
}

.primary-nav .sub-menu .sub-menu::before {
    display: none
}

/* Header actions: search + language */
.header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-left: 1rem;
    padding-bottom: 7px;
}

.header-actions details {
    position: relative
}

.search-toggle {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    background: var(--green);
    border-radius: 999px;
    cursor: pointer
}

.search-toggle svg {
    display: block
}

.header-actions summary {
    list-style: none
}

.header-actions summary::-webkit-details-marker {
    display: none
}

.header-languages {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switch {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background: white;
    color: var(--green);
}

.dropdown-panel {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: .4rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: .5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    padding: .6rem;
    min-width: 240px;
    z-index: 25
}

.search-panel {
    min-width: 320px
}

.search-form {
    display: flex;
    gap: .5rem
}

.search-form input {
    flex: 1;
    border: 1px solid var(--gray-200);
    border-radius: .5rem;
    padding: .6rem
}

.lang-dropdown {
    font-weight: 700
}

.lang-current {
    cursor: pointer;
    padding: .35rem .55rem;
    border-radius: .4rem;
    border: 1px solid transparent;
    color: #333
}

.lang-dropdown[open] .lang-current {
    background: var(--gray-100);
    border-color: var(--gray-200)
}

.lang-menu {
    list-style: none;
    margin: 0;
    padding: .25rem 0
}

.lang-menu a {
    display: block;
    padding: .45rem .75rem;
    border-radius: .35rem;
    text-decoration: none;
    color: #333
}

.lang-menu a:hover {
    background: var(--gray-100)
}

.lang-menu .is-current {
    color: var(--green);
    font-weight: 800
}

.btn {
    display: inline-block;
    padding: .75rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600
}

.btn-primary {
    background: var(--green);
    color: #fff
}

.btn-primary:hover {
    background: var(--green-dark)
}

.btn-secondary {
    background: var(--green);
    color: #fff !important;
    border-radius: .5rem
}

.btn-secondary:hover {
    background: var(--green-dark)
}

.btn-outline {
    border: 2px solid var(--green);
    color: var(--green)
}

.hero {
    background: linear-gradient(#6e7670, #6e7670), url('../images/hero-bg.jpg');
    background-size: cover;
    background-blend-mode: multiply;
    color: #fff;
    padding: 6rem 0;
    text-align: center
}

.hero h1 {
    font-size: 2rem;
    max-width: 46rem;
    margin: 0 auto 1rem;
    font-weight: 800
}

.cta-group {
    display: flex;
    gap: .75rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap
}

.news {
    padding: 3rem 0;
    padding-top: 0.3rem;
    background: #fff
}

.news h1 {
    margin: 0 0 0.5rem;
    font-size: 2rem
}

.category-filter {
    margin: 1.5rem 0 2.5rem;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-link {
    display: inline-block;
    padding: 8px 18px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none !important;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-link:hover {
    background: #e0e0e0;
    color: #333;
}

.filter-link.active {
    background: rgb(132, 131, 116);
    color: #fff;
}

.news > .container > p {
    margin: 0 0 2rem;
    color: #666;
    font-size: 1.1rem
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: .6rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15)
}

.card-image {
    position: relative;
    overflow: hidden
}

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease
}

.card:hover .card-img {
    transform: scale(1.05)
}

.card-category {
    background: var(--light-grey-bg);
    color: var(--gray-bdlogistics);
    padding: 0 .5rem;
    border-radius: 1rem;
    font-size: .7em;
    font-weight: 700;
    display: inline-block;
    margin-bottom: .6rem;
}

.card-body {
    padding: 0.6rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-body .card-title {
    margin: 0 0 5px !important;
    font-size: 1.1rem;
    line-height: 1.3;
}

.card-title-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 600
}

.card-title-link:hover {
    color: var(--green-dark)
}

.card-date {
    display: block;
    color: var(--grey-bd-light);
    font-size: .85em;
    margin: 0 0 5px !important;
    font-weight: 500
}

.card-body .card-excerpt {
    color: #555;
    margin-bottom: 10px !important;
    line-height: 1.5;
    font-size: .95em
}

.card-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    font-size: .9em
}

.references {
    background: var(--gray-100);
    padding: 3rem 0
}

.references .logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    align-items: center
}

.logo-item {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: .6rem;
    padding: 1rem;
    display: grid;
    place-items: center;
    height: 100px
}

.logo-item.placeholder {
    color: #bbb
}

.tagline-stats {
    padding: 3rem 0
}

.tagline-stats .grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem
}

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

.stat {
    background: var(--gray-100);
    border-radius: .6rem;
    padding: 1rem;
    text-align: center
}

.stat span {
    font-size: 2rem;
    color: var(--green);
    font-weight: 800
}

.solutions {
    background: #fff;
    padding: 3rem 0
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2rem
}

.service-card {
    border: 1px solid var(--gray-200);
    border-radius: .6rem;
    padding: 1rem;
    margin-bottom: 1rem
}

.values {
    background: var(--gray-100);
    padding: 3rem 0
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.feature {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: .6rem;
    padding: 1rem
}

.careers {
    padding: 3rem 0;
    background: #fff;
    text-align: center
}

.contact {
    padding: 3rem 0;
    background: var(--gray-100)
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: .75rem;
    border: 1px solid var(--gray-200);
    border-radius: .5rem
}

.notice {
    padding: .75rem 1rem;
    border-radius: .5rem;
    margin-bottom: 1rem
}

.notice.success {
    background: #e8f7e8;
    color: #145a14
}

.notice.error {
    background: #fde7e7;
    color: #7a1818
}

.site-footer {
    background: #efefef;
    border-top: 1px solid var(--gray-200);
    color: #444
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 2rem;
    padding: 2rem 0
}

.footer-brand {
    padding-top: 10px;
}

.footer-brand .logo {
    font-weight: 800;
    color: #111;
    text-decoration: none
}

.footer-brand .logo span {
    color: var(--green)
}

.footer-brand .footer-logo img {
    max-height: 40px;
    width: auto;
    margin-bottom: .5rem
}

.footer-brand .desc {
    margin: .75rem 0 1rem;
    max-width: 48ch
}

.footer-brand .social {
    display: flex;
    gap: .5rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.footer-brand .social a {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-weight: 700
}

.footer-sitemap h4,
.footer-contact h4 {
    color: var(--green);
    margin: .25rem 0 .5rem
}

.footer-top .menu {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer-top .menu.bullets li {
    position: relative;
    padding-left: 1rem
}

.footer-top .menu.bullets ul {
    list-style-type: none;
}

.footer-top .menu.bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .75rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
    background: var(--green)
}

.footer-top .menu a {
    text-decoration: none;
    color: #333
}

.footer-top .menu a:hover {
    color: var(--green)
}

.footer-contact address {
    font-style: normal
}

.footer-legal {
    color: #eee;
}

.legal-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0
}

.legal-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.25rem
}

.legal-menu a {
    color: #eee;
    text-decoration: none
}

.legal-menu a:hover {
    text-decoration: underline
}

@media (max-width: 900px) {
    .cards {
        grid-template-columns: 1fr 1fr
    }

    .references .logos {
        grid-template-columns: repeat(3, 1fr)
    }

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

    .solutions-grid {
        grid-template-columns: 1fr
    }

    .tagline-stats .grid {
        grid-template-columns: 1fr
    }

    .contact-form .row {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem
    }

    .legal-inner {
        flex-direction: column;
        gap: .5rem
    }

    /* Mobile menu */
    .mobile-menu-toggle {
        display: flex
    }

    .header-inner {
        position: relative
    }

    .primary-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        transform: translateX(-100%);
        transition: transform .3s ease;
        z-index: 99;
        overflow-y: auto;
        padding-top: 80px
    }

    .primary-nav.is-open {
        transform: translateX(0)
    }

    .primary-nav .menu {
        flex-direction: column;
        gap: 0;
        padding: 1rem
    }

    .primary-nav .menu > li {
        border-bottom: 1px solid var(--gray-200)
    }

    .primary-nav .menu > li > a {
        display: block;
        padding: 1rem
    }

    .primary-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: white;
        margin: 0;
        padding: 0
    }

    .primary-nav .sub-menu::before {
        display: none
    }

    .primary-nav .sub-menu li a {
        padding: .75rem 1rem .75rem 2rem
    }

    .primary-nav .menu > li.menu-item-has-children > .sub-menu {
        display: none
    }

    .primary-nav .menu > li.menu-item-has-children.is-open > .sub-menu {
        display: block
    }

    .header-actions {
        gap: .5rem;
        margin-left: .5rem
    }
}

@media (max-width: 560px) {
    .cards {
        grid-template-columns: 1fr
    }

    .references .logos {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .stats {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .header-actions .search-panel {
        min-width: 280px;
        right: -20px
    }
}

/* Pagination styles */
.pagination {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin: 2rem 0
}

.page-numbers {
    display: inline-block;
    padding: .5rem .75rem;
    border: 1px solid var(--gray-200);
    border-radius: .25rem;
    text-decoration: none;
    color: #333
}

.page-numbers.current {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

.page-numbers:hover {
    background: var(--gray-100)
}

/* Single post styles */
.single-post {
    margin: 0 auto
}

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

.post-category {
    font-size: .7em;
    font-weight: 500;
    text-transform: capitalize;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.post-category span,
.card-body .post-category span {
    background: #f5f5f5;
    color: #666;
    padding: .2rem .5rem;
    border-radius: .3rem;
    border: 1px solid #e0e0e0;
}

.post-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--green)
}

.post-meta {
    color: #666;
    margin-bottom: 1rem
}

.post-featured-image {
    margin-bottom: 2rem;
    text-align: center
}

.featured-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: .5rem
}

.post-content {
    line-height: 1.7;
    font-size: 1.1rem
}

.post-content p {
    margin-bottom: 1.5rem
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 3rem 0 2rem
}

.nav-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    flex: 1;
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: .5rem
}

.nav-link:hover {
    background: var(--gray-100)
}

/* Landing Page Styles */
.landing-page {
    min-height: 100vh
}

.landing-hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    color: #fff;
    text-align: center;
    position: relative
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1
}

.landing-hero .container {
    position: relative;
    z-index: 2
}

.hero-title {
    padding: 20px;
    border-radius: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto
}

.landing-header {
    background: var(--gray-100);
    padding: 4rem 0;
    text-align: center
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--green)
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto
}

.landing-content {
    padding: 3rem 0
}

.content-area {
    max-width: none
}

/* Make content editor full-width for landing pages */
.landing-page .content-area .wp-block-group:not(.container):not(.is-style-bd-container) {
    margin-left: 0;
    margin-right: 0
}

.landing-page .content-area .alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw)
}

/* References Carousel */
.references-carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem
}

.references-carousel {
    overflow: hidden;
    width: 100%
}

.references-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 1rem 0
}

.carousel-item {
    flex: 0 0 calc(33.333% - 1.33rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: .5rem;
    min-height: 120px
}

.carousel-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain
}

.carousel-item.placeholder {
    font-weight: 700;
    color: var(--gray-200);
    font-size: 1.5rem
}

.carousel-nav {
    margin-top: 2rem;
    position: relative;
    background: transparent;
    color: var(--gray-bdlogistics);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5
}

.carousel-nav.prev {
    left: 0
}

.carousel-nav.next {
    right: 0
}

.carousel-nav svg {
    width: 20px;
    height: 20px
}

@media (max-width: 560px) {
    .cards {
        grid-template-columns: 1fr
    }

    .references .logos {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .footer-top {
        grid-template-columns: 1fr
    }

    .hero-title {
        font-size: 2rem
    }

    .page-title {
        font-size: 2rem
    }

    .carousel-item {
        flex: 0 0 100%;
        min-width: 100%
    }

    .references-carousel-wrapper {
        padding: 0 2.5rem
    }
}

@media (min-width: 561px) and (max-width: 900px) {
    .carousel-item {
        flex: 0 0 calc(50% - 1rem)
    }
}

.wp-block-group.container .wp-block-group__inner-container {
    width: min(var(--container), calc(100% - 2rem)) !important;
    margin-inline: auto !important;
    padding: 0 !important;
}

.wp-block-group.container > .wp-block-columns.alignfull {
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow: visible !important;
}

/* Remove any wrapper constraints */
.wp-block-columns {
    box-sizing: border-box;
    padding: 0 !important;
}

.wp-block-columns.are-vertically-aligned-stretch {
    align-items: stretch !important;
    min-height: 400px;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    overflow: visible !important;
    padding: 0 !important;
}


@media (min-width: 781px) {

    .wp-block-column .wp-block-cover {
        min-height: 100% !important;
    }
}

@media (max-width: 781px) {
    .wp-block-columns.are-vertically-aligned-stretch {
        min-height: auto;
    }

    .wp-block-group.container .wp-block-group__inner-container {
        width: 100% !important;
        margin-inline: auto !important;
        padding: 0 !important;
    }

    .wp-block-column .wp-block-cover {
        height: 100% !important;
    }

    :where(.wp-block-group.has-background) {
        padding: 0 !important;
    }


    .bd-contact-form, .wpcf7-form {
        padding-left: 0 !important;
    }
}

.wp-block-column {
    box-sizing: border-box;
    padding: 0 !important;
}

.wp-block-column.is-vertically-aligned-stretch {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-basis: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}

@media (min-width: 782px) {
    .wp-block-column.is-vertically-aligned-stretch {
        flex-basis: 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
}

/* Text column with gray background and white top border */
.wp-block-column.is-vertically-aligned-stretch.has-background {
    padding: 2rem 1.5rem !important;
    background-color: #f5f5f5 !important;
    border-top: 20px solid white !important;
}

@media (min-width: 782px) {
    .wp-block-column.is-vertically-aligned-stretch.has-background {
        padding: 3rem 4rem !important;
    }
}


/* Image column with white bottom border */
.wp-block-column.is-vertically-aligned-stretch:not(.has-background) {
    border-bottom: 20px solid white !important;
    padding: 0 !important;
}

.wp-block-column .wp-block-cover {

    height: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
}

.wp-block-cover__background,
.wp-block-cover__image-background {
    object-fit: cover !important;
    height: 100% !important;
    width: 100% !important;
    object-position: center !important;
}

/**

Generic

**/
.wp-block-button {
    color: white;
}

.wp-block-button__link {
    background-color: var(--green);
    color: white;
    border: 1px solid var(--green);
    transition: all 0.3s ease;
}


.entry-content a, .container a {
    color: var(--green);
}

a.wp-block-button__link {
    color: white !important;
    text-decoration: none !important;
    border: 1px solid var(--green);
}

.wp-block-button__link:hover,
a.wp-block-button__link:hover {
    background-color: white !important;
    color: var(--green) !important;
    text-decoration: none !important;
}

/* Outline style - opposite colors */
.wp-block-button.is-style-outline .wp-block-button__link,
.wp-block-button.is-style-outline--1 .wp-block-button__link {
    background-color: white !important;
    color: var(--green) !important;
    border: 1px solid var(--green) !important;
}

/* Outline style hover - inverted */
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline--1 .wp-block-button__link:hover {
    background-color: var(--green) !important;
    color: white !important;
}

.myshopi-green-title {
    color: var(--green);
    font-size: 2.1rem;
    margin-bottom: 1.1rem;
    font-weight: 800;
}

.bd-green-title {
    color: var(--green);
    font-size: 2.1rem;
    margin-bottom: 1.1rem;
    font-weight: 800;
}

.myshopi-grey-title {
    color: var(--gray-accent);
    margin-bottom: 1.1rem;
    font-weight: 600;
    font-size: 2.8rem;
    line-height: 1.2em;
    margin: 0 0 2.6rem;
}

.bd-grey-title {
    color: var(--gray-accent);
    margin-bottom: 1.1rem;
    font-weight: 600;
    font-size: 2.8rem;
    line-height: 1.2em;
    margin: 0 0 2.6rem;
}

/**

HOMEPAGE

**/

.homepage-news-items {

    img {
        border-radius: 20px;

    }

    .taxonomy-post_tag {
        a {
            text-decoration: none;
            color: var(--gray-700);
            background-color: var(--gray-200);
            padding: 6px;
            border-radius: 6px;
            font-size: 12px;
            line-height: 14px;
        }


    }

    .wp-block-post-title {
        margin-bottom: 10px;
    }

    .wp-block-post-date {
        margin-bottom: 5px;
    }

    h2 {
        a {
            font-weight: 700;
            font-style: Bold;
            font-size: 21px;
            line-height: 150%;
            letter-spacing: 0%;
            text-transform: uppercase;
            color: rgb(132, 131, 116);
        }
    }

    .wp-block-post-date {

        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0%;
        color: var(--gray-accent);
    }

    .wp-block-post-excerpt__excerpt {

        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0%;
        color: var(--gray-accent);
    }

    .wp-block-post-excerpt__more-link {
        color: var(--green);
        margin-top: 10px;
        text-decoration: none;

    }

    .wp-block-post-excerpt__more-link:after {
        content: ' \2192';
    }
}


.customer-cases {
    background-color: var(--gray-200);
    padding: 20px;
}

.customer-cases-block {
    img {
        border-radius: 14px;

    }

    h2.wp-block-post-title {
        line-height: 16px;;
        font-size: 14px;

        a {
            color: rgb(132, 131, 116);
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    }

    .bd-inspiratie-card {
        background-color: white;
        border-radius: 20px;

    }
}

.bd-contact-form, .wpcf7-form {
    padding: 0px;
    padding-left: 40px;

    .contact-form-title {
        font-family: Lato;
        font-weight: 700;
        font-style: Bold;
        font-size: 42px;
        line-height: 58px;
        letter-spacing: 0%;

    }

    input[type=text],
    input[type=email],
    textarea {
        padding: 5px;
        font-size: 16px;
        background-color: var(--green);
        color: white;
        border: 1px solid white;
        border-radius: 6px;

    }

    input[type=text]:focus,
    input[type=email]:focus {
        outline: none;
        box-shadow: none;
    }

    .wpcf7-list-item {
        margin-left: 0px;
        margin-top: 10px;
    }


    input[type=checkbox] {
        margin-left: 10px;
        margin-top: 10px;
        font-size: 16px;
        background-color: white;
        color: var(--green);
        border-radius: 6px;
        border: none;
        font-weight: 400;
        padding: 6px 12px;
        letter-spacing: 0%;
        cursor: pointer;

    }

    input[type=submit] {
        margin-left: 10px;
        margin-top: 10px;
        font-size: 16px;
        background-color: white;
        color: var(--green);
        border-radius: 6px;
        border: none;
        font-weight: 400;
        padding: 6px 12px;
        letter-spacing: 0%;
        cursor: pointer;

    }
}


/* ===== SECTION LAYOUT ===== */
.bd-contact {
    padding: 40px 0;


}

.bd-contact__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.bd-contact__left {
    flex: 0 0 34%;
}

.bd-contact__left h2 {
    margin: 0;
    font-size: 44px;
    line-height: 1.05;
    font-weight: 700;
    color: rgb(132, 131, 116);
}

.bd-contact__right {
    flex: 1;
}

/* ===== FORM GRID ===== */
.bd-form .bd-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px 18px;
}

.bd-col-12 {
    grid-column: span 12;
}

.bd-col-8 {
    grid-column: span 8;
}

.bd-col-6 {
    grid-column: span 6;
}

.bd-col-4 {
    grid-column: span 4;
}

/* ===== INPUTS ===== */
.wpcf7-form .bd-input,
.wpcf7-form .bd-textarea,
.wpcf7-form .bd-select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select,
.bd-contact-form .bd-input,
.bd-contact-form .bd-textarea,
.bd-contact-form .bd-select,
.bd-contact-form input[type="text"],
.bd-contact-form input[type="email"],
.bd-contact-form input[type="tel"],
.bd-contact-form textarea,
.bd-contact-form select {
    width: 100%;
    border: 1px solid #ededed;
    background: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.wpcf7-form .bd-input,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.bd-contact-form .bd-input,
.bd-contact-form input[type="text"],
.bd-contact-form input[type="email"],
.bd-contact-form input[type="tel"] {
    height: 44px;
}

.wpcf7-form .bd-textarea,
.wpcf7-form textarea,
.bd-contact-form .bd-textarea,
.bd-contact-form textarea {
    min-height: 130px;
    padding-top: 14px;
    resize: vertical;
}

/* Placeholder look */
.wpcf7-form .bd-input::placeholder,
.wpcf7-form .bd-textarea::placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder,
.bd-contact-form .bd-input::placeholder,
.bd-contact-form .bd-textarea::placeholder,
.bd-contact-form input::placeholder,
.bd-contact-form textarea::placeholder {
    color: #6f6f6f;
}

/* Focus */
.wpcf7-form .bd-input:focus,
.wpcf7-form .bd-textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus,
.bd-contact-form .bd-input:focus,
.bd-contact-form .bd-textarea:focus,
.bd-contact-form input:focus,
.bd-contact-form textarea:focus,
.bd-contact-form select:focus {
    border-color: #d8d8d8;
    box-shadow: 0 0 0 3px rgba(118, 191, 29, .12);
}

.wpcf7-form label, .bd-contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #7a7a7a;
    margin-bottom: 8px;
}

.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 15px;
}

/* ===== SELECT STYLING ===== */
.bd-select-wrap {
    position: relative;
}

.wpcf7-form .bd-select,
.wpcf7-form select,
.bd-contact-form .bd-select,
.bd-contact-form select {
    height: 44px;
    background: #fff;
    color: #333;
    border: 1px solid #ededed;
    font-weight: 400;
    padding-right: 44px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Dropdown list text */
.wpcf7-form .bd-select option,
.wpcf7-form select option {
    color: #333;
}

/* Custom arrow */
.bd-select-wrap::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 0;
    height: 0;
    transform: translateY(-35%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid var(--green);
    pointer-events: none;
}

/* ===== CONSENT ===== */
.bd-consent {
    margin-top: 2px;
    font-size: 12px;
    color: #444;
}

.bd-consent input[type="checkbox"] {
    margin-right: 8px;
    transform: translateY(1px);
}

/* ===== SUBMIT (small + unobtrusive) ===== */
.bd-actions {
    display: flex;
    justify-content: flex-start;
}

.wpcf7-form .bd-submit,
.wpcf7-form input[type="submit"],
.bd-contact-form .bd-submit,
.bd-contact-form input[type="submit"] {
    background-color: var(--green);
    color: white;
    border: 1px solid var(--green);
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    width: auto;
    text-decoration: none;
}

.wpcf7-form .bd-submit:hover,
.wpcf7-form input[type="submit"]:hover {
    background-color: white;
    color: var(--green);
}

/* CF7 validation messages */
.wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 8px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ededed;
    background: #fafafa;
}


.bd-field p {
    margin-top: 0px;
    margin-bottom: 0px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .bd-contact__inner {
        flex-direction: column;
        gap: 22px;
    }

    .bd-contact__left {
        flex: 1;
    }

    .bd-contact__left h2 {
        font-size: 34px;
    }
}

@media (max-width: 720px) {
    .bd-col-6, .bd-col-8, .bd-col-4 {
        grid-column: span 12;
    }
}

.newsletter-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

/* FOOTER */
.site-footer {
    background: #f3f3f3;
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.6;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-title {
    color: var(--green);
    font-size: 22px;
    line-height: 1.2;
    margin: 8px 0 12px;
    font-weight: 700;
}

.footer-desc {
    margin: 14px 0 18px;
    max-width: 520px;
}

.footer-logo img {
    height: 42px;
    width: auto;
    display: block;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.footer-badges {
    display: grid;
    gap: 12px;
    max-width: 260px;
}

.footer-badge {
    width: 100%;
    height: auto;
    display: block;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
}

/* Menus */
.footer-menu,
.footer-legal-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin: 6px 0;
    padding-left: 14px;
    position: relative;
}

.footer-menu li::before {
    content: "•";
    color: #70b42c;
    position: absolute;
    left: 0;
    top: 0;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Contact */
.footer-contact {
    font-style: normal;
    margin: 0;
}

.footer-contact-spacer {
    height: 14px;
}

.footer-contact-label {
    margin-right: 6px;
    color: #4a4a4a;
}


a.footer-email {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Social buttons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Bottom bar */
.footer-bottom {
    background: #565656;
    color: #fff;
}

.footer-bottom-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-legal-menu {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-legal-menu a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Vestigingen (Locations) Styles */
.vestigingen-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.vestigingen-header {
    margin-bottom: 40px;
}

.vestigingen-title {
    font-size: 2.5rem;
    font-weight: bold;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.province-title {
    margin: 50px 0 25px;
    font-size: 1.8rem;
    color: #333;
    border-left: 5px solid var(--green);
    padding-left: 15px;
}

.vestigingen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.vestiging-card {
    background: #fff;
    display: flex;
    flex-direction: column;
}

.vestiging-card h3 {
    margin-top: 1rem;
}

.vestiging-card .entry-title {
    font-size: 1.3rem;
    margin: 0 0 15px;
}

.vestiging-card .entry-title a,
.contact-info a,
.read-more a,
.location-section-title {
    color: rgb(132, 131, 116);
    text-decoration: none;
}

.read-more a {
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.vestiging-details {
    color: #666;
    line-height: 1.6;
}

.vestiging-details p {
    margin-bottom: 4px !important;
    margin-top: 0;
}

h3.location-hours-title {
    margin-top: 0.2rem !important;
}

.contact-info {
    margin-top: 15px;
    font-size: 0.95rem;
}

.contact-info p {
    margin: 0;
}

.read-more {
    margin-top: 20px;
}

.read-more span {
    margin-left: 5px;
}

/* Single Vestiging Styles */
.single-vestiging-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 768px) {
    .single-vestiging-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.location-section-title {
    font-size: 1.5rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.location-info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.location-contact-list {
    margin-top: 25px;
}

.location-contact-list p {
    margin: 5px 0;
}

.location-hours-block {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.location-hours-title {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: #333;
}


/* General Page Content Styles (Matches Drupal Layout) */
.entry-content p, .container p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.entry-content h2, .container h2 {
    margin: 3rem 0 1.5rem;
    color: rgb(132, 131, 116);
}

.entry-content h3, .container h3 {
    margin: 2rem 0 1rem;
}

.entry-content img, .container img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 0px;
}

.entry-content ul, .entry-content ol, .container ul, .container ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.entry-content li, .container li {
    margin-bottom: 0.5rem;
}

.entry-content a, .container a {
    color: var(--green);
    text-decoration: underline;
}

.entry-content a:hover, .container a:hover {
    text-decoration: none;
}

/* Homepage Specific Styles */
.hero-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 60vh;
    min-height: 400px;
    max-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-text-box {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-text-box h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin: 0 auto;
    width: fit-content;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
}

.full-width-page, .site-main {
    overflow-x: hidden;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgb(132, 131, 116);
    margin-bottom: 0;
    text-align: left;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.carousel-nav {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    background: white;
    border: 2px solid var(--green);
    color: var(--green);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--green);
    color: white;
}

.news-carousel-container {
    overflow: hidden;
    padding: 10px 0;
}

.news-carousel-track {
    display: flex;
    align-items: stretch !important;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 300px;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bg-gray {
    background-color: var(--gray-100);
}

/* Card Styling */
.grid-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    height: auto;
    align-self: stretch;
}

.grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.grid-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
    text-transform: uppercase;
    font-weight: 700;
}


.card-title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 5px !important;
    font-weight: 800;
}

.card-title a {
    color: #333;
    text-decoration: none;
}

.card-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.card-footer {
    margin-top: auto;
}

.card-read-more {
    color: var(--green);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.card-read-more:hover {
    color: var(--green-dark);
}

.service-card {
    padding: 40px;
    background: white;
    text-align: center;
    border-bottom: 4px solid var(--green);
}

.btn-link {
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
}

.section-label {
    color: var(--green);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.refs-carousel-container {
    overflow: hidden;
    margin-top: 2rem;
}

.refs-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.ref-card {
    flex: 0 0 200px;
    position: relative;
    display: flex;
    align-items: center;
    height: 140px;
    background-color: white;
    padding: 0;
    border: 1px solid #eee;
    transition: border-color 0.3s ease;
    border-radius: 16px;
}

.ref-card > .image-holder {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

.image-holder > img {
    max-height: 60px;
    max-width: 100%;
    margin: 0;
}


.ref-logo {
    max-width: 100%;
    max-height: calc(100% - 20px);
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 1s ease;
}

.ref-title {
    padding-bottom: 5px;
    text-align: center;
    color: var(--green);
    font-weight: bold;
}

.ref-card:hover .ref-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .refs-carousel-track {
        gap: 15px;
    }

    .ref-card {
        flex: 0 0 160px;
        height: 100px;
    }
}


.home-references {
    background-color: var(--gray-100);
}

h2.wp-block-heading {
    line-height: normal !important;
}

.wp-block-cover-image {
    text-align: center;
}

.wp-block-cover__inner-container {
    text-align: center;
}

.bd-latest-news > .card {
    padding-left: 10px;
    padding-right: 10px;
}


.bd-latest-news > .card > .card-body > h3 {
    color: var(--green);
}

.bd-latest-news > .card > .card-body > a.card-link {
    text-decoration: none;
}

.no-border {
    border: none;
}

.wpcf7-form {
    margin-bottom: 10px;
}

.wpcf7-form > label {
    font-size: 0.95rem;
    font-weight: 600;

    color: var(--green);
}

input.wpcf7-submit {
    margin-left: 0 !important;
}

.no-padding-top {
    padding-top: 0 !important;
}