:root {
    --brand-green: #2f7a3f;
    --brand-green-dark: #1f5a2b;
    --brand-beige: #eae3d2;
    --brand-cream: #f4f7f2;
    --brand-red: #e64124;
    --brand-brown: #3c1f11;
    --brand-dark: #21150f;
    --text-muted: #625349;
    --shadow-soft: 0 20px 45px rgba(60, 31, 17, 0.12);
    --radius-xl: 28px;
}

html,
body {
    background-color: var(--brand-cream);
    color: var(--brand-dark);
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pb_navbar {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: linear-gradient(90deg, rgba(47, 122, 63, 0.95) 0%, rgba(47, 122, 63, 0.9) 55%, rgba(234, 227, 210, 0.95) 100%);
    border: none;
    box-shadow: 0 8px 24px rgba(33, 21, 15, 0.12);
    padding-top: 14px;
    padding-bottom: 14px;
    transition: padding 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    backdrop-filter: blur(6px);
}

.pb_navbar .navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 24px;
}

.pb_navbar .navbar-brand img {
    max-height: 52px;
}

.pb_navbar .navbar-collapse {
    flex-grow: 1;
}

.pb_navbar .navbar-nav > li > a {
    font-size: 13px !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 8px 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.86) !important;
    position: relative;
}

.pb_navbar .navbar-nav > li {
    margin: 0 6px;
}

.pb_navbar .navbar-nav > li > a:after {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 6px;
    height: 3px;
    background: transparent;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.pb_navbar .navbar-nav > li > a:hover:after,
.pb_navbar .navbar-nav > li > a.active:after,
.pb_navbar .navbar-nav > li.active > a:after {
    background: var(--brand-red);
}

.pb_navbar .navbar-nav > li > a:hover,
.pb_navbar .navbar-nav > li > a.active,
.pb_navbar .navbar-nav > li.active > a {
    color: #fff !important;
}

.navbar-callout {
    margin-left: auto;
}

.navbar-callout__button {
    background: rgba(33, 21, 15, 0.92);
    border-radius: 999px;
    color: #fff !important;
    font-weight: 800;
    letter-spacing: 0.1em;
    height: 54px;
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(33, 21, 15, 0.28);
    font-size: 16px;
}

.navbar-callout__button:hover {
    text-decoration: none;
    background: var(--brand-red);
    color: #fff;
}

.navbar-toggler {
    border: none;
    color: #fff;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

@media (max-width: 991px) {
    .navbar-callout {
        margin: 16px 0 0;
    }

    #primary-navbar {
        background: linear-gradient(135deg, rgba(7, 24, 12, 0.95), rgba(33, 21, 15, 0.9));
        border-radius: 18px;
        padding: 24px;
        box-shadow: 0 26px 50px rgba(0, 0, 0, 0.35);
        margin-top: 18px;
    }

    #primary-navbar .navbar-nav {
        width: 100%;
        align-items: flex-start;
        gap: 12px;
    }

    #primary-navbar .nav-item {
        width: 100%;
    }

    #primary-navbar .nav-link {
        width: 100%;
        padding: 8px 0;
        font-size: 16px !important;
        letter-spacing: 0.12em;
        color: rgba(255, 255, 255, 0.92) !important;
    }

    #primary-navbar .nav-link:after {
        left: 0;
        right: auto;
        width: 56px;
        bottom: -4px;
        height: 2px;
    }

    #primary-navbar .nav-link:hover:after,
    #primary-navbar .nav-link.active:after {
        background: var(--brand-red);
    }

    .navbar-callout__button.w-100 {
        margin-top: 12px;
        height: 52px;
        font-size: 15px;
    }

    .pb_navbar .navbar-collapse.show {
        display: block;
    }
}

#section-home {
    background-color: var(--brand-cream);
    background-blend-mode: multiply;
    min-height: 420px;
    position: relative;
}

#section-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(241, 231, 214, 0.95) 0%, rgba(241, 231, 214, 0.85) 40%, rgba(241, 231, 214, 0.50) 100%);
}

#section-home .container,
#section-home .row,
#section-home .col-md-10 {
    position: relative;
    z-index: 2;
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.76);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    display: inline-block;
    padding: 24px 32px;
    max-width: 620px;
}

