/* Doctors */
.doctor-section {
    /* background: var(--bg-light); */
    overflow: hidden;
}

.doctor-desc {
    column-count: 2;
    margin-bottom: 5.6rem;
}

.doctor-desc h3 {
    margin: 0 0 .8rem;
    font-size: 2rem;
    font-weight: 700;
}

.doctor-desc p {
    margin-bottom: 1.6rem;
}

.doctor-desc strong {
    font-weight: bold;
}

.slider-wrap {
    position: relative;
}

.doctor-swiper,
.certificate-swiper {
    padding: 1rem 0 4rem;
}

.doctor-card {
    position: relative;
    overflow: hidden;
    height: 37.3rem;
    border-radius: var(--radius);
    background: var(--white-color);
    box-shadow: 1rem 1rem 3rem rgba(9, 32, 76, .16);
}

.doctor-card>img {
    height: 100%;
    object-fit: cover;
}

.doctor-info {
    min-height: 1.6rem;
    position: absolute;
    left: 1.6rem;
    right: 1.6rem;
    bottom: 1.6rem;
    padding: 1.6rem;
    border-radius: 1.2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 0.1rem solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(.6rem) saturate(160%);
    -webkit-backdrop-filter: blur(.6rem) saturate(160%);
    box-shadow:
        0 1.2rem 3rem rgba(0, 0, 0, 0.16),
        inset 0 0.1rem 0 rgba(255, 255, 255, 0.65),
        inset 0 -0.1rem 0 rgba(255, 255, 255, 0.25);
    overflow: hidden;
    transition: all .3s ease;
    height: 9rem;
}

.doctor-info h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all .3s ease;
}

.doctor-info p {
    margin: .8rem 0 0;
    font-size: 1.4rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}

.doctor-card:hover .doctor-info {
    backdrop-filter: blur(1.6rem) saturate(160%);
    -webkit-backdrop-filter: blur(1.6rem) saturate(160%);
    height: 22rem;
}

.doctor-card:hover .doctor-info p {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.certificate-slider-wrap {
    position: relative;
}

.certificate-swiper {
    padding: 1rem 0 4rem;
}


/* Certificate */
.certificate-section {
    position: relative;
    background: var(--bg-cream);
    overflow: hidden;
}

.certificate-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
}

.certificate-more {
    height: 5.2rem;
    min-width: 17rem;
    padding: 0 2.6rem;
    border-radius: 999px;
    background: #066;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    transition: 0.3s ease;
    flex-shrink: 0;
}

.certificate-more:hover {
    background: #066;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.8rem 1.8rem rgba(0, 113, 111, 0.22);
}

.certificate-more .icon {
    position: relative;
    width: 1.6rem;
    height: 1.6rem;
    flex-shrink: 0;
}

.certificate-more .icon::before {
    content: "";
    position: absolute;
    left: 0.2rem;
    top: 50%;
    width: 1rem;
    height: 1rem;
    border-top: 0.3rem solid #fff;
    border-right: 0.3rem solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

.certificate-slider-wrap {
    position: relative;
}

.certificateSwiper {
    width: 100%;
    overflow: hidden;
}

.certificateSwiper .swiper-slide {
    height: auto;
}

.certificate-quote,
.certificate-card {
    width: 100%;
    height: 18.8rem;
    border-radius: 0.6rem;
    overflow: hidden;
}

.certificate-quote {
    padding: 4.2rem 3rem;
    background: #00716f;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.quote-icon {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.certificate-quote p {
    margin: 0;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.45;
}

.certificate-card {
    background: #fff;
    box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.08);
}

.certificate-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.certificate-nav {
    position: absolute;
    top: 50%;
    width: 4.8rem;
    height: 4.8rem;
    border: none;
    border-radius: 50%;
    background: #00716f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    transition: 0.3s ease;
}

.certificate-nav:hover {
    background: #005f5d;
    transform: translateY(-50%) scale(1.06);
}

