.dental-services-page {
    background:
        radial-gradient(circle at top left, rgba(212, 184, 127, 0.16), transparent 30%),
        linear-gradient(180deg, #fffdf8 0%, #ffffff 38%, #fbf8f2 100%);
    color: #1f2933;
}

.dental-services-page .site-container {
    width: min(1180px, calc(100% - 32px));
}

.dental-hero {
    position: relative;
    overflow: hidden;
}

.dental-hero::before {
    content: "";
    position: absolute;
    inset: -10% auto auto -10%;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193, 149, 74, 0.18) 0%, rgba(193, 149, 74, 0) 70%);
    pointer-events: none;
}

.dental-hero__content,
.dental-service-card,
.dental-doctor__media,
.dental-doctor__content,
.dental-page-note p {
    animation: dentalFadeUp 0.8s ease both;
}

.dental-service-card:nth-child(2),
.dental-service-card:nth-child(5) {
    animation-delay: 0.08s;
}

.dental-service-card:nth-child(3),
.dental-service-card:nth-child(6) {
    animation-delay: 0.16s;
}

@keyframes dentalFadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 26px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

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

.dental-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(193, 149, 74, 0.12);
    color: #9a6a1f;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dental-hero,
.dental-services-overview,
.dental-doctor,
.dental-page-note {
    padding: 72px 0;
}

.dental-hero__inner,
.dental-doctor__inner {
    display: grid;
    gap: 32px;
    align-items: center;
}

.dental-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
}

.dental-hero__title,
.dental-section-heading h2,
.dental-doctor__content h2 {
    margin: 18px 0 16px;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    line-height: 1.08;
    color: #102a43;
}

.dental-hero__title {
    font-size: clamp(2.4rem, 4.6vw, 4.3rem);
}

.dental-hero__text,
.dental-section-heading p,
.dental-service-card__body p,
.dental-doctor__summary,
.dental-page-note p {
    margin: 0;
    color: #52606d;
    font-size: 1rem;
    line-height: 1.8;
}

.dental-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.dental-hero__badges li {
    padding: 12px 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(193, 149, 74, 0.2);
    box-shadow: 0 10px 28px rgba(16, 42, 67, 0.08);
    font-weight: 600;
    color: #243b53;
}

.dental-hero__visual {
    position: relative;
    min-height: 610px;
}

.dental-hero__visual::before {
    content: "";
    position: absolute;
    inset: 36px 0 30px 36px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(247, 242, 231, 0.94) 100%);
    box-shadow: 0 22px 60px rgba(16, 42, 67, 0.08);
}

.dental-hero__image-wrap {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(16, 42, 67, 0.14);
    background: #ffffff;
}

.dental-hero__image-wrap--main {
    position: relative;
    z-index: 2;
    width: min(100%, 440px);
    margin-inline-start: auto;
}

.dental-hero__image-wrap--accent {
    position: absolute;
    inset-inline-start: 0;
    bottom: 10px;
    width: min(58%, 250px);
    z-index: 2;
    border: 10px solid rgba(255, 255, 255, 0.96);
    animation: dentalFloat 6s ease-in-out infinite;
}

.dental-hero__image,
.dental-hero__floating-card-image,
.dental-service-card__image,
.dental-doctor__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dental-hero__image-wrap--main .dental-hero__image {
    aspect-ratio: 4 / 5;
    object-position: center;
}

.dental-hero__image-wrap--accent .dental-hero__image {
    aspect-ratio: 4 / 5;
    object-position: center top;
}

.dental-hero__floating-card {
    position: absolute;
    inset-inline-start: 20px;
    top: 54px;
    z-index: 3;
    width: min(58%, 300px);
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 44px rgba(16, 42, 67, 0.14);
    animation: dentalFloat 5s ease-in-out infinite;
}

.dental-hero__floating-card-image {
    border-radius: 18px;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: #ffffff;
}

.dental-section-heading {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.dental-section-heading h2,
.dental-doctor__content h2 {
    font-size: clamp(1.9rem, 3.6vw, 3.1rem);
}

.dental-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.dental-service-card {
    overflow: hidden;
    border: 1px solid rgba(193, 149, 74, 0.16);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 44px rgba(16, 42, 67, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dental-service-card:hover,
.dental-service-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(16, 42, 67, 0.12);
}

.dental-service-card__image-wrap {
    position: relative;
    overflow: hidden;
}

.dental-service-card__image-wrap::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(16, 42, 67, 0) 0%, rgba(16, 42, 67, 0.18) 100%);
    pointer-events: none;
}

.dental-service-card__image {
    aspect-ratio: 16 / 10;
    transition: transform 0.4s ease;
}

.dental-service-card:hover .dental-service-card__image,
.dental-service-card:focus-within .dental-service-card__image {
    transform: scale(1.04);
}

