.custom-cursor__cursor,
.custom-cursor__cursor-two {
    display: none !important;
}

.svc-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    border: 1px solid rgba(18, 18, 18, 0.06);
    box-shadow: 0 10px 30px rgba(28, 22, 18, 0.06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.svc-card:hover,
.svc-card:focus {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(28, 22, 18, 0.12);
    border-color: rgba(164, 124, 104, 0.28);
    color: inherit;
}

.svc-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: #efe8e3;
}

.svc-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.svc-card:hover .svc-card__media img {
    transform: scale(1.06);
}

.svc-card__media:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(to top, rgba(20, 16, 14, .28), transparent);
    pointer-events: none;
}

.svc-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 20px;
}

.svc-card__title {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    color: #1c1612;
    margin: 0 0 10px;
    text-transform: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.svc-card__text {
    margin: 0 0 18px;
    color: #5c564f;
    font-size: 15px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.svc-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--conalz-base, #a47c68);
}

.svc-card__cta i,
.svc-card__cta span.icon-right-arrow-1 {
    font-size: 12px;
    transition: transform .3s ease;
}

.svc-card:hover .svc-card__cta {
    color: #8d6553;
}

.svc-card:hover .svc-card__cta i,
.svc-card:hover .svc-card__cta span {
    transform: translateX(4px);
}

.services-one__carousel .item,
.services-page-v-1 .svc-card-col {
    height: 100%;
}

.services-one__carousel.owl-carousel .owl-stage-outer {
    overflow: hidden;
    padding: 18px 8px 36px;
    margin: -18px -8px -12px;
}

.services-page-v-1 .svc-card-col {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .svc-card__title {
        font-size: 18px;
    }

    .svc-card__body {
        padding: 18px 18px 16px;
    }
}

.contact-page {
    position: relative;
    padding: 80px 0 110px;
    background: linear-gradient(180deg, #f7f4f1 0%, #fff 42%);
}

.contact-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: stretch;
}

.contact-page__panel,
.contact-page__form-wrap {
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(18, 18, 18, 0.06);
    box-shadow: 0 16px 40px rgba(28, 22, 18, 0.06);
}

.contact-page__panel {
    padding: 36px 34px 32px;
}

.contact-page__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--conalz-base, #a47c68);
    margin-bottom: 10px;
}

.contact-page__heading {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #1c1612;
    text-transform: none;
}

.contact-page__intro {
    margin: 0 0 28px;
    color: #5c564f;
    font-size: 16px;
    line-height: 1.7;
}

.contact-info__item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(28, 22, 18, 0.08);
}

.contact-info__item:first-child {
    border-top: 0;
    padding-top: 0;
}

.contact-info__icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f4ece7;
    color: var(--conalz-base, #a47c68);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-info__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8a8178;
    margin-bottom: 6px;
}

.contact-info__body p,
.contact-info__body a,
.contact-info__list a {
    margin: 0;
    color: #1c1612;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}

.contact-info__body a:hover,
.contact-info__list a:hover {
    color: var(--conalz-base, #a47c68);
}

.contact-info__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info__list li + li {
    margin-top: 4px;
}

.contact-info__link {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--conalz-base, #a47c68) !important;
}

.contact-page__social {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.contact-page__social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4ece7;
    color: #1c1612;
    transition: background .25s ease, color .25s ease;
}

.contact-page__social a:hover {
    background: var(--conalz-base, #a47c68);
    color: #fff;
}

.contact-page__map {
    position: relative;
    min-height: 520px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(28, 22, 18, 0.06);
    background: #efe8e3;
}

.contact-page__map iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 520px;
    border: 0 !important;
}

.contact-page__map-empty {
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a8178;
}

.svc-nav {
    background: #fff;
    border: 1px solid rgba(18, 18, 18, 0.06);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(28, 22, 18, 0.06);
    padding: 28px 22px;
    position: sticky;
    top: 120px;
}

.svc-nav__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--conalz-base, #a47c68);
    margin-bottom: 6px;
}

.svc-nav__title {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    color: #1c1612;
    text-transform: none;
}

.svc-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.svc-nav__list li + li {
    margin-top: 6px;
}

.svc-nav__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #3d3833;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none !important;
    background: #f7f4f1;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.svc-nav__list a:after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: .55;
    flex: 0 0 auto;
}