.certificate-nav span {
    position: relative;
    width: 1.6rem;
    height: 1.6rem;
    display: block;
}

.certificate-nav span::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 1.1rem;
    height: 1.1rem;
    border-top: 0.3rem solid #fff;
    border-right: 0.3rem solid #fff;
}

.certificate-prev {
    left: 0;
}

.certificate-prev span::before {
    left: 0.45rem;
    transform: translateY(-50%) rotate(-135deg);
}

.certificate-next {
    right: 0;
    background: #dce4e4;
}

.certificate-next span::before {
    right: 0.45rem;
    border-color: #00716f;
    transform: translateY(-50%) rotate(45deg);
}

.certificate-next:hover {
    background: #00716f;
}

.certificate-next:hover span::before {
    border-color: #fff;
}

.certificate-slider-wrap .swiper-button-next,
.certificate-slider-wrap .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background-color: #E4E4E4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    transition: all .3s ease;
}

.certificate-slider-wrap .swiper-button-next:hover,
.certificate-slider-wrap .swiper-button-prev:hover {
    background-color: #006666;
}

.certificate-slider-wrap .swiper-button-next:hover img,
.certificate-slider-wrap .swiper-button-prev:hover img {
    filter: brightness(0) invert(1);
}

.certificate-slider-wrap .swiper-button-next::after,
.certificate-slider-wrap .swiper-button-prev::after {
    display: none;
}

.certificate-slider-wrap .swiper-button-prev,
.certificate-slider-wrap .swiper-button-next {
    top: 50%;
    margin: 0;
}

.certificate-slider-wrap .swiper-button-prev {
    left: -2.4rem;
    transform: translate(-100%, -50%);
}

.certificate-slider-wrap .swiper-button-next {
    right: -2.4rem;
    transform: translate(100%, -50%);
}

.certificate-card {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: 302/200;
}

.certificate-card:hover::before,
.certificate-card:hover .icon-zoom {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.certificate-card::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease;
}

.icon-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    aspect-ratio: 1;
    width: 4rem;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease;
    cursor: pointer;
}

.icon-zoom:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.certificate-quote {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all .3s ease;
}

.certificate-card.open .certificate-quote {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* Result */
.result-section {
    padding: 8rem 0;
    background: #fff;
    overflow: hidden;
}

.result-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5rem;
    margin-bottom: 4rem;
}

.result-head-left {
    flex: 1;
    min-width: 0;
}

.result-title {
    margin: 0 0 2.4rem;
}

.result-subtitle {
    margin: 0;
    color: #333;
    font-size: 1.6rem;
}

.result-head-right {
    flex-shrink: 0;
}

.result-social-proof {
    min-height: 7rem;
    padding: 1.4rem 2.4rem;
    border-radius: 999px;
    background: #f0fbfb;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.result-avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.result-avatars img,
.result-avatars span {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 0.2rem solid #fff;
    margin-left: -1rem;
}

.result-avatars img:first-child {
    margin-left: 0;
}

.result-avatars img {
    object-fit: cover;
}

.result-avatars span {
    background: #df4b2e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.result-social-line {
    width: 0.2rem;
    height: 4rem;
    background: #066;
    flex-shrink: 0;
}

.result-social-proof p {
    margin: 0;
    color: #066;
    font-size: 1.4rem;
    line-height: 1.4;
}

.result-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.result-rating strong {
    color: #000;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #df4b2e;
    font-size: 1.7rem;
}

.result-rating p {
    margin: 0;
    color: #066;
    font-size: 1.4rem;
}

.result-slider-wrap {
    position: relative;
}

.resultSwiper {
    overflow: hidden;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.result-before-after {
    width: 50%;
    min-width: 0;
}

.compare-box {
    --compare-position: 50%;

    position: relative;
    width: 100%;
    aspect-ratio: 628 / 386;
    border-radius: 0.8rem;
    overflow: hidden;
    background: #ddd;
}

.compare-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.compare-before {
    z-index: 1;
}

.compare-after {
    z-index: 2;
    clip-path: inset(0 0 0 var(--compare-position));
}

.compare-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--compare-position);
    width: 0.2rem;
    background: #fff;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

.compare-handle {
    position: absolute;
    left: var(--compare-position);
    top: 50%;
    width: 4.8rem;
    height: 4.8rem;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.16);
    transform: translate(-50%, -50%);
    z-index: 4;
    pointer-events: none;
}

