/* @import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap'); */

:root {
    --pp-green: #229221;
    --pp-green-dark: #0a472d;
    --pp-bg: #FAF9F6;
    --pp-text: #1e1f20;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif !important;
}
body {
    scroll-behavior: smooth;
    background: var(--pp-bg) !important;
    color: var(--pp-text);
    line-height: 1.55;
    box-sizing: border-box;
}

body.mobile-nav-open {
    overflow: hidden;
}

section {
    min-height: 100vh;
    height: fit-content;
    scroll-margin-top: 110px;
}


.section-break {
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(88px, 9vw, 120px);
    padding: 0 !important;
    margin: 0 !important;
}

.section-title {
    text-transform: uppercase;
    text-align: center;
}

.section-title>h2{
    font-weight: 700;
    color: rgba(10, 71, 45, 0.8);
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}
.section-title>h3{
    font-weight: 600;
    font-size: 2rem;
}

.section-title h4 {
    font-weight: 400;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fh {
    height: 100%;
}

/* HEADER */

.header-mobile {
    z-index: 999;
    padding: 0 1rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    height: 74px;
    width: 100%;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
}

.mobile-brand {
    color: rgba(10, 71, 45, 0.95);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.9rem;
}

#mobile_header_logo {
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.08) 0 4px 14px 0;
}

.mobile-menu-toggle {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.mobile-menu-toggle .menu-line {
    width: 21px;
    height: 2.5px;
    border-radius: 4px;
    background: var(--pp-green-dark);
    transition: 180ms ease;
}

.mobile-menu-toggle.open .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.open .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open .menu-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 15, 9, 0.45);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    transition: 160ms ease;
    z-index: 1000;
}

.mobile-nav-backdrop.show {
    opacity: 1;
}

.mobile-menu-panel {
    display: none;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 380px);
    background: #f8faf8;
    transform: translateX(100%);
    transition: 220ms ease;
    z-index: 1001;
    padding: 1rem 1rem 1.5rem 1rem;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.16);
    overflow-y: auto;
}

.mobile-menu-panel.open {
    transform: translateX(0);
}

.mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    margin-top: auto;
}

.mobile-menu-title {
    margin: 0;
    color: var(--pp-green-dark);
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.mobile-menu-close {
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    color: var(--pp-green-dark);
    font-size: 1.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.82);
    background: #fff;
    border: 1px solid rgba(10, 71, 45, 0.12);
    border-radius: 12px;
    padding: 0.85rem 0.9rem;
    font-weight: 500;
}

.mobile-nav-link:active,
.mobile-nav-link:hover {
    color: var(--pp-green-dark);
    border-color: rgba(10, 71, 45, 0.3);
    background: rgba(34, 146, 33, 0.08);
}

.mobile-menu-cta {
    margin-top: 1.35rem;
}

.mobile-menu-cta.btn-reserve > a {
    display: block;
    text-align: center;
    padding: 0.95rem 1.1rem;
    border-radius: 12px;
}

.mobile-menu-contact {
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    align-items: center;
    text-align: center;
}

.mobile-menu-contact a {
    color: rgba(0, 0, 0, 0.66);
    text-decoration: none;
    font-size: 0.9rem;
}

.prenav {
    background: rgba(0, 128, 8, 0.65);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 2.5rem;
    display: flex;
    flex-direction: row;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms;
}

.prenav>.container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: #efefef;
}

.prenav span {
    height: 40px;
    display: flex;
    align-items: center;
    text-wrap: nowrap;
}

.prenav a {
    text-decoration: none !important;
    color: inherit;
}

.prenav svg {
    margin: 0.25rem;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99999;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 150ms;
    color: #262626
}

img#header_logo {
    position: relative;
    background: linear-gradient(white, white) padding-box,
    radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #2f8a44 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #1f5d3e 62.5%, #5d4a1f 100%) border-box;
    border: 3px solid white;
    height: 5rem;
    border-radius: 100%;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0px 20px 13px;
}

img#header_logo:hover {
    cursor: pointer;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


a.nav-item {
    min-width: fit-content;
    color: rgb(0,0,0,0.7);
    text-decoration: none;
    border-radius: 8px;
    padding: 0.5rem 0.25rem;
    margin: 0 0.25rem;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
    font-weight: 500;
}

a.nav-item.active {
    color: rgb(41, 146, 33) !important;
}

