/* ============ CSS VARIABLES ============ */
:root {
    --color-primary: #0A3D2C;
    --color-secondary: #2A7D2F;
    --color-accent: #F2D2A9;
    --color-accent-light: #f8ead5;
    --color-light: #F8F9F5;
    --color-dark: #222;
    --color-orange: #ff8f1f;
    --color-bg: #F7F7DD;
    --color-green: #BCED9B;
    --color-white: #ffffff;
    --color-gray-100: #f9f9f9;
    --color-gray-200: #f0f0f0;
    --color-gray-300: #dcdcdc;
    --color-gray-400: #b0b0b0;
    --color-gray-500: #808080;
    --color-gray-600: #555;
    --color-gray-700: #333;
    --color-text: #cfe7dc;
    --muted: 0.9;
    
    --bg-gradient-orange:linear-gradient(90deg, #ffb64d, #ff8f1f);;
    /*Typography*/
    --font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mon: 'Montserrat', sans-serif;

    /* ========== FONT SIZES (fluid scale) ========== */
    --fs-xs: clamp(0.75rem, 0.72rem + 0.2vw, 0.85rem);
    --fs-sm: clamp(0.875rem, 0.84rem + 0.2vw, 0.95rem);
    --fs-base: 16px;
    --fs-lg: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
    --fs-xl: clamp(1.5rem, 1.4rem + 0.8vw, 2rem);
    --fs-2xl: clamp(2rem, 1.8rem + 1vw, 2.5rem);
    --fs-3xl: clamp(2.5rem, 2.2rem + 1.2vw, 3.5rem);
    --fs-4xl: clamp(3rem, 2.6rem + 1.5vw, 4.5rem);

    /* ========== FONT WEIGHTS ========== */
    --fw-thin: 100;
    --fw-light: 300;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-black: 900;

    /* ========== LINE HEIGHTS ========== */
    --lh-tight: 1.1;
    --lh-snug: 1.25;
    --lh-normal: 1.5;
    --lh-relaxed: 1.65;
    --lh-loose: 1.8;

    /* ========== LETTER SPACING ========== */
    --ls-tight: -0.02em;
    --ls-normal: 0;
    --ls-wide: 0.15em;

    --space-xxs: .25rem;
    --space-xs: .5rem;
    --space-sm: .75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    --space-section: min(6vw, 4rem) 1.25rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-round: 50%;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, .12);
    --shadow-lg: 0 6px 20px rgba(0, 0, 0, .15);
    --shadow-mine: 0 3px 6px rgba(0, 0, 0, 0.16);
    --transition-fast: .2s ease-in-out;
    --transition-normal: .3s ease-in-out;
    --transition-slow: .5s ease-in-out;
    --container-width: 1200px;

    /* one source of truth for the bite + button sizes */
    --bite: clamp(80px, 18%, 200px); /* diameter of the cutout circle */
    --bite-offset-x: -1%; /* how far the bite sits outside on X (to the right) */
    --bite-offset-y: -2%; /* how far the bite sits up from bottom */
    --btn-scale: .80; /* button vs bite size ratio */
}

/* GLOBAL */
*,
*::before,
*::after {
    margin: 0; 
    padding: 0;
    border: none;
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-sans-serif);
    font-size: 16px;
    color: #242321;
    line-height: 24px;
    font-weight: 400;
    /*background: var(--color-white);*/
}
.auto__container{
    max-width: var(--container-width);
    margin: 0 auto;
}

a {
    color: inherit;
    text-decoration: none
}

h1 {
    font-family: var(--font-sans-serif);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    color: var(--color-white);
}
h2 {
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(1.6rem, 2.5vw + .6rem, 2.4rem);
    margin: .8rem 0 1rem;
}

p {
    color: var(--color-gray-700);
    font-size: var(--fs-base);
}

/*p{*/
/*    opacity:.9;*/
/*    color: var(--color-white);*/
/*    font-size: clamp(14px, 1.7vw, 16px);*/
/*}*/

h3 {
    margin: .2rem 0 .35rem;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem)
}

/*preloader*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

/* Spinner animation */
.spinner {
    width: 70px;
    height: 70px;
    border: 10px solid #ddd;
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animation keyframes */
@keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }
/* end*/

.text-success {
    background: #e7f8ef;
    border: 1px solid #b6e2c1;
    color: #2e7d32;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.error-message {
    background: #ffeaea;
    border: 1px solid #ffb3b3;
    color: #c62828;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.error-message strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-md)
}

/* HEADER / NAVBAR */
.header {
    position: absolute;
    width: 80%;
    justify-self: center;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, .20);
    color: var(--color-white)
}

.header.scrolled {
    width: 100%;
    position: fixed;
    background: var(--color-primary);
    box-shadow: var(--shadow-md);
    border-bottom: none;
}
.header.fixed {
    width: 100%;
    background: var(--color-primary);
}

.nav {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px clamp(16px, 4vw, 28px);
    position: relative
}

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

.brand-badge {
    width: 50px;
    height: 50px;
    padding: 5px;
    border-radius: var(--radius-md);
    background: radial-gradient(110% 110% at 30% 20%, var(--color-secondary), #2f7f42);
    box-shadow: inset 0 -8px 18px rgba(0, 0, 0, .25), 0 6px 18px rgba(0, 0, 0, .25)
}
.brand-badge img{
    width: 100%;
    height: 100%;
}
.brand-name{
    line-height: 15px;
    font-size: 12px;
    color: white;
    margin-top: 5px;
    font-weight: 200;
}
.brand-name span{
    font-size: 24px;
    letter-spacing: 3px;
    font-weight: 700;
}
/* HAMBURGER */
.hamburger {
    margin-left: auto;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .06)
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--color-white);
    position: relative;
    display: block
}

