/********** Site CSS **********/
:root {
    --primary: #B24A3C;
    --secondary: #6E625B;
    --light: #FFF6EF;
    --dark: #150F0E;
    --accent: #F1C86A;
    --stripe-dark: #241311;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
}

.fa,
.fas,
.far,
.fab,
.bi {
    display: inline-block;
    min-width: 1em;
    font-style: normal;
    line-height: 1;
    text-align: center;
}

.fa,
.fas {
    font-weight: 900;
}

.fab {
    font-weight: 400;
}

.fa::before,
.fab::before,
.bi::before {
    display: inline-block;
}

.bi-arrow-up::before { content: "\2191"; }
.bi-chevron-left::before { content: "\2039"; }
.bi-chevron-right::before { content: "\203A"; }

.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }
.fa-4x { font-size: 4em; }

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 102px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), #7F241E);
    box-shadow: 0 12px 30px rgba(127, 36, 30, .22);
}

.btn.btn-primary:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg, #7F241E, var(--dark));
    transform: translateY(-2px);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.top-bar,
.navbar.bg-dark,
.footer,
.site-note {
    background-color: var(--dark) !important;
    background-image: repeating-linear-gradient(90deg, rgba(178, 74, 60, .24) 0 10px, rgba(21, 15, 14, .2) 10px 20px);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand-logo {
    display: block;
    width: 124px;
    max-width: 34vw;
    height: auto;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .45));
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\25BE";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 1.1rem 1.15rem;
    color: rgba(255, 246, 239, .96) !important;
    outline: none;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
    transition: color .25s ease, background .25s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus {
    color: #FFFFFF !important;
}

.navbar .navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

.navbar.fixed-top {
    transition: background .45s ease, box-shadow .45s ease, backdrop-filter .45s ease;
    background: transparent !important;
    box-shadow: none;
}

.navbar.fixed-top:not(.bg-dark) .navbar-nav .nav-link,
.navbar.fixed-top:not(.bg-dark) .navbar-phone-cta .text-light,
.navbar.fixed-top:not(.bg-dark) .navbar-phone-cta small {
    text-shadow: 0 1px 3px rgba(0, 0, 0, .85), 0 0 14px rgba(0, 0, 0, .45);
}

