.bg-blue { background-color: #182A48 !important; }
.bg-sand { background-color: #F3F1E4 !important; }
.bg-yellow { background-color: #FFC000 !important; }
.bg-green { background-color: #3B9C77 !important; }
.text-black { color: #040404 !important; }
.text-white { color: #ffffff !important; }

.h1-brand {
    font-family: "Gabarito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 0.87;
    margin: 0;
}

.subtitle {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 300;
    font-size: 26px;
    line-height: 0.87;
    margin: 0;
}

p, .body-text {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.btn-green,
.btn-orange {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    border-radius: 23.5px !important;
    color: #fff !important;
    border: 0;
    padding: 12px;
}
.scrol-pos {position: absolute;width: 100%;bottom: 32px;text-align:center;}
.scrol-pos img {margin-left: -18px;}

.btn-green { background-color: #3B9C77 !important; }
.btn-green:hover,
.btn-green:focus { filter: brightness(0.92); }

.btn-orange { background-color: #EF611B !important; }
.btn-orange:hover,
.btn-orange:focus { filter: brightness(0.92); }

.section-spacing { padding: 156px 0; }
.section-spacing-intro { padding: 20px 0 0 0; }

.mosaic {
    width: calc(378px * 2 + 8px);
}
.mosaic-row {
    display: flex;
    gap: 12px;
}
.mosaic-row + .mosaic-row { margin-top: 8px; }
.mosaic-row-offset { transform: translateX(145px); }
.mosaic-box {
    width: 378px;
    height: 200px;
    border-radius: 25px;
    overflow: hidden;
}
.mosaic-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.mosaic-gradient {
    background: linear-gradient(270deg, #8d8c8440 0%, rgba(243, 241, 228, 0) 87%);
}
.bleed-right {
    margin-right: calc(-50vw + 89%);
}
.section-image {
    max-height: 318px;
    border-radius: 25px;
}

.accent-square {
    width: 41px;
    height: 41px;
    display: inline-block;
}

.icon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    gap: 30px;
}

.icon-card {
    width: 235px;
    height: 232px;
    border-radius: 25px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.icon-card-img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin-bottom: 12px;
}
.icon-card-img {
    filter: brightness(0) saturate(100%) invert(49%) sepia(59%) saturate(2953%) hue-rotate(2deg) brightness(99%) contrast(92%);
}
.icon-card-label {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #EF611B;
}

.rounded-25 { border-radius: 25px; }
.object-fit-cover { object-fit: cover; }

.image-with-square { position: relative; }
.image-with-square .accent-square-left {
    position: absolute;
    top: 10%;
    left: 0;
    transform: translateX(-50%);
    width: 41px;
    height: 41px;
    border-radius: 0;
}

.hero-header {
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #040404;
    position: relative;
}

.hero-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(to top, rgba(24, 42, 72, 1) 0px, rgba(24, 42, 72, 1) 100px, rgba(24, 42, 72, 0) 400px);
    pointer-events: none;
    z-index: 1;
}
.hero-header * {
 /*   position: relative; */
    z-index: 2;
}
.site-logo { margin-top: 46px; }
.logo-img {
    width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-title {
    margin-top: 100px;
    cursor: pointer;
    font-size: 55px;
    line-height: 55px;
}

@keyframes heroBounce {
    0% { transform: translateY(0); }
    20% { transform: translateY(-14px); }
    40% { transform: translateY(0); }
    60% { transform: translateY(-8px); }
    80% { transform: translateY(0); }
    100% { transform: translateY(0); }
}
.bounce { animation: heroBounce 1.2s ease-out 1; }
.bounce:hover, .bounce:focus { animation: heroBounce 1s ease-out 1;cursor: pointer; }

.footer-logo-img {
    width: 100%;
    max-width: 563px;
    height: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 24px 1fr;
    column-gap: 30px;
    row-gap: 12px;
}

.icon-cell {
    width: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.contact-icon-img {
    width: 17px;
    height: 17px;
    object-fit: contain;
    display: block;
}
.text-cell { text-align: left; }
.footer-address p { margin-bottom: .25rem; }

.contact-link { text-decoration: none; }
.contact-link:hover { text-decoration: underline; }

.footer-bottom {
    color: rgba(255,255,255,0.6);
    margin-top: 1.5rem;
    font-size: 16px;
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 400;
}

.contact-visual-col { position: relative; }
.contact-visual-wrapper { position: relative; display: inline-block; overflow: visible; }

.contact-visual {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 25px;
    overflow: hidden;
}
.contact-visual-img { width:100%; height:100%; object-fit:cover; display:block; }

.contact-visual-accent {
    position:absolute; z-index:2;
    top:30px; left:-20px;
    width:41px; height:41px; border-radius:0;
}

.contact-visual-backdrop {
    position:absolute; z-index:0;
    border-radius:25px;
    width: clamp(320px, 102%, 602px);
    height: 95%;
    top: -8%;
    right: -12%;
    left: clamp(0px, 16%, calc(100vw - var(--container-max, 1320px) - 40px));
}

.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_page_footer input[type="submit"],
.gform_wrapper .gform_footer .gform_button,
.gform_wrapper .gform_page_footer .gform_button,
.gform_wrapper .gform_footer button,
.gform_wrapper .gform_page_footer button {
    width: 100% !important;
    background: #FFC000 !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 18.5px !important;
    font-family: "Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    font-weight: 600;
    font-size: 18px !important;
    padding: .9rem 1.2rem;
}
.gform_wrapper .gform_footer,
.gform_wrapper .gform_page_footer { padding-top: 1rem; }

.gform_wrapper form .gfield_label {
    color: #000;
    margin-bottom: 2px;
    line-height: 1.1;
    font-size: 14px;
}

.gform_wrapper form input[type="text"],
.gform_wrapper form input[type="email"],
.gform_wrapper form input[type="tel"],
.gform_wrapper form input[type="number"],
.gform_wrapper form select,
.gform_wrapper form textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #AFAFAF;
    border-radius: 0;
    padding: 0 0 12px 0;
    outline: none;
    box-shadow: none;
}
.gform_wrapper form textarea { min-height: 120px; resize: vertical; }
.gform_wrapper .gfield { margin-bottom: 16px; }

.gform_title {
    font-family: "Gabarito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 0.87;
    margin-bottom: 30px;
}

.gform_footer { margin-top: 48px !important; }

.gform_wrapper form input[type="text"], .gform_wrapper form input[type="email"], .gform_wrapper form input[type="tel"], .gform_wrapper form input[type="number"], .gform_wrapper form select, .gform_wrapper form textarea {
    font-weight: 500 !important;
}

.gform-theme--foundation .gform_fields { row-gap: 15px !important; }

@media (max-width: 1199.98px) {
    .mosaic { transform: scale(0.95); transform-origin: right center; }
}

@media (max-width: 991.98px) {
    .bleed-right { margin-right: 0; }
    .mosaic { width: 100%; transform: none; }
    .mosaic-row { justify-content: center; }
    .mosaic-box { width: 46vw; height: 24vw; max-width: 378px; max-height: 200px; }
    .mosaic-row-offset { transform: none; }
}

@media (max-width: 991.98px) {
    .icon-grid { justify-content: center; gap: 30px }
}

@media (max-width: 576px) {
    .image-with-square .accent-square-left {
        transform: none;
        left: -8px;
    }
    .h1-brand.hero-title
    {
        position: absolute;
        bottom: 30%;
    }
    .scrol-pos {bottom: 180px;}
}

@media (min-width: 992px) {
    .section-spacing.bg-heart {
        position: relative;
        overflow: hidden;
        isolation: isolate;
    }

    .section-spacing.bg-heart::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url(/wp-content/uploads/2025/10/Overlay-hart.png) no-repeat;
        pointer-events: none;
        z-index: 0;
        background-position: 10% -100px;
    }

    .section-spacing.bg-heart > * {
        position: relative;
        z-index: 1;
    }
    .logo-img {
        width: 313px; height: 86px;
        object-fit: contain; display: block;
    }
    .hero-title {
        margin-top: 175px;
        cursor: pointer;
        font-size: clamp(80px, 6vw, 110px);
        line-height: 100px;
    }
}

@media screen and (min-width: 992px) {
    .contact-visual-backdrop {
        width: clamp(320px, 108%, 602px);
        height: 95%;
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px) { 
 .icon-card {width: 200px!important;height: 200px!important;}
}