@font-face {
    font-family: "Abella Script";
    src:
        url("../webfonts/Abella Script/abella_script-webfont.woff2")
            format("woff2"),
        url("../webfonts/Abella Script/abella_script-webfont.woff")
            format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    width: 100%;
}

body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    background-color: #000000;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    overflow-x: hidden;
}

@media screen and (max-width: 300px) {
    body {
        width: 300px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 30px 0 10px 0;
    color: #c4c4c4;
    font-weight: 400;
}

h1 {
    font-size: 2.8em;
}

h2 {
    font-size: 2.4em;
}

h3 {
    font-size: 2em;
}

h4 {
    font-size: 1.6em;
}

h5 {
    font-size: 1.2em;
}

h6 {
    font-size: 1em;
}

table {
    border-collapse: collapse;
    border-color: #cccccc;
}

table tr th {
    background-color: #525252;
    border-color: #adadad;
    color: #ffffff;
}

table tr td {
    border-color: #adadad;
}

img {
    border: 0;
}

hr {
    background-color: #adadad;
    border: 0;
    height: 1px;
}

iframe {
    border: 0;
}

.hide_meta {
    display: none;
}

.top_notice {
    width: 100%;
    height: auto;
    padding: 5px 0;
    margin: 0 auto;
    position: relative;
    display: none;
    clear: both;
}

.jump_anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}

.red_notice {
    width: calc(100% - 20px);
    height: auto;
    padding: 10px;
    margin: 10px auto;
    position: relative;
    display: table;
    clear: both;
    background-color: red;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

*:focus {
    outline: none;
}

.montserrat {
    font-family: "Montserrat", sans-serif;
    font-size: 0.8em;
}

.abella {
    font-family: "Abella Script", serif;
}

.gen_btn {
    width: auto;
    height: auto;
    padding: 10px 35px;
    background-color: #252525;
    color: #ffffff;
    font-size: 1em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 0;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.gen_btn:hover {
    background-color: #000000;
}

@media only screen and (max-width: 440px) {
    .gen_btn {
        width: 100%;
    }
}

.gen_btn_right {
    float: right;
}

.gen_btn.disabled {
    background-color: #ccc; /* Grey out the button */
    cursor: not-allowed; /* Show a not-allowed cursor */
}

body.admin-edit-mode .admin-div {
    outline: 2px dashed rgba(22, 93, 150, 0.55);
    outline-offset: 4px;
    transition:
        outline-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out;
}

body.admin-edit-mode .admin-div:hover,
body.admin-edit-mode .admin-div.admin-div-active {
    outline-color: rgba(22, 93, 150, 0.95);
    box-shadow: 0 0 0 6px rgba(22, 93, 150, 0.14);
}

body.admin-edit-mode .reviews_section__inner.admin-div {
    pointer-events: auto;
}

.admin-edit-badge {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(13, 35, 58, 0.18);
    background: rgba(13, 35, 58, 0.96);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.16s ease-in-out,
        visibility 0.16s ease-in-out;
}

.admin-edit-badge.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.admin-edit-badge:hover,
.admin-edit-badge:focus {
    color: #ffffff;
    text-decoration: none;
    background: rgba(22, 93, 150, 0.98);
}

.admin-edit-badge i {
    font-size: 12px;
}

/* HEADER TOP */
.header {
    width: calc(100% - 4%);
    height: auto;
    padding: 0 2% 80px 2%;
    margin: 0 auto;
    position: absolute;
    display: table;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

@media (max-width: 1200px) {
    .header {
        width: calc(100% - 40px);
        padding: 0 20px;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        background-image: none;
        background-color: #131313;
    }
}

.header.sticky,
.header_no_slider {
    width: calc(100% - 4%);
    padding: 0 2%;
    background-image: none;
    background-color: #131313;
}

.header.sticky {
    position: fixed;
}

.header_no_slider {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}

@media (max-width: 1200px) {
    .header.sticky,
    .header_no_slider {
        width: calc(100% - 40px);
        padding: 0 20px;
    }
}

.header.sticky + .content {
    padding-top: 145px;
}

@media (max-width: 1200px) {
    .header.sticky + .content {
        padding-top: 125px;
    }
}

@media (max-width: 560px) {
    .header.sticky + .content {
        padding-top: 105px;
    }
}

.is-active {
    color: #d2ae63 !important;
}

@media screen and (max-width: 1080px) {
    .is-active {
        color: #c4c4c4 !important;
    }
}

.link_no_click {
    pointer-events: none;
}

@media screen and (max-width: 1080px) {
    .link_no_click {
        pointer-events: all;
    }
}

.logo {
    width: 100px;
    height: auto;
    padding: 10px 0;
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    overflow: visible;
}

.logo a {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(210, 174, 99, 0.65) 0%,
        rgba(210, 174, 99, 0.18) 42%,
        rgba(210, 174, 99, 0) 72%
    );
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
    pointer-events: none;
    z-index: 0;
}

.logo.is-animating::before {
    animation: logo-glow 1.15s ease-out forwards;
}

.logo.is-animating .logo_main {
    animation: logo-reveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes logo-glow {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.35);
    }

    45% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(2.4);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3.2);
    }
}

@keyframes logo-reveal {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(20px) rotate(-6deg);
        filter: blur(10px) brightness(1.2);
    }

    55% {
        opacity: 1;
        transform: scale(1.06) translateY(-4px) rotate(2deg);
        filter: blur(0) brightness(1.08);
    }

    78% {
        transform: scale(0.98) translateY(1px) rotate(-0.5deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0);
        filter: blur(0) brightness(1);
    }
}

@keyframes logo-reveal-reduced {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo::before {
        display: none;
    }

    .logo.is-animating .logo_main {
        animation: logo-reveal-reduced 0.5s ease forwards;
    }
}

.logo_main {
    width: auto;
    height: 120px;
    display: table;
}

@media (max-width: 1200px) {
    .logo_main {
        height: 100px;
    }
}

@media (max-width: 560px) {
    .logo_main {
        height: 80px;
    }
}

.logo_main.sticky {
    height: 80px;
}

.quick_links {
    width: calc(100% - 100px);
    height: 140px;
    padding: 0 0 0 20px;
    display: table-cell;
    vertical-align: middle;
}

@media (max-width: 1200px) {
    .quick_links {
        height: 120px;
    }
}

@media (max-width: 560px) {
    .quick_links {
        height: 100px;
    }
}

.quick_links.sticky {
    height: auto;
}

.contacts {
    width: 100%;
    height: calc(50% - 1px);
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: right;
    gap: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
    .contacts {
        gap: 10px;
    }
}

@media (max-width: 560px) {
    .contacts {
        display: none;
    }
}

.contacts.sticky {
    display: none;
}

.contact_holder {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0 0 0 20px;
    color: #ffffff;
}