.navbar.fixed-top.bg-dark {
    background-color: var(--dark) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.fixed-top.bg-dark .navbar-nav .nav-link {
    text-shadow: none;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .brand-logo {
        width: 118px;
    }

    .navbar .navbar-nav .nav-link {
        padding: .95rem 1rem;
        font-size: 1.12rem;
    }
}

@media (min-width: 992px) {
    .brand-logo {
        width: 142px;
        max-width: 28vw;
    }

    .navbar .navbar-nav {
        gap: .25rem;
    }

    .navbar .navbar-nav .nav-link {
        padding: 1.15rem 1.5rem;
        font-size: 1.12rem;
    }
}

@media (min-width: 1200px) {
    .brand-logo {
        width: 154px;
    }

    .navbar .navbar-nav {
        gap: .45rem;
    }

    .navbar .navbar-nav .nav-link {
        padding: 1.2rem 1.75rem;
        font-size: 1.15rem;
    }
}

@media (max-width: 991.98px) {
    .brand-mark {
        padding: 0;
    }

    .brand-logo {
        width: 108px;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        padding: .5rem 0 !important;
        border-top: 1px solid rgba(255, 255, 255, .22);
        background: rgba(21, 15, 14, .98);
    }

    .navbar .navbar-nav .nav-link {
        padding: .85rem .75rem;
        font-size: 1.08rem;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .navbar .navbar-nav .nav-link.active {
        color: var(--accent) !important;
        background: rgba(178, 74, 60, .16);
        border-left: 3px solid var(--accent);
        padding-left: calc(.75rem - 3px);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar-phone-cta {
    color: inherit;
    transition: transform .3s ease, opacity .3s ease;
}

.navbar-phone-cta:hover {
    color: inherit;
    transform: translateY(-2px);
}

.navbar-phone-cta .navbar-phone-icon {
    animation: phoneRing 1.35s ease-in-out infinite;
    transform-origin: center center;
}

.navbar-phone-cta:hover .navbar-phone-icon {
    border-color: var(--primary) !important;
}

.top-bar .topbar-phone,
.top-bar .topbar-whatsapp {
    color: var(--light);
    transition: color .3s ease, transform .3s ease;
}

.top-bar .topbar-phone:hover,
.top-bar .topbar-whatsapp:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.wow {
    visibility: hidden;
}

.wow.revealed,
.footer.wow,
.site-note.wow {
    visibility: visible;
}

.wow.revealed {
    animation: fadeInUp .8s ease both;
}

.footer.wow,
.site-note.wow {
    animation: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


/*** Header ***/
.header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(21, 15, 14, .88) 0%, rgba(21, 15, 14, .58) 48%, rgba(21, 15, 14, .2) 100%),
        repeating-linear-gradient(90deg, rgba(178, 74, 60, .2) 0 12px, rgba(0, 0, 0, .1) 12px 24px);
}

.header-carousel .owl-carousel-item {
    overflow: hidden;
    display: none;
    opacity: 0;
    transition: opacity .7s ease;
}

.header-carousel .owl-carousel-item.active {
    display: block;
    opacity: 1;
}

.header-carousel .owl-carousel-item img {
    animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero-kicker {
    color: var(--accent) !important;
    letter-spacing: 2px;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    margin: 0 10px 10px 0;
    padding: 8px 16px;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 40px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(3px);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 600px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 3.1rem;
        line-height: 1.08;
    }

    .hero-highlights span {
        padding: 7px 12px;
        font-size: 14px;
    }
}

.header-carousel .owl-nav,
.header-carousel-nav {
    position: relative;
    width: 80px;
    height: 80px;
    margin: -40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-carousel .owl-nav::before,
.header-carousel-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transform: rotate(45deg);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next,
.header-carousel-nav button {
    position: relative;
    border: 0;
    background: transparent;
    font-size: 40px;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover,
.header-carousel-nav button:hover {
    color: var(--dark);
}

.page-header {
    margin-bottom: 6rem;
    background:
        linear-gradient(rgba(21, 15, 14, .8), rgba(21, 15, 14, .75)),
        repeating-linear-gradient(90deg, rgba(178, 74, 60, .35) 0 12px, rgba(36, 19, 17, .35) 12px 24px),
        url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    background: repeating-linear-gradient(90deg, var(--primary) 0 12px, var(--stripe-dark) 12px 24px);
    border: 25px solid var(--light);
    border-radius: 6px;
    z-index: -1;
}

.img-twice img,
.product-item img,
.footer img {
    transition: transform .7s ease, filter .7s ease, box-shadow .7s ease;
}

.footer-brand {
    position: relative;
    align-items: center;
    max-width: 138px;
    padding: 8px 10px;
    margin-bottom: .75rem !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .01)),
        repeating-linear-gradient(90deg, rgba(178, 74, 60, .3) 0 8px, rgba(21, 15, 14, .9) 8px 16px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .24);
    transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}

.footer-brand::after {
    display: none;
}

.footer-brand img {
    position: relative;
    z-index: 1;
    width: 100%;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, .4));
}

.footer-brand:hover,
.footer-brand:focus {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .3);
    box-shadow: 0 22px 42px rgba(0, 0, 0, .4), 0 0 26px rgba(178, 74, 60, .3);
}

.footer-brand:hover::after,
.footer-brand:focus::after {
    display: none;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    margin-bottom: .4rem !important;
    font-size: .875rem;
    line-height: 1.5;
    text-align: left;
}

.footer-contact-item i {
    flex: 0 0 16px;
    width: 16px;
    margin-top: .2rem;
    text-align: center;
    color: var(--accent);
}

.footer-contact-item span,
.footer-contact-item a {
    flex: 1;
    min-width: 0;
    color: rgba(255, 246, 239, .92);
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.img-twice img {
    animation: imageFloat 7s ease-in-out infinite;
    box-shadow: 0 18px 36px rgba(21, 15, 14, .16);
}

.img-twice .align-self-end img {
    animation-delay: -2.2s;
}

.img-twice:hover img,
.product-item:hover img,
.footer img:hover {
    transform: scale(1.06);
    filter: saturate(1.15) contrast(1.04);
}


/*** Product ***/
.product-item {
    transition: .5s;
}

.product-item:hover {
    background: var(--primary) !important;
    box-shadow: 0 20px 40px rgba(21, 15, 14, .12);
}

.product-item:hover * {
    color: var(--light);
}

.product-item:hover .border-primary {
    border-color: var(--light) !important;
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 15, 14, .62);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .product-overlay {
    height: 100%;
    opacity: 1;
}

.product-section .product-grid {
    justify-content: center;
}

.product-section .product-grid > [class*="col-"] {
    display: flex;
}

.product-section .product-grid .product-item {
    width: 100%;
}

@media (min-width: 768px) {
    .product-section .product-grid > .col-md-6 {
        max-width: 420px;
    }
}

@media (min-width: 992px) {
    .product-section .product-grid > .col-lg-4 {
        max-width: 400px;
    }
}

.fact-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(178, 74, 60, .12);
    box-shadow: 0 14px 32px rgba(21, 15, 14, .06);
    transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}

