
/*--------------------------------------------------------------
Core site styles
--------------------------------------------------------------*/
body {
    --heading-font: 'Marcellus', serif;
    --heading-font-weight: 300;
    --heading-color: var(--bs-dark);
    --heading-line-height: 1.5;

    --swiper-theme-color: var(--bs-primary);

    --custom-easing: cubic-bezier(.17, .67, .83, .67);

    --background-color: #F3EBEB;

    --secondary-font: 'Licorice', cursive;

    /* bootstrap */
    --bs-body-font-family: 'Muli', sans-serif;
    --bs-body-font-size: 1.25rem;
    --bs-body-font-weight: 300;
    --bs-body-line-height: 1.7;
    --bs-body-color: #555555;
    --bs-body-color-rgb: 85, 85, 85;

    --bs-primary: var(--bs-dark);
    --bs-primary-dark: 155, 113, 80;
    --bs-secondary: #F3EBEB;
    --bs-black: #111;
    --bs-light: #F1F1F0;
    --bs-dark: #0554a8;
    --bs-blue: #5c9ce0;
    --bs-gray: #9aa1a7;
    --bs-gray-dark: #51565b;

    --bs-primary-rgb: 155, 113, 80;
    --bs-secondary-rgb: 235, 243, 252;
    --bs-black-rgb: 17, 17, 17;
    --bs-light-rgb: 241, 241, 240;
    --bs-dark-rgb: 33, 37, 41;

    --bs-link-color: var(--bs-dark);
    --bs-link-color-rgb: 17, 17, 17;
    --bs-link-decoration: underline;
    --bs-link-hover-color: var(--bs-primary);
    --bs-link-hover-color-rgb: 17, 17, 17;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--heading-font);
    font-weight: var(--heading-font-weight);
    color: var(--heading-color);
    line-height: var(--heading-line-height);
    text-transform: capitalize;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-out;
    color: inherit;
}

.secondary-heading {
    color: var(--bs-blue);
    font-family: 'Muli', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 1.3rem;
    line-height: var(--heading-line-height);
    letter-spacing: 0.3rem;
    text-transform: uppercase;
}

.secondary-font {
    font-family: var(--secondary-font);
    font-size: 8rem;
    text-transform: none;
}

.display-4.secondary-font {
    font-size: 4rem;
    line-height: 1;
    text-transform: none;
}

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

.padding-large {
    padding-top: 20rem;
}

.padding-medium {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.padding-medium-2 {
    padding-top: 14rem;
}

@media only screen and (max-width: 768px) {

    .secondary-font {
        font-size: 5rem;
    }

    .padding-large {
        padding-top: 18rem;
    }

    .padding-medium {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .padding-medium-2 {
        padding-top: 12rem;
    }
}

/* btn */
.btn {
    --bs-btn-border-radius: 0;
}

.btn-primary {
    border-radius: 0.325rem;
    text-transform: uppercase;
    transition: 0.3s ease-in;
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #694E38;
    --bs-btn-hover-border-color: #694E38;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-secondary);
    --bs-btn-active-border-color: var(--bs-secondary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}

/* breadcrumb */
.breadcrumb {
    --bs-breadcrumb-item-padding-x: 1em;
}

/* services grid */
.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    height: 100%;
    border: 1px solid rgba(5, 84, 168, 0.12);
    box-shadow: 0 18px 40px rgba(5, 84, 168, 0.08);
}

.service-card__image-link {
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(92, 156, 224, 0.16), rgba(243, 235, 235, 0.95));
}

.service-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-card__image--placeholder {
    min-height: 280px;
}

.service-card:hover .service-card__image {
    transform: scale(1.06);
}

.service-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
}

.service-card__title {
    margin-bottom: 0.9rem;
    font-size: 2rem;
    line-height: 1.2;
}

.service-card__subtitle {
    margin-bottom: 1.75rem;
}

.service-card__button {
    margin-top: auto;
}

@media only screen and (max-width: 768px) {
    .service-card__body {
        padding: 1.5rem;
    }

    .service-card__title {
        font-size: 1.7rem;
    }

    .service-card__image--placeholder {
        min-height: 220px;
    }
}

/* form control */
.form-control:focus {
    border-color: #ccc;
    box-shadow: 0 0 0 0.25rem rgba(200, 200, 200, .25);
}