.contact_holder a,
.contact_holder a:visited {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.contact_holder a:hover,
.contact_holder a:visited:hover {
    color: #d2ae63;
}

.contact_holder i {
    color: #d2ae63;
}

@media (max-width: 767px) {
    .socials {
        display: none;
    }
}

.socials i {
    margin: 0 2px;
    transition: all 0.3s ease-in-out;
}

.socials i:hover {
    transform: scale(1.1, 1.1);
    z-index: 2;
}

.navigation_bar {
    width: 100%;
    height: 50%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

@media (max-width: 560px) {
    .navigation_bar {
        height: auto;
    }
}

.navigation_bar.sticky {
    height: auto;
}

.header_button {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    white-space: nowrap;
}

.header_button a,
.header_button a:visited {
    width: auto;
    height: auto;
    padding: 10px 20px;
    background-color: #d2ae63;
    border-radius: 4px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: all 0.3s ease-in-out;
}

.header_button a:hover,
.header_button a:visited:hover {
    opacity: 1;
}

.header_button--desktop {
    display: block;
}

.header_button--mobile {
    display: none;
}

@media screen and (max-width: 1199px) {
    .header_button--desktop {
        display: none;
    }

    .navigation-body .header_button--mobile {
        display: block;
        width: 100%;
        padding: 18px 16px 24px;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .navigation-body .header_button--mobile a,
    .navigation-body .header_button--mobile a:visited {
        display: block;
        width: 100%;
        padding: 14px 20px;
        text-align: center;
        box-sizing: border-box;
    }
}

@media screen and (min-width: 1200px) {
    .header_button--mobile {
        display: none !important;
    }
}

/* SLIDER IMAGES */
.slider {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    display: block;
    position: relative;
    clear: both;
    z-index: 1;
    overflow: hidden;
}

.slider_holder {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    display: table-cell;
    clear: both;
    overflow: hidden;
}

.slider_bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1);
    animation: slider-bg-zoom 16s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes slider-bg-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

/* Slide transition: a cohesive horizontal pan that complements the sliding motion */
.slider--transition-slide .slider_bg {
    transform: scale(1.12);
    animation: slider-bg-pan 18s ease-in-out infinite alternate;
}

@keyframes slider-bg-pan {
    0% {
        transform: scale(1.12) translateX(-2%);
    }

    100% {
        transform: scale(1.12) translateX(2%);
    }
}

/* Give each incoming slide a soft reveal as it slides into view */
.slider--transition-slide .bxslider > .slider_holder {
    transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {

    .slider_bg,
    .slider--transition-slide .slider_bg {
        animation: none;
        transform: scale(1);
    }
}

.slider_filter {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.bxslider {
    width: 100%;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .bxslider {
        padding-bottom: 70% !important;
    }
}

@media screen and (max-width: 560px) {
    .bxslider {
        padding-bottom: 80% !important;
    }
}

/* Horizontal slide mode: bxSlider measures the tallest <li> to size its viewport,
   so each slide must own the aspect ratio instead of the ul's padding-bottom hack. */
.slider--transition-slide .bxslider {
    padding-bottom: 0 !important;
}

.slider--transition-slide .slider_holder {
    display: block;
    /* clear: both from the base rule stacks the floated slides vertically,
       which breaks bxSlider's horizontal position math (every li ends up at left 0) */
    clear: none;
    height: auto;
    aspect-ratio: 100 / var(--slider-height, 40);
}

@media screen and (max-width: 767px) {
    .slider--transition-slide .slider_holder {
        aspect-ratio: 100 / 70;
    }
}

@media screen and (max-width: 560px) {
    .slider--transition-slide .slider_holder {
        aspect-ratio: 100 / 80;
    }
}

.slider_info {
    width: min(80%, 900px);
    height: auto;
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.slider_info--center::before {
    left: 50%;
    transform: translateX(-50%);
}

.slider.is-slider-ready .slider_info:not(.is-active) > * {
    opacity: 0;
}

.slider.is-slider-ready .slider_info.is-active::before {
    animation: slider-accent-line 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards
        0.45s;
}

.slider.is-slider-ready .slider_info--center.is-active::before,
.slider.is-slider-ready .slider_info--align-center.is-active::before {
    animation: slider-accent-line-center 0.85s cubic-bezier(0.22, 1, 0.36, 1)
        forwards 0.45s;
}

.slider.is-slider-ready .slider_info--center.is-active > *,
.slider.is-slider-ready .slider_info--align-center.is-active > * {
    animation: slider-text-in-center 0.95s cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

.slider.is-slider-ready .slider_info--align-left.is-active > * {
    animation: slider-text-in-left 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.slider.is-slider-ready .slider_info--align-right.is-active > * {
    animation: slider-text-in-right 0.95s cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

.slider.is-slider-ready .slider_info.is-active > *:nth-child(1) {
    animation-delay: 0.12s;
}

.slider.is-slider-ready .slider_info.is-active > *:nth-child(2) {
    animation-delay: 0.3s;
}

.slider.is-slider-ready .slider_info.is-active > *:nth-child(3) {
    animation-delay: 0.48s;
}

.slider.is-slider-ready .slider_info.is-active > *:nth-child(4) {
    animation-delay: 0.66s;
}

@keyframes slider-text-in-center {
    0% {
        opacity: 0;
        transform: translateY(36px) scale(0.9);
        filter: blur(10px);
    }

    60% {
        opacity: 1;
        transform: translateY(-4px) scale(1.02);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes slider-text-in-left {
    0% {
        opacity: 0;
        transform: translateX(-48px) translateY(16px) rotate(-1.5deg);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0);
        filter: blur(0);
    }
}

@keyframes slider-text-in-right {
    0% {
        opacity: 0;
        transform: translateX(48px) translateY(16px) rotate(1.5deg);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0);
        filter: blur(0);
    }
}

@keyframes slider-accent-line {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: min(120px, 42%);
        opacity: 1;
    }
}

@keyframes slider-accent-line-center {
    0% {
        width: 0;
        opacity: 0;
        transform: translateX(-50%);
    }

    100% {
        width: min(120px, 42%);
        opacity: 1;
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .slider.is-slider-ready .slider_info:not(.is-active) > * {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .slider.is-slider-ready .slider_info.is-active > * {
        animation: slider-text-in-reduced 0.45s ease forwards;
    }

    .slider.is-slider-ready .slider_info--center.is-active::before,
    .slider.is-slider-ready .slider_info--align-center.is-active::before {
        animation: none;
        width: min(120px, 42%);
        opacity: 1;
        transform: translateX(-50%);
    }
}

@keyframes slider-text-in-reduced {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slider_info--center {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    text-align: center;
    align-items: center;
}

.slider_info--align-left {
    text-align: left;
    align-items: flex-start;
}

.slider_info--align-center {
    text-align: center;
    align-items: center;
}

.slider_info--align-right {
    text-align: right;
    align-items: flex-end;
}

@media screen and (max-width: 1080px) {
    .slider_info {
        width: min(88%, 760px);
    }
}

@media screen and (max-width: 767px) {
    .slider_info {
        width: calc(100% - 40px);
    }

    .slider_info--center {
        width: calc(100% - 40px);
    }
}

.slider_title {
    width: 100%;
    margin: 0;
    color: #ffffff;
    font-family: "Abella Script", cursive;
    font-size: clamp(2rem, 5.2vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.slider_description {
    width: 100%;
    margin: 0 0 15px 0;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.slider_main_title {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
    clear: both;
    font-size: 2.8em;
    line-height: 1em;
    font-family: "Libre Bodoni", serif;
    text-transform: uppercase;
    font-weight: 800;
    color: #ffffff;
}

@media screen and (max-width: 1200px) {
    .slider_main_title {
        font-size: 2.6em;
    }
}

@media screen and (max-width: 1080px) {
    .slider_main_title {
        font-size: 2em;
    }
}

@media screen and (max-width: 767px) {
    .slider_main_title {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 560px) {
    .slider_main_title {
        font-size: 1.6em;
    }
}

@media screen and (max-width: 440px) {
    .slider_main_title {
        font-size: 1.4em;
    }
}

.slider_info_left .slider_main_title {
    text-align: left;
    opacity: 0;
    transform: translateX(-100%);
    animation: animateSliderMainTitleLeft 1s ease-in-out 0s 1 forwards;
}

@keyframes animateSliderMainTitleLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.slider_info_right .slider_main_title {
    text-align: right;
    opacity: 0;
    transform: translateX(100%);
    animation: animateSliderMainTitleRight 1s ease-in-out 0s 1 forwards;
}

@keyframes animateSliderMainTitleRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* SLIDER ARROWS */
.slider .bx-wrapper .bx-pager {
    display: none !important;
}

.slider .bx-wrapper .bx-controls-direction a {
    top: 50%;
    width: clamp(42px, 4.5vw, 58px);
    height: clamp(42px, 4.5vw, 58px);
    margin-top: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #ffffff;
    font-size: 2.25rem;
    line-height: 1;
    text-indent: 0;
    text-decoration: none;
    outline: none;
    z-index: 20;
    transform: translateY(-50%);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    transition:
        color 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;
}

.slider .bx-wrapper .bx-prev,
.slider .bx-wrapper .bx-next {
    background-image: none !important;
}

.slider .bx-wrapper .bx-prev {
    left: clamp(12px, 2vw, 28px);
}

.slider .bx-wrapper .bx-next {
    right: clamp(12px, 2vw, 28px);
}

.slider .bx-wrapper .bx-prev:hover,
.slider .bx-wrapper .bx-prev:focus-visible,
.slider .bx-wrapper .bx-next:hover,
.slider .bx-wrapper .bx-next:focus-visible {
    background: transparent;
    background-image: none !important;
    border: none;
    color: #d2ae63;
    transform: translateY(-50%) scale(1.08);
    box-shadow: none;
}

.slider .bx-wrapper .bx-controls-direction a.disabled {
    opacity: 0.35;
    pointer-events: none;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .slider .bx-wrapper .bx-controls-direction a {
        width: 42px;
        height: 42px;
        display: flex;
        font-size: 1.35rem;
    }

    .slider .bx-wrapper .bx-prev {
        left: 10px;
    }

    .slider .bx-wrapper .bx-next {
        right: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slider .bx-wrapper .bx-controls-direction a {
        transition: none;
    }
}

/* MAIN CONTENT */
.content {
    width: calc(100% - 20%);
    height: auto;
    padding: 80px 10%;
    margin: 0 auto;
    position: relative;
    clear: both;
    display: table;
    overflow: hidden;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .content {
        width: calc(100% - 10%);
        padding: 60px 5%;
    }
}

@media (max-width: 1080px) {
    .content {
        width: calc(100% - 40px);
        padding: 60px 20px;
    }
}

.content_h2_header {
    width: 100%;
    height: auto;
    padding: 0 0 10px 0;
    position: relative;
    clear: both;
    font-size: clamp(2.6em, 4vw, 3.8em);
    line-height: 1.3;
    font-family: "Abella Script", serif;
}

.content_header_icon {
    width: 100%;
    clear: both;
    margin: 0 0 20px 0;
    padding: 0;
}

.content_header_icon_left {
    text-align: left;
}

.content_header_icon_center {
    text-align: center;
}

.content_header_favicon {
    display: table;
    width: 100px;
    height: auto;
}

.content_header_icon_center .content_header_favicon {
    margin-left: auto;
    margin-right: auto;
}

.content_header_icon_left .content_header_favicon {
    margin-right: auto;
    margin-left: 0;
}

.content_h2_header_left {
    text-align: left;
    margin: 0;
}

.content_h2_header_center {
    text-align: center;
    margin: 0 auto;
}

.content_h2_sub_header {
    width: 100%;
    height: auto;
    padding: 0 0 10px 0;
    position: relative;
    clear: both;
    color: #d2ae63;
    font-size: clamp(1.5em, 3vw, 2em);
    line-height: 1.3;
}

.content_h2_sub_header_left {
    text-align: left;
    margin: 0;
}

.content_h2_sub_header_center {
    text-align: center;
    margin: 0 auto;
}

.content p {
    text-align: justify;
    line-height: 1.5;
}

@media (max-width: 560px) {
    .content p {
        text-align: left;
    }
}

.content img {
    max-width: 100%;
    height: auto !important;
}

.content ol li,
.content ul li {
    margin: 0 5px 0;
    padding: 0;
    line-height: 1.3;
}

.content > p a,
.content > p a:visited,
.content > ul a,
.content > ul a:visited,
.content > ol a,
.content > ol a:visited,
.content > blockquote a,
.content > blockquote a:visited,
.content > table a,
.content > table a:visited,
.content > h1 a,
.content > h1 a:visited,
.content > h2 a,
.content > h2 a:visited,
.content > h3 a,
.content > h3 a:visited,
.content > h4 a,
.content > h4 a:visited,
.content > h5 a,
.content > h5 a:visited,
.content > h6 a,
.content > h6 a:visited,
.content > div > p a,
.content > div > p a:visited,
.content > div > ul a,
.content > div > ul a:visited,
.content > div > ol a,
.content > div > ol a:visited {
    color: #d2ae63;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.25s ease;
}

.content > p a:hover,
.content > p a:visited:hover,
.content > p a:focus-visible,
.content > p a:visited:focus-visible,
.content > ul a:hover,
.content > ul a:visited:hover,
.content > ul a:focus-visible,
.content > ul a:visited:focus-visible,
.content > ol a:hover,
.content > ol a:visited:hover,
.content > ol a:focus-visible,
.content > ol a:visited:focus-visible,
.content > blockquote a:hover,
.content > blockquote a:visited:hover,
.content > blockquote a:focus-visible,
.content > blockquote a:visited:focus-visible,
.content > table a:hover,
.content > table a:visited:hover,
.content > table a:focus-visible,
.content > table a:visited:focus-visible,
.content > h1 a:hover,
.content > h1 a:visited:hover,
.content > h1 a:focus-visible,
.content > h1 a:visited:focus-visible,
.content > h2 a:hover,
.content > h2 a:visited:hover,
.content > h2 a:focus-visible,
.content > h2 a:visited:focus-visible,
.content > h3 a:hover,
.content > h3 a:visited:hover,
.content > h3 a:focus-visible,
.content > h3 a:visited:focus-visible,
.content > h4 a:hover,
.content > h4 a:visited:hover,
.content > h4 a:focus-visible,
.content > h4 a:visited:focus-visible,
.content > h5 a:hover,
.content > h5 a:visited:hover,
.content > h5 a:focus-visible,
.content > h5 a:visited:focus-visible,
.content > h6 a:hover,
.content > h6 a:visited:hover,
.content > h6 a:focus-visible,
.content > h6 a:visited:focus-visible,
.content > div > p a:hover,
.content > div > p a:visited:hover,
.content > div > p a:focus-visible,
.content > div > p a:visited:focus-visible,
.content > div > ul a:hover,
.content > div > ul a:visited:hover,
.content > div > ul a:focus-visible,
.content > div > ul a:visited:focus-visible,
.content > div > ol a:hover,
.content > div > ol a:visited:hover,
.content > div > ol a:focus-visible,
.content > div > ol a:visited:focus-visible {
    color: #e8c98a;
    outline: none;
}

/* 404 PAGE */
.not_found {
    width: 100%;
    max-width: 960px;
    margin: 20px auto 0;
    padding: 0;
    text-align: center;
}

.not_found__link {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.content a.not_found__link,
.content a.not_found__link:visited,
.content a.not_found__link:hover,
.content a.not_found__link:focus-visible {
    color: inherit;
    text-decoration: none;
}

.not_found__link:hover,
.not_found__link:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    outline: none;
}

.not_found__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
}

/* PAGE IMAGES */
.page_images {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 20px 0;
    position: relative;
    clear: both;
    display: grid;
    container-type: inline-size;
    --page-image-gap: 5px;
    --page-image-cols: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: calc(
        (100cqw - ((var(--page-image-cols) - 1) * var(--page-image-gap))) /
            var(--page-image-cols) * 3 / 5
    );
    gap: var(--page-image-gap);
    grid-auto-flow: dense;
    align-items: stretch;
}

.page_images_container {
    position: relative;
    margin: 0;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background-color: #1a211c;
    isolation: isolate;
    grid-row: span 1;
    align-self: stretch;
}

.page_images_container_1 {
    grid-column: span 1;
}

.page_images_container_2 {
    grid-column: span 2;
}

.page_images_container_3 {
    grid-column: span 3;
}

.page_images_container--portrait {
    grid-row: span 2;
}

.page_images_media {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: scale(1);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.page_images_container:hover .page_images_media,
.page_images_container:focus-within .page_images_media {
    transform: scale(1.06);
}

.page_image_link {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 2;
}

.page_image_filter {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 14, 12, 0.08) 0%,
        rgba(10, 14, 12, 0.42) 100%
    );
    opacity: 0.72;
    transition:
        opacity 0.35s ease,
        background-color 0.35s ease;
    z-index: 1;
}

.page_image_title {
    position: relative;
    z-index: 2;
    width: calc(100% - 20px);
    margin: 0;
    padding: 0 10px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
    transform: translateY(8px);
    opacity: 0;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.page_images_container:hover .page_image_filter,
.page_images_container:focus-within .page_image_filter {
    opacity: 0.92;
    background: linear-gradient(
        180deg,
        rgba(10, 14, 12, 0.18) 0%,
        rgba(10, 14, 12, 0.62) 100%
    );
}

.page_images_container:hover .page_image_title,
.page_images_container:focus-within .page_image_title {
    opacity: 1;
    transform: translateY(0);
}

@supports not (width: 100cqw) {
    .page_images {
        grid-auto-rows: auto;
    }

    .page_images_container:not(.page_images_container--portrait) {
        aspect-ratio: 5 / 3;
    }

    .page_images_container_2:not(.page_images_container--portrait) {
        aspect-ratio: 10 / 3;
    }

    .page_images_container_3:not(.page_images_container--portrait) {
        aspect-ratio: 15 / 3;
    }

    .page_images_container--portrait.page_images_container_1 {
        aspect-ratio: 5 / 6;
    }

    .page_images_container--portrait.page_images_container_2 {
        aspect-ratio: 10 / 6;
    }

    .page_images_container--portrait.page_images_container_3 {
        aspect-ratio: 15 / 6;
    }
}

@media screen and (max-width: 767px) {
    .page_images {
        --page-image-cols: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: calc((100cqw - var(--page-image-gap)) / 2 * 3 / 5);
    }

    .page_images_container_3 {
        grid-column: span 2;
    }
}

@media screen and (max-width: 440px) {
    .page_images {
        --page-image-cols: 1;
        grid-template-columns: minmax(0, 1fr);
        grid-auto-rows: calc(100cqw * 3 / 5);
    }

    .page_images_container_2,
    .page_images_container_3 {
        grid-column: span 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page_images_media,
    .page_image_filter,
    .page_image_title {
        transition: none;
    }

    .page_images_container:hover .page_images_media,
    .page_images_container:focus-within .page_images_media {
        transform: none;
    }
}

/* INSERTS */
.inserts {
    position: relative;
    width: 100%;
    min-height: clamp(320px, 52vh, 540px);
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.inserts__parallax {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.inserts__bg {
    position: absolute;
    left: 0;
    width: 100%;
    top: -30%;
    height: 160%;
    object-fit: cover;
    object-position: center center;
    will-change: transform;
    pointer-events: none;
    backface-visibility: hidden;
    transform: translate3d(0, var(--insert-parallax-y, 0px), 0) scale(1.12);
}

.inserts__bg--parallax {
    z-index: 0;
}

.inserts__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(19, 26, 23, 0.45);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}

.inserts[data-tint="20"] .inserts__overlay {
    background-color: rgba(19, 26, 23, 0.2);
}

.inserts[data-tint="40"] .inserts__overlay {
    background-color: rgba(19, 26, 23, 0.4);
}

.inserts[data-tint="60"] .inserts__overlay {
    background-color: rgba(19, 26, 23, 0.6);
}

.inserts[data-tint="80"] .inserts__overlay {
    background-color: rgba(19, 26, 23, 0.8);
}

.inserts__content {
    position: relative;
    z-index: 2;
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(52px, 8vw, 96px) 20px;
    text-align: center;
}

.insert_header {
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    color: #ffffff;
    font-family: "Abella Script", cursive;
    font-size: clamp(2.4rem, 5.2vw, 4.2rem);
    font-weight: 400;
    line-height: 1.08;
    text-align: center;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.insert_header::after {
    content: "";
    display: block;
    width: min(140px, 34%);
    height: 2px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, transparent, #d2ae63, transparent);
}

.insert_description {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 28px;
    padding: 0;
    color: rgba(244, 239, 228, 0.92);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.95rem, 1.65vw, 1.12rem);
    font-weight: 400;
    line-height: 1.65;
    text-align: center;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.insert_description:last-child {
    margin-bottom: 0;
}

.insert_button {
    width: auto;
    margin: 10px auto 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.inserts .header_button {
    margin: 0;
    white-space: normal;
}

.inserts .header_button a,
.inserts .header_button a:visited {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    padding: 14px 24px;
    overflow: hidden;
    opacity: 0.92;
}

.inserts .header_button a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.22) 48%,
        transparent 100%
    );
    transform: skewX(-18deg);
    pointer-events: none;
    transition: left 0.55s ease;
}

.inserts .header_button a:hover,
.inserts .header_button a:visited:hover,
.inserts .header_button a:focus-visible,
.inserts .header_button a:visited:focus-visible {
    opacity: 1;
    outline: none;
}

.inserts .header_button a:hover::before,
.inserts .header_button a:focus-visible::before {
    left: 120%;
}

@media screen and (max-width: 767px) {
    .inserts {
        min-height: clamp(280px, 46vh, 420px);
    }

    .inserts__bg {
        top: -35%;
        height: 170%;
    }

    .inserts__content {
        padding: 48px 20px;
    }

    .insert_header {
        margin-bottom: 14px;
    }

    .insert_description {
        margin-bottom: 22px;
        line-height: 1.55;
    }

    .inserts .header_button a,
    .inserts .header_button a:visited {
        min-width: 180px;
        padding: 12px 20px;
        font-size: 13px;
    }
}

@media screen and (max-width: 560px) {
    .inserts .header_button {
        width: 100%;
    }

    .inserts .header_button a,
    .inserts .header_button a:visited {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}

@media (prefers-reduced-motion: reduce) {
    .inserts__bg {
        top: 0;
        height: 100%;
        transform: none;
    }

    .inserts .header_button a::before {
        transition: none;
    }
}

/* REVIEWS */
.reviews_section {
    position: relative;
    width: 100%;
    min-height: clamp(360px, 48vh, 520px);
    margin: 10px auto 0 auto;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    clear: both;
    box-sizing: border-box;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.reviews_section--dragging {
    cursor: grabbing;
}

.reviews_section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.reviews_section__parallax {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transform: translate3d(0, var(--reviews-parallax-y, 0px), 0);
    will-change: transform;
}

.reviews_section__image {
    position: absolute;
    left: 0;
    top: -12%;
    width: 100%;
    height: 124%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
    transform-origin: center center;
    animation: reviews-bg-kenburns 24s ease-in-out infinite alternate;
}

.reviews_section__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(19, 26, 23, 0.4);
    pointer-events: none;
}

.reviews_section__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 18% 24%,
            rgba(210, 174, 99, 0.16) 0%,
            rgba(210, 174, 99, 0) 34%
        ),
        radial-gradient(
            circle at 82% 72%,
            rgba(210, 174, 99, 0.12) 0%,
            rgba(210, 174, 99, 0) 38%
        );
    opacity: 0.75;
    pointer-events: none;
    animation: reviews-bg-glow 9s ease-in-out infinite alternate;
}

.reviews_section[data-tint="20"] .reviews_section__overlay {
    background-color: rgba(19, 26, 23, 0.2);
}

.reviews_section[data-tint="40"] .reviews_section__overlay {
    background-color: rgba(19, 26, 23, 0.4);
}

.reviews_section[data-tint="60"] .reviews_section__overlay {
    background-color: rgba(19, 26, 23, 0.6);
}

.reviews_section[data-tint="80"] .reviews_section__overlay {
    background-color: rgba(19, 26, 23, 0.8);
}

.reviews_section__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 96%;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    pointer-events: none;
}

@media (max-width: 440px) {
    .reviews_section__inner {
        width: calc(100% - 20px);
        padding: 40px 10px;
    }
}

.reviews_section__inner > * {
    pointer-events: auto;
}

.reviews_slider {
    width: 100%;
    position: relative;
    margin: 0;
}

.reviews_slider.slick-dotted {
    margin-bottom: 0 !important;
}

.reviews_slider .slick-list {
    overflow: hidden;
}

.reviews_section--dragging .reviews_slide,
.reviews_section--dragging .reviews_quote,
.reviews_section--dragging .reviews_quote__text,
.reviews_section--dragging .reviews_quote__author {
    user-select: none;
    -webkit-user-select: none;
}

.reviews_slider .slick-slide.slick-active {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews_section--dragging .slick-slide.slick-active {
    transition: none;
}

.reviews_slider .slick-track {
    display: flex;
    align-items: stretch;
}

.reviews_slider .slick-slide {
    height: auto;
}

.reviews_slider .slick-slide > div {
    height: 100%;
}

.reviews_slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 3vw, 32px);
    width: 100%;
    margin: 0;
    padding: 0 12px;
    text-align: center;
    box-sizing: border-box;
}

.reviews_quote {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

.reviews_quote__mark {
    position: absolute;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 9vw, 6.5rem);
    font-weight: 700;
    line-height: 1;
    color: #d2ae63;
    opacity: 0.95;
    pointer-events: none;
    user-select: none;
}

.reviews_quote__mark--open {
    top: 0;
    left: clamp(12px, 4vw, 32px);
}

.reviews_quote__mark--close {
    right: clamp(12px, 4vw, 32px);
    bottom: 0;
}

.reviews_quote__text {
    margin: 0;
    padding: clamp(34px, 5vw, 52px) clamp(72px, 11vw, 120px)
        clamp(38px, 5vw, 56px);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.8rem, 1.45vw, 1rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    text-align: center !important;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(18px);
}

.reviews_quote__author {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(14px);
}

.reviews_slider .slick-slide.slick-active .reviews_quote__mark--open {
    animation: reviews-mark-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reviews_slider .slick-slide.slick-active .reviews_quote__mark--close {
    animation: reviews-mark-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.reviews_slider .slick-slide.slick-active .reviews_quote__text {
    animation: reviews-copy-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.reviews_slider .slick-slide.slick-active .reviews_quote__author {
    animation: reviews-copy-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}

.reviews_slider .slick-slide:not(.slick-active) .reviews_quote__mark,
.reviews_slider .slick-slide:not(.slick-active) .reviews_quote__text,
.reviews_slider .slick-slide:not(.slick-active) .reviews_quote__author {
    opacity: 0;
}

.reviews_section__dots {
    width: 100%;
    margin-top: clamp(28px, 4vw, 40px);
}

.reviews_section .reviews_slider__dots.slick-dots {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reviews_section .reviews_slider__dots li {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
}

.reviews_section .reviews_slider__dots li button {
    display: block !important;
    width: 10px !important;
    height: 10px !important;
    margin: 0;
    padding: 0 !important;
    border: 0;
    border-radius: 999px;
    background: rgba(210, 174, 99, 0.45) !important;
    font-size: 0 !important;
    line-height: 0 !important;
    transition:
        width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.35s ease,
        transform 0.35s ease;
}

.reviews_section .reviews_slider__dots li button::before {
    display: none !important;
    content: none !important;
}

.reviews_section .reviews_slider__dots li.slick-active button {
    width: 34px !important;
    background: #d2ae63 !important;
    transform: scale(1.02);
}

.reviews_section .reviews_slider__dots li button:hover,
.reviews_section .reviews_slider__dots li button:focus-visible {
    background: rgba(210, 174, 99, 0.78) !important;
    outline: none;
}

@keyframes reviews-bg-kenburns {
    0% {
        transform: scale(1.06) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.12) translate3d(-1.2%, -1.4%, 0);
    }

    100% {
        transform: scale(1.08) translate3d(1%, 0.8%, 0);
    }
}

@keyframes reviews-bg-glow {
    0% {
        opacity: 0.55;
        transform: scale(1);
    }

    100% {
        opacity: 0.9;
        transform: scale(1.04);
    }
}

@keyframes reviews-mark-in {
    from {
        opacity: 0;
        transform: scale(0.72) rotate(-8deg);
    }

    to {
        opacity: 0.95;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes reviews-copy-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 767px) {
    .reviews_quote__mark {
        font-size: clamp(3rem, 14vw, 4.2rem);
    }

    .reviews_quote__mark--open {
        left: 0;
    }

    .reviews_quote__mark--close {
        right: 0;
    }

    .reviews_quote__text {
        padding: clamp(28px, 7vw, 40px) clamp(48px, 12vw, 72px)
            clamp(30px, 7vw, 44px);
    }

    .reviews_section__dots {
        margin-top: clamp(22px, 5vw, 32px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reviews_section__image,
    .reviews_section__glow {
        animation: none !important;
    }

    .reviews_section__parallax {
        transform: none !important;
    }

    .reviews_slider .slick-slide.slick-active .reviews_quote__mark--open,
    .reviews_slider .slick-slide.slick-active .reviews_quote__mark--close,
    .reviews_slider .slick-slide.slick-active .reviews_quote__text,
    .reviews_slider .slick-slide.slick-active .reviews_quote__author {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .reviews_section .reviews_slider__dots li button {
        transition: none;
    }
}

/* LOGO SLIDER */
.logo_slider {
    width: 100%;
    height: auto;
    padding: 28px 56px;
    margin: 0 auto;
    position: relative;
    background-color: #000000;
    display: block;
    clear: both;
    overflow: hidden;
    box-sizing: border-box;
}

.logo_slider .slick-list {
    margin: 0;
}

.logo_slider .slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    box-sizing: border-box;
}

.logo_slider .slick-slide > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo_slider img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 72px;
    margin: 0 auto;
    object-fit: contain;
}

.logo_sliderlink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
}

.logo_slider .slick-prev,
.logo_slider .slick-next {
    width: auto;
    height: auto;
    line-height: 1;
    z-index: 2;
    transform: translateY(-50%);
    transition: opacity 0.25s ease;
}

.logo_slider .slick-prev:before,
.logo_slider .slick-next:before {
    content: none;
    display: none;
}

.logo_slider__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.logo_slider__arrow i {
    font-size: 1.75rem;
    color: #ffffff;
    line-height: 1;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.logo_slider__arrow:hover i,
.logo_slider__arrow:focus-visible i {
    color: #d2ae63;
    outline: none;
}

.logo_slider .slick-prev:hover,
.logo_slider .slick-prev:focus,
.logo_slider .slick-next:hover,
.logo_slider .slick-next:focus {
    background: transparent;
}

.logo_slider .slick-prev {
    left: 16px;
}

.logo_slider .slick-next {
    right: 16px;
}

.logo_slider .slick-prev.slick-disabled,
.logo_slider .slick-next.slick-disabled {
    opacity: 0.35;
    cursor: default;
}

.logo_slider .slick-prev.slick-disabled i,
.logo_slider .slick-next.slick-disabled i {
    color: rgba(255, 255, 255, 0.45);
    transform: none;
}

@media screen and (max-width: 767px) {
    .logo_slider {
        padding: 24px 44px;
    }

    .logo_slider__arrow i {
        font-size: 1.5rem;
    }

    .logo_slider .slick-prev {
        left: 10px;
    }

    .logo_slider .slick-next {
        right: 10px;
    }

    .logo_slider img {
        max-height: 60px;
    }
}

@media screen and (max-width: 560px) {
    .logo_slider {
        padding: 20px 12px;
    }
}

/* FONTAWESOME ICONS */
/* Search and filter layout */
.fa_filter_bar {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 50px auto 20px auto;
    position: relative;
    clear: both;
    display: table;
    overflow: hidden;
}

#fa-search {
    width: calc(100% - 200px);
    height: 20px;
    padding: 10px;
    margin: 0 5px 0 0;
    position: relative;
    clear: none;
    float: left;
    display: table;
    border: 2px solid #cccccc;
    border-radius: 4px;
    font-family: "Montserrat", serif;
    font-size: 1em;
}

@media only screen and (max-width: 560px) {
    #fa-search {
        width: calc(100% - 24px);
        margin: 0 0 5px 0;
        clear: both;
        float: none;
    }
}

#style-filter {
    width: 166px;
    height: 44px;
    padding: 10px;
    margin: 0;
    position: relative;
    clear: none;
    float: right;
    border: 2px solid #cccccc;
    border-radius: 4px;
    font-size: 1em;
    font-family: "Montserrat", serif;
}

@media only screen and (max-width: 560px) {
    #style-filter {
        width: 100%;
        clear: both;
        float: none;
    }
}

.icons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 15px;
}

.icon-item {
    text-align: center;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    color: #000000;
    transition: 0.2s;
    background-color: #efefef;
}

.icon-item:hover {
    background: #e4e4e4;
    transform: scale(1.05);
}

.icon-name {
    font-size: 12px;
    margin-top: 6px;
    color: #000000;
}

.icon-tags {
    margin-top: 6px;
}

.tag {
    display: inline-block;
    background: #ffffff;
    border-radius: 5px;
    font-size: 9px;
    color: #000000;
    padding: 2px 4px;
    font-weight: 500;
    margin: 2px;
}

.copy-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    display: none;
}

#loadMore {
    margin: 30px auto;
    display: block;
    background: #4b80b6;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    font-family: "Montserrat", serif;
}

/* Site preloader */
body.preloader-active {
    overflow: hidden;
}

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-preloader__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(250, 178, 44, 0.18),
            transparent 42%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(97, 113, 106, 0.22),
            transparent 45%
        ),
        linear-gradient(145deg, #141a17 0%, #1f2a24 48%, #101512 100%);
}

.site-preloader__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
    padding: 2rem;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.7s ease;
}

.site-preloader.is-hidden .site-preloader__content {
    transform: translateY(-18px);
}

.site-preloader__logo-wrap {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-preloader__logo {
    position: relative;
    z-index: 2;
    width: 198px;
    height: 198px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
    animation: preloader-logo-breathe 2.4s ease-in-out infinite;
}

.site-preloader__ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(250, 178, 44, 0.75);
    border-radius: 50%;
    animation: preloader-ring-pulse 2.4s ease-out infinite;
}

.site-preloader__ring--delay {
    animation-delay: 1.2s;
}

.site-preloader__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
}

.site-preloader__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fab22c;
    opacity: 0.35;
    animation: preloader-dot-bounce 1.1s ease-in-out infinite;
}

.site-preloader__dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.site-preloader__dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes preloader-logo-breathe {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes preloader-ring-pulse {
    0% {
        transform: scale(0.72);
        opacity: 0.85;
    }

    70%,
    100% {
        transform: scale(1.12);
        opacity: 0;
    }
}

@keyframes preloader-dot-bounce {
    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.35;
    }

    40% {
        transform: translateY(-7px);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-preloader,
    .site-preloader__content,
    .site-preloader__logo,
    .site-preloader__ring,
    .site-preloader__dots span {
        animation: none !important;
        transition: none !important;
    }
}

#loadMore:hover {
    background: #365de0;
}

/* FOOTER */
.footer {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 2%;
    position: relative;
    clear: both;
    overflow: hidden;
    box-sizing: border-box;
    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(210, 174, 99, 0.12),
            transparent 38%
        ),
        radial-gradient(
            circle at 85% 100%,
            rgba(97, 113, 106, 0.14),
            transparent 42%
        ),
        linear-gradient(180deg, #1a211c 0%, #131313 52%, #101412 100%);
    border-top: 1px solid rgba(210, 174, 99, 0.28);
}

@media (max-width: 1200px) {
    .footer {
        padding: 0 20px;
    }
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(260px, 42%);
    height: 3px;
    background: linear-gradient(90deg, transparent, #d2ae63 50%, transparent);
    opacity: 0.9;
}

.footer__inner {
    width: 100%;
    margin: 0 auto;
    padding: 52px 0 28px;
}

.footer_nowapp {
    padding-bottom: 60px !important;
}

.footer_socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0 auto 34px;
    padding: 0;
    position: relative;
    text-align: center;
}

.footer_socials a {
    text-decoration: none;
}

.footer_socials i {
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(210, 174, 99, 0.45);
    border-radius: 50%;
    color: #f4efe4;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.04);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.footer_socials i:hover {
    background-color: #d2ae63;
    border-color: #d2ae63;
    color: #1a211c;
    transform: translateY(-2px);
}

.footer_addresses {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 36px;
    width: 100%;
    margin: 0 auto 30px;
    padding: 0 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

.footer_address_holder {
    color: rgba(244, 239, 228, 0.9);
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    min-width: 0;
    box-sizing: border-box;
}

.footer_address_holder--info {
    justify-self: start;
}

.footer_address_holder--logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: stretch;
}

.footer_address_header {
    margin: 0 0 8px;
    padding: 0 0 6px;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: #d2ae63;
    position: relative;
}

.footer_address_header::after {
    content: "";
    display: block;
    width: 46px;
    height: 2px;
    margin-top: 8px;
    background: linear-gradient(90deg, #d2ae63, rgba(210, 174, 99, 0.15));
    border-radius: 2px;
}

.footer_address_holder--logo .footer_address_header::after {
    display: none;
}

.footer_address_info {
    margin: 0 0 25px;
    padding: 0;
    color: rgba(244, 239, 228, 0.82);
    font-weight: 400;
}

.footer_address_info:last-child {
    margin-bottom: 0;
}

.footer_address_holder img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 165px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.privacy_policy {
    width: 100%;
    margin: 0 0 6px;
    padding: 0;
}

.privacy_policy a,
.privacy_policy a:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(210, 174, 99, 0.35);
    border-radius: 999px;
    color: #f4efe4;
    font-family: "Montserrat", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.03);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.privacy_policy a:hover,
.privacy_policy a:visited:hover {
    color: #1a211c;
    background-color: #d2ae63;
    border-color: #d2ae63;
}

.credentials {
    width: 100%;
    margin: 0;
    padding: 0;
    color: rgba(244, 239, 228, 0.72);
    font-family: "Montserrat", sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.5;
}

.credits {
    width: 100%;
    margin: 0;
    padding: 0;
    color: rgba(244, 239, 228, 0.58);
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.5;
}

.credits a,
.credits a:visited {
    color: rgba(210, 174, 99, 0.92);
    text-decoration: none;
    transition: color 0.25s ease;
}

.credits a:hover,
.credits a:visited:hover {
    color: #f4efe4;
    text-decoration: underline;
}

@media screen and (max-width: 1080px) {
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer_nowapp {
        padding-bottom: 60px !important;
    }
}

@media screen and (max-width: 767px) {
    .footer__inner {
        padding-top: 42px;
    }

    .footer_socials {
        margin-bottom: 28px;
    }

    .footer_socials i {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 0.92rem;
    }

    .footer_addresses {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer_address_holder--info,
    .footer_address_holder--logo {
        justify-self: center;
        width: 100%;
        justify-content: center;
    }

    .footer_address_header::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer_address_holder img {
        max-height: 130px;
        max-width: min(260px, 100%);
    }
}

@media screen and (max-width: 560px) {
    .privacy_policy a,
    .privacy_policy a:visited {
        width: auto;
    }
}

/* PAGE BUTTONS */
.page_buttons {
    width: 100%;
    margin: 28px auto;
    padding: 0;
    position: relative;
    clear: both;
}

.page_buttons__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.page_buttons .header_button {
    margin: 0;
    white-space: normal;
}

.page_buttons .header_button a,
.page_buttons .header_button a:visited {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    padding: 14px 24px;
    overflow: hidden;
    opacity: 0.92;
}

.page_buttons .header_button a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.22) 48%,
        transparent 100%
    );
    transform: skewX(-18deg);
    pointer-events: none;
    transition: left 0.55s ease;
}

.page_buttons .header_button a:hover,
.page_buttons .header_button a:visited:hover,
.page_buttons .header_button a:focus-visible,
.page_buttons .header_button a:visited:focus-visible {
    opacity: 1;
    outline: none;
}

.page_buttons .header_button a:hover::before,
.page_buttons .header_button a:focus-visible::before {
    left: 120%;
}

@media screen and (max-width: 767px) {
    .page_buttons {
        margin: 24px auto 20px;
    }

    .page_buttons .header_button a,
    .page_buttons .header_button a:visited {
        min-width: 180px;
        padding: 12px 20px;
        font-size: 13px;
    }
}

@media screen and (max-width: 560px) {
    .page_buttons__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .page_buttons .header_button {
        width: 100%;
    }

    .page_buttons .header_button a,
    .page_buttons .header_button a:visited {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page_buttons .header_button a::before {
        transition: none;
    }
}

/* CONTACT DETAILS BLOCKS */
.contacts_route {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: clamp(24px, 4vw, 42px);
    width: 100%;
    margin: 40px auto 0;
    padding: 0;
    position: relative;
    clear: both;
}

.contacts_route__details {
    flex: 1 1 300px;
    min-width: 0;
    max-width: 100%;
}

.contacts_route__enquire {
    flex: 1.2 1 380px;
    min-width: 0;
    max-width: 100%;
}

.contacts_route--enquire-only .contacts_route__enquire {
    flex: 1 1 100%;
    max-width: 760px;
    margin: 0 auto;
}

.contact_blocks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    clear: both;
}

.contact_block_holder {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 14px 0;
    position: relative;
    clear: both;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    box-sizing: border-box;
}

.contact_block_icon {
    flex: 0 0 48px;
    align-self: center;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(210, 174, 99, 0.42);
    border-radius: 50%;
    background: transparent;
    font-family: "Font Awesome 6 Pro", sans-serif;
}

.contact_block_icon i {
    font-size: 1.15rem;
    color: #d2ae63;
}

.contact_block_info {
    flex: 1;
    align-self: center;
    min-width: 0;
    height: auto;
    padding: 0;
}

.contact_block_title {
    width: 100%;
    margin: 0 0 6px;
    padding: 0;
    clear: both;
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    font-weight: 700;
    color: #d2ae63;
    line-height: 1.1;
}

@media (max-width: 440px) {
    .contact_block_title {
        font-size: clamp(1.2rem, 2vw, 1.6rem);
    }
}

.contact_block_description {
    width: 100%;
    margin: 0 0 8px;
    padding: 0;
    clear: both;
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, 0.68);
    line-height: 1.35;
}

.contact_block_content {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    clear: both;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(244, 239, 228, 0.9);
    line-height: 1.55;
}

@media (max-width: 440px) {
    .contact_block_content {
        font-size: 0.8rem;
    }
}

.contact_block_content a,
.contact_block_content a:visited {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact_block_content a:hover,
.contact_block_content a:visited:hover,
.contact_block_content a:focus-visible,
.contact_block_content a:visited:focus-visible {
    color: #d2ae63;
    text-decoration: underline;
    outline: none;
}

.contacts_route__enquire .enquire {
    width: 100%;
    margin: 0;
    padding: clamp(28px, 4vw, 40px);
    box-sizing: border-box;
    border: 1px solid rgba(210, 174, 99, 0.28);
    border-radius: 10px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0) 42%
        ),
        linear-gradient(
            145deg,
            rgba(26, 33, 28, 0.97) 0%,
            rgba(16, 16, 16, 0.99) 100%
        );
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.contacts_route__enquire .form_group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    clear: both;
    float: none;
}

.contacts_route__enquire .form_group_left,
.contacts_route__enquire .form_group_right {
    flex: 1 1 calc(50% - 8px);
    float: none;
    display: block;
    width: auto;
    min-width: 0;
    margin: 0;
    clear: none;
}

.contacts_route__enquire .form_group_full {
    flex: 1 1 100%;
    float: none;
    display: block;
    width: 100%;
    margin: 0;
    clear: none;
}

.contacts_route__enquire .form_group_double .form_group_full {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contacts_route__enquire .form_label {
    margin: 0 0 8px;
    padding: 0;
    display: block;
    width: 100%;
}

.contacts_route__enquire .form_label label {
    color: rgba(244, 239, 228, 0.78);
    font-family: "Montserrat", sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.contacts_route__enquire .form_field {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    clear: none;
}

.contacts_route__enquire .form_field input[type="text"],
.contacts_route__enquire .form_field input[type="number"],
.contacts_route__enquire .form_field input[type="email"],
.contacts_route__enquire .form_field select,
.contacts_route__enquire .form_field textarea {
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 12px 16px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.4;
    outline: none;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contacts_route__enquire .form_field textarea {
    min-height: 140px;
    height: auto;
    resize: vertical;
}

.contacts_route__enquire .form_field select {
    height: 48px;
    cursor: pointer;
}

.contacts_route__enquire .form_field input::placeholder,
.contacts_route__enquire .form_field textarea::placeholder {
    color: rgba(244, 239, 228, 0.42);
}

.contacts_route__enquire .form_field input[type="text"]:hover,
.contacts_route__enquire .form_field input[type="number"]:hover,
.contacts_route__enquire .form_field input[type="email"]:hover,
.contacts_route__enquire .form_field select:hover,
.contacts_route__enquire .form_field textarea:hover {
    border-color: rgba(210, 174, 99, 0.45);
    background-color: rgba(255, 255, 255, 0.09);
}

.contacts_route__enquire .form_field input[type="text"]:focus,
.contacts_route__enquire .form_field input[type="number"]:focus,
.contacts_route__enquire .form_field input[type="email"]:focus,
.contacts_route__enquire .form_field select:focus,
.contacts_route__enquire .form_field textarea:focus {
    border-color: #d2ae63;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(210, 174, 99, 0.18);
}

.contacts_route__enquire .form_field input:-webkit-autofill,
.contacts_route__enquire .form_field input:-webkit-autofill:hover,
.contacts_route__enquire .form_field input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    box-shadow: 0 0 0 1000px rgba(26, 33, 28, 0.95) inset;
    transition: background-color 9999s ease-out 0s;
}

.contacts_route__enquire .red_asterisk:before {
    color: #d2ae63;
}

.contacts_route__enquire .gen_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    float: none;
    min-width: 180px;
    margin: 4px 0 0;
    padding: 12px 28px;
    border: 0;
    border-radius: 4px;
    background-color: #d2ae63;
    color: #1a211c;
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.94;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.contacts_route__enquire .gen_btn:hover,
.contacts_route__enquire .gen_btn:focus-visible {
    background-color: #e0c27a;
    opacity: 1;
    outline: none;
    transform: translateY(-1px);
}

.contacts_route__enquire .gen_btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

@media screen and (max-width: 900px) {
    .contacts_route {
        flex-direction: column;
    }

    .contacts_route__details,
    .contacts_route__enquire {
        flex: 1 1 100%;
        width: 100%;
    }

    .contacts_route--enquire-only .contacts_route__enquire {
        max-width: 100%;
    }
}

@media screen and (max-width: 560px) {
    .contact_block_holder {
        padding: 12px 0;
        gap: 14px;
    }

    .contact_block_icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .contact_block_icon i {
        font-size: 1rem;
    }

    .contacts_route__enquire .form_group_left,
    .contacts_route__enquire .form_group_right {
        flex: 1 1 100%;
    }

    .contacts_route__enquire .form_group_double .form_group_full {
        justify-content: stretch;
    }

    .contacts_route__enquire .gen_btn {
        width: 100%;
        min-width: 0;
    }
}

/* ICON BOXES */
.icon_boxes {
    width: 100%;
    max-width: 100%;
    margin: clamp(28px, 4vw, 48px) auto 0;
    padding: 0;
    position: relative;
    clear: both;
    box-sizing: border-box;
}

.icon_boxes__grid {
    --icon-box-gap: clamp(16px, 2.2vw, 28px);
    --icon-box-cols: 4;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: var(--icon-box-gap);
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.icon_box {
    flex: 0 1
        calc(
            (100% - ((var(--icon-box-cols) - 1) * var(--icon-box-gap))) /
                var(--icon-box-cols)
        );
    max-width: calc(
        (100% - ((var(--icon-box-cols) - 1) * var(--icon-box-gap))) /
            var(--icon-box-cols)
    );
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: clamp(12px, 1.5vw, 18px) clamp(10px, 1.5vw, 16px);
    text-align: center;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    box-sizing: border-box;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.icon_box.aos-animate .icon_box__icon {
    animation:
        icon-box-icon-pop 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) both,
        icon-box-icon-float 5s ease-in-out 1.1s infinite;
    animation-delay:
        calc(0.12s + (var(--icon-box-index, 0) * 0.08s)),
        calc(1.1s + (var(--icon-box-index, 0) * 0.45s));
}

.icon_box.aos-animate .icon_box__title {
    animation: icon-box-text-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(0.28s + (var(--icon-box-index, 0) * 0.08s));
}

.icon_box.aos-animate .icon_box__description {
    animation: icon-box-text-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(0.42s + (var(--icon-box-index, 0) * 0.08s));
}

.icon_box:hover,
.icon_box:focus-within {
    transform: translateY(-6px);
}

.icon_box__icon {
    position: relative;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(210, 174, 99, 0.45);
    border-radius: 50%;
    background: rgba(210, 174, 99, 0.1);
    color: #d2ae63;
    font-family: "Font Awesome 6 Pro", sans-serif;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.55) rotate(-14deg);
    transition:
        border-color 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        color 0.35s ease;
}

.icon_box__icon::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px dashed rgba(210, 174, 99, 0.28);
    opacity: 0;
    transform: scale(0.88) rotate(0deg);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
    pointer-events: none;
}

.icon_box__icon::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(210, 174, 99, 0.55) 70deg,
        transparent 140deg,
        transparent 360deg
    );
    opacity: 0;
    transform: rotate(0deg);
    transition: opacity 0.35s ease;
    pointer-events: none;
    mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 2px),
        #000 calc(100% - 2px)
    );
    -webkit-mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 2px),
        #000 calc(100% - 2px)
    );
}