a.nav-item:hover {
    transform: translateY(-1px);
    cursor: pointer;
    color: rgb(41, 146, 33) !important;
}
a.nav-item:focus{
    transform: translateY(-1px);
    cursor: pointer;
    color: rgb(41, 146, 33) !important;
}

a:focus-visible,
button:focus-visible,
.accordion-button:focus-visible {
    outline: 2px solid rgba(34, 146, 33, 0.75) !important;
    outline-offset: 2px;
}

.btn-reserve{
    min-width: fit-content;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

.btn-reserve:hover{
    transform: translateY(-1px);
}

.btn-reserve>a{
    box-shadow: rgba(0, 0, 0, 0.15) 0 0px 20px 13px;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600 !important;
    border-radius: 16px;
    color:rgb(255, 255, 255);
    background: #00693d;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}
.btn-reserve>a:hover, .btn-reserve>a:focus {
    outline: 0 !important;
    box-shadow: rgba(0, 151, 43, 0.2) 0 0px 20px 13px;
    background: #229221;
    color:rgb(255, 255, 255);
}


.nav-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#header-row {
    height: 6rem;
    justify-content: space-evenly;
    transition: cubic-bezier(0.445, 0.05, 0.55, 0.95) 100ms ;
    width: 100%;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
#header-row:hover {
    background: rgba(255, 255, 255, 0.8);
}






/* FLOATER */

.floater>svg {
    filter: drop-shadow(0px 4px 14px rgba(0, 0, 0, 0.4));
    fill: rgba(41, 146, 33, 0.6);
    transition: cubic-bezier(0.445, 0.05, 0.55, 0.95) 150ms;
}

.floater>svg:hover {
    cursor: pointer;
    fill: rgba(41, 146, 33, 1);
    transform: translateY(-2px);
}

div.floater {
    z-index: 999999;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.nav-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.nav-infobox {
    display: flex;
    flex-direction: row;
    align-items: end;
}
.nav-infobox:hover {
    cursor: pointer;
}

a#infobox {
    position: relative;
    color: #11230f;
    font-size: 14px;
}

.full-img-wrapper {
    position: relative;
}

#carouselAutoplay {
    width: 100% !important;
}

.carousel-inner {
    width: 100% !important;
}

.review-item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 320px !important;
    margin: 1rem;
    min-height: 250px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 16px;
}

p.content {
    padding: 0 0.5rem;
    margin-bottom: 1rem !important;
    overflow-wrap: anywhere;
}

.profile {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    height: fit-content;
    padding: 1.75rem 0.5rem 1rem 0.5rem;
}
.profile p {
    margin: 0 .75rem !important;
    width: fit-content !important;
    line-height: 1rem;
}

.review-link {
    margin-top: auto;
    padding: 0 0.5rem 0.75rem 0.5rem;
    text-align: right;
}

.review-link a {
    padding: 0.35rem 0.5rem;
    font-size: 12px;
    border-radius: 8px;
    color: rgba(10, 71, 45, 0.7);
    transition: 120ms ease;
}

.review-link a:hover {
    color: rgba(10, 71, 45, 1);
    background: rgba(34, 146, 33, 0.08);
}

.full-img-wrapper::before {
    z-index: -1;
    content: "";
    background-image: url("../assets/about-us.png");
    border-radius: 0 32px 32px 0;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.4;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    width:100%
}
.about-info {
    background: white;
    width: 75%;
}

a.nav-item.active  {
    position: relative;
    transform: translateY(-1px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

a.nav-item.active::before {
    border-radius: 2px;
    height: 4px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(41, 146, 33) !important;
}

a.nav-item{
    position: relative;
}

a.nav-item::before {
    border-radius: 2px;
    height: 4px;
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    background-color: transparent !important;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

div.nav-img-wrapper {
    width:fit-content !important;
}

/* FOOTER */

footer {
    background: #010f08;
}

.footer {
    display: flex;
    flex-direction: column;
    background:#010f08;
    min-height: 15rem;
    color:rgb(226, 226, 226);
}

footer svg {
    position: inherit;
    margin: 0 -0.5rem;
}
footer span.divider {
    width: 1px !important;
    height: 20px !important;
    border-left: 1px solid rgb(82, 82, 82);
}



.credit {
    opacity: 0.6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    width: fit-content !important;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}


.credit:hover{
    opacity: 1;
}

#heart{
    opacity: 0.6;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;

}

#heart:hover{
    opacity: 1;
}

a#nrp {
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
    text-decoration: none;
    color: inherit;
}