/* - Hero section
--------------------------------------------------------------*/

#billboard {
    padding-top: 140px;
    overflow: hidden;
}

#billboard .text-content {
    position: absolute;
    left: calc(-58vw / 2);
    top: 20vh;
    z-index: 2;
}


.bannerimg h1 {
    background-color: #ffffffcc;
    max-width: 930px;
    padding-right: 30px;
}

.hero-switcher {
    position: relative;
    width: 100%;
    overflow: hidden;
    overflow: clip;
    isolation: isolate;
}

.hero-switcher::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 55%);
    mix-blend-mode: screen;
    pointer-events: none;
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"] {
    transform: translateY(32px);
}

[data-aos="fade-left"] {
    transform: translateX(32px);
}

[data-aos="fade-right"] {
    transform: translateX(-32px);
}

[data-aos].aos-ready {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.hero-slide {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
    transform: scale(1.08);
    filter: saturate(1.05);
    will-change: opacity, transform, filter;
}

.hero-slide-1 {
    position: relative;
    z-index: 1;
    animation: heroFadeA 11s cubic-bezier(.45, .05, .55, .95) infinite;
}

.hero-slide-2 {
    position: absolute;
    inset: 0;
    z-index: 2;
    height: 100%;
    object-fit: cover;
    animation: heroFadeB 11s cubic-bezier(.45, .05, .55, .95) infinite;
}

@keyframes heroFadeA {
    0% { opacity: 1; transform: scale(1.02); filter: saturate(1); }
    40% { opacity: 1; transform: scale(1.1); filter: saturate(1.08); }
    50% { opacity: 0; transform: scale(1.14); filter: saturate(1.12); }
    90% { opacity: 0; transform: scale(1.02); filter: saturate(1); }
    100% { opacity: 1; transform: scale(1.02); filter: saturate(1); }
}

@keyframes heroFadeB {
    0% { opacity: 0; transform: scale(1.14); filter: saturate(1.12); }
    40% { opacity: 0; transform: scale(1.02); filter: saturate(1); }
    50% { opacity: 1; transform: scale(1.02); filter: saturate(1); }
    90% { opacity: 1; transform: scale(1.1); filter: saturate(1.08); }
    100% { opacity: 0; transform: scale(1.14); filter: saturate(1.12); }
}

.billboard-section {
    width: 50%;
    max-width: 50%;
}
.billboard-section p{
   font-size: 24px;
}

/* button border */
a.border-animation {
    color: var(--bs-black);
    display: inline-table;
    font-style: normal;
    font-weight: 400;
    line-height: 2.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

a.border-animation:after {
    content: "";
    display: block;
    border-bottom: 1px solid var(--bs-black);
    width: 100%;
    transition: width 0.2s ease-out;
}

a.border-animation:hover:after {
    width: 80%;
}

@media screen and (max-width:767px) {
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        transform: translateY(32px);
    }

    #billboard {
        padding-top: 110px;
    }

    #billboard .text-content {
        position: relative;
        left: 0;
        top: 0;
        margin-top: 130px;
        margin-bottom: 40px;
    }

    .billboard-section {
        width: 100%;
    }
}


/* - Testimonial Section
--------------------------------------------------------------*/

.testimonial-heading {
    margin-bottom: 3rem;
}

.testimonial-card {
    overflow: hidden;
}

.testimonial-card__content {
    display: flex;
    align-items: center;
    min-height: 100%;
}

.testimonial-card__image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.testimonial-card .review p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-card .name {
    margin-bottom: 0.75rem;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(var(--bs-dark-rgb), 0.35);
    opacity: 1;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background-color: var(--bs-dark);
}

.contact-banner-shell {
    background: url(../img/contact_banner_shell.png) no-repeat;
    /* min-height: 740px; */
}

.contact-page-hero {
    background:
        linear-gradient(rgba(243, 235, 235, 0.28), rgba(243, 235, 235, 0.28)),
        url("../img/hero_image_02.jpg") center/cover no-repeat;
    height: 716px;
}