.icon_box:hover .icon_box__icon,
.icon_box:focus-within .icon_box__icon {
    border-color: rgba(210, 174, 99, 0.82);
    background: rgba(210, 174, 99, 0.18);
    color: #e8c98a;
    box-shadow:
        0 0 0 1px rgba(210, 174, 99, 0.2),
        0 0 22px rgba(210, 174, 99, 0.35);
}

.icon_box:hover .icon_box__icon::before,
.icon_box:focus-within .icon_box__icon::before {
    opacity: 1;
    transform: scale(1) rotate(18deg);
    animation: icon-box-orbit 8s linear infinite;
}

.icon_box:hover .icon_box__icon::after,
.icon_box:focus-within .icon_box__icon::after {
    opacity: 1;
    animation: icon-box-shimmer-spin 2.4s linear infinite;
}

.icon_box__icon i {
    position: relative;
    z-index: 1;
    font-size: 1.45rem;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon_box:hover .icon_box__icon i,
.icon_box:focus-within .icon_box__icon i {
    transform: scale(1.14) rotate(-6deg);
}

.icon_box__title {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: 400;
    line-height: 1.15;
    color: #d2ae63;
    opacity: 0;
    transform: translateY(14px);
}

.icon_box__description {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.8rem, 1.1vw, 0.8rem);
    font-weight: 400;
    line-height: 1.55;
    text-align: center !important;
    color: rgba(244, 239, 228, 0.78);
    opacity: 0;
    transform: translateY(16px);
    transition: color 0.35s ease;
}