.compare-handle span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.compare-handle span::before,
.compare-handle span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 0.2rem solid #000;
    border-right: 0.2rem solid #000;
}

.compare-handle span::before {
    left: 1.4rem;
    transform: translateY(-50%) rotate(-135deg);
}

.compare-handle span::after {
    right: 1.4rem;
    transform: translateY(-50%) rotate(45deg);
}

.compare-range {
    position: absolute;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}

.result-content {
    width: 50%;
    min-width: 0;
}

.quote-mark {
    width: 7rem;
    height: 5rem;
    margin-bottom: 2rem;
}

.quote-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.result-text {
    margin: 0;
    color: #333;
    font-size: 1.75rem;
    line-height: 1.55;
}

.result-user {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2.4rem;
}

.result-user img {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    object-fit: cover;
}

.result-user strong,
.result-user span {
    display: block;
}

.result-user strong {
    color: #333;
    font-size: 1.6rem;
    font-weight: 900;
}

.result-user span {
    margin-top: 0.3rem;
    color: #333;
    font-size: 1.6rem;
}

.result-nav {
    position: absolute;
    top: 50%;
    width: 4.8rem;
    height: 4.8rem;
    border: none;
    border-radius: 50%;
    background: #066;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    transition: 0.3s ease;
}

.result-nav:hover {
    background: #066;
    transform: translateY(-50%) scale(1.06);
}

.result-nav span {
    position: relative;
    width: 1.6rem;
    height: 1.6rem;
    display: block;
}

.result-nav span::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 1.1rem;
    height: 1.1rem;
    border-top: 0.3rem solid #fff;
    border-right: 0.3rem solid #fff;
}

.result-prev {
    left: 0;
}

.result-prev span::before {
    left: 0.45rem;
    transform: translateY(-50%) rotate(-135deg);
}

.result-next {
    right: 0;
    background: #e6eaec;
}

.result-next span::before {
    right: 0.45rem;
    border-color: #066;
    transform: translateY(-50%) rotate(45deg);
}

.result-next:hover {
    background: #066;
}

.result-next:hover span::before {
    border-color: #fff;
}

.result-action {
    display: flex;
    justify-content: center;
    margin-top: 3.2rem;
}

.result-btn {
    min-width: 17rem;
    height: 5.2rem;
    padding: 0 2.6rem;
    border-radius: 999px;
    background: #066;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    transition: 0.3s ease;
}

.result-btn:hover {
    background: #066;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.8rem 1.8rem rgba(0, 113, 111, 0.22);
}

.result-btn .icon {
    position: relative;
    width: 1.6rem;
    height: 1.6rem;
    flex-shrink: 0;
}

.result-btn .icon::before {
    content: "";
    position: absolute;
    left: 0.2rem;
    top: 50%;
    width: 1rem;
    height: 1rem;
    border-top: 0.3rem solid #fff;
    border-right: 0.3rem solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

.result-slider-wrap .swiper-button-next,
.result-slider-wrap .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background-color: #E4E4E4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    transition: all .3s ease;
}

.result-slider-wrap .swiper-button-next:hover,
.result-slider-wrap .swiper-button-prev:hover {
    background-color: #066;
}

.result-slider-wrap .swiper-button-next:hover img,
.result-slider-wrap .swiper-button-prev:hover img {
    filter: brightness(0) invert(1);
}