.appointment-booking {
    background: linear-gradient(180deg, #fff 0%, rgba(var(--bs-secondary-rgb), 0.5) 100%);
}

.appointment-booking__panel {
    padding: 2rem;
    border: 1px solid rgba(5, 84, 168, 0.12);
    border-radius: 0.5rem;
    background: #fff;
    box-shadow: 0 24px 60px rgba(5, 84, 168, 0.08);
}

.appointment-booking__notes {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.appointment-booking__note {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    border-left: 3px solid var(--bs-blue);
    background: #fff;
    font-size: 1.05rem;
    line-height: 1.5;
}

.appointment-booking__note i {
    color: var(--bs-dark);
    line-height: 1;
}

.appointment-form .form-label {
    font-weight: 600;
    color: var(--bs-dark);
}

.appointment-choice-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.appointment-choice {
    position: relative;
    display: block;
    cursor: pointer;
}

.appointment-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.appointment-choice span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 58px;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(5, 84, 168, 0.18);
    border-radius: 0.375rem;
    background: #fff;
    color: var(--bs-dark);
    font-weight: 600;
    line-height: 1.2;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.appointment-choice input:focus-visible + span,
.appointment-choice input:checked + span {
    border-color: var(--bs-dark);
    background: rgba(var(--bs-secondary-rgb), 0.75);
    box-shadow: 0 0 0 0.2rem rgba(5, 84, 168, 0.12);
}

.booking-date-input--enhanced {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0 !important;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.booking-time-input--enhanced {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0 !important;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.booking-calendar {
    padding: 0.9rem;
    border: 1px solid rgba(5, 84, 168, 0.14);
    border-radius: 0.5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--bs-secondary-rgb), 0.16)),
        #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.booking-calendar__header {
    display: grid;
    grid-template-columns: 2.15rem minmax(0, 1fr) 2.15rem;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.65rem;
}

.booking-calendar__title {
    color: var(--bs-dark);
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.booking-calendar__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border: 1px solid rgba(5, 84, 168, 0.15);
    border-radius: 999px;
    background: #fff;
    color: var(--bs-dark);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.booking-calendar__nav:hover:not(:disabled),
.booking-calendar__nav:focus-visible {
    border-color: var(--bs-dark);
    background: rgba(var(--bs-secondary-rgb), 0.8);
    box-shadow: 0 0 0 0.2rem rgba(5, 84, 168, 0.1);
    outline: 0;
}

.booking-calendar__nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.booking-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.28rem;
}

.booking-calendar__weekday {
    min-height: 1.35rem;
    color: rgba(33, 37, 41, 0.62);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.35rem;
    text-align: center;
}

.booking-calendar__day {
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 2.85rem;
    padding: 0.28rem 0.16rem 0.22rem;
    border: 1px solid rgba(33, 37, 41, 0.08);
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.64);
    color: rgba(33, 37, 41, 0.34);
    line-height: 1;
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.booking-calendar__day:disabled {
    cursor: not-allowed;
}

.booking-calendar__day--muted {
    visibility: hidden;
}

.booking-calendar__day-number {
    display: block;
    align-self: end;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
}

.booking-calendar__day--available {
    border-color: rgba(5, 84, 168, 0.24);
    background: #fff;
    color: var(--bs-dark);
    cursor: pointer;
}

.booking-calendar__day--available:hover,
.booking-calendar__day--available:focus-visible {
    z-index: 1;
    border-color: var(--bs-blue);
    background: rgba(var(--bs-secondary-rgb), 0.85);
    box-shadow: 0 10px 24px rgba(5, 84, 168, 0.14);
    color: var(--bs-dark);
    outline: 0;
    transform: translateY(-1px);
}

.booking-calendar__day--selected,
.booking-calendar__day--selected:hover,
.booking-calendar__day--selected:focus-visible {
    border-color: var(--bs-dark);
    background: var(--bs-dark);
    color: #fff;
    box-shadow: 0 10px 24px rgba(33, 37, 41, 0.18);
}

.booking-calendar__slot-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: start;
    min-width: 1.65rem;
    height: 0.85rem;
    margin-top: 0.16rem;
    padding: 0 0.24rem;
    border-radius: 999px;
    background: rgba(5, 84, 168, 0.1);
    color: var(--bs-blue);
    font-size: 0.54rem;
    font-weight: 700;
    line-height: 1;
}