.icon_box:hover .icon_box__description,
.icon_box:focus-within .icon_box__description {
    color: rgba(244, 239, 228, 0.92);
}

@keyframes icon-box-icon-pop {
    0% {
        opacity: 0;
        transform: scale(0.55) rotate(-14deg);
    }

    70% {
        opacity: 1;
        transform: scale(1.08) rotate(4deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes icon-box-icon-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes icon-box-text-rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes icon-box-orbit {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1) rotate(360deg);
    }
}

@keyframes icon-box-shimmer-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .icon_box {
        transition: none;
    }

    .icon_box:hover,
    .icon_box:focus-within {
        transform: none;
    }

    .icon_box.aos-animate .icon_box__icon,
    .icon_box.aos-animate .icon_box__title,
    .icon_box.aos-animate .icon_box__description {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .icon_box__icon {
        opacity: 1;
        transform: none;
    }

    .icon_box__title,
    .icon_box__description {
        opacity: 1;
        transform: none;
    }

    .icon_box:hover .icon_box__icon::before,
    .icon_box:focus-within .icon_box__icon::before,
    .icon_box:hover .icon_box__icon::after,
    .icon_box:focus-within .icon_box__icon::after {
        animation: none;
    }

    .icon_box:hover .icon_box__icon i,
    .icon_box:focus-within .icon_box__icon i {
        transform: none;
    }
}

@media screen and (max-width: 1100px) {
    .icon_boxes__grid {
        --icon-box-cols: 3;
    }
}

@media screen and (max-width: 720px) {
    .icon_boxes__grid {
        --icon-box-cols: 2;
    }
}

@media screen and (max-width: 480px) {
    .icon_boxes__grid {
        --icon-box-cols: 1;
    }

    .icon_box {
        max-width: 100%;
        flex-basis: 100%;
    }
}

/* AWARDS ROUTE */
.awards_route {
    width: 100%;
    max-width: 100%;
    margin: clamp(28px, 4vw, 48px) auto 0;
    padding: 0;
    position: relative;
    clear: both;
    box-sizing: border-box;
}

.awards_route__luxe-cta {
    width: min(100%, 920px);
    margin: 0 auto clamp(28px, 4vw, 44px);
    padding: 0 clamp(12px, 2vw, 20px);
    box-sizing: border-box;
}

.awards_luxe_btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(14px, 2.5vw, 24px);
    width: 100%;
    margin: 0;
    padding: 30px 30px 30px 60px;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        rgba(210, 174, 99, 0.18) 0%,
        rgba(19, 26, 23, 0.96) 42%,
        rgba(12, 14, 13, 0.98) 100%
    );
    border: 2px solid rgba(210, 174, 99, 0.72);
    border-radius: 999px;
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(210, 174, 99, 0.12) inset,
        0 0 28px rgba(210, 174, 99, 0.16);
    box-sizing: border-box;
    animation: awards-luxe-btn-pulse 2.8s ease-in-out infinite;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.awards_luxe_btn:hover,