.fact-item::after,
.contact-card::after,
.service-card::after,
.enquiry-panel::after {
    position: absolute;
    top: -60%;
    left: -90%;
    width: 45%;
    height: 220%;
    content: "";
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .42), transparent);
    transform: rotate(18deg);
    transition: left .75s ease;
    pointer-events: none;
}

.fact-item:hover,
.contact-card:hover,
.service-card:hover,
.enquiry-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(21, 15, 14, .12);
}

.fact-item:hover::after,
.contact-card:hover::after,
.service-card:hover::after,
.enquiry-panel:hover::after {
    left: 126%;
}

.service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(178, 74, 60, .16);
    background: #FFFFFF;
    box-shadow: 0 16px 34px rgba(21, 15, 14, .07);
    transition: transform .5s ease, box-shadow .5s ease, border-color .5s ease;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 22px 46px rgba(21, 15, 14, .12);
    transform: translateY(-8px);
}

.faq-section {
    background:
        linear-gradient(rgba(255, 246, 239, .9), rgba(255, 246, 239, .9)),
        repeating-linear-gradient(90deg, rgba(178, 74, 60, .12) 0 10px, rgba(21, 15, 14, .06) 10px 20px);
}

.faq-accordion {
    max-width: 920px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(178, 74, 60, .16);
    border-radius: 6px !important;
    box-shadow: 0 12px 28px rgba(21, 15, 14, .06);
}

.faq-item .accordion-button {
    color: var(--dark);
    font-weight: 700;
    letter-spacing: 0;
    background: #FFFFFF;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--primary), #7F241E);
}

.faq-item .accordion-button:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(178, 74, 60, .18);
}

.faq-item .accordion-body {
    color: var(--secondary);
    background: #FFFFFF;
}

.enquiry-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(21, 15, 14, .95), rgba(80, 28, 24, .92)),
        repeating-linear-gradient(90deg, rgba(178, 74, 60, .26) 0 10px, rgba(21, 15, 14, .2) 10px 20px);
}

.enquiry-section h2,
.enquiry-section h5,
.enquiry-section p {
    color: #FFFFFF;
}

.enquiry-section p {
    color: rgba(255, 255, 255, .78);
}

.enquiry-steps {
    display: grid;
    gap: 14px;
}

.enquiry-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    background: rgba(255, 255, 255, .07);
    animation: stepFloat 6s ease-in-out infinite;
}

.enquiry-step:nth-child(2) {
    animation-delay: -1.4s;
}

.enquiry-step:nth-child(3) {
    animation-delay: -2.8s;
}

.enquiry-step span {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 10px 24px rgba(178, 74, 60, .35);
    font-weight: 800;
}

.enquiry-step h5,
.enquiry-step p {
    margin: 0;
}

.enquiry-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 26px 55px rgba(0, 0, 0, .22);
    transition: transform .45s ease, box-shadow .45s ease;
}

.enquiry-section .enquiry-panel .form-control,
.enquiry-section .enquiry-panel .form-select,
.contact .enquiry-panel .form-control,
.contact .enquiry-panel .form-select,
.puffies-enquiry-form .form-control,
.puffies-enquiry-form .form-select {
    border: 1.5px solid #7A4E2D;
    background: #FFFCF8;
    box-shadow: none;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.puffies-enquiry-form .form-control:focus,
.puffies-enquiry-form .form-select:focus {
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(178, 74, 60, .14);
    outline: none;
}

.puffies-enquiry-form .form-floating > label {
    color: #7A4E2D;
    font-weight: 500;
}

.puffies-enquiry-form .form-floating > .form-control:focus ~ label,
.puffies-enquiry-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.puffies-enquiry-form .form-floating > .form-select ~ label,
.puffies-enquiry-form .form-floating > textarea.form-control ~ label {
    color: var(--primary);
}

.phone-link {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
}

.phone-link:hover {
    color: var(--primary);
}

.form-popup {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    visibility: hidden;
    opacity: 0;
    background: rgba(21, 15, 14, .68);
    backdrop-filter: blur(7px);
    transition: opacity .25s ease, visibility .25s ease;
}

.form-popup.show {
    visibility: visible;
    opacity: 1;
}

.form-popup-card {
    position: relative;
    width: min(430px, 100%);
    overflow: hidden;
    padding: 38px 30px 30px;
    color: var(--dark);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 246, 239, .96)),
        repeating-linear-gradient(90deg, rgba(178, 74, 60, .08) 0 10px, rgba(21, 15, 14, .04) 10px 20px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .38);
    text-align: center;
    transform: translateY(16px) scale(.96);
    transition: transform .28s ease;
}