.svc-nav__list a:hover {
    background: #efe6df;
    color: #1c1612;
}

.svc-nav__list li.is-active a {
    background: var(--conalz-base, #a47c68);
    color: #fff;
    box-shadow: 0 8px 18px rgba(164, 124, 104, 0.28);
}

.svc-nav__list li.is-active a:after {
    opacity: 1;
}

@media (max-width: 991px) {
    .contact-page {
        padding: 50px 0 80px;
    }

    .contact-page__grid {
        grid-template-columns: 1fr;
    }

    .contact-page__heading {
        font-size: 26px;
    }

    .contact-page__map,
    .contact-page__map iframe,
    .contact-page__map-empty {
        min-height: 360px;
    }

    .contact-page__panel,
    .contact-page__form-wrap {
        padding: 26px 22px 22px;
    }

    .svc-nav {
        position: static;
        margin-bottom: 30px;
        top: auto;
    }
}

.page-header__inner h1 {
    font-size: 75px;
    font-weight: 700;
    color: var(--conalz-white, #fff);
    line-height: 80px;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .page-header__inner h1 {
        font-size: 55px;
        line-height: 1.15;
    }
}

@media (max-width: 767px) {
    .page-header__inner h1 {
        font-size: 32px;
        line-height: 42px;
        margin-top: 9px;
    }
}

.scroll-to-top {
    right: auto;
    left: 22px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    background: #1c1612;
    box-shadow: 0 10px 28px rgba(28, 22, 18, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.scroll-to-top i {
    line-height: 48px;
    font-size: 16px;
}

.scroll-to-top:hover {
    background: #a47c68;
    transform: translateY(-3px);
}

.fab-wa {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 9999;
    display: block;
    text-decoration: none;
}

.fab-wa__pulse {
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.28);
    animation: fab-wa-pulse 2.6s ease-out infinite;
    pointer-events: none;
}

.fab-wa__btn {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 58px;
    height: 58px;
    overflow: hidden;
    border-radius: 29px;
    background: linear-gradient(165deg, #2ee06a 0%, #128c7e 100%);
    color: #fff;
    box-shadow: 0 14px 34px rgba(18, 140, 126, 0.38);
    transition: width .35s ease, box-shadow .35s ease, transform .35s ease;
}

.fab-wa__icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.fab-wa__icon svg {
    display: block;
    overflow: visible;
    flex-shrink: 0;
    shape-rendering: geometricPrecision;
}

.fab-wa__label {
    padding: 0 6px 0 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .28s ease, transform .28s ease;
}

.fab-wa:hover .fab-wa__btn,
.fab-wa:focus-visible .fab-wa__btn {
    width: 168px;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(18, 140, 126, 0.46);
    color: #fff;
}

.fab-wa:hover .fab-wa__label,
.fab-wa:focus-visible .fab-wa__label {
    opacity: 1;
    transform: translateX(0);
}

.fab-wa:focus-visible {
    outline: none;
}

.fab-wa:focus-visible .fab-wa__btn {
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px #128c7e;
}

@keyframes fab-wa-pulse {
    0% {
        transform: scale(1);
        opacity: .55;
    }
    70% {
        transform: scale(1.55);
        opacity: 0;
    }
    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .scroll-to-top {
        left: 16px;
        bottom: 18px;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top i {
        line-height: 44px;
    }

    .fab-wa {
        right: 16px;
        bottom: 18px;
    }

    .fab-wa:hover .fab-wa__btn,
    .fab-wa:focus-visible .fab-wa__btn {
        width: 58px;
        transform: none;
    }

    .fab-wa__label {
        display: none;
    }
}