.awards_luxe_btn:focus-visible {
    color: #ffffff;
    transform: translateY(-3px) scale(1.015);
    border-color: #e8c98a;
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(232, 201, 138, 0.24) inset,
        0 0 36px rgba(210, 174, 99, 0.34);
}

.awards_luxe_btn__glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(
        circle,
        rgba(210, 174, 99, 0.28) 0%,
        rgba(210, 174, 99, 0) 68%
    );
    opacity: 0.75;
    pointer-events: none;
    animation: awards-luxe-btn-glow 3.6s ease-in-out infinite;
}

.awards_luxe_btn__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0) 28%,
        rgba(255, 255, 255, 0.22) 48%,
        rgba(255, 255, 255, 0) 68%
    );
    transform: translateX(-130%);
    pointer-events: none;
    animation: awards-luxe-btn-shine 4.2s ease-in-out infinite;
}

.awards_luxe_btn__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    flex: 1 1 auto;
}

.awards_luxe_btn__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(210, 174, 99, 0.18);
    border: 1px solid rgba(210, 174, 99, 0.45);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.68rem, 1.4vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
    color: #e8c98a;
}

.awards_luxe_btn__label {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.95rem, 2.1vw, 1.18rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.03em;
    color: #ffffff;
}

.awards_luxe_btn__subline {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.78rem, 1.5vw, 0.92rem);
    font-weight: 500;
    line-height: 1.45;
    color: rgba(244, 239, 228, 0.78);
}