.form-popup.show .form-popup-card {
    transform: translateY(0) scale(1);
}

.form-popup-card::before {
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    content: "";
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.form-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    color: var(--dark);
    border: 0;
    border-radius: 50%;
    background: rgba(21, 15, 14, .07);
    font-size: 24px;
    line-height: 1;
}

.form-popup-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #FFFFFF;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #7F241E);
    box-shadow: 0 18px 36px rgba(178, 74, 60, .28);
    animation: mapPinPulse 2.6s ease-in-out infinite;
}

.form-popup.success .form-popup-icon {
    background: linear-gradient(135deg, #20C865, #0A8F49);
}

.form-popup.error .form-popup-icon {
    background: linear-gradient(135deg, #B24A3C, #7F241E);
}

.form-popup.loading .form-popup-icon {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.form-popup h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-family: Georgia, "Times New Roman", serif;
}

.form-popup p {
    margin-bottom: 20px;
    color: var(--secondary);
}

.form-popup-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    color: #FFFFFF;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #7F241E);
    font-weight: 800;
    text-decoration: none;
}

.form-popup-call:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
}

.puffies-enquiry-form button[disabled] {
    cursor: wait;
    opacity: .78;
}


/*** Footer ***/
.footer {
    padding-top: 2rem !important;
    padding-bottom: 1.25rem !important;
}

.footer.my-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 0 !important;
}

.footer > .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.site-note {
    margin-top: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .row.g-5 {
    --site-gutter-y: 1.15rem;
    --site-gutter-x: 1.25rem;
    padding-left: 0;
    padding-right: 0;
    align-items: flex-start;
}

.footer h4.text-light {
    font-size: 1.02rem;
    margin-bottom: .75rem !important;
    letter-spacing: .02em;
}

.footer p.mb-2 {
    margin-bottom: .35rem !important;
    font-size: .875rem;
    line-height: 1.45;
}

.footer .d-flex.pt-2 {
    padding-top: .45rem !important;
}

.footer .row.g-2 {
    --site-gutter-y: .35rem;
    --site-gutter-x: .35rem;
}

.footer .row.g-2 img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    max-height: 68px;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 4px;
    padding: 0;
    text-align: left;
    color: rgba(255, 246, 239, .92);
    font-size: .875rem;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: ">";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.site-note {
    color: rgba(255, 246, 239, .9) !important;
    font-size: 13px;
    min-height: auto;
    display: block;
    padding-top: .85rem !important;
    padding-right: 1rem !important;
    padding-bottom: .85rem !important;
    padding-left: 1rem !important;
    text-align: center;
}

.site-note .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.site-note .row {
    justify-content: center;
    align-items: center;
    row-gap: .55rem;
    margin-left: 0;
    margin-right: 0;
}

.site-note .row > * {
    max-width: 100%;
    text-align: center !important;
    padding-left: .75rem;
    padding-right: .75rem;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.site-note-contact-line {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .35rem .55rem;
}

.site-note-separator {
    color: rgba(255, 246, 239, .55);
}

.footer-signature {
    color: #FFFFFF;
    font-weight: 800;
}

.site-note a,
.footer-note-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.site-note a:hover,
.footer-note-link:hover {
    color: var(--light);
}

.contact-card {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(178, 74, 60, .18);
    border-left: 4px solid var(--primary);
    background: #FFFFFF;
    box-shadow: 0 16px 35px rgba(21, 15, 14, .08);
    transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}

.map-showcase {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(21, 15, 14, .97), rgba(82, 30, 25, .93)),
        repeating-linear-gradient(90deg, rgba(178, 74, 60, .28) 0 10px, rgba(21, 15, 14, .22) 10px 20px);
    box-shadow: 0 28px 65px rgba(21, 15, 14, .22);
}

.map-story {
    flex: 0 0 42%;
    padding: 42px;
    color: rgba(255, 255, 255, .78);
}

.route-list {
    display: grid;
    gap: 10px;
}

.route-list span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 10px 14px;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    animation: routeGlow 4.5s ease-in-out infinite;
}