.dental-service-card__badge {
    position: absolute;
    top: 16px;
    inset-inline-start: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(16, 42, 67, 0.82);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.dental-service-card__body {
    padding: 22px 22px 24px;
}

.dental-service-card__body h3,
.dental-doctor__info-card h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    color: #102a43;
}

.dental-doctor__inner {
    grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
}

.dental-doctor__media {
    position: relative;
}

.dental-doctor__photo {
    aspect-ratio: 4 / 5;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(16, 42, 67, 0.14);
    object-position: center top;
}

.dental-doctor__role {
    margin: 0 0 16px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #9a6a1f;
}

.dental-doctor__info-card {
    margin-top: 26px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf1 100%);
    border: 1px solid rgba(193, 149, 74, 0.18);
    box-shadow: 0 16px 44px rgba(16, 42, 67, 0.08);
}

.dental-doctor__info-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dental-doctor__info-list li {
    display: grid;
    gap: 6px;
}

.dental-doctor__info-list strong {
    color: #102a43;
    font-size: 0.96rem;
}

.dental-doctor__info-list span,
.dental-doctor__info-list a {
    color: #52606d;
    line-height: 1.7;
    text-decoration: none;
}

.dental-doctor__info-list a:hover,
.dental-doctor__info-list a:focus-visible,
.dental-secondary-button:hover,
.dental-secondary-button:focus-visible {
    color: #9a6a1f;
}

.dental-doctor__actions {
    margin-top: 22px;
}

.dental-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid rgba(193, 149, 74, 0.28);
    background: #ffffff;
    color: #102a43;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dental-secondary-button:hover,
.dental-secondary-button:focus-visible {
    border-color: rgba(154, 106, 31, 0.55);
    transform: translateY(-2px);
}

.dental-page-note {
    padding-top: 0;
}

.dental-page-note p {
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(193, 149, 74, 0.14);
    box-shadow: 0 10px 30px rgba(16, 42, 67, 0.06);
}

body.is-rtl .dental-hero__badges,
body.is-rtl .dental-doctor__info-list {
    direction: rtl;
}

body.is-rtl .dental-section-heading,
body.is-rtl .dental-hero__content,
body.is-rtl .dental-doctor__content,
body.is-rtl .dental-service-card__body,
body.is-rtl .dental-doctor__info-card,
body.is-rtl .dental-page-note p {
    text-align: right;
}

body.is-rtl .dental-hero__visual::before {
    inset: 36px 36px 30px 0;
}

@media (max-width: 1100px) {
    .dental-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dental-hero__inner,
    .dental-doctor__inner {
        grid-template-columns: 1fr;
    }

    .dental-hero__visual {
        min-height: 0;
        padding-top: 24px;
        max-width: 540px;
        margin: 0 auto;
    }

    .dental-hero__visual::before {
        inset: 18px 0 12px;
    }

    .dental-hero__image-wrap--main {
        margin-inline: auto;
    }
}

@media (max-width: 767px) {
    .dental-hero,
    .dental-services-overview,
    .dental-doctor,
    .dental-page-note {
        padding: 56px 0;
    }

    .dental-services-page .site-container {
        width: min(100% - 24px, 1180px);
    }

    .dental-hero__visual {
        max-width: 100%;
        padding-top: 0;
    }

    .dental-hero__floating-card {
        position: static;
        width: 100%;
        max-width: 100%;
        margin: 18px auto 0;
    }

    .dental-hero__image-wrap--accent {
        position: static;
        width: 100%;
        margin-top: 18px;
    }

    .dental-services-grid {
        grid-template-columns: 1fr;
    }

    .dental-service-card__body,
    .dental-doctor__info-card {
        padding: 20px;
    }
}

/* v1.6.10 — refined dental page motion and NovaCare visual language */
.dental-hero {
    position: relative;
    overflow: hidden;
}

.dental-hero::before,
.dental-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(1px);
}

.dental-hero::before {
    width: 360px;
    height: 360px;
    top: -140px;
    inset-inline-end: -90px;
    background: radial-gradient(circle, rgba(199, 164, 90, 0.18), rgba(199, 164, 90, 0));
}

.dental-hero::after {
    width: 280px;
    height: 280px;
    bottom: -150px;
    inset-inline-start: -90px;
    background: radial-gradient(circle, rgba(15, 85, 81, 0.12), rgba(15, 85, 81, 0));
}

.dental-hero__content,
.dental-hero__visual,
.dental-section-heading,
.dental-doctor__media,
.dental-doctor__content {
    animation: dental-reveal-up 0.72s cubic-bezier(.2,.75,.25,1) both;
}

.dental-hero__visual,
.dental-doctor__content {
    animation-delay: 0.08s;
}

.dental-hero__visual {
    min-height: 590px;
}

.dental-hero__image-wrap--main {
    width: min(100%, 455px);
    border: 1px solid rgba(199, 164, 90, 0.2);
    box-shadow: 0 28px 75px rgba(16, 42, 67, 0.16);
}