.result-slider-wrap .swiper-button-next::after,
.result-slider-wrap .swiper-button-prev::after {
    display: none;
}

.result-slider-wrap .swiper-button-prev,
.result-slider-wrap .swiper-button-next {
    top: 50%;
    margin: 0;
}

.result-slider-wrap .swiper-button-prev {
    left: -2.4rem;
    transform: translate(-100%, -50%);
}

.result-slider-wrap .swiper-button-next {
    right: -2.4rem;
    transform: translate(100%, -50%);
}


/* consult */
.consult-content .sec-tt {
    margin-bottom: 3.2rem;
}

.consult-section {
    padding: 0 0 16rem 0;
    background: #fff;
    overflow: hidden;
}

.consult-inner {
    position: relative;
    padding: 9.9rem 0;
    z-index: 1;
}

.consult-inner::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% + 11.2rem);
    height: 100%;
    transform: translateX(-50%);
    background-color: var(--bg-light-blue);
    z-index: -2;
    border-radius: 1.6rem;
}

.consult-decor-left {
    position: absolute;
    bottom: 0;
    left: -5.6rem;
    width: 50%;
    height: auto;
    pointer-events: none;
    z-index: -1;
}

.consult-decor-left img {
    object-fit: contain;
}

.consult-decor-right {
    position: absolute;
    bottom: 0;
    right: -5.6rem;
    width: 46%;
    height: auto;
    z-index: -1;
    pointer-events: none;
}

.consult-decor-right img {
    object-fit: contain;
}

.consult-title {
    margin: 0 0 32px;
}

.consult-form {
    max-width: 628px;
}

.consult-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 302px));
    gap: 24px;
    margin-bottom: 32px;
}

.consult-field {
    min-height: 48px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #006666;
    border-radius: 999px;
    background: #fff;
    transition: 0.25s ease;
}

.consult-field:focus-within {
    border-color: #004f4f;
    box-shadow: 0 0 0 3px rgba(0, 102, 102, 0.12);
}

.consult-field__icon {
    width: 24px;
    height: 24px;
    color: #006666;
    flex-shrink: 0;
}

.consult-field__icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consult-field input,
.consult-field select {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    font-family: inherit;
}

.consult-field input::placeholder {
    color: #5e5e5e;
    opacity: 1;
}

.consult-field select {
    appearance: none;
    cursor: pointer;
}

.consult-field--select {
    position: relative;
}

.consult-field--select::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-right: 2px solid #006666;
    border-bottom: 2px solid #006666;
    transform: rotate(45deg) translateY(-2px);
    flex-shrink: 0;
    pointer-events: none;
}

.consult-submit {
    min-height: 54px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #006666;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: 0.25s ease;
    position: relative;
}

.consult-submit__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.consult-submit__icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consult-submit:hover {
    background: #004f4f;
    border-color: #004f4f;
    transform: translateY(-2px);
}


.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    margin-bottom: 2.4rem;
}

.form-group {
    position: relative;
}

.form-icon {
    position: absolute;
    top: 50%;
    left: 2.4rem;
    z-index: 2;
    width: 2.4rem;
    height: 2.4rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-control {
    width: 100%;
    height: 4.8rem;
    padding: 0 4.8rem 0 5.6rem;
    border: .1rem solid var(--main-color);
    border-radius: 99rem;
    outline: none;
    background: var(--white-color);
    color: #000;
    font-size: 1.6rem;
}

.form-placeholder {
    position: absolute;
    top: 50%;
    left: 5.6rem;
    color: #666;
    font-size: 1.6rem;
    transform: translateY(-50%);
    pointer-events: none;
    transition: .2s ease;
}

.form-placeholder span {
    color: #e60000;
}

.form-control:focus+.form-placeholder,
.form-control:not(:placeholder-shown)+.form-placeholder,
.form-control:focus~.form-placeholder, .form-control:not(:placeholder-shown)~.form-placeholder, .wpcf7-form-control-wrap:focus-within~.form-placeholder, .wpcf7-form-control-wrap:has(.form-control:not(:placeholder-shown))~.form-placeholder, .form-control:focus+.form-placeholder, .form-control:not(:placeholder-shown)+.form-placeholder {
    top: -.7rem;
    left: 2.4rem;
    padding: 0 .8rem;
    background: var(--bg-light-blue);
    color: var(--main-color);
    font-size: 1.2rem;
}

.form-select select {
    appearance: none;
}

.select-arrow {
    position: absolute;
    top: 50%;
    right: 2.4rem;
    width: 1.6rem;
    transform: translateY(-50%);
    pointer-events: none;
}

/* =========================
   Section 01: Hero
========================= */
.service-hero {
    position: relative;
    padding: 4rem 0 0 0;
    z-index: 1;
}


.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 82%;
    background: var(--bg-cream);
    border-radius: 0 0 5rem 5rem;

}