.route-list span:nth-child(2) {
    animation-delay: -1.5s;
}

.route-list span:nth-child(3) {
    animation-delay: -3s;
}

.map-card {
    position: relative;
    flex: 1 1 auto;
    min-height: 390px;
    margin: 18px;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, .9);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 22px 48px rgba(0, 0, 0, .3);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 390px;
    border: 0;
    filter: saturate(1.08) contrast(1.04);
}

.map-pin {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 14px 30px rgba(178, 74, 60, .35);
    animation: mapPinPulse 2s ease-in-out infinite;
}

.map-pin::after {
    position: absolute;
    inset: -10px;
    content: "";
    border: 2px solid rgba(178, 74, 60, .5);
    border-radius: inherit;
    animation: contactRing 2s ease-out infinite;
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(21, 15, 14, .94), rgba(83, 31, 26, .9)),
        repeating-linear-gradient(90deg, rgba(178, 74, 60, .32) 0 12px, rgba(21, 15, 14, .22) 12px 24px);
}

.error-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    background: rgba(21, 15, 14, .72);
    box-shadow: 0 34px 80px rgba(0, 0, 0, .35);
    backdrop-filter: blur(10px);
}

.error-shell::before {
    position: absolute;
    inset: 18px;
    content: "";
    border: 1px solid rgba(241, 200, 106, .24);
    border-radius: 8px;
    pointer-events: none;
}

.error-logo {
    width: 210px;
    max-width: 70%;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, .44));
    animation: logoFloat 4.8s ease-in-out infinite;
}

.error-code {
    color: rgba(255, 255, 255, .08);
    font-size: clamp(6rem, 18vw, 14rem);
    line-height: .8;
    font-weight: 900;
    letter-spacing: 0;
}

.error-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
}

.error-orbit {
    position: absolute;
    width: 140px;
    height: 140px;
    right: 8%;
    top: 10%;
    border: 1px solid rgba(241, 200, 106, .25);
    border-radius: 50%;
    animation: orbitSpin 8s linear infinite;
}

.error-orbit::after {
    position: absolute;
    top: 10px;
    left: 18px;
    width: 18px;
    height: 18px;
    content: "";
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 24px rgba(241, 200, 106, .5);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes orbitSpin {
    to {
        transform: rotate(360deg);
    }
}

.sticky-contact {
    position: fixed;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    pointer-events: none;
}

.sticky-contact-btn {
    position: relative;
    min-width: 164px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    overflow: visible;
    color: #FFFFFF !important;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .2);
    font-weight: 800;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .28);
    box-shadow: 1px 2px 5px 2px rgba(30, 30, 30, .3), 0 18px 42px rgba(21, 15, 14, .18);
    pointer-events: auto;
    animation: contactPop .55s ease-out;
    transition: transform .3s ease, box-shadow .3s ease, filter .3s ease, background .3s ease;
}

.sticky-contact-btn span,
.sticky-contact-btn i {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
}

.sticky-contact-btn:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
}

.sticky-contact-btn i {
    font-size: 21px;
}

.sticky-contact-btn .contact-heart {
    display: none;
}

.sticky-contact-btn.whatsapp {
    margin-left: auto;
    border-radius: 25px 30px 5px 25px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 12px 24px rgba(37, 211, 102, .22);
}

.sticky-contact-btn.call {
    margin-right: auto;
    border-radius: 30px 25px 25px 5px;
    background: linear-gradient(135deg, var(--primary), #7F241E);
    box-shadow: 0 12px 24px rgba(178, 74, 60, .24);
}

@keyframes contactPop {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.94);
    }

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

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes stepFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes routeGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(178, 74, 60, 0);
    }
    50% {
        box-shadow: 0 0 24px rgba(178, 74, 60, .26);
    }
}

@keyframes mapPinPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.04);
    }
}

@keyframes contactBreathe {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes phoneRing {
    0%, 58%, 100% {
        transform: rotate(0);
    }
    8% {
        transform: rotate(-16deg);
    }
    16% {
        transform: rotate(14deg);
    }
    24% {
        transform: rotate(-12deg);
    }
    32% {
        transform: rotate(10deg);
    }
    40% {
        transform: rotate(-8deg);
    }
    48% {
        transform: rotate(6deg);
    }
}

@keyframes phonePulse {
    0% {
        transform: scale(.9);
        opacity: .55;
    }
    100% {
        transform: scale(1.28);
        opacity: 0;
    }
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.05);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.08);
    }
    70% {
        transform: scale(1);
    }
}