.hamburger span::before,
.hamburger span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-white);
    transform-origin: center;
    transition: transform .2s, top .2s, opacity .2s
}

.hamburger span::before {
    top: -7px
}

.hamburger span::after {
    top: 7px
}

.header.is-open .hamburger span {
    background: transparent
}

.header.is-open .hamburger span::before {
    top: 0;
    transform: rotate(45deg)
}

.header.is-open .hamburger span::after {
    top: 0;
    transform: rotate(-45deg)
}

/* LINKS + CTA */
.links {
    margin-left: auto;
    flex: 1 1 auto;
    position: relative;
    min-height: 42px;
    padding-right: 140px
}

.links > ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%)
}

.links > ul > li {
    position: relative
}

.links > ul > li > a {
    font-size: var(--fs-sm);
    display: inline-block;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    color: color-mix(in oklab, var(--color-white) 90%, transparent);
    transition: color .2s, background-color .2s
}

.links > ul > li > a:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, .10)
}

.has-submenu > .nav-parent {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.has-submenu > .nav-parent::after {
    content: "▾";
    font-size: .85em;
    line-height: 1;
    transition: transform .2s
}
.has-submenu .nav-parent{
    cursor: pointer;
}
.has-submenu.open > .nav-parent::after {
    transform: rotate(180deg)
}

/* Submenu (hidden by default) */
.links > ul > li.has-submenu > ul.submenu {
    display: none;
    list-style: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    flex-direction: column;
    gap: 2px;
    min-width: 200px;
    padding: 8px;
    border-radius: var(--radius-lg);
    background: color-mix(in oklab, var(--color-primary) 94%, transparent);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow-md);
    z-index: 60
}

.submenu li a {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    color: color-mix(in oklab, var(--color-white) 85%, transparent)
}

.submenu li a:hover {
    background: rgba(255, 255, 255, .12);
    color: var(--color-white)
}

/* Click-to-open (JS toggles .open) */
.links > ul > li.has-submenu.open > ul.submenu {
    display: flex
}

/* CTA */
.links .cta {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    background: var(--color-accent);
    color: black;
    font-weight: 600;
    font-size: var(--fs-xs);
    transition: transform .15s
}

.links .cta:hover {
    transform: translateY(calc(-50% - 1px))
}

/*end*/

/* ===== HERO / CAROUSEL WRAPPER ===== */
.hero {
    position: relative;
    min-height: 85vh;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
}

.swiper {
    height: 100%;
}

.swiper-slide {
    position: relative;
    height: 100%;
    display: grid;
    place-items: center;
}

/* Background image */
.slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(.7) saturate(1.1);
}

/* Gradient overlay for contrast */
.overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(2, 1, 1, 0.60) 0%, rgba(7, 17, 12, 0.60) 40%, rgba(7, 17, 12, .60) 100%);
}

/* ===== CONTENT CARD ===== */
.hero-content {
    width: min(1100px, 92%);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: clamp(1rem, 2.5vw, 2rem);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.caption::before {
    display: inline-block;
    content: "";
    width: 55px;
    height: 3px;
    vertical-align: middle;
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
    background: #ffffff;
}

.caption::after {
    display: inline-block;
    content: "";
    width: 55px;
    height: 3px;
    vertical-align: middle;
    -webkit-margin-start: 20px;
    margin-inline-start: 20px;
    background: #ffffff;
}

.caption {
    font-family: var(--font-mon);
    color: #ffffff;
    margin: 0 0 20px 0;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: -20px;
    letter-spacing: var(--ls-wide);
}

.title {
    line-height: 1.05;
    font-size: clamp(2rem, 1.6rem + 3.2vw, 3.8rem);
    margin: 0;
    text-wrap: balance;
}

.hero-content .subtitle {
    font-size: 18px;
}

.subtitle {
    margin: 0;
    font-size: var(--fs-sm);
    max-width: 80ch;
    text-align: center;
    color: var(--color-gray-300);
}
.subtitle.dark{
    color: var(--color-gray-600);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .25rem;
    justify-content: center;
}

.chip {
    font-size: var(--fs-xs);
    padding: .45rem .7rem;
    border-radius: 800px;
    font-weight: var(--fw-light);
    background: rgba(0, 0, 0, 0.4);
    color: #e9ffee;
    outline: 1px solid rgba(255, 255, 255, .12);
}

.cta-row .umb-block-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* Swiper controls */
.swiper-pagination-bullet {
    background: var(--color-accent) !important;
    opacity: .6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-button-prev {
    left: 6% !important;
}

.swiper-button-next {
    right: 6% !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    border: 1px solid white;
    backdrop-filter: blur(4px);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 22px !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--color-accent);
}

/*end*/


/*About us block section*/

/* Section wrapper */
.about-us {
    overflow: hidden;
    padding: var(--space-section);
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
}

/* Left image card */
.about-us-photo {
    background: var(--color-accent);
    border-radius: calc(var(--radius-md) + 6px);
    padding: clamp(.5rem, 1vw, .75rem);
    box-shadow: var(--shadow-sm);
}

.about-us-photo figure {
    margin: 0;
    overflow: hidden;
    border-radius: calc(var(--radius-md) - 2px);
    position: relative;
}

.about-us-photo img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.about-us-photo:hover img {
    transform: scale(1.03);
}

/* Right content */
.eyebrow {
    display: inline-block;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: .85rem;
    color: #fff;
    background: linear-gradient(90deg, #ffb64d, #ff8f1f);
    padding: .4rem .8rem;
    border-radius: 999px;
}


.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem 1.5rem;
    margin: 1rem 0 2rem;
}

.feat {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 600;
}

.tick {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-primary);
    display: grid;
    place-items: center;
    flex: 0 0 26px;
}