.service-hero-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    align-items: start;
}

.service-hero-content {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
    padding-top: 5.5rem;
}

.service-breadcrumb {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.service-title {
    margin: 0;
    color: var(--main-color);
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.18;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .8rem;
    color: #000;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .032rem;
    line-height: 2.4rem;
    text-transform: uppercase;
}

.breadcrumb-list a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb-list .arrow {
    display: inline-flex;
    width: 3.2rem;
    height: 3.2rem;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-size: 2.4rem;
    line-height: 1;
}

.service-hero-desc {
    margin: 0;
    max-width: 62.8rem;
    color: var(--text-color);
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.service-hero-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    margin-top: 1.6rem;
}

.hero-small-img {
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 300/387;
}

.hero-small-img img,
.hero-main-img img,
.implant-about-img img,
.suitable-img img,
.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-media {
    position: relative;
}

.hero-main-img {
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 629/747;
}

.hero-contact-box {
    position: absolute;
    left: 2.4rem;
    right: 2.4rem;
    bottom: 2.4rem;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 2.4rem;
    border-radius: var(--border-radius);
    background: var(--white-color);
    box-shadow: 0 .3rem 1.2rem rgba(0, 0, 0, .1);
}

.hero-contact-icon {
    width: 4.8rem;
    height: 4.8rem;
    flex-shrink: 0;
}

.hero-contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-contact-info {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: .4rem;
    color: var(--text-color);
}

.hero-contact-info span {
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.hero-contact-info a {
    color: var(--text-color);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

/* =========================
   Section 02: Implant About
========================= */
.implant-about {
    background: var(--white-color);
}

.implant-about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8.4rem;
    align-items: center;
}

.implant-about-img {
    overflow: hidden;
    height: 51.9rem;
}

.implant-about-content {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}

.implant-about-desc {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.implant-about-desc p {
    margin: 0;
    color: var(--text-color);
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.implant-about-desc strong {
    font-weight: 700;
}

/* =========================
   Section 03: Suitable
========================= */
.implant-suitable {
    position: relative;
    background: var(--bg-light);
}

.decor-shape {
    position: absolute;
    z-index: 1;
    width: 31.9rem;
    pointer-events: none;
}

.decor-left {
    left: 0;
    bottom: 0;
}

.implant-suitable-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    align-items: center;
}

.implant-suitable-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.2rem;
}

.implant-suitable-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: .8rem;
    color: var(--text-color);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 2.4rem;
}

.check-icon {
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
}

.implant-suitable-images {
    position: relative;
    min-height: 56rem;
}

.suitable-img {
    position: absolute;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.suitable-img-tall {
    right: 0;
    bottom: 6.6rem;
    width: 30.2rem;
    height: 42.2rem;
}

.suitable-img-square {
    left: 0;
    bottom: 0;
    width: 30.2rem;
    height: 30.2rem;
}

.suitable-img-small {
    left: 6.8rem;
    top: 0;
    width: 23.4rem;
    height: 23.4rem;
}

/* =========================
   Section 04: Why Choose
========================= */
.why-choose {
    background: var(--white-color);
    overflow: hidden;
}

.why-title {
    max-width: 51rem;
    margin: 0 auto 5.6rem;
    text-align: center;
}

.why-slider-wrap {
    position: relative;
}

.whyChooseSwiper {
    overflow: hidden;
}

.whyChooseSwiper .swiper-wrapper {
    align-items: stretch;
}

.whyChooseSwiper .swiper-slide {
    height: auto;
}

.why-card {
    height: 100%;
}

.why-img {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius);
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding-top: 2.4rem;
}

.why-content h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 3.2rem;
    text-transform: uppercase;
}