.hero-highlight h1 {
    color: var(--brand-brown);
    font-weight: 800 !important;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-highlight p {
    color: var(--text-muted);
    font-size: 18px !important;
    margin-bottom: 18px;
}

.hero-highlight .btn {
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: var(--brand-red);
    border: none;
}

.hero-highlight .btn:hover {
    background: #c72f13;
}

.hero-spot {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 520px;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-spot__overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(47, 122, 63, 0.55) 0%, rgba(35, 24, 17, 0.45) 100%); */
    background: linear-gradient(135deg, rgb(16 17 16 / 55%) 0%, rgba(35, 24, 17, 0.45) 100%);
}

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

.hero-spot__title {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #fff;
}

.hero-spot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-spot__lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-spot__cta .btn {
    margin-right: 12px;
    margin-bottom: 12px;
}

.hero-spot__card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 24px;
    backdrop-filter: blur(6px);
    color: #fff;
    box-shadow: 0 18px 40px rgba(12, 27, 18, 0.25);
}

.hero-spot__card-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
}

.hero-spot__card-text {
    margin: 16px 0;
    font-size: 16px;
    line-height: 1.6;
}

.hero-spot__card-link {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-spot__card-link:hover {
    color: var(--brand-red);
}

.section-eyebrow {
    color: var(--brand-red);
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 12px;
}

.section-title {
    color: var(--brand-brown);
    font-weight: 800;
    font-size: 40px;
    text-transform: uppercase;
}

.section-divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto;
}

.section-divider::before,
.section-divider::after {
    content: "";
    width: 64px;
    height: 3px;
    background: var(--brand-red);
    border-radius: 999px;
    margin: 0 12px;
}

.section-divider svg {
    width: 26px;
    height: 26px;
    fill: var(--brand-red);
}


.breadcrumb-trail {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.breadcrumb-trail a {
    color: inherit;
}

.breadcrumb-trail a:hover {
    color: var(--brand-green);
    text-decoration: none;
}

.page-hero--dark .breadcrumb-trail {
    color: rgba(255, 255, 255, 0.75);
}

.page-hero--dark .breadcrumb-trail a:hover {
    color: #fff;
}

.category-chip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.category-chip {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(47, 122, 63, 0.1);
    border: 1px solid rgba(47, 122, 63, 0.2);
    color: var(--brand-green);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-chip:hover,
.category-chip.active {
    background: var(--brand-green);
    color: #fff;
    text-decoration: none;
}

.page-hero--dark .category-chip {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.page-hero--dark .category-chip:hover,
.page-hero--dark .category-chip.active {
    background: #fff;
    color: var(--brand-green);
}


.product-categories-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, rgba(47, 122, 63, 0.12), rgba(47, 122, 63, 0.22));
}

.product-categories-section .section-title {
    margin-bottom: 6px;
}

.category-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 48px;
}


.product-category-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 400px;
}

.product-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(34, 18, 13, 0.16);
}

.product-category-card__media {
    background: linear-gradient(135deg, rgba(47, 122, 63, 0.95), rgba(31, 90, 43, 0.92));
    padding: 28px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-category-card__media img {
    width: 200px;
    height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(17, 17, 17, 0.22));
}

.product-category-card__body {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category-card__title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--brand-brown);
    text-transform: uppercase;
}

.product-category-card__text {
    font-size: 14px;
    color: var(--text-muted);
    min-height: 48px;
}

.product-category-card__link {
    margin-top: auto;
    padding-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.product-category-card__link span {
    margin-left: 6px;
    transform: translateX(0);
    transition: transform 0.2s ease;
}

.product-category-card__link:hover span {
    transform: translateX(4px);
}

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

.product-section:nth-child(even) {
    background: #fff;
}

.product-section .section-title {
    font-size: 32px;
}

.product-grid {
    margin-top: 48px;
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 56px rgba(34, 18, 13, 0.18);
}

.product-card__media {
    background: linear-gradient(135deg, rgba(47, 122, 63, 0.9), rgba(31, 90, 43, 0.85));
    padding: 24px;
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__media img {
    max-width: 220px;
    max-height: 170px;
    object-fit: contain;
    width: 100%;
    height: auto;
}

.product-card__title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-transform: uppercase;
    padding: 24px 24px 28px;
    margin: 0;
    color: var(--brand-brown);
}

.product-card__icon {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-red);
    box-shadow: 0 6px 16px rgba(230, 65, 36, 0.2);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card__icon i {
    font-size: 20px;
}

.product-card:hover .product-card__icon {
    opacity: 1;
    transform: scale(1);
}

.mfp-bg {
    background: rgba(15, 31, 21, 0.92) !important;
}

.mfp-wrap .mfp-close {
    color: #fff !important;
    font-size: 32px;
    top: 12px;
    right: 16px;
    opacity: 0.9;
}

.mfp-wrap .mfp-close:hover {
    opacity: 1;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 30px;
    }

    .product-categories-section {
        padding: 80px 0 48px;
    }

    .product-grid {
        gap: 24px;
    }

    .product-card__title {
        font-size: 14px;
        letter-spacing: 0.06em;
    }
}