.tick svg {
    width: 16px;
    height: 16px;
    fill: var(--color-white);
}

/* Bottom cards */
.benefits {
    display: flex;
    gap: 1rem;
    margin-bottom: 20px;
}

.benefits .card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    padding: 1.4rem 1.6rem;
    text-align: center;
    max-width: 200px;
}

.icon-wrap {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    margin: 0 auto .8rem;
    display: grid;
    place-items: center;
    background: var(--color-accent);
}

.icon-wrap img {
    width: 36px;
    height: 36px;
}

.benefits .card h3 {
    font-size: var(--fs-base);
    line-height: 1.25;
    margin: .4rem 0 0;
    font-weight: 500;
}

.benefits .card .sub {
    color: var(--muted);
    margin: .2rem 0 0;
}

.about-us-btn-wrap {
    margin-left: 20px;
    margin-top: 30px;
}

/*end*/

/*process section block*/
.process-section {
    padding: var(--space-section);
}

.process-section-wrap {
    max-width: var(--container-width);
    margin-inline: auto;
    text-align: center;
}

/* Frame around all steps */
.process {
    position: relative;
    border: 2px solid var(--color-gray-200);
    border-radius: 28px;
    overflow: hidden;
    margin-top: 50px;
    box-shadow: var(--shadow-sm);
}

/* Grid */
.process .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}
/*FAQ section*/
.faq {
    padding: var(--space-section);
}

.faq__inner-title {
    margin-bottom: 20px;
}
.faq__inner h2 {
    line-height: 100%;
}
.faqItem {
    border-bottom: 1px solid #e6e5e5;
}
.faqItem__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}
.faqItem__head.active h3 {
    color: var(--color-primary);
}
.faqItem__head.active span::before {
    -webkit-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
    opacity: 0;
}
.faqItem__head h3 {
    color: #2c2c2c;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    width: calc(100% - 20px);
}
.faqItem__head span {
    width: 12px;
    height: 12px;
    position: relative;
}
.faqItem__head span::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    content: "";
    background-color: var(--color-primary);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.faqItem__head span::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    background-color: var(--color-primary);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.faqItem__head.blue span {
    width: 12px;
    height: 12px;
    position: relative;
}
.faqItem__body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.faqItem__body.active {
    max-height: 600px;
    opacity: 1;
    padding-bottom: 40px;
}

/*FAQ end*/

@media (max-width: 1000px) {
    .process .steps {
        grid-template-columns: repeat(2, 1fr)
    }
}

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

/* Column card */
.process .card {
    position: relative;
    padding: 40px 20px 40px;
    text-align: center;
    transition: background .25s ease, color .25s ease, transform .25s ease;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* vertical dividers (hide on last and when stacked) */
.process .card {
    border-right: 2px solid var(--color-gray-200)
}

.process .card:last-child {
    border-right: 0
}

@media (max-width: 560px) {
    .process .card {
        border-right: 0;
        border-bottom: 2px solid var(--color-accent);
    }

    .process .card:last-child {
        border-bottom: 0
    }
}

/* Icon circle */
.process .icon {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    margin: 12px auto 16px;
    background: var(--color-accent);
    transition: background .25s ease, transform .25s ease
}

.process .icon img {
    width: 56px;
    height: 56px;
}

/* hover -> turn like first card */
.process .card:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-4px)
}

.process .card:hover p {
    color: var(--color-white);
}

.process .card:hover .icon {
    background: var(--color-white)
}

.process .card:hover .icon img {
    stroke: #fff
}

/* Title row */
.topline {
    display: flex;
    gap: .6rem;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    opacity: .9;
    margin-bottom: 12px;
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
}

/*end*/
/*services section*/
.services-section {
    width: 100%;
    padding: var(--space-section);
    background: var(--color-primary);
}

.services-section.category {
    background: transparent !important;
}

.services-section-wrap {
    max-width: var(--container-width);
    margin-inline: auto;
}

/* Card */
.services-section .card {
    position: relative;
    width: 100%;
    max-width: 280px;
    min-height: 250px;
    /*height: 100%;*/
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease;
}

.services-section.category .card {
    max-width: 340px;
}

.services-section.category .card:before {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--color-gray-200);
}

.services-section.category .card:after {
    background: var(--color-white);
}

.services-section .card:hover button.cta {
    transform: scale(1.2);
}

.services-section .card:hover {
    transform: translateY(-10px);
}

/* white rounded plate */
.services-section .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-white);
    z-index: 0;
    border-radius: 18px;
    border-bottom-right-radius: 50px;
}

/* bite cutout */
.services-section .card::after {
    content: "";
    position: absolute;
    width: var(--bite);
    height: var(--bite);
    border-radius: 50%;
    background: var(--color-primary);
    /* must match body background */
    right: var(--bite-offset-x);
    bottom: var(--bite-offset-y);
    z-index: 4;
    /* above content to look like a real cutout */
}

.services-section-wrap .card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    /*padding-top: 20px;*/
    margin-top: 30px;
}