.why-content .line {
    display: block;
    width: 10.1rem;
    height: .2rem;
    background: var(--main-color);
}

.why-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.why-prev,
.why-next {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--white-color);
}

.why-prev {
    left: -7.2rem;
}

.why-next {
    right: -7.2rem;
}

.why-prev::after,
.why-next::after {
    font-size: 1.8rem;
    font-weight: 700;
}

/* =========================
   Section 05: Price
========================= */
.service-price {
    background: var(--white-color);
    padding-top: 0;
}

.service-price .img {
    margin-top: 3.2rem;
    display: flex;
    justify-content: center;
}

.service-price .img {
    width: 100%;
    max-width: max-content;
}

.price-box {
    overflow: hidden;
    width: calc(100% + 11.2rem);
    margin-left: -5.6rem;
    padding: 9.6rem 5.6rem;
    border-radius: var(--border-radius);
    background: var(--bg-cream);
    box-shadow: 0 .3rem 1.2rem rgba(0, 0, 0, .1);
}

.price-table {
    overflow: hidden;
    margin-top: 6.4rem;
    border-radius: var(--border-radius);
    background: var(--white-color);
    box-shadow: 0 .8rem 2.4rem rgba(0, 0, 0, .08);
}

.price-row {
    display: grid;
    grid-template-columns: 28rem 1fr 22rem;
    min-height: 7.2rem;
    border-bottom: .1rem solid rgba(0, 102, 102, .16);
}

.price-row:last-child {
    border-bottom: 0;
}

.price-row>div {
    display: flex;
    align-items: center;
    padding: 1.6rem 2.4rem;
    color: var(--text-color);
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.price-row>div:not(:last-child) {
    border-right: .1rem solid rgba(0, 102, 102, .16);
}

.price-head {
    background: var(--main-color);
}

.price-head>div {
    color: var(--white-color);
    font-weight: 700;
}

.price-row:not(.price-head)>div:first-child,
.price-row:not(.price-head)>div:last-child {
    font-weight: 700;
}

.price-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.2rem;
    margin-top: 3.2rem;
}