.booking-calendar__day--selected .booking-calendar__slot-count {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.booking-time-options {
    display: grid;
    gap: 0.55rem;
}

.booking-time-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.2rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(5, 84, 168, 0.18);
    border-radius: 0.375rem;
    background: #fff;
    color: var(--bs-dark);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.booking-time-option:hover,
.booking-time-option:focus-visible {
    border-color: var(--bs-blue);
    background: rgba(var(--bs-secondary-rgb), 0.85);
    box-shadow: 0 10px 24px rgba(5, 84, 168, 0.12);
    outline: 0;
    transform: translateY(-1px);
}

.booking-time-option--selected,
.booking-time-option--selected:hover,
.booking-time-option--selected:focus-visible {
    border-color: var(--bs-dark);
    background: var(--bs-dark);
    color: #fff;
    box-shadow: 0 10px 24px rgba(33, 37, 41, 0.16);
}

.booking-time-options--invalid .booking-time-option {
    border-color: rgba(220, 53, 69, 0.45);
}

.booking-time-options__empty {
    display: flex;
    align-items: center;
    min-height: 3.2rem;
    margin: 0;
    padding: 0.85rem 1rem;
    border: 1px dashed rgba(5, 84, 168, 0.22);
    border-radius: 0.375rem;
    background: rgba(var(--bs-secondary-rgb), 0.22);
    color: rgba(33, 37, 41, 0.68);
    font-size: 0.95rem;
    line-height: 1.45;
}

.booking-time-feedback {
    margin-top: 0.45rem;
    color: #dc3545;
    font-size: 0.88rem;
    line-height: 1.35;
}

.footer-logo {
    width: 100%;
    max-width: 180px;
}

.section-feature-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

@media screen and (max-width:991px) {
    .testimonial-card__image {
        min-height: 320px;
    }

    .testimonial-card .review p {
        font-size: 1.1rem;
    }
}


/* - Footer Section
--------------------------------------------------------------*/
svg.color {
    color: #111111;
    transition: 0.3s ease;

}

svg.color:hover {
    color: var(--bs-primary);
}

a.nav-link:hover {
    color: var(--bs-primary);

}

#site-navigation .nav-link--button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 1.25rem;
    border: 1px solid var(--bs-primary);
    border-radius: 0.325rem;
    background: var(--bs-primary);
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.2;
    text-transform: uppercase;
}

#site-navigation .nav-link--button:hover,
#site-navigation .nav-link--button.active {
    border-color: #694E38;
    background: #694E38;
    color: #fff;
}

#header {
    transition: background-color 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

#header.is-scrolled {
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar-toggler {
    border-color: rgba(5, 84, 168, 0.22);
    border-radius: 0.325rem;
    padding: 0.55rem 0.7rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(5, 84, 168, 0.18);
}

.navbar-toggler-icon {
    width: 1.35em;
    height: 1.35em;
}

@media screen and (max-width: 767px) {
    #header {
        background-color: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    #header .container {
        align-items: center;
    }

    #site-navigation {
        flex-basis: 100%;
    }

    #site-navigation .navbar-nav {
        gap: 0;
        padding: 1.25rem 0 0.25rem;
    }

    #site-navigation .nav-link {
        padding: 0.65rem 0;
        font-size: 1.05rem;
    }

    #site-navigation .nav-link--button {
        width: 100%;
        margin-top: 0.5rem;
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }
}


/*--------------------------------------------------------------
Pagination
--------------------------------------------------------------*/
.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: 0;
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: 0;
    --bs-pagination-hover-color: var(--bs-link-color);
    --bs-pagination-hover-bg: var(--bs-secondary);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--bs-link-color);
    --bs-pagination-focus-bg: var(--bs-secondary);
    --bs-pagination-focus-box-shadow: none;
    --bs-pagination-active-color: var(--bs-link-color);
    --bs-pagination-active-bg: var(--bs-secondary);
    --bs-pagination-active-border-color: var(--bs-secondary);
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}
.navbar-brand {
    max-width: 160px;
}
.navbar-brand img{
    max-width: 100%;
    width: 100%;
}


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

.post-wrap .container {
    max-width: 960px;
}

.basic-page-body a {
    color: var(--bs-blue);
    text-decoration: underline;
}

.basic-page-body a:hover,
.basic-page-body a:focus {
    color: var(--bs-dark);
}

.service-details {
    background: var(--bs-light);
}