/* media */
.services-section .card > img.media {
    display: inline-block;
    width: 92%;
    margin-top: 12px;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-md);
    position: relative;
    /* ensures it sits above the white plate */
    z-index: 1;
    align-self: center;
}

/* caption */
.services-section .card > figcaption {
    position: relative;
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: #222;
    z-index: 3;
    gap: 8px;
    padding: 20px 35px;
    /* space for the button */
}

.services-section .card > figcaption .icon {
    inline-size: 60px;
    block-size: 60px;
    object-fit: contain;
}

.bg-icon {
    position: absolute;
    bottom: 2%;
    right: 0;
    width: 200px;
    transform-origin: bottom right;
    /*scale: 2.5;*/
    opacity: 0.10;
    border-bottom-right-radius: 25px;
}

.services-section.category .card > button.cta {
    background: var(--color-primary);
}

/* CTA button: locked to bite size */
.services-section .card > button.cta {
    position: absolute;
    width: calc(var(--bite) * var(--btn-scale));
    height: calc(var(--bite) * var(--btn-scale));
    border: 0;
    border-radius: 50%;
    background: var(--color-accent);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    right: calc(var(--bite-offset-x) + (var(--bite) - (var(--bite) * var(--btn-scale))) / 2);
    bottom: calc(var(--bite-offset-y) + (var(--bite) - (var(--bite) * var(--btn-scale))) / 2);
    transition: transform 0.3s ease;
}

.services-section .card > button.cta img {
    max-width: 60%;
    height: auto;
    display: block;
}

/*end*/


/*choose us section*/
.choose-us {
    padding: var(--space-section);
}

.choose-us-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
    margin-inline: auto;
}
.choose-us .container{
    max-width: var(--container-width);
    margin: auto;
}

.choose-us-grid p {
    color: var(--color-gray-200);
}

/* Left (copy) */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 600;
    opacity: .95;
}

.eyebrow svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(.98);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

/* Right (photo) */
.choose-us .photo-wrap {
    position: relative;
    display: grid;
    place-items: center;
}

.choose-us .card-photo {
    width: 100%;
    max-width: 540px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #fff;
}

.choose-us .card-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.choose-us .card-photo {
    position: relative;
    z-index: 1;
}

.novality-list {
    padding-top: 14px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;

}

.novality-list .novality {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
}

.novality-list img {
    height: 40px;
    width: 40px;
}

/* ---- footer ---- */
.footer {
    background: var(--color-primary);
    color: var(--color-text);
}

.footer__inner {
    max-width: var(--container-width);
    margin: auto;
    padding: var(--space-section) 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
    justify-content: space-between;
}

/* brand / column 1 */
.footer .brand-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: start;
}
.footer .brand-container p{
    color: var(--color-gray-200);
}

.footer .brand__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    font-size: 18px;
    color: #e6fff4;
}

.brand__logo .mark {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #1a6b4f;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: #e6fff4;
}

.footer .btn-outline {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    justify-content: center;
    border: 2px solid var(--color-accent);
    border-radius: 999px;
    color: var(--color-white);
    font-weight: 600;
    transition: .2s ease;
    max-width: 150px;
    justify-self: start;
}

.btn-outline:hover {
    background: #124f3e
}

.col-container {
    justify-self: center;
}

/* column titles */
.col-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 18px 0;
    position: relative;
    padding-top: 12px;
}

.col-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}
.socialLinks {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 10px;
}
.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icon img {
    width: 20px;
    height: 20px;
}
.social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-mine);
}
/* contact */
.footer .contact li {
    list-style: none;
    margin: 0 0 12px 0;
    color: var(--muted)
}

.footer .contact strong {
    color: #eafaf3
}

.footer .contact {
    padding: 0
}

/* quick links */
.footer .links {
    padding: 0;
    margin: 0;
}

.footer .links li {
    list-style: none;
    margin: 0 0 12px 0
}

.footer .links a {
    color: var(--color-text)
}

.footer .links a:hover {
    color: #ffffff
}

/* badge (25+ years) */
.footer .badge {
    background: var(--color-white);
    color: #123629;
    border-radius: 20px;
    padding: 20px 0px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    border-top: 6px solid var(--color-accent);
    width: 150px;
    height: 150px;
    justify-self: end;
}

.footer .badge h2 {
    margin: 0;
    font-weight: 700;
    font-size: 28px;
}

.footer .badge p {
    margin: 0;
    color: #2b3f35;
    font-weight: 600
}

/*end*/

/* ---- bottom bar ---- */
.footer__bar {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 36px;
    text-align: center;
    padding: 20px 20px;
}

.footer .bar__inner {
    max-width: 1200px;
    margin: auto;
    padding: 18px 20px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    flex-wrap: wrap;
}
/*end*/

/*Service details section*/
.service-details-section{
    padding: var(--space-section);

}

.service-details-grid{
    position: relative;
    max-width: var(--container-width);
    display:grid;
    gap:22px;
    margin-inline:auto;
}

/* Panel (Menu) */
.panel{
    background:var(--color-white);
    border-radius:var(--radius-md);
    padding:24px;
    top: 0;
    transition: all 0.1s ease-in-out;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--color-gray-200);
}

.panel h3{
    color:var(--color-primary);
    margin:0 0 10px;
    font-size:24px;
    font-weight:800;
}
.panel h3::after{
    content:"";
    display:block;
    width:20%;
    height:6px;
    border-radius:var(--radius-md);
    background:var(--bg-gradient-orange);
    margin-top:10px;
    margin-bottom:14px;
}