.dental-hero__image-wrap--main .dental-hero__image {
    aspect-ratio: 4 / 5;
    object-position: center;
    transition: transform 0.8s cubic-bezier(.2,.75,.25,1);
}

.dental-hero__image-wrap--main:hover .dental-hero__image {
    transform: scale(1.035);
}

.dental-hero__doctor-card {
    position: absolute;
    inset-inline-start: 0;
    bottom: 24px;
    z-index: 4;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    width: min(80%, 330px);
    padding: 12px;
    border: 1px solid rgba(199, 164, 90, 0.24);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 60px rgba(16, 42, 67, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: dental-float-card 5.5s ease-in-out infinite;
}

.dental-hero__doctor-card-image {
    width: 82px;
    height: 82px;
    border-radius: 17px;
    object-fit: cover;
    object-position: center top;
}

.dental-hero__doctor-card-copy {
    display: grid;
    gap: 4px;
}

.dental-hero__doctor-card-copy strong {
    color: #102a43;
    font-size: 1rem;
}

.dental-hero__doctor-card-copy span {
    color: #9a6a1f;
    font-size: 0.86rem;
    font-weight: 600;
}

.dental-services-overview {
    position: relative;
}

.dental-service-card {
    position: relative;
    isolation: isolate;
    animation: dental-reveal-up 0.68s cubic-bezier(.2,.75,.25,1) both;
    animation-delay: var(--dental-delay, 0ms);
}

.dental-service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    box-shadow: 0 0 0 1px rgba(199, 164, 90, 0.34), 0 26px 62px rgba(16, 42, 67, 0.14);
    transition: opacity 0.28s ease;
}

.dental-service-card:hover::after,
.dental-service-card:focus-within::after {
    opacity: 1;
}

.dental-service-card__image-wrap {
    overflow: hidden;
}

.dental-service-card__image {
    transition: transform 0.58s cubic-bezier(.2,.75,.25,1), filter 0.4s ease;
}

.dental-service-card:hover .dental-service-card__image,
.dental-service-card:focus-within .dental-service-card__image {
    transform: scale(1.055);
    filter: saturate(1.04) contrast(1.02);
}

.dental-service-card__badge {
    box-shadow: 0 8px 20px rgba(16, 42, 67, 0.16);
}

.dental-doctor {
    position: relative;
    background:
        linear-gradient(135deg, rgba(15, 85, 81, 0.035), rgba(199, 164, 90, 0.055));
}

.dental-doctor__photo-frame {
    position: relative;
    padding: 10px;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(199,164,90,.56), rgba(255,255,255,.94), rgba(15,85,81,.25));
    box-shadow: 0 24px 70px rgba(16, 42, 67, 0.13);
}

.dental-doctor__photo-frame::before {
    content: "";
    position: absolute;
    width: 88px;
    height: 88px;
    top: -20px;
    inset-inline-end: -18px;
    border-radius: 50%;
    border: 1px solid rgba(199, 164, 90, 0.32);
    box-shadow: inset 0 0 0 12px rgba(199, 164, 90, 0.06);
    animation: dental-orbit 7s linear infinite;
}

.dental-doctor__photo {
    border-radius: 26px;
}

.dental-doctor__services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.dental-doctor__service-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 13px;
    border: 1px solid rgba(199, 164, 90, 0.22);
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    color: #243b53;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(16, 42, 67, 0.05);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.dental-doctor__service-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(154,106,31,.45);
    background: #fffaf1;
}

.doctor-card--featured-dental {
    border-color: rgba(199, 164, 90, 0.24) !important;
    box-shadow: 0 18px 46px rgba(16, 42, 67, 0.09) !important;
}

.doctor-card--featured-dental .doctor-card__media {
    position: relative;
    overflow: hidden;
}

.doctor-card--featured-dental .doctor-card__media::after {
    content: "Dental";
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(16,42,67,.82);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

@keyframes dental-reveal-up {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes dental-float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes dental-orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
    .dental-hero__visual {
        min-height: 560px;
    }

    .dental-hero__doctor-card {
        inset-inline-start: 20px;
    }
}

@media (max-width: 767px) {
    .dental-hero__visual {
        min-height: 0;
    }

    .dental-hero__doctor-card {
        position: relative;
        inset: auto;
        width: 100%;
        margin-top: 16px;
        animation: none;
    }

    .dental-doctor__services {
        gap: 8px;
    }

    .dental-doctor__service-chip {
        font-size: .82rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dental-hero__content,
    .dental-hero__visual,
    .dental-section-heading,
    .dental-doctor__media,
    .dental-doctor__content,
    .dental-service-card,
    .dental-hero__doctor-card,
    .dental-doctor__photo-frame::before {
        animation: none !important;
    }

    .dental-service-card,
    .dental-service-card__image,
    .dental-secondary-button,
    .dental-doctor__service-chip,
    .dental-hero__image {
        transition: none !important;
    }
}
.doctor-card--featured-dental .doctor-card__media::after { content: none; }
