@font-face {
    font-family: 'SVN-Aptima';
    src: url('../fonts/SVN-Aptima.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.custom-header {
    position: fixed;
    background-color: #E2DDD5;
    border-bottom: 1px solid #685951;
    padding: 0;
    /* position: relative; */
    z-index: 100;
    width: 100%;
}

.custom-header .navbar {
    padding-top: 5px;
    padding-bottom: 5px;
    min-height: auto;
}

.header-logo img {
    height: 60px;
    width: auto;
}

.nav-custom {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* .navbar-brand img {
    height: 70px;
    width: auto;
} */

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-custom .nav-link {
    color: #685951 !important;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 15px;
    transition: all 0.2s ease;
}

.nav-custom .nav-link.active,
.nav-custom .nav-link:hover {
    font-weight: 700;
    opacity: 0.8;
}

.nav-custom a {
    margin-right: 10px;
    text-decoration: none;
    color: #685951;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.nav-custom a.active {
    font-weight: 700;
}

.nav-custom a:hover {
    opacity: 0.7;
}

.btn-book {
    background-color: #685951;
    color: #E2DDD5;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-book:hover {
    background-color: #50443d;
    color: #fff;
}

.hero-section {
    padding: 120px 0 0 0;
    position: relative;
    overflow: hidden;
    background-color: #E2DDD5;
    background-image:
        linear-gradient(rgba(226, 221, 213, 0.5), rgba(226, 221, 213, 0.5)),
        url('../images/background1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-blend-mode: overlay; */
}

.hero-title {
    font-family: 'SVN-Aptima', serif;
    font-weight: 400;
    color: #685951;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-description {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    color: #685951;
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.hero-btn {
    padding: 15px 45px;
    font-size: 15px;
}

.hero-image-container {
    display: inline-block;
    position: relative;
    z-index: 10;
    margin-top: 20px;
    margin-bottom: 0;
    vertical-align: bottom;
    width: 100%;
    max-width: 450px;
}

.hero-img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px 30px 0 0;
    border: 3px solid #685951;
    border-bottom: none;

    display: block;
    position: relative;
    z-index: 2;
    background-color: #E2DDD5;
}

.img-shadow {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: #B4A399;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.decor-curve {
    position: absolute;
    width: 100%;
    max-width: 1600px;
    height: auto;
    opacity: 0.8;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
}

.decor-star {
    position: absolute;
    width: 30px;
    height: auto;
    color: #685951;
    z-index: 2;
}

.star-1 {
    left: 158px;
    bottom: 260px;
    width: 30px;
}

.star-2 {
    right: 11%;
    bottom: 430px;
    width: 35px;
}

.star-3 {
    right: 25%;
    bottom: 25%;
    width: 25px;
}

.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    font-family: 'SVN-Aptima', serif;
    font-size: 3rem;
    color: #685951;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    color: #685951;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

.btn-learn-more {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #685951;
    border-radius: 50px;
    color: #685951;
    text-decoration: none;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-learn-more:hover {
    background-color: #685951;
    color: #fff;
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
    padding-right: 40px;
}

.about-img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px 30px 0 0;
    display: block;
    position: relative;
    z-index: 1;
}

.about-decor-line {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 85%;
    width: auto;
    z-index: 0;
}

.about-star {
    position: absolute;
    width: 35px;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    right: -17px;
    z-index: 2;
    background-color: #fff;
    border-radius: 50%;
    padding: 2px;
}

.services-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #E2DDD5;
    background-image:
        linear-gradient(rgba(226, 221, 213, 0.5), rgba(226, 221, 213, 0.5)),
        url('../images/background1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-blend-mode: overlay; */
}

.slider-wrapper {
    display: flex;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
}

.content-col {
    flex: 1 !important;
    width: 0 !important;
    min-width: 0;
    padding: 0 10px !important;
    overflow: hidden;
}

.slider-row {
    display: flex;
    flex-wrap: nowrap !important;
    width: 100%;
    margin: 0 !important;
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
}

.service-col {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    width: 33.3333%;
    padding: 0 10px;
    margin-bottom: 0 !important;
    box-sizing: border-box;
}

.service-item {
    transition: transform 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 25px;
    margin-bottom: 20px;
    display: block;
    box-shadow: 0 5px 15px rgba(104, 89, 81, 0.1);
}

.service-name {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    color: #685951;
    font-weight: 400;
    margin: 0;
    min-height: 27px;
}

.arrow-col {
    flex: 0 0 50px !important;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #685951;
    background: transparent;
    color: #685951;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.slider-arrow:hover {
    background-color: #685951;
    color: #fff;
}

.service-decor {
    position: absolute;
    bottom: -50px;
    left: -50px;
    z-index: 1;
    pointer-events: none;
}

.service-curve {
    width: 330px;
    height: auto;
    opacity: 0.6;
}

.arrow-active,
.slider-arrow:active {
    background-color: #685951 !important;
    color: #fff !important;
    transform: scale(0.9);
}

.appointment-section {
    padding: 80px 0;
    background-color: #E2DDD5;
    background-image:
        linear-gradient(rgba(226, 221, 213, 0.5), rgba(226, 221, 213, 0.5)),
        url('../images/background1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.appointment-title {
    font-family: 'SVN-Aptima', serif;
    font-size: 3rem;
    color: #685951;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

.appointment-desc {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    color: #685951;
    margin-bottom: 40px;
}

.appointment-btn {
    padding: 15px 40px;
    font-size: 16px;
}

.appointment-img {
    width: 100%;
    max-width: 500px;
    display: block;
}

.contact-section {
    padding: 80px 0;
    background-color: #E2DDD5;
    background-image:
        linear-gradient(rgba(226, 221, 213, 0.5), rgba(226, 221, 213, 0.5)),
        url('../images/background1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-blend-mode: overlay; */
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(104, 89, 81, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.custom-input {
    background-color: transparent;
    border: 1px solid #685951;
    border-radius: 10px;
    padding: 15px 20px;
    color: #685951;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    width: 100%;
}

.custom-input::placeholder {
    color: #727272;
    opacity: 1;
}

.custom-input:focus {
    background-color: transparent;
    border-color: #50443d;
    border-width: 2px;
    color: #685951;
    outline: none;
}

.custom-footer {
    background-color: #685951;
    color: #E2DDD5;
    padding-top: 30px;
    font-family: 'Urbanist', sans-serif;
}

.footer-logo img {
    width: 220px;
    height: auto;
}

.footer-heading {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: #E2DDD5;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #F5E6B8;
    text-decoration: none;
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    color: #e0e0e0;
}

.footer-hours li {
    margin-bottom: 10px;
}

.footer-bottom {
    background-color: #5d4f48;
    background-color: #685951;
    border-top: 2px solid #E2DDD5;
    padding: 20px 0;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 300;
    color: #ccc;
}

.footer-bottom-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: #fff;
}

.reveal-item {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s ease-out;
    visibility: hidden;
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.reveal-item:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-item:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-item:nth-child(3) {
    transition-delay: 0.3s;
}

.services-dropdown {
    position: relative;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-link i.bx-chevron-down {
    transition: transform 0.35s ease;
    transform-origin: center;
}

.services-dropdown:hover .service-link i.bx-chevron-down {
    transform: rotate(180deg);
}

.services-mega {
    top: calc(100% + 18px);
    position: absolute;
    /* top: 100%; */
    left: 50%;
    transform: translateX(-50%);
    width: 850px;
    background: #f7f4ef;
    padding: 35px 50px;
    display: none;
    gap: 120px;
    z-index: 999;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.services-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}

.services-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 25px;
}

.services-col a {
    color: #6b5c4d;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.6px;
    white-space: nowrap;
    position: relative;
    padding-bottom: 6px;
}

.services-col a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #6b5c4d;
    transition: width 0.9s ease;
}

.services-col a:hover::after {
    width: 100%;
}

.services-col a:hover {
    color: #000;
}

.services-mega .services-col a.view-all-link {
    font-weight: 700;
    font-size: 20px;
    color: #6b5c4d;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
    transform-origin: left center;
}

.services-mega .services-col a.view-all-link::after {
    display: none !important;
}

.services-mega .services-col a.view-all-link:hover {
    transform: scale(1.1);
    opacity: 1 !important;
    color: #685951 !important;
}

.services-mega .services-col a.view-all-link.highlight-effect {
    transform: scale(1.2);
    color: #685951 !important;
}

.services-mega .services-col a.view-all-link i {
    position: relative;
    top: 3px;
    margin-left: 8px;
}

.services-mega .services-col a {
    display: inline-block;
    width: fit-content;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.5;
    text-transform: none !important;
}

.service-link-wrap {
    display: flex;
    align-items: center;
}

.service-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-left: -20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.service-toggle i {
    color: #685951;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.service-toggle:focus i,
.service-toggle:active i {
    color: #685951;
}

.cta-section {
    padding: 60px 0;
    background-color: #fff;
}

.cta-banner {
    position: relative;
    background-image: url('../images/about-background.png');
    background-size: cover;
    background-position: center center;
    padding: 100px 20px;
    border-radius: 40px;
    overflow: hidden;
    color: #fff;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(67, 49, 39, 0.6);
    z-index: 1;
}

.cta-title {
    font-family: 'SVN-Aptima', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 35px;
    text-transform: uppercase;
    color: #EFE8E1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-location {
    display: inline-block;
    background-color: #EFE8E1;
    color: #685951;
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-location:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.review-title {
    font-family: 'SVN-Aptima', serif;
    font-weight: 600;
    font-size: 50px;
    color: #685951;
    margin-bottom: 20px;
}

.review-subtitle {
    font-family: 'Urbanist', sans-serif;
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .custom-header {
        padding: 0;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh !important;
        z-index: 9999;
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: flex-start;
        padding-top: 80px;
        padding-left: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0.4s !important;
        overflow-y: auto;
        /* overflow-y: auto; 
        -webkit-overflow-scrolling: touch; */
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .collapsing {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh !important;
        z-index: 9999;
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(4px);
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: flex-start;
        padding-top: 80px;
        padding-left: 20px;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        transition: transform 0.1s ease-in-out, opacity 0.1s ease-in-out !important;
    }

    .btn-close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 40px;
        color: #000;
        line-height: 1;
        padding: 0;
    }

    .nav-custom {
        width: 100%;
        gap: 0;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .nav-custom .nav-item {
        width: 100%;
        text-align: left;
    }

    .nav-custom .nav-link,
    .nav-custom a {
        font-size: 18px;
        display: block;
        padding: 10px 0 !important;
        line-height: 1.4;
        color: inherit;
        font-weight: normal;
    }

    .nav-custom .nav-link.active,
    .nav-custom .nav-link:hover {
        font-weight: 700;
        opacity: 0.8;
        background: transparent;
    }

    .navbar-toggler:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        padding: 0 15px;
    }

    .decor-star {
        opacity: 0.5;
    }

    .appointment-title {
        font-size: 2.5rem;
    }

    .footer-heading {
        margin-top: 30px;
    }

    .hero-section {
        padding: 120px 0 20px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 36px !important;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 14px;
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .hero-image-container {
        margin-top: 30px;
        width: 100%;
    }

    .hero-img {
        max-width: 100%;
        height: auto;
    }

    .decorations,
    .decor-curve,
    .decor-star {
        display: none !important;
    }

    .about-section {
        padding: 20px 0 30px 0;
        text-align: center;
    }

    .about-section .col-lg-6 {
        margin-bottom: 30px;
    }

    .about-image-wrapper {
        margin: 0 auto;
        padding-left: 20px !important;
        max-width: 110%;
    }

    .about-decor-line,
    .about-star {
        display: none !important;
    }

    .about-section .row.align-items-center {
        display: flex;
        flex-wrap: nowrap !important;
        align-items: center;
        flex-direction: row;
    }

    .about-section .col-lg-6:first-child {
        width: 60%;
        flex: 0 0 60%;
        max-width: 60%;
        padding-right: 10px;
        margin-bottom: 0 !important;
        text-align: left !important;
    }

    .about-section .col-lg-6:last-child {
        width: 40%;
        flex: 0 0 40%;
        max-width: 40%;
        padding-left: 0 !important;
        position: relative;
    }

    .about-section .section-title {
        font-size: 20px !important;
        font-weight: 500 !important;
        margin-bottom: 10px;
        text-align: left !important;
    }

    .about-section .section-desc {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 15px;
        padding-right: 10px;
        text-align: justify !important;
        text-justify: inter-word;
    }

    .btn-learn-more {
        font-size: 12px;
        padding: 8px 20px;
        display: inline-block;
    }

    .about-image-wrapper {
        margin: 0 !important;
        width: 100%;
    }

    .about-img {
        width: 110%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        margin-top: 8px;
    }

    .about-decor-line,
    .about-star {
        display: none !important;
    }

    .services-section {
        padding: 20px 0;
    }

    .slider-wrapper {
        display: flex;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        overflow: hidden;
    }

    .arrow-col {
        flex: 0 0 35px !important;
        width: 35px !important;
        max-width: 35px !important;
        padding: 0 !important;
        display: flex;
        justify-content: center;
        z-index: 10;
        transform: translateY(-20px);
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
        background: #fff;
        color: #685951;
        border: 1px solid #685951;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        outline: none;
        -webkit-tap-highlight-color: transparent;
        transition: background-color 0.1s, transform 0.1s;
    }

    .arrow-active,
    .slider-arrow:active {
        background-color: #685951 !important;
        color: #fff !important;
        transform: scale(0.9);
    }

    .slider-arrow:hover,
    .slider-arrow:focus {
        background-color: #fff !important;
        color: #685951 !important;
        border-color: #685951 !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .arrow-active {
        background-color: #685951 !important;
        color: #fff !important;
        border-color: #685951 !important;
        transform: scale(0.95);
    }

    .content-col {
        flex: 1 !important;
        width: 0 !important;
        min-width: 0;
        padding: 0 2px !important;
        overflow: hidden;
    }

    .slider-row {
        display: flex;
        flex-wrap: nowrap !important;
        width: 100%;
        transform: translateX(0);
        transition: transform 0.3s ease-in-out;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .service-col {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
        padding: 0 3px;
        margin-bottom: 0 !important;
        box-sizing: border-box;
    }

    .service-item {
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .service-img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 10px;
        display: block;
    }

    .service-name {
        font-size: 13px;
        line-height: 1.2;
        min-height: 32px;
        padding: 0 2px;
    }

    .services-section .text-center.mt-5 {
        margin-top: 5px !important;
    }

    .service-curve {
        display: none !important;
    }

    .appointment-section {
        padding: 40px 0;
        text-align: center;
    }

    .appointment-title {
        font-size: 24px !important;
        line-height: 1.3;
    }

    .appointment-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .appointment-image-wrapper {
        margin-top: 30px;
        padding-left: 0 !important;
    }

    .appointment-img {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
    }

    .contact-section {
        padding: 40px 0;
    }

    .map-container {
        height: 300px;
        width: 100%;
        margin-bottom: 40px;
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

    .contact-section .ps-lg-5 {
        padding-left: 0 !important;
    }

    .contact-section .section-title,
    .contact-section .section-desc {
        text-align: center !important;
    }

    .contact-form {
        padding: 0 10px;
    }

    .custom-footer .col-lg-5 {
        text-align: center;
        margin-bottom: 40px !important;
    }

    .footer-logo {
        display: inline-block;
    }

    .footer-logo img {
        max-width: 100px;
        width: 100%;
        height: auto;
    }

    .footer-heading {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .navbar-nav .dropdown .dropdown-menu {
        display: none;
        min-width: 650px;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar-nav .dropdown.mega-dropdown .row {
        display: flex;
    }

    .navbar-nav .dropdown.mega-dropdown .col-lg-6:first-child {
        border-right: 1px solid #eee;
    }

    .services-mega {
        position: static;
        transform: none;
        width: 100%;
        background: transparent;
        padding: 8px 0 0;
        box-shadow: none;
        gap: 12px;
        display: none;
        flex-direction: column;
        max-height: 80vh;
        /* overflow-y: auto; */
    }

    .services-dropdown.open .services-mega {
        display: flex;
    }

    .services-col {
        padding: 0 12px 0 25px;
        gap: 5px;
    }

    .services-mega .services-col a {
        font-size: 16px;
        padding: 5px !important;
        /* border-bottom: 1px solid rgba(107, 92, 77, 0.25); */
    }

    .service-toggle i {
        transition: transform 0.3s ease;
    }

    .services-dropdown.open .service-toggle i {
        transform: rotate(180deg);
    }

    .service-link-wrap {
        gap: 10px;
    }

    .cta-section {
        padding: 30px 0;
    }

    .cta-banner {
        padding: 14px 10px;
        border-radius: 15px;
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .cta-title {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .btn-location {
        font-size: 11px;
        padding: 6px 18px;
        letter-spacing: 0.5px;
    }

    .service-link-wrap .service-link {
        font-weight: 400 !important;
        color: #685951 !important;
    }

    .service-link-wrap .service-link.active {
        font-weight: 700 !important;
    }
}

@media (min-width: 992px) {
    .services-dropdown:hover .services-mega {
        display: flex;
    }

    .service-link-wrap {
        gap: 4px;
    }

    .service-toggle {
        padding-left: -2px;
        padding-right: 0;
    }

    .service-toggle i {
        font-size: 18px;
    }

    .services-dropdown:hover .service-toggle i {
        transform: rotate(180deg);
    }

    .service-toggle i {
        transition: transform 0.3s ease;
    }
}

@media (max-width: 1199px) {
    .slider-row {
        display: flex;
        flex-wrap: nowrap !important;
        width: 100%;
        margin: 0 !important;
        transform: translateX(0);
        transition: transform 0.3s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
        will-change: transform;
    }

    .service-col {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
        padding: 0 5px;
        margin-bottom: 0 !important;
        box-sizing: border-box;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* @media (max-width: 767px) {
    .header-logo img {
        height: 60px;
    }

    .nav-custom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero-title {
        font-size: 2rem;
        margin-top: 20px;
    }

    .hero-img {
        max-width: 100%;
    }

    .img-shadow {
        display: none;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .section-desc {
        text-align: left;
        font-size: 16px;
    }

    .about-section .col-lg-6.mb-5 {
        text-align: center;
    }

    .about-decor-line,
    .about-star,
    .decor-curve,
    .service-curve {
        display: none;
    }

    .about-image-wrapper {
        padding-right: 0;
    }

    .appointment-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .appointment-desc {
        text-align: center;
    }

    .appointment-section .col-lg-6 {
        text-align: center;
    }

    .map-container iframe {
        min-height: 300px;
    }

    .contact-section h2,
    .contact-section p {
        text-align: center !important;
    }

    .contact-section p {
        padding: 0 10px;
    }
} */