.panel .list{
    display:grid;
    gap:10px;
}

.panel .item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    background:var(--color-white);
    border-radius:var(--radius-md);
    padding:12px 18px;
    text-decoration:none;
    box-shadow: var(--shadow-sm);
    /*border: 2px solid var(--color-primary);*/
    color:var(--color-gray-700);
    transition:transform .08s ease, box-shadow .2s ease;
}
.panel .item:hover{
    transform:translateY(-1px);
    box-shadow:0 8px 24px rgba(16,24,40,.08);
}
.panel .item--active{
    background:var(--color-primary);
    color:var(--color-white);
}
.arrow{
    font-size: 20px;
    color: var(--color-orange);
}
.item--active .arrow{ color: var(--color-white); }

/* Hero (Image + Text) */
.service-details-content{
    display:grid;
    gap:20px;
}
.service-details-content ul{
    margin-inline-start: 20px;
}
.service-details-content ul strong{
    color:var(--color-gray-700);
}
.service-details-content img, .blog-details img{
    width:100%;
    object-fit:cover;
    border-radius:10px;
    height: 450px;
}
.blog-details p{
    margin: 15px 0;
    color: var(--color-gray-700);
}
.service-details-content h2{
    font-size:clamp(22px, 2.4vw, 32px);
    font-weight:800;
    margin:0;
}
/*end*/

/*blog*/
.blog-details{
    padding: var(--space-section);
}
.blog-details .auto__container{
    padding-top: 60px;
    max-width: 1100px;
}
/**/
/*common Hero Section */
.common-hero-block {
    position: relative;
    height: 50vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    flex-direction: column;
    padding: var(--space-section);
}

.common-hero-block .bg-img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
}

.common-hero-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); /* overlay */
    z-index: 1;
}

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

.common-hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

/* Breadcrumb */
.breadcrumb {
    background: #0a402f;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #d4d4d4;
}

.breadcrumb span {
    margin: 0 5px;
    color: #ccc;
}

.fun__facts{
    padding: var(--space-section);
}
.fun__facts .container{
    max-width: var(--container-width);
    margin-inline:auto;
}

.fun__facts .split{
    display:grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 28px);
}
.fun__facts .stats{
    display:grid;
    grid-template-columns: 1fr;
    gap: clamp(14px, 2vw, 20px);
}
.fun__facts .card{
    position:relative;
    background:var(--color-white);              
    border-radius:18px;
    padding:42px 28px 32px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-align:center;
    isolation:isolate;
    /*border: 2px solid var(--color-accent);*/
    box-shadow: var(--shadow-sm);
}
.fun__facts .card:hover .badge{
    scale: 1.1;
}

/* --- BADGE --- */
.fun__facts .badge{
    position:relative;
    z-index:1;
    width:190px; height:190px;
    border-radius:50%;
    display:grid; place-items:center;
    background:var(--color-bg);  
    transition: scale 0.3s ease/* white ring behind dashed lines */
}
/* outer dashed ring */
.fun__facts .badge::before{
    content:"";
    position:absolute; inset:10px;
    border-radius:50%;
    border:2px dashed #2fa44a;
}

.fun__facts .badge__core{
    width:150px; height:150px; border-radius:50%;
    background:var(--color-primary);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color:var(--color-white);
    font-weight:800;
    font-size:42px;
    letter-spacing:.5px;
}

/* heading + sub exactly spaced like the card */
.fun__facts .stat-title{
    margin-top:15px;
    color:var(--color-primary);
    font-weight:800;
    font-size:28px;
    margin-bottom: 0;
}
.fun__facts .stat-sub{
    margin-top:14px;
    color:var(--color-gray-500);
    font-size:16px;
    margin-bottom: 0;
}

.impact-stats{
    padding: var(--space-section);
}
.impact-stats .container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    text-align: center;
    max-width: var(--container-width);
    margin: auto;
    padding: 20px;
    gap: 30px;
    flex-wrap: wrap;
    background: white;
    background: var(--color-primary);
    border-radius:var(--radius-lg);
    position: relative;
}

.impact-stats .stat {
    flex: 1;
    min-width: 250px;
    padding: 10px 20px;
    align-items: center;
    
}

.impact-stats h2 {
    font-size: 64px;
    font-weight: 900;
    color: white;
    margin: 0 0 10px;
}

.impact-stats h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0 0 15px;
}

.divider-ver {
    width: 1px;
    background: var(--color-accent);
}
/*end*/
.invitation-banner{
    padding:var(--space-section);
    margin-top: 55px;
}
.invitation-banner .banner{
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    max-width: var(--container-width);
    margin: auto;
}
.invitation-banner .banner__inner{
    display:flex;
    align-items:center;
    gap: clamp(20px, 2.5vw, 40px);
    padding: clamp(18px, 3vw, 32px);
    max-height: 220px;
}

/* left cluster */
.invitation-banner .badge-col{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    width: clamp(90px, 12vw, 140px);
    min-width: 90px;
    margin-left: 30px;
}
.invitation-banner .badge-col img{
    max-width:100%;
    height:auto;
    display:block;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,.2));
}

/* middle content */
.invitation-banner .content{
    display:grid;
    gap: 30px;
    flex:1 1 auto;
    min-width: 240px;
}
.invitation-banner .content h2{
    margin:0;
    font-weight:700;
    font-size: clamp(18px, 2.3vw, 28px);
    letter-spacing:.2px;
}
.invitation-banner .content span{
    color: var(--color-accent);
    font-weight: 800;
    white-space: nowrap;
}