.awards_luxe_btn__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    width: clamp(52px, 8vw, 64px);
    height: clamp(52px, 8vw, 64px);
    border-radius: 50%;
    background: linear-gradient(145deg, #e8c98a 0%, #d2ae63 55%, #b8924d 100%);
    color: #1a211c;
    box-shadow: 0 10px 24px rgba(210, 174, 99, 0.28);
}

.awards_luxe_btn__icon i {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1;
}

.awards_luxe_btn__icon i:last-child {
    font-size: clamp(0.82rem, 1.6vw, 0.95rem);
}

.awards_luxe_btn:hover .awards_luxe_btn__icon,
.awards_luxe_btn:focus-visible .awards_luxe_btn__icon {
    animation: awards-luxe-btn-icon-bounce 0.7s ease;
}

@keyframes awards-luxe-btn-pulse {
    0%,
    100% {
        box-shadow:
            0 14px 36px rgba(0, 0, 0, 0.34),
            0 0 0 1px rgba(210, 174, 99, 0.12) inset,
            0 0 22px rgba(210, 174, 99, 0.14);
    }

    50% {
        box-shadow:
            0 18px 42px rgba(0, 0, 0, 0.38),
            0 0 0 1px rgba(210, 174, 99, 0.2) inset,
            0 0 34px rgba(210, 174, 99, 0.28);
    }
}

@keyframes awards-luxe-btn-glow {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.96);
    }

    50% {
        opacity: 0.95;
        transform: scale(1.04);
    }
}

@keyframes awards-luxe-btn-shine {
    0%,
    72%,
    100% {
        transform: translateX(-130%);
    }

    38% {
        transform: translateX(130%);
    }
}

@keyframes awards-luxe-btn-icon-bounce {
    0%,
    100% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.12);
    }
}

.awards_route__category {
    --award-cols-desktop: 4;
    --award-cols: var(--award-cols-desktop);
    width: 100%;
    max-width: 1180px;
    margin: 0 auto clamp(38px, 5vw, 64px);
    padding: 0;
    box-sizing: border-box;
}

.awards_route__category:last-child {
    margin-bottom: 0;
}

.awards_category__header {
    width: min(100%, 860px);
    margin: 0 auto clamp(22px, 3vw, 36px);
    padding: 0;
    text-align: center;
}

.awards_category__title {
    margin: 0 0 8px;
    padding: 0;
    font-family: "Abella Script", cursive;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.05;
    color: #ffffff;
}

.awards_category__name {
    margin: 0 0 12px;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    font-weight: 700;
    line-height: 1.4;
    color: #d2ae63;
    text-align: center !important;
    text-transform: uppercase;
}

.awards_category__name::after {
    content: "";
    display: block;
    width: clamp(72px, 28%, 148px);
    height: 2px;
    margin: 10px auto 0;
    background: #d2ae63;
    border-radius: 1px;
}

.awards_category__description {
    margin: 0 auto;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.08rem);
    font-weight: 500;
    line-height: 1.7;
    color: #ffffff;
    text-align: center !important;
}

.awards_route__grid {
    --award-gap: clamp(20px, 3vw, 36px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: var(--award-gap);
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.award_card {
    flex: 0 1
        calc(
            (100% - ((var(--award-cols) - 1) * var(--award-gap))) /
                var(--award-cols)
        );
    max-width: calc(
        (100% - ((var(--award-cols) - 1) * var(--award-gap))) /
            var(--award-cols)
    );
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: clamp(14px, 2vw, 22px);
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 0;
    background: none;
    box-shadow: none;
    box-sizing: border-box;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.award_card--linked {
    cursor: pointer;
}

.award_card:hover,
.award_card:focus-visible {
    transform: translateY(-8px);
    outline: none;
}

.award_card.aos-animate .award_card__media {
    animation:
        award-media-reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both,
        award-media-float 6s ease-in-out 1.2s infinite;
    animation-delay:
        calc(0.1s + (var(--award-index, 0) * 0.1s)),
        calc(1.2s + (var(--award-index, 0) * 0.5s));
}

.award_card.aos-animate .award_card__name {
    animation: award-text-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(0.32s + (var(--award-index, 0) * 0.1s));
}

.award_card.aos-animate .award_card__description {
    animation: award-text-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(0.46s + (var(--award-index, 0) * 0.1s));
}

.award_card.aos-animate .award_card__cta {
    animation: award-text-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(0.58s + (var(--award-index, 0) * 0.1s));
}

.award_card__media {
    position: relative;
    width: min(100%, 220px);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.82) rotate(-4deg);
}

.award_card__media-glow {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(210, 174, 99, 0.28) 0%,
        rgba(210, 174, 99, 0) 72%
    );
    opacity: 0.65;
    transform: scale(0.9);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
    pointer-events: none;
}

.award_card:hover .award_card__media-glow,
.award_card:focus-visible .award_card__media-glow {
    opacity: 1;
    transform: scale(1.08);
    animation: award-glow-pulse 2.2s ease-in-out infinite;
}

.award_card__image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
    transition:
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        filter 0.35s ease;
}

.award_card:hover .award_card__image,
.award_card:focus-visible .award_card__image {
    transform: scale(1.06) rotate(2deg);
    filter: drop-shadow(0 16px 28px rgba(210, 174, 99, 0.22));
}

.award_card__name {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    line-height: 1.15;
    color: #d2ae63;
    opacity: 0;
    transform: translateY(18px);
    text-transform: uppercase;
    transition: color 0.35s ease;
}

.award_card:hover .award_card__name,
.award_card:focus-visible .award_card__name {
    color: #e8c98a;
}

.award_card:hover .award_card__name::after,
.award_card:focus-visible .award_card__name::after,
.award_card.aos-animate .award_card__name::after {
    width: min(72%, 180px);
}

.award_card__description {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.84rem, 1.1vw, 0.94rem);
    font-weight: 400;
    line-height: 1.55;
    text-align: center !important;
    color: rgba(244, 239, 228, 0.78);
    opacity: 0;
    transform: translateY(18px);
    transition: color 0.35s ease;
}

.award_card:hover .award_card__description,
.award_card:focus-visible .award_card__description {
    color: rgba(244, 239, 228, 0.92);
}

.award_card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 2px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(210, 174, 99, 0.82);
    opacity: 0;
    transform: translateY(12px);
    transition:
        color 0.35s ease,
        gap 0.35s ease;
}