.service-details__eyebrow {
    margin-bottom: 2rem;
    color: var(--bs-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.service-details__lead {
    margin: 1.5rem auto 0;
    max-width: 760px;
    font-size: 1.15rem;
    line-height: 1.9;
}

.service-benefits {
    margin-top: 4rem;
}

.service-benefit {
    height: 100%;
    padding: 2.25rem;
    background: #fff;
}

.service-benefit__number {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--bs-primary);
    font-family: var(--heading-font);
    font-size: 2rem;
}

.service-benefit h3 {
    margin-bottom: 1rem;
}

.service-benefit p {
    margin-bottom: 0;
}

.service-process h2 {
    margin-bottom: 2rem;
}

.service-process__list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: service-step;
}

.service-process__list li {
    position: relative;
    padding: 0 0 2rem 4.5rem;
    counter-increment: service-step;
}

.service-process__list li:not(:last-child) {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.service-process__list li::before {
    content: "0" counter(service-step);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--bs-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.service-process__list strong,
.service-process__list span {
    display: block;
}

.service-process__list strong {
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
}

.service-process__list span {
    line-height: 1.8;
}

.service-closing {
    padding-bottom: 7rem;
}

.service-closing__box {
    --bs-bg-opacity: 1;
    padding: 4.5rem 2rem;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.service-closing__box p {
    margin: 1.25rem auto 2rem;
    max-width: 620px;
    font-size: 1.1rem;
}

.service-inquiry-form {
    max-width: 900px;
    border-radius: 1rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.service-inquiry-form .form-label {
    font-weight: 600;
    color: var(--bs-dark);
}

.survey-multiselect {
    position: relative;
}

.survey-multiselect__toggle {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: #fff;
}

.survey-multiselect__value {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: var(--bs-body-color);
}

.survey-multiselect__tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(5, 84, 168, 0.16);
    border-radius: 999px;
    background: rgba(var(--bs-secondary-rgb), 0.6);
    font-size: 0.95rem;
    line-height: 1.2;
}

.survey-multiselect__caret {
    flex-shrink: 0;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--bs-primary);
}

.survey-multiselect__panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    z-index: 20;
    padding: 1rem;
    border: 1px solid rgba(5, 84, 168, 0.12);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    display: none;
}

.survey-multiselect.is-open .survey-multiselect__panel {
    display: block;
}

.survey-multiselect__search-wrap {
    margin-bottom: 0.75rem;
}

.survey-multiselect__options {
    display: grid;
    gap: 0.5rem;
    max-height: 280px;
    overflow-y: auto;
}

.survey-multiselect__option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.25rem;
    cursor: pointer;
}

.survey-multiselect__option input {
    margin: 0;
}

.survey-booking-summary {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--bs-blue);
    background: rgba(var(--bs-secondary-rgb), 0.55);
    color: var(--bs-dark);
}

.survey-booking-summary span {
    color: var(--bs-body-color);
    font-size: 1rem;
    line-height: 1.45;
}

@media screen and (max-width: 767px) {
    .service-benefits {
        margin-top: 2.5rem;
    }

    .service-benefit {
        padding: 1.75rem;
    }

    .service-process__list li {
        padding-left: 3rem;
    }

    .service-closing {
        padding-bottom: 4rem;
    }

    .service-closing__box {
        padding: 3rem 1.5rem;
    }
}


.service-layout__image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    margin-bottom: -200px;
}

.service-details {
    position: relative;
    z-index: 1;
    padding-top: calc(6rem + 100px);
}

.service-details--extended {
    padding-top: 10rem;
}

@media screen and (max-width: 767px) {
    .service-layout__image {
        margin-bottom: -40px;
    }

    .service-details {
        padding-top: calc(4rem + 40px);
    }

    .service-details--extended {
        padding-top: 0;
    }
}


.whatnow-list {
    margin-top: 3rem;
}

.whatnow-item {
    margin-bottom: 4rem;
    padding: 4rem;
}

.whatnow-item__image-link {
    display: block;
}

.whatnow-item__image {
    width: 100%;
    display: block;
}