@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.18);
    }
    55% {
        transform: scale(1);
    }
}

@keyframes heartFloat {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: .95;
    }
    50% {
        transform: scale(1.25) translateY(-3px);
        opacity: 1;
    }
}

@keyframes heartRing {
    0% {
        transform: scale(.92);
        opacity: .45;
    }
    100% {
        transform: scale(1.22);
        opacity: 0;
    }
}

@keyframes contactSweep {
    0%, 55% {
        left: -90%;
    }
    78%, 100% {
        left: 130%;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    }

    .my-6 {
        margin-top: 3rem;
        margin-bottom: 0;
    }

    .footer {
        padding-top: 1.35rem !important;
        padding-bottom: .85rem !important;
    }

    .footer.my-6 {
        margin-top: 1.75rem !important;
        margin-bottom: 0 !important;
    }

    .footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .footer .row.g-5 {
        --site-gutter-y: 1rem;
    }

    .footer .row.g-5 > .col-lg-3:last-child {
        display: none;
    }

    .footer .row.g-2 {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .site-note {
        padding-top: .95rem !important;
        padding-right: .85rem !important;
        padding-left: .85rem !important;
        padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px)) !important;
        font-size: 13px;
        line-height: 1.6;
    }

    .site-note .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0 !important;
    }

    .site-note .row {
        row-gap: .45rem;
    }

    .sticky-contact {
        left: max(12px, env(safe-area-inset-left, 0px));
        right: max(12px, env(safe-area-inset-right, 0px));
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        gap: 10px;
        z-index: 1001;
    }

    .sticky-contact-btn {
        width: 54px;
        min-width: 54px;
        height: 54px;
        min-height: 54px;
        padding: 0;
        border-radius: 50% !important;
        margin-left: 0;
        margin-right: 0;
        flex: 0 0 auto;
    }

    .sticky-contact-btn span {
        display: none;
    }

    .sticky-contact-btn i {
        padding: 0;
        font-size: 21px;
    }

    .sticky-contact-btn .contact-heart {
        top: -4px;
        right: -2px;
        font-size: 10px;
    }

    .sticky-contact-btn.call,
    .sticky-contact-btn.whatsapp {
        animation: none;
    }

    .back-to-top {
        right: max(12px, env(safe-area-inset-right, 0px));
        bottom: calc(78px + env(safe-area-inset-bottom, 0px));
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
        padding: 0;
        z-index: 1000;
    }

    .map-showcase {
        flex-direction: column;
    }

    .map-story {
        flex-basis: auto;
        padding: 24px;
    }

    .map-card {
        min-height: 280px;
    }

    .map-card iframe {
        min-height: 280px;
    }

    .hero-highlights span {
        display: flex;
        width: 100%;
        margin-right: 0;
        justify-content: center;
    }

    .navbar .navbar-collapse.show {
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .footer .row.g-5 > .col-lg-3:last-child {
        display: block;
    }

    .footer .row.g-5 > .col-md-6:nth-child(odd) {
        clear: left;
    }

    .footer .row.g-2 {
        max-width: 240px;
        margin-left: 0;
        margin-right: 0;
    }

    .site-note {
        padding-bottom: calc(6.75rem + env(safe-area-inset-bottom, 0px)) !important;
        font-size: 14px;
    }

    .sticky-contact-btn {
        width: 58px;
        min-width: 58px;
        height: 58px;
        min-height: 58px;
    }

    .back-to-top {
        bottom: calc(84px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 575.98px) {
    .site-note {
        font-size: 12px;
        padding-bottom: calc(6.75rem + env(safe-area-inset-bottom, 0px)) !important;
    }

    .site-note-contact-line {
        flex-direction: column;
        gap: .2rem;
    }

    .site-note-separator {
        display: none;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 2.45rem;
    }

    .page-header h1.display-4 {
        font-size: 2rem;
    }

    .contact-card {
        text-align: center;
    }

    .map-story .d-flex.flex-wrap.gap-3 {
        flex-direction: column;
    }

    .map-story .d-flex.flex-wrap.gap-3 .btn {
        width: 100%;
    }

    .footer .row.g-5 > .col-lg-3 {
        text-align: center;
    }

    .footer .row.g-2 {
        max-width: 240px;
    }

    .footer .btn.btn-link {
        text-align: center;
    }

    .footer .btn.btn-link::before {
        display: none;
    }

    .footer-brand {
        justify-content: center;
        width: 100%;
    }

    .footer-contact-item {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