/* right image */
.invitation-banner .person img{
    width: 100%;
    max-width: 360px;
    display:block;
    transform: translateY(-55px);
}
/*gallery section*/
.cgallery{
    padding: var(--space-section);
}
.cgallery__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cgallery__inner-col {
    width: calc(41% - 10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cgallery__inner-col .cgalleryItem {
    width: 100%;
    margin: 10px 0;
}
.cgallery__inner-col .cgalleryItem__image {
    padding-bottom: 56.25%;
}
.cgallery__inner-wrapper {
    width: calc(59% - 10px);
}
.cgallery__inner-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.cgalleryText {
    margin-bottom: 14px;
}
.cgalleryText h2 {
    margin-bottom: 20px;
}
.cgalleryItem {
    margin: 10px;
    width: calc(50% - 20px);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}
.cgalleryItem.big {
    width: calc(100% - 20px);
}
.cgalleryItem.big .cgalleryItem {
    width: 100%;
    margin: 10px 0;
}
.cgalleryItem.big .cgalleryItem__image {
    padding-bottom: 38.6%;
}
.cgalleryItem:hover .cgalleryItem__image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.cgalleryItem__image {
    width: 100%;
    padding-bottom: 80%;
    position: relative;
}
.cgalleryItem__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.cgalleryItem__button {
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    background: rgba(44, 44, 44, 0.5);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}
.cgalleryItem__button:hover {
    opacity: 1;
    background: var(--color-primary);
}
.cgalleryItem__button img {
    width: 100%;
    pointer-events: none;
}
.cgalleryItem__info {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 8px 0 0 0;
    background: var(--color-primary);
    padding: 6px 15px;
    color: var(--color-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cgalleryItem__info span {
    width: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 5px;
}
.cgalleryItem__info span img {
    width: 100%;
}
.cgalleryItem__info p {
    padding-left: 6px;
    position: relative;
    color: var(--color-white);
}
.cgalleryItem__info p::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 15px;
    content: "";
    background: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.modall .journey {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
}
.modall .journey__slider {
    max-width: 870px;
    position: relative !important;
}
.modall .journey .slick-prev {
    left: -80px;
}
.modall .journey .slick-next {
    right: -80px;
}

.journey {
    margin-bottom: 40px;
    position: relative;
}
.journey__slider {
    width: 80%;
    max-width: 670px;
    margin: 0 auto;
    position: static !important;
}
.journey .cgalleryItem {
    width: unset;
    margin: 0;
}
.journey .cgalleryItem__image {
    padding-bottom: 70%;
}
.journey .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
.journey .slick-list {
    overflow: visible !important;
}
.journey .slick-slide {
    height: unset !important;
    margin: 0 10px;
    opacity: 0.5;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    pointer-events: none;
}
.journey .slick-current {
    opacity: 1;
    pointer-events: all;
}
.journey .slick-arrow {
    position: absolute;
    z-index: 3;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--color-primary);
    border-radius: 50%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.journey .slick-arrow:hover {
    opacity: 1;
    background: var(--color-primary);
}
.journey .slick-arrow:focus {
    background: var(--color-primary);
}
.journey .slick-prev {
    left: 0;
}
.journey .slick-prev::before {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.journey .slick-next {
    right: 0;
}
.journey .slick-arrow::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: url("/assets/images/arrow-right.svg");
    background-repeat: no-repeat;
    background-size: cover;
}
.modall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: 9999;
}
.modall.active {
    opacity: 1;
    visibility: visible;
    -webkit-animation: fadeIn 0.4s;
    animation: fadeIn 0.4s;
}

.modall__inner-close img {
    width: 9px;
    pointer-events: none;
}

.modall .journey {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
}
.modall .journey__slider {
    max-width: 870px;
    position: relative !important;
}
.modall .journey .slick-prev {
    left: -80px;
    top: 50%;
    transform: translateX(-50%);
    font-size: 0px;
    cursor: pointer;
}
.modall .journey .slick-next {
    right: -80px;
    top: 50%;
    transform: translateX(-50%);
    font-size: 0px;
    cursor: pointer;
}
/*contact block*/
.quote-section {
    padding: var(--space-section);
}
.quote-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.quote-section .quote-form,
.quote-section .contact-info {
    flex: 1 1 500px;
    background: var(--color-white);
}

.quote-section .quote-form {
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.quote-section .contact-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.quote-form h2 {
    margin-bottom: 10px;
}

.quote-form p {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.quote-section .btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 20px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: 0.3s;
    
}

.quote-section .btn:disabled {
    background-color: #050000;       /* lighter green when disabled */
    cursor: not-allowed;
    opacity: 0.8;
}

.form-row input {
    flex: 1;
    padding: 15px;
    border-radius: 25px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

textarea {
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    font-size: 1rem;
    resize: none;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;    
}

/* Contact Info */
.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-info p {
    color: var(--color-gray-600);
    margin-bottom: 15px;
}

.contact-box {
    display: flex;
    flex-direction: column;
    margin: 25px 0;
    gap: 15px;
}

.contact-box h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 10px;
    transition: scale 0.3s ease;
}
.contact-box .icon img{
    width: 40px;
}
.contact-box h3:hover {
    scale: 1.05;
    box-shadow: var(--shadow-sm);
}

/*end*/
.grass__border {
    width: 100%;
    z-index: 10;
    object-fit: cover;
    object-position: left;

    position: absolute;
    bottom: -5%;
}
.services-section {
    position: relative;
    overflow:  hidden;
}

.bg-dec-img {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.4;
}
.bg-dec-img-bottom{
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.4;
    transform-origin: bottom left;
    transform: scale(1.3);
}

/*blog section*/

.blogSection {
    padding: var(--space-section);
}

.blogSection__inner-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.blogSection__inner-title h2 {
    margin-bottom: 20px;
}

.blogSection__inner-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.blogSection__inner-row.active .blogSectionItem:nth-child(n) {
    display: block;
}

.blogSection__inner-foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 30px;
}

.blogSection__inner-foot button {
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    text-transform: uppercase;
    font-family: "proxima-nova", sans-serif;
    color: var(--color-primary);
    font-size: 15px;
    line-height: 18px;
    border: 1px solid var(--color-primary);
    transition: 0.3s ease;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 800;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blogSection__inner-foot button:hover span {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
}

.blogSection__inner-foot button.active:hover span {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}

.blogSection__inner-foot button.active span::before {
    -webkit-transform: translateY(-30%) rotate(-45deg);
    transform: translateY(-30%) rotate(-45deg);
}

.blogSection__inner-foot button b {
    font-weight: 800;
}

.blogSection__inner-foot button span {
    position: relative;
    width: 9px;
    height: 9px;
    margin-left: 10px;
    display: block;
    margin-bottom: 3px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.blogSection__inner-foot button span::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 100%;
    border-top: 3px solid var(--color-primary);
    border-right: 3px solid var(--color-primary);
    content: "";
    -webkit-transform: translateY(-50%) rotate(135deg);
    transform: translateY(-50%) rotate(135deg);
}

.blogSectionItem {
    -webkit-box-shadow: var(--shadow-mine);
    box-shadow: var(--shadow-mine);
    background-color: var(--color-white);
    margin: 10px;
    width: calc(33.3% - 20px);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.blogSectionItem:nth-child(n+4) {
    display: none;
}

.blogSectionItem__image {
    width: 100%;
    position: relative;
    padding-bottom: 53%;
    min-height: 200px;
}

.blogSectionItem__image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blogSectionItem__location {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: calc(100% - 40px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 10px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 8px 8px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.blogSectionItem__location p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
}

.blogSectionItem__location p span {
    width: 18px;
    height: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 6px;
}

.blogSectionItem__location p span.sm {
    width: 14px;
    height: 14px;
}

.blogSectionItem__location p span img {
    width: 100%;
}

.blogSectionItem__location hr {
    width: 1px;
    height: 18px;
    background: #fff;
    margin: 0 10px;
}

.blogSectionItem__title {
    text-align: center;
    margin-bottom: 20px;
}

.blogSectionItem__title p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogSectionItem__title h3 {
    font-weight: 700;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogSectionItem__content {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.blogSectionItem__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -5px 20px;
}

.blogSectionItem__info p {
    margin: 10px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    color: var(--color-gray-700);
}

.blogSectionItem__info p span {
    width: 16px;
    height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 10px;
}

.blogSectionItem__info p span img {
    width: 100%;
}

.blogSectionItem__foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-primary);
    margin: auto 0 0 0;
}

.blogSectionItem__foot a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    transition: transform 0.1s ease-in;
}
.blogSectionItem__foot a:hover {
    transform: scale(1.02);
}

.blogSectionItem__foot a:hover img {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
}

.blogSectionItem__foot a img {
    width: 9px;
    height: 9px;
    margin-left: 8px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}
/*end*/
/* MOBILE */
@media (max-width: 899px) {
    /* header design*/
    .header {
        width: 100%
    }
    .divider-ver{
        display: none;
    }
    .divider-hor{
        display: block;
        width:100%;
        height: 1px;
        background: var(--color-accent);
        position: relative;
        top:0px;
    }
    .brand-container{
        align-items: center;
    }

    nav .links {
        display: none;
        position: absolute;
        top: 100%;
        left: clamp(16px, 4vw, 28px);
        right: clamp(16px, 4vw, 28px);
        background: color-mix(in oklab, var(--color-primary) 88%, transparent);
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: var(--radius-lg);
        padding: 10px;
        box-shadow: var(--shadow-md);
        flex-direction: column;
        gap: 8px;
        min-height: unset;
        padding-right: 0
    }

    .header.is-open .links {
        display: flex
    }

    .links > ul {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px
    }

    .links > ul > li.has-submenu > ul.submenu {
        position: static;
        display: none;
        padding: 6px;
        margin-top: 4px;
        border-radius: var(--radius-md);
        background: color-mix(in oklab, var(--color-primary) 92%, transparent);
        border: 1px solid rgba(255, 255, 255, .10);
        box-shadow: none
    }

    .links > ul > li.has-submenu.open > ul.submenu {
        display: flex
    }

    .links > ul > li > a {
        display: block;
        padding: 12px 14px
    }

    .links .cta {
        position: static;
        transform: none;
        width: 100%;
        text-align: center
    }

    /* end*/
    /*hero design*/
    .hero {
        height: 100%;
    }

    .hero-content {
        min-height: 95vh;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none !important;
    }

    .hero-content h1 {
        text-align: center;
    }

    /*end*/
    /*about-us block section*/
    .about-us-container {
        grid-template-columns:1fr;
    }

    .about-us-photo img {
        height: 420px;
    }

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

    .services-section .card {
        max-width: 500px;
    }

    .footer .badge {
        grid-column: 1/-1;
        justify-self: center;
        min-width: 150px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__inner {
        place-items: center;
        text-align: center;
    }

    .footer .brand {
        place-items: center;
    }

    .col-title::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer .brand__logo {
        flex-direction: column;
    }

    .footer .brand {
        justify-content: center;
    }

    .choose-us-grid {
        grid-template-columns: 1fr;
        text-align: center;
        place-items: center;
        place-content: center;
        padding: var(--space-section);
    }

    .novality-list {
        align-items: center;
    }

    .sub {
        margin-inline: auto;
    }
    
    /*common hero block */
    .common-hero-block {
        height: 35vh;
    }
   

    .common-hero-content h1 {
        font-size: 1.5rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
        padding: 10px;
    }
    /*end*/
    
/*    cgallery*/
    .cgallery__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .cgallery__inner-col {
        width: 100%;
    }
    .cgallery__inner-wrapper {
        width: 100%;
    }
    .cgalleryItem.big .cgalleryItem__image {
        padding-bottom: 56.25%;
    }
    .blogSectionItem {
        width: calc(50% - 20px);
    }
    .journey .cgalleryItem__image {
        height: 500px;
    }
/*    end*/
    
}

@media (max-width: 750px){
    .hero-content .caption{
        font-size: 12px;
    }
    .hero-content .caption::before{
        width: 30px;
    }
    .hero-content .caption::after{
        width: 30px;
    }
    .invitation-banner{
        margin-top: 300px;
    }
    .invitation-banner .banner__inner{
        flex-direction: column-reverse; /* image below, text above */
        text-align: center;
        gap: 18px;
        padding-bottom: 50px;
    }
    .invitation-banner .person img{ max-width: 260px; transform:none;}
    .invitation-banner .badge-col{ display: none; }
    .invitation-banner .cta{ justify-content: flex-start; }
    .invitation-banner .btn{
        margin: auto;
    }
    .invitation-banner .content{
        gap: 40px;
    }
    .cgallery__inner-col {
        margin-bottom: 16px;
    }
    .cgallery__inner-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0;
    }
    .cgalleryItem {
        width: 100% !important;
        margin: 0 0 16px 0;
    }
    .cgalleryItem:last-child {
        margin: 0;
    }
    .cgalleryItem__image {
        padding-bottom: 56.25%;
    }
    .cgallery h2 {
        font-size: 30px;
        margin-bottom: 14px;
    }
    .modall {
        padding: 20px;
    }
    .modall .journey .slick-arrow {
        display: none !important;
    }
    .journey__slider {
        width: calc(100% + 12px);
        margin: 0 -6px;
    }
    .journey .slick-slide {
        margin: 0 6px;
    }
    .journey .slick-prev {
        left: -10px;
    }
    .journey .slick-next {
        right: -10px;
    }
    .cgallery__inner-wrapper{
        display: none;
    }
    .quote-section .container {
        flex-direction: column;
    }

    .quote-section. quote-form,
    .quote-section .contact-info {
        width: 100%;
    }

    .quote-section .form-row {
        flex-direction: column;
    }

    .quote-section .btn {
        font-size: 1rem;
    }
    .grass__border {
        bottom: -8.5%;
    }
    .blogSection__inner-title {
        margin-bottom: 20px;
    }
    .blogSection__inner-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0;
    }
    .blogSection__inner-foot {
        padding-top: 20px;
    }
    .blogSectionItem {
        width: 100%;
        margin: 0 0 20px 0;
    }
}

/* DESKTOP */
@media (min-width: 900px) {
    /*header design*/
    .hamburger {
        display: none
    }

    .header.scrolled .nav {
        padding: 10px 10px;
    }

    /*hero design*/
    .hero {
        min-height: 90vh;
    }

    .hero-content {
        min-height: 90vh;
        padding-top: min(18vh, 10rem);
        padding-bottom: min(12vh, 6rem);
    }
    /*service details section*/
    .service-details-grid{
        grid-template-columns: 1fr 360px; /* content first, panel second */
        align-items:start;
        position: relative;
    }
    .service-details-section .panel-scrolled{
        position:sticky;
        top:10%;
        right:calc((100% - 1200px)/2); /* keeps aligned with grid */
        width:360px;
        max-height:calc(100vh - 40px);
        overflow-y:auto;
    }
}
@media (max-width: 540px){
    .blogSection h2 {
        font-size: 30px;
        margin-bottom: 14px;
    }
    .faq {
        padding: 40px 0;
    }
    .faq.new {
        padding: 40px 0 20px;
    }
    .faq.new .faq__inner-title {
        text-align: start;
    }
    .faq__inner-title {
        margin-bottom: 10px;
    }
    .faqItem__head h3{
        font-size: 20px;
    }
}

@media (min-width: 1000px) {
    .fun__facts .split{
        display: flex;
        justify-content: space-between;
    }
    .fun__facts .stats{
        display: flex;
    }
    .fun__facts .card{
        max-width: 350px;
    }
    .fun__facts .txt-wrap{
        max-width: 500px;
    }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .hamburger span::before,
    .hamburger span::after,
    .links .cta,
    .links > ul > li > a {
        transition: none
    }
}


/*button design*/
.btn {
    appearance: none;
    border: none;
    cursor: pointer;
    padding: .9rem 1.15rem;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-secondary {
    background: var(--color-primary);
    color: var(--color-white);
    display: inline-block;
    padding: .9rem 1.5rem
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    outline: 1px solid rgba(255, 255, 255, .25);
    color: var(--color-white);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .06);
    transform: translateY(-2px);
}

/*end*/ 