footer.pb_footer {
    background: linear-gradient(135deg, rgba(47, 122, 63, 0.92), rgba(33, 21, 15, 0.92));
    color: #fff;
    padding-top: 72px;
    padding-bottom: 48px;
}

footer.pb_footer a {
    color: #fff;
    font-weight: 600;
}

footer.pb_footer b {
    color: #fff;
}

#paslaugos {
    background-blend-mode: overlay;
    background-color: rgba(34, 18, 13, 0.6);
}

#paslaugos .heading {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
}

#paslaugos .sub-heading {
    letter-spacing: 0.08em;
}

.home-section {
    padding: 90px 0;
}

.home-section--light {
    background: #fff;
}

.home-section--accent {
    background: var(--brand-cream);
}

.home-section--dark {
    background: linear-gradient(135deg, rgba(47, 122, 63, 0.92), rgba(33, 21, 15, 0.92));
    color: #fff;
}

.home-gallery {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.home-gallery__main {
    width: 100%;
    display: block;
}

.home-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
    background: #fff;
}

.home-gallery__thumbs img {
    border-radius: 16px;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.home-intro__text {
    font-size: 16px;
    color: var(--text-muted);
}

.link-cta {
    display: inline-flex;
    align-items: center;
    color: var(--brand-red);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.link-cta--light {
    color: #fff;
}

.services-promo {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.services-promo__image {
    display: block;
    width: 100%;
}

.page-hero {
    padding: 120px 0 80px;
    background: var(--brand-cream);
}

.page-hero--compact {
    padding: 80px 0 60px;
}

.page-hero--dark {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(33, 21, 15, 0.75), rgba(47, 122, 63, 0.85));
}

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

.page-hero__lead {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
}

.page-hero--dark .page-hero__lead {
    color: rgba(255, 255, 255, 0.85);
}

.page-section {
    padding: 90px 0;
}

.page-section-products{
    padding-bottom: 90px;
}

.services-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 680px;
}

.services-hero__lead {
    margin-left: 0;
}

.page-section--accent {
    background: linear-gradient(135deg, rgba(47, 122, 63, 0.08), rgba(230, 227, 217, 0.6));
}

.about-gallery {
    display: grid;
    gap: 18px;
}

.about-gallery__hero {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.about-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.about-gallery__grid img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    height: 110px;
}

.about-copy h2 {
    font-weight: 800;
    margin-bottom: 16px;
}

.about-copy p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px 18px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 220px;
}

.stat-card__value {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--brand-green);
}

.stat-card__label {
    color: var(--text-muted);
    margin-top: 12px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.service-card h2 {
    font-weight: 800;
    margin-bottom: 18px;
}

.service-steps,
.service-benefits {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.contact-card h2 {
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-card__link {
    display: inline-block;
    font-weight: 700;
    font-size: 20px;
    color: var(--brand-green);
    margin-bottom: 8px;
}

.contact-card__link:hover {
    color: var(--brand-red);
}

.contact-card__note {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
}

.contact-card--address {
    background: linear-gradient(180deg, rgba(47, 122, 63, 0.1), rgba(255, 255, 255, 0.95));
}

.contact-map {
    width: 100%;
    height: 360px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--brand-red);
    border-color: var(--brand-red);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 28px;
}

.btn-primary:hover {
    background: #c72f13;
    border-color: #c72f13;
}

.btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 28px;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--brand-green);
}

@media (max-width: 991px) {
    .hero-spot {
        min-height: 460px;
        padding: 80px 0;
    }

    .hero-spot__title {
        font-size: 36px;
    }

    .hero-spot__card {
        margin-top: 32px;
    }

    .home-gallery__thumbs {
        grid-template-columns: 1fr;
    }

    .page-hero,
    .page-section,
    .home-section {
        padding: 60px 0;
    }
}
.navbar-toggler span i {
    display: inline-block;
    position: relative;
    width: 26px;
    height: 2px;
    background: #fff;
}

.navbar-toggler span i::before,
.navbar-toggler span i::after {
    content: "";
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background: #fff;
}

.navbar-toggler span i::before {
    top: -7px;
}

.navbar-toggler span i::after {
    top: 7px;
}