.whatnow-item__image--placeholder {
    min-height: 420px;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.whatnow-item__panel-wrap {
    position: relative;
    z-index: 3;
}

.whatnow-item__panel {
    --bs-bg-opacity: 1;
    position: relative;
    z-index: 2;
    margin-left: -150px;
    padding: 4rem;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.whatnow-item--reverse .whatnow-item__panel {
    margin-left: 0;
    margin-right: -150px;
}

.whatnow-item__panel h2 {
    margin-bottom: 1rem;
}

.whatnow-item__panel p {
    font-size: 1.1rem;
    line-height: 1.8;
}

@media screen and (max-width: 991px) {
    .whatnow-item {
        margin-bottom: 2rem;
    }

    .whatnow-item__panel,
    .whatnow-item--reverse .whatnow-item__panel {
        margin: -2rem 1rem 0;
        padding: 2rem;
    }

    .whatnow-item--reverse {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 767px) {
    html,
    body {
        overflow-x: hidden;
    }

    body {
        --bs-body-font-size: 1rem;
        --bs-body-line-height: 1.6;
    }

    .container {
        max-width: 100%;
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .display-1.secondary-font {
        font-size: clamp(4.1rem, 19vw, 5rem);
        line-height: 1.4;
    }

    .display-3 {
        font-size: clamp(2.15rem, 11vw, 3rem);
        line-height: 1.12;
    }

    .secondary-heading {
        font-size: 0.78rem;
        line-height: 1.55;
        letter-spacing: 0.12rem;
    }

    .padding-medium {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .btn {
        white-space: normal;
    }

    .btn-primary {
        width: 100%;
        padding-right: 1rem !important;
        padding-left: 1rem !important;
        font-size: 0.78rem;
        line-height: 1.45;
    }

    #billboard {
        padding-top: 98px;
        padding-bottom: 2.25rem;
    }

    #billboard .text-content {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .bannerimg {
        margin-bottom: 0;
    }

    .bannerimg h1 {
        max-width: 100%;
        padding-right: 0;
        background-color: transparent;
    }

    .billboard-section {
        width: 100%;
        max-width: 100%;
    }

    .billboard-section p {
        max-width: 32rem;
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-switcher {
        margin-top: 1.5rem;
        aspect-ratio: 4 / 5;
    }

    .hero-slide,
    .hero-slide-2 {
        height: 100%;
        object-fit: cover;
    }

    #whatnow {
        padding-top: 2.25rem;
    }

    .whatnow-list {
        margin-top: 1.5rem;
    }

    .whatnow-item {
        margin-bottom: 2.5rem;
        padding: 0;
    }

    .whatnow-item--reverse {
        flex-direction: column;
    }

    .whatnow-item__image {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    .whatnow-item__panel,
    .whatnow-item--reverse .whatnow-item__panel {
        margin: -1rem 0.75rem 0;
        padding: 1.35rem;
    }

    .whatnow-item__panel h2 {
        margin-bottom: 0.65rem;
        font-size: 1.45rem;
        line-height: 1.2;
    }

    .whatnow-item__panel p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    #whatnow .pt-4 {
        padding-top: 0.5rem !important;
    }

    #about .container {
        padding-right: 1.25rem !important;
        padding-left: 1.25rem !important;
    }

    #about .row {
        padding: 1.5rem !important;
    }

    #about img {
        width: 100%;
        max-height: 420px;
        object-fit: cover;
        object-position: top center;
    }

    #about .text-content {
        padding-left: 0 !important;
    }

    #posts .row {
        --bs-gutter-x: 0;
    }

    .section-feature-image {
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    #posts .col-md-6.ps-md-5 {
        margin-top: 1.5rem !important;
        padding-left: 0 !important;
    }

    #posts .mb-5 {
        margin-bottom: 1.75rem !important;
    }

    #posts h3 {
        font-size: 1.25rem;
        line-height: 1.35;
    }

    .testimonial-heading {
        margin-bottom: 1.5rem;
    }

    .testimonial-card__image {
        min-height: 260px;
        max-height: 320px;
    }

    .testimonial-card__content {
        min-height: auto;
    }

    .testimonial-card .review p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    #subscribe .container {
        padding-right: 1.25rem !important;
        padding-left: 1.25rem !important;
    }

    #subscribe .row {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    #subscribe .ps-md-5 {
        padding-left: 0 !important;
    }

    .contact-banner-shell {
        background-size: cover;
        background-position: center top;
    }

    #contact .row.padding-large {
        padding-top: 4rem;
    }

    #contact .bg-white {
        padding: 1.5rem !important;
    }

    .appointment-booking__panel {
        padding: 1.25rem;
    }

    .appointment-choice-group {
        grid-template-columns: 1fr;
    }

    .appointment-booking__note {
        font-size: 0.98rem;
    }
}