.award_card__cta i {
    font-size: 0.85rem;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.award_card--linked:hover .award_card__cta,
.award_card--linked:focus-visible .award_card__cta {
    color: #e8c98a;
    gap: 12px;
}

.award_card--linked:hover .award_card__cta i,
.award_card--linked:focus-visible .award_card__cta i {
    transform: translate(2px, -2px) scale(1.08);
}

@keyframes award-media-reveal {
    0% {
        opacity: 0;
        transform: scale(0.82) rotate(-4deg);
    }

    70% {
        opacity: 1;
        transform: scale(1.04) rotate(2deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes award-media-float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-6px) rotate(1deg);
    }
}

@keyframes award-text-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes award-glow-pulse {
    0%,
    100% {
        opacity: 0.75;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@media screen and (max-width: 900px) {
    .awards_route__category--layout-3,
    .awards_route__category--layout-4 {
        --award-cols: 2;
    }
}

@media screen and (max-width: 767px) {
    .awards_route__category {
        --award-cols: 1;
    }
}

@media screen and (max-width: 560px) {
    .awards_route__category {
        --award-cols: 1;
    }

    .award_card {
        max-width: 100%;
        flex-basis: 100%;
    }

    .awards_luxe_btn {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 20px;
        border-radius: 22px;
        text-align: center;
        animation: none;
    }

    .awards_luxe_btn__content {
        align-items: center;
    }

    .awards_luxe_btn__subline {
        text-align: center;
    }

    .awards_luxe_btn__icon {
        align-self: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .awards_luxe_btn,
    .awards_luxe_btn__glow,
    .awards_luxe_btn__shine,
    .awards_luxe_btn__icon {
        animation: none !important;
    }

    .award_card {
        transition: none;
    }

    .award_card:hover,
    .award_card:focus-visible {
        transform: none;
    }

    .award_card.aos-animate .award_card__media,
    .award_card.aos-animate .award_card__name,
    .award_card.aos-animate .award_card__description,
    .award_card.aos-animate .award_card__cta {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .award_card__media,
    .award_card__name,
    .award_card__description,
    .award_card__cta {
        opacity: 1;
        transform: none;
    }

    .award_card:hover .award_card__media-glow,
    .award_card:focus-visible .award_card__media-glow {
        animation: none;
    }

    .award_card:hover .award_card__image,
    .award_card:focus-visible .award_card__image,
    .award_card--linked:hover .award_card__cta i,
    .award_card--linked:focus-visible .award_card__cta i {
        transform: none;
    }
}

/* CONTENT BOXES */
.content_boxes {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 4vw, 44px);
    width: 100%;
    margin: clamp(28px, 4vw, 48px) auto 0;
    padding: 0;
    position: relative;
    clear: both;
    box-sizing: border-box;
}

.content_box {
    --content-box-gap: clamp(24px, 3vw, 36px);
    display: flex;
    align-items: stretch;
    gap: var(--content-box-gap);
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    box-sizing: border-box;
    overflow: visible;
}

.content_box--right {
    flex-direction: row-reverse;
}

.content_box--no-photo .content_box__body {
    flex: 1 1 100%;
    max-width: 100%;
}

.content_box__media {
    flex: 0 0 calc((100% - var(--content-box-gap)) / 2);
    max-width: calc((100% - var(--content-box-gap)) / 2);
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.content_box__photo-frame {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-height: clamp(260px, 32vw, 380px);
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #131313;
}

.content_box__photo-zoom {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    transform: scale(1.02);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.content_box:hover .content_box__photo-zoom,
.content_box:focus-within .content_box__photo-zoom {
    transform: scale(1.06);
}

.content_box__photo {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    object-fit: cover;
    object-position: center center;
}

.content_box__photo-tint {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background-color: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.content_box__photo-shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0) 70%
    );
    transform: translateX(-120%);
    pointer-events: none;
}

.content_box:hover .content_box__photo-shine,
.content_box:focus-within .content_box__photo-shine {
    animation: content-box-shine 1.1s ease;
}

.content_box__photo-text {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    padding: 0 24px;
    box-sizing: border-box;
    border: 0;
    background: none;
    font-family: "Abella Script", cursive;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1.1;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.content_box.aos-animate .content_box__photo-text {
    animation: content-box-photo-text-in 0.75s cubic-bezier(0.22, 1, 0.36, 1)
        both;
    animation-delay: calc(0.25s + (var(--content-box-index, 0) * 0.08s));
}

.content_box__body {
    flex: 0 0 calc((100% - var(--content-box-gap)) / 2);
    max-width: calc((100% - var(--content-box-gap)) / 2);
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: clamp(8px, 1.5vw, 16px) 0;
}

.content_box__title {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Abella Script", cursive;
    font-size: clamp(2.6rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: #d2ae63;
    opacity: 0;
    transform: translateY(16px);
}

.content_box.aos-animate .content_box__title {
    animation: content-box-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(0.12s + (var(--content-box-index, 0) * 0.08s));
}

.content_box__subtitle {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
    color: rgba(244, 239, 228, 0.68);
    opacity: 0;
    transform: translateY(14px);
}

.content_box.aos-animate .content_box__subtitle {
    animation: content-box-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(0.22s + (var(--content-box-index, 0) * 0.08s));
}

.content_box__content {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.9rem, 1.1vw, 0.96rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(244, 239, 228, 0.84);
    opacity: 0;
    transform: translateY(16px);
}

.content_box.aos-animate .content_box__content {
    animation: content-box-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(0.32s + (var(--content-box-index, 0) * 0.08s));
}

.content_box__content p {
    margin: 0 0 10px;
    text-align: left !important;
    line-height: 1.65;
}

.content_box__content p:last-child {
    margin-bottom: 0;
}

.content_box.aos-animate .content_box__photo-frame {
    animation: content-box-media-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(0.05s + (var(--content-box-index, 0) * 0.08s));
}

@keyframes content-box-rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes content-box-media-in {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(18px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes content-box-photo-text-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes content-box-shine {
    from {
        transform: translateX(-120%);
    }

    to {
        transform: translateX(120%);
    }
}

@media screen and (max-width: 900px) {
    .content_box,
    .content_box--right {
        flex-direction: column;
    }

    .content_box__media,
    .content_box__body {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
    }

    .content_box__photo-frame {
        flex: 0 0 auto;
        aspect-ratio: 16 / 8;
        width: 100%;
        min-height: 0;
    }

    .content_box__photo {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
    }

    .content_box.aos-animate .content_box__photo-text {
        animation-name: content-box-photo-text-in;
    }

    .content_box__body {
        align-items: center;
        text-align: center;
    }

    .content_box__title,
    .content_box__subtitle,
    .content_box__content {
        width: 100%;
        text-align: center !important;
    }

    .content_box__content p {
        text-align: center !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .content_box__photo-zoom {
        transform: none;
        transition: none;
    }

    .content_box.aos-animate .content_box__photo-frame,
    .content_box.aos-animate .content_box__title,
    .content_box.aos-animate .content_box__subtitle,
    .content_box.aos-animate .content_box__content {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .content_box.aos-animate .content_box__photo-text,
    .content_box__photo-text {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .content_box__title,
    .content_box__subtitle,
    .content_box__content {
        opacity: 1;
        transform: none;
    }

    .content_box:hover .content_box__photo-shine,
    .content_box:focus-within .content_box__photo-shine {
        animation: none;
    }
}

/* PHOTO GALLERY */
.portfolio {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 20px auto 0 auto;
    position: relative;
    clear: both;
    display: table;
}

.album_gallery,
.photo_gallery {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    position: relative;
    clear: both;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 10px;
    grid-auto-flow: dense;
}

@media screen and (max-width: 767px) {
    .album_gallery,
    .photo_gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 440px) {
    .album_gallery,
    .photo_gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}

.album_header_name {
    width: calc(100% - 20px);
    height: auto;
    padding: 10px 10px;
    margin: 0 auto 15px auto;
    position: relative;
    clear: both;
    color: #ffffff;
    background-color: #2b2b2b;
    text-align: center;
    font-size: 1.1em;
    text-transform: uppercase;
    font-family: "Font Awesome 6 Pro", "Noto Sans", sans-serif;
    line-height: 1em;
}

@media screen and (max-width: 767px) {
    .album_header_name {
        font-size: 1em;
    }
}

.album_header_name a,
.album_header_name a:visited {
    color: #ffffff;
    text-decoration: none;
}

.album_header_name a:hover,
.album_header_name a:visited:hover {
    color: #c4c4c4;
    text-decoration: none;
}

.album_holder {
    width: 100%;
    height: auto;
    padding-bottom: 100%;
    position: relative;
    background-attachment: scroll;
    background-color: #eeeeee;
    background-repeat: no-repeat;
    background-size: cover !important;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.album_holder_1 {
    grid-column: span 1;
    grid-row: span 1;
}

.album_holder_2 {
    grid-column: span 2;
    grid-row: span 2;
}

@media screen and (max-width: 560px) {
    .album_holder_2 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.album_holder_3 {
    grid-column: span 3;
    grid-row: span 3;
}

@media screen and (max-width: 767px) {
    .album_holder_3 {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media screen and (max-width: 560px) {
    .album_holder_3 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.album_title {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    color: #ffffff;
    font-family: "Noto Sans", sans-serif;
    height: 20px;
    left: 0;
    margin: 0 auto;
    padding: 5px 10px;
    font-size: 0.9em;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    width: calc(100% - 20px);
}

.album_holder:hover .album_title {
    height: calc(100% - 10px);
}

.album_icon {
    color: #fab22c;
    display: none;
    font-size: 50px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.6s ease-in-out;
    -moz-transition: opacity 0.6s ease-in-out;
    -o-transition: opacity 0.6s ease-in-out;
    -webkit-transition: opacity 0.6s ease-in-out;
    width: 100%;
    z-index: 3;
    font-family: "Font Awesome 6 Pro", sans-serif;
}

.album_holder:hover .album_icon {
    display: table;
    opacity: 1;
}

.album_button {
    clear: both;
    display: table;
    height: auto;
    margin: 0 auto;
    padding: 40px 0 20px 0;
    position: relative;
    text-align: center;
    width: auto;
}

.album_button a,
.album_button a:visited {
    border: 1px solid #afb374;
    color: #afb374;
    font-family: "Font Awesome 6 Pro", "Noto Sans", sans-serif;
    font-size: 1.2em;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.album_button a:hover,
.album_button a:visited:hover {
    border: 1px solid #4e502e;
    color: #4e502e;
}

/* VIDEO GALLERY */
.video_gallery {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    position: relative;
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(3, 1fr);
    background-color: #ffffff;
    clear: both;
}

@media screen and (max-width: 1080px) {
    .video_gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 560px) {
    .video_gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}

.video_gallery_holder {
    width: 100%;
    height: auto;
    padding-bottom: 56%;
    margin: 0;
    position: relative;
    display: table;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.video_icon {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
}

.video_icon i {
    text-align: center;
    font-size: 5vw;
    color: #ffffff;
    transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 1080px) {
    .video_icon i {
        font-size: 7vw;
    }
}

@media screen and (max-width: 560px) {
    .video_icon i {
        font-size: 14vw;
    }
}

.video_gallery_holder:hover i {
    color: #ff0000;
}

/* MAP */
.map_section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    clear: both;
    overflow: hidden;
    box-sizing: border-box;
}

.mapouter {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0 auto;
    padding: 0;
    position: relative;
    clear: both;
    overflow: hidden;
    display: block;
    box-sizing: border-box;
}

.map_section__inner {
    display: flex;
    align-items: stretch;
    gap: clamp(20px, 3vw, 32px);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    box-sizing: border-box;
}

.map_panel {
    flex: 0 0 min(340px, 100%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: clamp(24px, 3vw, 32px);
    border: 1px solid rgba(210, 174, 99, 0.28);
    border-radius: 12px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0) 40%
        ),
        linear-gradient(
            145deg,
            rgba(26, 33, 28, 0.98) 0%,
            rgba(16, 20, 18, 0.98) 100%
        );
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    box-sizing: border-box;
}

.map_panel__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.map_panel__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(210, 174, 99, 0.45);
    border-radius: 50%;
    background: rgba(210, 174, 99, 0.1);
    color: #d2ae63;
    font-size: 1.35rem;
}

.map_panel__title {
    margin: 15px 0 0 0;
    padding: 0;
    font-family: "Abella Script", cursive;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.05;
    color: #d2ae63;
}

.map_panel__subtitle {
    margin: 0 0 6px;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(244, 239, 228, 0.78);
}

.map_panel__address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(244, 239, 228, 0.9);
}

.map_panel__address i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #d2ae63;
    font-size: 1rem;
}

.map_panel__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.map_panel__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    white-space: normal;
    box-sizing: border-box;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.map_panel__btn--primary {
    border: 1px solid #d2ae63;
    background-color: #d2ae63;
    color: #1a211c !important;
    text-decoration: none !important;
}

.map_panel__btn--primary:hover,
.map_panel__btn--primary:focus-visible {
    background-color: #e0c27a;
    border-color: #e0c27a;
    color: #1a211c !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(210, 174, 99, 0.24);
    outline: none;
}

.map_panel__btn--secondary {
    border: 1px solid rgba(210, 174, 99, 0.45);
    background: transparent;
    color: #f4efe4 !important;
    text-decoration: none !important;
}

.map_panel__btn--secondary:hover,
.map_panel__btn--secondary:focus-visible {
    border-color: #d2ae63;
    color: #d2ae63 !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    outline: none;
}

.map_section__canvas {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    background: none !important;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.map_section__frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: var(--map-height, 420px);
    min-height: 280px;
    border: 1px solid rgba(210, 174, 99, 0.32);
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.34),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.map_section__iframe,
#gmap_canvas {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    margin: 0;
    padding: 0;
    border: 0;
    filter: saturate(0.92) contrast(1.02);
    transition:
        filter 0.35s ease,
        transform 0.6s ease;
}

.map_section__glow {
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
    pointer-events: none;
    opacity: 0.65;
    transition: opacity 0.35s ease;
}

.map_section__frame:hover .map_section__glow,
.map_section__frame:focus-within .map_section__glow {
    opacity: 0.35;
}

.gmap_canvas {
    background: none !important;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media screen and (max-width: 960px) {
    .map_section__inner {
        flex-direction: column;
    }

    .map_panel {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }

    .map_section__canvas {
        width: 100%;
        max-width: 100%;
    }

    .map_section__frame:hover,
    .map_section__frame:focus-within {
        transform: none;
    }

    .map_section__frame:hover .map_section__iframe,
    .map_section__frame:focus-within .map_section__iframe {
        transform: none;
    }
}

@media screen and (max-width: 560px) {
    .mapouter {
        padding-left: 0;
        padding-right: 0;
    }

    .map_panel__btn {
        font-size: 0.74rem;
        padding: 12px 10px;
    }

    .map_section__frame:hover,
    .map_section__frame:focus-within {
        transform: none;
    }

    .map_section__frame:hover .map_section__iframe,
    .map_section__frame:focus-within .map_section__iframe {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .map_section__frame,
    .map_section__iframe,
    .map_panel__btn {
        transition: none;
    }

    .map_section__frame:hover,
    .map_section__frame:focus-within,
    .map_section__frame:hover .map_section__iframe,
    .map_section__frame:focus-within .map_section__iframe,
    .map_panel__btn:hover,
    .map_panel__btn:focus-visible {
        transform: none;
    }
}

/* WHATSAPP WIDGET */
.whatsapp-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1005;
}

.whatsapp-widget__trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.whatsapp-widget__card {
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    width: min(300px, calc(100vw - 44px));
    background: #ffffff;
    border-radius: 18px;
    overflow: visible;
    box-shadow:
        0 18px 40px rgba(15, 23, 20, 0.18),
        0 2px 8px rgba(15, 23, 20, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.96);
    transform-origin: bottom right;
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        visibility 0.28s ease;
    pointer-events: none;
}

.whatsapp-widget__trigger:has(.whatsapp-widget__button:hover)
    .whatsapp-widget__card,
.whatsapp-widget__trigger:has(.whatsapp-widget__card:hover)
    .whatsapp-widget__card,
.whatsapp-widget__trigger:focus-within .whatsapp-widget__card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp-widget__card::after {
    content: "";
    position: absolute;
    left: -16px;
    right: -16px;
    top: 100%;
    height: 20px;
}

.whatsapp-widget__card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(
        135deg,
        var(--whatsapp-color, #25d366) 0%,
        #1da851 100%
    );
    color: #ffffff;
    border-radius: 18px 18px 0 0;
}

.whatsapp-widget__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.whatsapp-widget__avatar i {
    font-size: 22px;
    color: #ffffff;
}

.whatsapp-widget__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.whatsapp-widget__meta strong {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.whatsapp-widget__meta span {
    font-size: 0.78rem;
    line-height: 1.3;
    opacity: 0.92;
}

.whatsapp-widget__card-body {
    display: block;
    padding: 16px;
    background: #f4f7f5;
}

.whatsapp-widget__message {
    display: inline-block;
    max-width: 88%;
    padding: 11px 14px;
    border-radius: 14px 14px 14px 4px;
    background: #ffffff;
    color: #2f3b36;
    font-size: 0.92rem;
    line-height: 1.45;
    box-shadow: 0 2px 8px rgba(15, 23, 20, 0.06);
}

.whatsapp-widget__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 16px;
    background: #ffffff;
    color: var(--whatsapp-color, #25d366);
    font-size: 0.92rem;
    font-weight: 700;
    border-top: 1px solid #e8eeea;
    border-radius: 0 0 18px 18px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.whatsapp-widget__trigger:has(.whatsapp-widget__button:hover)
    .whatsapp-widget__cta,
.whatsapp-widget__trigger:has(.whatsapp-widget__card:hover)
    .whatsapp-widget__cta,
.whatsapp-widget__trigger:focus-within .whatsapp-widget__cta {
    background: #f7fbf8;
}

.whatsapp-widget__button {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        145deg,
        var(--whatsapp-color, #25d366) 0%,
        #1da851 100%
    );
    box-shadow:
        0 10px 24px rgba(37, 211, 102, 0.38),
        0 2px 6px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.whatsapp-widget__button::before {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    bottom: 100%;
    height: 18px;
}

.whatsapp-widget__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--whatsapp-color, #25d366);
    opacity: 0.42;
    animation: whatsapp-widget-pulse 2.2s ease-out infinite;
}

.whatsapp-widget__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-widget__icon i {
    font-size: var(--whatsapp-icon-size, 28px);
    color: #ffffff;
    transition: transform 0.25s ease;
}

.whatsapp-widget__label {
    display: none;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #1f2d28;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 20px rgba(15, 23, 20, 0.14);
}

.whatsapp-widget__button:hover,
.whatsapp-widget__trigger:focus-within .whatsapp-widget__button {
    transform: scale(1.05);
    box-shadow:
        0 14px 28px rgba(37, 211, 102, 0.45),
        0 4px 10px rgba(0, 0, 0, 0.14);
}

.whatsapp-widget__button:hover .whatsapp-widget__icon i,
.whatsapp-widget__trigger:focus-within .whatsapp-widget__icon i {
    transform: scale(1.04);
}

.whatsapp-widget__trigger:focus-within {
    outline: none;
}

.whatsapp-widget__trigger:focus-within .whatsapp-widget__button {
    outline: 3px solid rgba(37, 211, 102, 0.35);
    outline-offset: 3px;
}

@keyframes whatsapp-widget-pulse {
    0% {
        transform: scale(1);
        opacity: 0.42;
    }

    70%,
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

@media (hover: none) {
    .whatsapp-widget__card {
        display: none;
    }

    .whatsapp-widget__label {
        display: inline-flex;
    }
}

@media screen and (max-width: 480px) {
    .whatsapp-widget {
        right: 16px;
        bottom: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-widget__card,
    .whatsapp-widget__button,
    .whatsapp-widget__icon i,
    .whatsapp-widget__cta {
        transition: none;
    }

    .whatsapp-widget__pulse {
        animation: none;
        opacity: 0.2;
    }
}

/* FORM STYLING */
.form_group {
    clear: both;
    display: table;
    height: auto;
    margin: 0 0 15px 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.form_group_full {
    clear: both;
    display: table;
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.form_group_left {
    clear: none;
    display: table;
    float: left;
    height: auto;
    margin: 0 1% 0 0;
    padding: 0;
    position: relative;
    width: 49%;
}

@media screen and (max-width: 560px) {
    .form_group_left {
        clear: both;
        float: none;
        margin: 0 0 15px;
        width: 100%;
    }
}

.form_group_right {
    clear: none;
    display: table;
    float: right;
    height: auto;
    margin: 0 0 0 1%;
    padding: 0;
    position: relative;
    width: 49%;
}

@media screen and (max-width: 560px) {
    .form_group_right {
        clear: both;
        float: none;
        margin: 0;
        width: 100%;
    }
}

.form_group_1_3 {
    clear: none;
    display: table;
    float: left;
    height: auto;
    margin: 0 1% 0 0;
    padding: 0;
    position: relative;
    width: calc(100% / 3 - 1%);
}

@media screen and (max-width: 560px) {
    .form_group_1_3 {
        margin: 0 0 15px 0;
        width: 100%;
    }
}

.form_group_2_3 {
    clear: none;
    display: table;
    float: left;
    height: auto;
    margin: 0 1% 0 1%;
    padding: 0;
    position: relative;
    width: calc(100% / 3 - 2%);
}

@media screen and (max-width: 560px) {
    .form_group_2_3 {
        margin: 0 0 15px 0;
        padding: 0;
        width: 100%;
    }
}

.form_group_3_3 {
    clear: none;
    display: table;
    float: right;
    height: auto;
    margin: 0 0 0 1%;
    padding: 0;
    position: relative;
    width: calc(100% / 3 - 1%);
}

@media screen and (max-width: 560px) {
    .form_group_3_3 {
        margin: 0 0 15px 0;
        width: 100%;
    }
}

.form_label {
    clear: both;
    display: table;
    height: auto;
    margin: 0;
    padding: 0 0 2px 0;
    position: relative;
    width: 100%;
}

.form_label label {
    color: #4d4d4d;
    font-family: "Montserrat", sans-serif;
    font-size: 1em;
    font-weight: 600;
}

.form_field {
    clear: both;
    display: table;
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.form_field input[type="text"],
.form_field input[type="number"],
.form_field input[type="email"] {
    background-color: #ffffff;
    border: 1px solid #c4c4c4;
    font-family: "Montserrat", sans-serif;
    height: 25px;
    margin: 0;
    outline: none;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    width: calc(100% - 40px - 2px);
}

.form_field input[type="text"]:hover,
.form_field input[type="text"]:focus,
.form_field input[type="number"]:hover,
.form_field input[type="number"]:focus,
.form_field input[type="email"]:hover,
.form_field input[type="email"]:focus {
    background-color: #f2f2f2;
    border: 1px solid #c4c4c4;
}

.form_field select {
    background-color: #ffffff;
    border: 1px solid #c4c4c4;
    font-family: "Montserrat", sans-serif;
    height: 47px;
    margin: 0;
    outline: none;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    width: 100%;
}

.form_field select:hover,
.form_field select:focus {
    background-color: #f2f2f2;
    border: 1px solid #c4c4c4;
}

.form_field textarea {
    background-color: #ffffff;
    border: 1px solid #c4c4c4;
    font-family: "Montserrat", sans-serif;
    height: 125px;
    margin: 0;
    outline: none;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    width: calc(100% - 40px - 2px);
}

.form_field textarea:hover,
.form_field textarea:focus {
    background-color: #f2f2f2;
    border: 1px solid #c4c4c4;
}

.form_oneliner_label {
    display: table-cell;
    height: auto;
    padding: 0 2% 0 0;
    vertical-align: middle;
    width: 48%;
}

.form_oneliner_field {
    display: table-cell;
    height: auto;
    padding: 0 0 0 2%;
    vertical-align: middle;
    width: 48%;
}

.form_note {
    clear: both;
    color: #525252;
    display: table;
    font-size: 0.9em;
    height: auto;
    margin: 2px 0 0 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.red_asterisk {
    color: red;
    font-size: 0.8em;
    vertical-align: super;
}

.red_asterisk:before {
    color: red;
    content: "\f069";
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-size: 0.6em;
    vertical-align: super;
}

.hfield {
    display: none !important;
}

.grecaptcha-badge {
    display: none !important;
}