.price-note p {
    max-width: 74rem;
    margin: 0;
    color: var(--text-color);
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.story-breadcrumb-section .container {
    padding: 0;
}

.story-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.breadcrumb-arrow {
    width: 2.4rem;
}

.story-breadcrumb a {
    transition: 0.3s;
    font-weight: bold;
    text-transform: uppercase;
}

.story-breadcrumb span:last-child {
    font-weight: bold;
    text-transform: uppercase;
}

.story-breadcrumb a:hover {
    color: var(--main-color);
}

@media (max-width: 1727px) {
    .consult-form {
        max-width: 60rem;
    }

    .why-prev {
        left: -2.4rem;
    }

    .why-next {
        right: -2.4rem;
    }

}

@media (max-width: 1200px) {

    .doctor-desc h3 {
        font-size: 1.8rem;
        font-weight: 600;
    }

    .service-hero {
        padding: 6.8rem 0;
    }

    .service-hero-content {
        padding-top: 0;
    }

    .service-hero-bg {
        height: 100%;
    }

    .service-title,
    .sec-title {
        font-size: 3.2rem;
    }

    .service-hero-wrap,
    .implant-about-wrap,
    .implant-suitable-wrap {
        gap: 2.4rem;
    }

    .hero-contact-box {
        flex-wrap: wrap;
    }

    .hero-contact-btn {
        width: 100%;
    }

    .price-box {
        width: 100%;
        margin-left: 0;
        padding: 7.2rem 3.2rem;
    }

    .doctor-desc {
        gap: 2.4rem;
        margin-bottom: 3.2rem;
    }

    .doctor-card .doctor-info {
        height: 22rem;
        backdrop-filter: blur(1.6rem) saturate(160%);
        -webkit-backdrop-filter: blur(1.6rem) saturate(160%);
    }

    .doctor-card .doctor-info p {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .certificate-section {
        padding: 6.8rem 0;
    }

    .certificate-head {
        margin-bottom: 2.4rem;
    }

    .result-section {
        padding: 6.8rem 0;
    }

    .result-head {
        gap: 3.2rem;
        margin-bottom: 2.4rem;
    }

    .result-item {
        align-items: flex-start;
    }

    .consult-section {
        padding: 0 0 10.8rem 0;
    }

    .consult-inner::before {
        width: 100%;
    }

    .consult-decor-left {
        left: 0;
    }

    .consult-inner {
        padding: 6.8rem 2.4rem;

    }

    .consult-decor-right {
        right: 0;
    }

    .consult-decor-right {
        width: 30%;
    }

    .implant-suitable-images {
        min-height: 47rem;
    }

    .suitable-img-square {
        width: 24.2rem;
        height: auto;
        aspect-ratio: 1;
    }

    .suitable-img-small {
        width: 20.4rem;
        height: auto;
        aspect-ratio: 1;
        left: 3.8rem;
    }

    .suitable-img-tall {
        width: 21.2rem;
        height: auto;
        aspect-ratio: 302 / 422;
    }

    .implant-suitable-content {
        gap: 2.4rem;
    }


}

@media (max-width: 992px) {



    .service-hero-content {
        padding-top: 0;
    }

    .hero-main-img {
        height: 100%;
    }

    .implant-about-img {
        height: auto;
        aspect-ratio: 628 / 519;
    }

    .implant-suitable-images {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.4rem;
    }

    .suitable-img {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .why-prev,
    .why-next {
        display: none;
    }

    .price-row {
        grid-template-columns: 22rem 1fr 18rem;
    }

    .price-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .doctor-desc {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .consult-bg {
        width: 100%;
        opacity: .25;
    }

    .consult-content {
        max-width: 100%;
        padding: 7.2rem 3.2rem;
    }

    .implant-suitable-wrap {
        grid-template-columns: 1fr;
    }

    .consult-section {
        padding: 0 0 6.8rem 0;
    }
}

@media (max-width: 576px) {

    .service-hero-gallery {
        gap: 1.6rem;
    }

    .service-hero-wrap {
        gap: 1.6rem;
    }

    .service-hero-bg {
        border-radius: 0 0 1.6rem 1.6rem;
    }

    .service-hero-wrap,
    .implant-suitable-wrap {
        grid-template-columns: 1fr;
    }

    .implant-about-wrap {
        display: flex;
        flex-direction: column-reverse;
    }

    .implant-about-content {
        gap: 2.4rem;
    }

    .service-hero {
        padding: 4.8rem 0;
        border-radius: 0 0 3.2rem 3.2rem;
    }

    .service-title,
    .sec-title {
        font-size: 2.4rem;
    }

    .breadcrumb-list {
        font-size: 1.4rem;
    }

    .hero-contact-box {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 1.6rem;
    }

    .hero-contact-info a {
        font-size: 2rem;
    }

    .implant-suitable-images {
        grid-template-columns: 1fr;
    }

    .check-list {
        max-width: 100%;
    }

    .check-list li {
        align-items: flex-start;
    }

    .why-title {
        margin-bottom: 3.2rem;
    }

    .why-content h3 {
        font-size: 2rem;
        line-height: 2.8rem;
    }

    .price-box {
        padding: 5.6rem 1.6rem;
    }

    .price-table {
        overflow-x: auto;
        margin-top: 3.2rem;
    }

    .price-row {
        min-width: 72rem;
    }

    .doctor-card {
        height: 34rem;
    }

    .doctor-info {
        left: 1.2rem;
        right: 1.2rem;
        bottom: 1.2rem;
    }

    .vision-content {
        gap: 2.4rem;
    }

    .doctor-desc {
        gap: 2.4rem;
    }

    .certificate-section {
        padding: 4.8rem 0;
    }

    .certificate-head {
        flex-direction: column;
        align-items: flex-start;
        gap: .8rem;
    }

    .certificate-head .sec-com-tt {
        max-width: 30rem;
    }

    .certificate-card::before,
    .certificate-card .icon-zoom {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .certificate-quote {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        min-height: 20rem;
        padding: 2.4rem;
    }

    .result-section {
        padding: 4.8rem 0;
    }

    .result-head {
        flex-direction: column;
        gap: 1.6rem;
        margin-bottom: 2.4rem;
    }


    .result-title {
        margin: 0 0 1.8rem;
    }

    .result-social-proof {
        min-height: auto;
        padding: 0.8rem 1.6rem;
        gap: .8rem;
    }

    .result-avatars img,
    .result-avatars span {
        width: 3rem;
        height: 3rem;
        border: 0.1rem solid #fff;
    }

    .result-rating {
        margin-top: 0.8rem;
    }

    .stars {
        font-size: 1.4rem;
    }

    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.6rem;
    }

    .result-before-after,
    .result-content {
        width: 100%;
    }

    .quote-mark {
        width: 4rem;
        height: 3rem;
        margin-bottom: 0.6rem;
    }

    .result-text {
        font-size: 1.6rem;
    }

    .consult-content {
        max-width: 100%;
        padding: 4.8rem 0;
    }


    .consult-content,
    .consult-form {
        max-width: 100%;
    }

    .consult-title {
        margin-bottom: 2.8rem;
    }

    .consult-title br {
        display: none;
    }

    .consult-form__grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        margin-bottom: 2.4rem;
    }

    .consult-field {
        padding: 0 2rem;
    }

    .consult-submit {
        min-height: 5rem;
        font-size: 1.7rem;
    }

    .consult-inner {
        padding: 0 1.6rem 6.8rem 1.6rem;
    }

    .consult-section {
        padding: 0 0 4.8rem 0;
    }

    .consult-decor-right {
        width: 46%;
        right: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        margin-bottom: 1.6rem;
    }

    .service-title,
    .sec-title {
        font-size: 2.4rem;
    }

    .service-price {
        padding-bottom: 0;
    }

    .btn-main {
        min-height: 4.8rem;
        padding: 1rem 2rem;
        font-size: 1.6rem;
    }

    .hero-contact-box {
        padding: 1.6rem;
    }

    .hero-contact-info a {
        font-size: 1.8rem;
    }

    .price-row {
        min-width: 68rem;
        grid-template-columns: 20rem 1fr 17rem;
    }

    .price-row>div {
        padding: 1.4rem 1.6rem;
    }

    .why-img {
        border-radius: .8rem;
    }

    .suitable-img {
        border-radius: .8rem;
    }

    .implant-suitable-images {
        gap: 1.6rem;
    }

    .service-hero-content {
        gap: 1.6rem;
    }

    .breadcrumb-list .arrow {
        width: 1.6rem;
        height: 1.6rem;
    }

    .breadcrumb-list {
        gap: .4rem;
    }

    .hero-small-img {
        border-radius: .8rem;
    }

    .hero-main-img {
        border-radius: .8rem;
    }

    .hero-contact-box {
        border-radius: .8rem;
    }
}