a#nrp:hover{
    color: #eb4960;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

.footer-row {
    min-height: 3.5rem;
    justify-content: center;
    align-items: end;
}

.footer-row>.physioplus{
    margin: 0;
    padding: 0;
    width:fit-content; 
    font-weight: 800;
    color: rgb(226, 226, 226);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;

}
.footer-row>.physioplus:hover{
    color: white;
    cursor: pointer;
}

.footer-row.bottom.row {
    display: flex;
    justify-content: space-evenly;
    border-top: 2px solid #1b1b1b;
}


.footer-nav {
    width: fit-content;
    min-height: 3.5rem;
}

.footer-nav-row {
    text-align: center;
}

.footer-item {
    margin: 0 0.25rem;
    color: rgb(100, 100, 100);
    text-decoration: none;
    text-wrap: nowrap;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

.footer-item.local {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.footer-item:hover {
    color: white;
    text-decoration: underline;
}


/* IMAGE CAROUSEL */

.img-carousel {
    display: flex;
    height: 650px;
    align-items: center;
    justify-content: center;
    padding: 2rem !important;
    width: 100%;
}

.img-carousel img {
    object-fit: contain;
    height: 650px;
    max-height: 650px !important;
}

.grid-container {
    min-height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: auto auto auto;
}

.service-card, .service-card>*{
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

.service-card {
    position: relative;
    display: flex;
    padding: 1rem;
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 360px;
    min-width: 300px !important;
    background: url("../assets/images.jfif");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 16px;
}

.usluge .row {
    row-gap: 1.25rem;
}

.service-card-splash{
    color: white;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1rem;
    z-index: 99;
    position: absolute;
    background: rgba(1, 137, 23, 0.721);
    filter: grayscale(0.33);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms;
}


.service-card-splash:hover {
    background: rgba(0,0,0, 0.33);
    filter: grayscale(0);
    box-shadow: 0 4px 20px rgba(0, 121, 27, 0.33);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    cursor: pointer;
}

.service-card-description>p {
    margin-top: 1rem;
    color: #fafafa;
    width: 100%;
    font-weight: 300;
    padding: 0 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.service-card-img {
    padding-top: 1.5rem;
    text-align: center !important;
}

.service-card-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
}

.service-card-title h3 {
    margin-top: 0.5rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 22px;
}

.section.david {
    background: linear-gradient(180deg, rgba(0, 105, 61, 0.06) 0%, rgba(0, 105, 61, 0) 100%);
}

.section#david .section-break {
    margin-bottom: 0.25rem !important;
}

.david-section-grid {
    row-gap: 1rem;
}

.david-content {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem 1.75rem;
}

.david-intro,
.david-closing {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.65;
}

.david-content h3 {
    color: rgba(10, 71, 45, 0.95);
    font-size: 1.25rem;
    margin: 1.35rem 0 0.5rem 0;
    font-weight: 700;
}

.david-content p {
    color: rgba(0, 0, 0, 0.78);
    margin-bottom: 0.65rem;
    line-height: 1.65;
}

.david-benefits {
    margin: 1rem 0 0.75rem 1.25rem;
    padding: 0;
}

.david-benefits li {
    margin-bottom: 0.45rem;
    line-height: 1.55;
}

.david-visuals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.david-image-placeholder {
    flex: 1;
    min-height: 220px;
    border: 2px dashed rgba(10, 71, 45, 0.28);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(34, 146, 33, 0.08), rgba(10, 71, 45, 0.03));
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.david-image-placeholder span {
    color: rgba(10, 71, 45, 0.82);
    font-weight: 500;
}

.about {
    position: relative;
}

.about-flag {
    position: absolute;
    width: 100%;
    height: 5rem;
    background: #00693d;
    bottom: 2rem;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.flag-item p {
    color: #efefef;
    margin: 0 !important;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    text-wrap: nowrap;
    padding: 0 .75rem;
    line-height: 1.25rem;
}
.flag-item {
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card-img>img {
    width: 100px;
    height: 100px;
}

.about-us {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.about-us-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.about-us-header a{
    text-decoration: none;
}

.about-us-header h3 {
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 !important;
    color: rgba(0, 0, 0, 0.6);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

.about-us-header h3:hover, .about-us-header h3.active {
    color: #229221;
    cursor: pointer;
}


.about-us-header h3.active {
    text-decoration: underline;
}

.about-us-header .divider{
    border-left: 4px solid #dde0dc;
    margin: 0 1rem;
    border-radius: 2px;
    width: 4px;
    height: 28px;
}


.about_content {
    height: 100%;
}

.about_content>p {
    padding: 0 2rem 8rem 2rem;
    font-weight: 350;
    line-height: 1.7;
}


.wrapper{
    width: 100%;
}

.socials {
    display: flex;
    flex-direction: row;
    width: fit-content !important;
    height: 64px;
    align-items: center;
}

.socials svg {
    margin: 0 !important;
    padding: 0 0 !important;
    opacity: 0.6;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

.socials svg:hover {
    opacity: 1;
    cursor: pointer;
}

.socials>*{
    margin: 0 5px;
    width: 32px !important;
    height: 32px !important;
}









/* HERO */

.section.hero {
    background-color: #0a4d09;
    background-image: url("../assets/hero-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero {
    position: relative;
}

.hero .container {
    min-height: calc(100vh - 120px);
    display: flex;
}





@keyframes pulse {
    0% {fill: rgba(255, 255, 255, 0.8)}
    25% {fill: rgba(255, 255, 255, 0.9)}
    50% {fill: #1bcc53;}
    75% {fill: rgba(255, 255, 255, 0.9)}
    100% {fill: rgba(255, 255, 255, 0.8)}
}

.learn-more {
    z-index: 999;
    font-size: 20px;
    height: 4rem;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learn-more svg>path {
    animation-name: pulse;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-delay: 1000ms;
}


.learn-more>span {
    border: 1px solid rgba(255,255,255,0);
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms;
    text-decoration: none;
}
.learn-more>span:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    color: white !important;
    cursor: pointer;
    transform: translateY(-2px);
}

.herowrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    width: fit-content !important;
}

.herotext {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.herowrap::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background: rgba(0, 102, 7, 0.7);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.herowrap img, .herowrap h1, .herowrap h2 {
    z-index: 99;
}


.herowrap h1, .herotext h1 {
    margin-bottom: 0;
    margin-top: 2rem;
    position: relative;
    text-wrap: nowrap;
    color: white;
    font-size: 48px;
    font-weight: 700;
}

.herowrap img {
    text-align: center;
    position: relative;
    background: linear-gradient(white, white) padding-box,
    radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #2f8a44 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #1f5d3e 62.5%, #5d4a1f 100%) border-box;
    border: 4px solid white;
    width: clamp(200px, 60%, 240px) !important;
    border-radius: 100%;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0px 20px 13px;
}

.herowrap img:hover {
    cursor: pointer;
    border: 4px solid transparent;
    transform: translateY(-1px);
}

.herowrap h2, .herotext h2 {
    text-align: center;
    padding: 0 1.5rem;
    color: #60ff53;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
}

.herowrap p, .herotext p {
    color: #fafafa;
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 700; 
}

.herotext b {
    color: #75c574 !important;
}

.hero .aside {
    display: flex;
    justify-content: center;
    align-items: center;
}
 .hero  img {
    width: clamp(240px, 300px, 330px);
    overflow: hidden;
}

.calendly-inline-widget {
    position: relative;
    min-width:320px;
    height: 700px;
}



.about_content {
    position: relative;
}

.faq-item {
    transition: cubic-bezier(0.445, 0.05, 0.55, 0.95) 150ms;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem;
}

header.header-mobile {
    display: none;
    width: 100%;
    height: 120px;
    justify-content: center;
    align-items: center;
}

@media only screen and (min-width: 1400px){
    .carousel-control-prev {
        left: 5% !important;
    }
    .carousel-control-next {
        right: 5% !important;
    }
}

@media only screen and (max-width: 992px) {
    .herotext{
        position: relative;
    }
    .img-carousel {
        height: 100%;
    }
    .img-carousel img {
        height: auto;
        max-height: auto;
    }
    .prenav>.container {
        margin: 0 !important;
        max-width: 100%;
        padding: 0 !important;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        color: #efefef;
    }
    section#onama>.container {
        max-width: 100%;
    }
    section#onama>.container, section#onama>.container>.row {
        margin: 0 !important;
        padding: 0 1rem !important;
    }
    section#hero>.container {
        padding: 0 1rem !important;
        margin: 0 !important;
        max-width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    section {
        scroll-margin-top: 86px;
    }
    .mobile-menu-toggle {
        display: inline-flex;
    }
    .mobile-nav-backdrop,
    .mobile-menu-panel {
        display: block;
    }
    .mobile-menu-panel {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .david-content {
        padding: 1.1rem 1rem;
    }
    section#david .section-break {
        height: 84px;
        margin-bottom: 0 !important;
    }
    section#david .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    .david-section-grid {
        row-gap: 0.75rem;
    }
    .david-content h3 {
        margin-top: 1rem;
    }
    .david-benefits {
        margin-left: 1rem;
    }
    .david-intro,
    .david-closing,
    .david-content p,
    .david-benefits li {
        font-size: 0.98rem;
    }
    .david-image-placeholder {
        min-height: 160px;
    }
    .about-flag {
        border-radius: 0 !important;
        overflow: hidden;
    }
    .flag-item {
        padding: 0 1rem;
    }
    section#onama>.container {
        max-width: 100%;
    }
    section#onama>.container, section#onama>.container>.row {
        margin: 0 !important;
        padding: 0 !important;
    }
    p#about_content{
        padding-bottom: 8rem;
    }
    .herotext {
        position: relative;
        height: 95vh;
        /* height: 100dvh; */
    }
    .herotext p {
        font-size: clamp(3.3rem, 17vw, 4.8rem);
        line-height: 1.1;
        width: min(88vw, 390px);
        margin: 0 auto;
        text-align: left;
    }
    .herowrap{
        display: none;
    }
    #hero>.section-break{
        height: 0px;
    }
    .learn-more{
        position: sticky;
        bottom: 0;
        left: 0;
    }
    .learn-more span{
        border-bottom: 1px solid rgba(255, 255, 255, 0.75);
        color: white !important;
        cursor: pointer;
        transform: translateY(-2px);
    }
    #header-row {
        display: none;
    }
    .header-mobile {
        display: flex;
        z-index: 1002;
    }
    section {
        min-height: auto !important;
    }
    .nav-items {
        display: none;
    }
    .nav-left {
        display: none;
    }
    .prenav {
        display: none;
    }
    .hero .row {
        margin: 0 !important;
        padding: 0 !important;
    }
    .calendly-inline-widget {
        margin: 4rem 0;
        height: 1080px;
    }
    .herowrap {
        height: fit-content;
        padding: 6rem 0;
        width:  100% !important;
    }
    .herowrap::before {
        height: 100vh;
        width: 100%;
    }
    .footer {
        overflow-x: hidden;
    }
    section#hero .container {
        display: contents;
    }
    .footer-nav-row {
        height: fit-content !important;
    }
    .footer-row.bottom.row {
        justify-content: center !important;
    }
    .review-item {
        width: calc(100% - 0.5rem) !important;
        max-width: 100%;
        margin: 0.6rem auto;
    }
    .service-card {
        min-height: 330px;
    }
    section#faq .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

iframe#gmaps {
    position: relative;
    width: 100%;
    height: 400px;
}

.accordion-item {
    margin: 1rem;
    border-radius: 16px !important;
    border: 0 0 0 0 !important;
}

.accordion-body {
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 0 !important;
    border-radius: 16px !important;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 0 !important;
    border-radius: 16px !important;
    font-weight: 500;

}

.accordion {
    --bs-accordion-color: var(--bs-body-color);
    --bs-accordion-bg: var(--bs-body-bg);
    --bs-accordion-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
    --bs-accordion-border-color: transparent !important;
    --bs-accordion-border-width: var(--bs-border-width);
    --bs-accordion-border-radius: 16px !important;
    --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    --bs-accordion-btn-padding-x: 1.5rem !important;
    --bs-accordion-btn-padding-y: 2rem !important;
    --bs-accordion-btn-color: var(--bs-body-color);
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1) !important;
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: #00690e !important;
    --bs-accordion-active-bg: none !important;
}

ul.contact-info{
    list-style: none;
}
ul.contact-info li{
    padding: .75rem;
    display: flex;
    list-style: none;
    align-items: center;
    text-decoration: none;
}

.contact-info h3 {
    margin: 0 !important;
    padding: 0 1rem;
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    line-height: 1.4;
}