/* Consent plugin */
.consent-plugin {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1080;
    pointer-events: none;
}

.consent-plugin[hidden],
.consent-plugin__banner[hidden],
.consent-plugin__panel[hidden],
.consent-plugin__floating[hidden] {
    display: none;
}

.consent-plugin a {
    color: var(--bs-dark);
    font-weight: 600;
    text-decoration: underline;
}

.consent-plugin__banner,
.consent-plugin__panel-inner {
    pointer-events: auto;
    max-width: 980px;
    margin-left: auto;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid rgba(5, 84, 168, 0.14);
    box-shadow: 0 22px 60px rgba(17, 17, 17, 0.18);
}

.consent-plugin__banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.consent-plugin__copy {
    flex: 1;
}

.consent-plugin__title {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.2;
    text-transform: none;
}

.consent-plugin p {
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.6;
}

.consent-plugin__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.consent-plugin__button {
    min-width: 140px;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
    font-size: 0.85rem;
}

.btn-outline-primary.consent-plugin__button {
    --bs-btn-color: var(--bs-dark);
    --bs-btn-border-color: rgba(5, 84, 168, 0.28);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bs-dark);
    --bs-btn-hover-border-color: var(--bs-dark);
}

.consent-plugin__panel {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(17, 17, 17, 0.35);
    pointer-events: auto;
}

.consent-plugin__panel-inner {
    width: min(680px, 100%);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    margin: 0;
}

.consent-plugin__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(5, 84, 168, 0.12);
    background: rgba(var(--bs-secondary-rgb), 0.35);
}

.consent-plugin__option strong,
.consent-plugin__option span {
    display: block;
}

.consent-plugin__option p,
.consent-plugin__option span span {
    margin-top: 0.25rem;
    font-size: 0.92rem;
    line-height: 1.5;
}

.consent-plugin__option input {
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 auto;
    accent-color: var(--bs-dark);
}

.consent-plugin__required {
    flex: 0 0 auto;
    color: var(--bs-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.consent-plugin__notice {
    margin-top: 1.25rem;
}

.consent-plugin__actions--panel {
    margin-top: 1.5rem;
}

.consent-plugin__floating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    width: 3.25rem;
    height: 3.25rem;
    margin-left: auto;
    padding: 0;
    color: #fff;
    font-size: 1.55rem;
    background: var(--bs-dark);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 14px 36px rgba(17, 17, 17, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.consent-plugin__floating:hover {
    background: var(--bs-blue);
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.24);
}

.consent-plugin__floating:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(5, 84, 168, 0.22), 0 14px 36px rgba(17, 17, 17, 0.2);
}

@media screen and (max-width: 767px) {
    .booking-calendar {
        padding: 0.7rem;
    }

    .booking-calendar__header {
        grid-template-columns: 2rem minmax(0, 1fr) 2rem;
        gap: 0.5rem;
    }

    .booking-calendar__nav {
        width: 2rem;
        height: 2rem;
    }

    .booking-calendar__title {
        font-size: 0.96rem;
    }

    .booking-calendar__grid {
        gap: 0.25rem;
    }

    .booking-calendar__day {
        min-height: 2.55rem;
        padding: 0.22rem 0.08rem 0.18rem;
        border-radius: 0.3rem;
    }

    .booking-calendar__day-number {
        font-size: 0.82rem;
    }

    .booking-calendar__slot-count {
        min-width: 1.35rem;
        height: 0.74rem;
        margin-top: 0.12rem;
        font-size: 0.48rem;
    }

    .consent-plugin {
        right: 0;
        bottom: 0;
        left: 0;
    }

    .consent-plugin__banner {
        display: block;
        max-width: none;
        padding: 1.25rem;
    }

    .consent-plugin__actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 1rem;
    }

    .consent-plugin__button {
        width: 100%;
    }

    .consent-plugin__option {
        align-items: flex-start;
    }

    .consent-plugin__floating {
        margin-right: 1rem;
        margin-bottom: 1rem;
    }
}
