* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: #12233f;
    background: #fff;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}
.topbar {
    background: #082d5b;
    color: #fff;
    font-size: 11px;
}
.topbar-inner {
    min-height: 30px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.topbar-phone {
    margin-left: auto;
}
.site-header {
    height: 82px;
    background: #fff;
    border-bottom: 1px solid #edf1f6;
    position: sticky;
    top: 0;
    z-index: 50;
}
.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #0a55ad;
}
.brand-mark {
    width: 36px;
    height: 46px;
    background: linear-gradient(150deg, #0b66c8, #062d68);
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 20px 20px 20px 5px;
    font-size: 22px;
    font-weight: 800;
}
.brand strong,
.brand b,
.brand small {
    display: block;
    line-height: 1.05;
}
.brand strong {
    font-size: 16px;
}
.brand b {
    font-size: 13px;
    color: #172b49;
}
.brand small {
    font-size: 6px;
    color: #5f7188;
    margin-top: 3px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: 12px;
    font-weight: 600;
}
.main-nav > a:hover,
.nav-dropdown > a:hover {
    color: #0865c7;
}
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a {
    display: flex;
    gap: 4px;
    align-items: center;
}
.dropdown-menu {
    position: absolute;
    top: 25px;
    left: -15px;
    width: 230px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 18px 45px #17385a22;
    opacity: 0;
    visibility: hidden;
    transform: translateY(7px);
    transition: 0.2s;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.dropdown-menu a {
    display: block;
    padding: 9px 10px;
    font-size: 12px;
    border-radius: 6px;
}
.dropdown-menu a:hover {
    background: #eef6ff;
    color: #0865c7;
}
.nav-cta,
.btn-primary {
    background: #0864c5;
    color: #fff !important;
    border-radius: 7px;
    padding: 12px 20px;
    box-shadow: 0 8px 20px #0864c52b;
}
.menu-toggle {
    display: none;
    border: 0;
    background: none;
}
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(110deg, #f5fbff, #eaf5ff);
    min-height: 520px;
}
.hero:after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    right: -120px;
    top: -200px;
    background: #d9edff;
}
.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.eyebrow {
    font-size: 11px;
    letter-spacing: 0.4px;
    color: #0965c7;
    font-weight: 800;
    margin: 0 0 8px;
}
.hero h1 {
    font-size: 54px;
    line-height: 1.05;
    margin: 0 0 15px;
    letter-spacing: -2px;
}
.hero h1 span,
h2 span {
    color: #0865c7;
}
.hero-text {
    font-size: 16px;
    max-width: 490px;
    color: #29415e;
}
.hero-actions {
    display: flex;
    gap: 14px;
    margin: 25px 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid transparent;
    padding: 12px 20px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
}
.btn-outline {
    border-color: #0864c5;
    color: #0864c5;
}
.btn-light {
    background: #fff;
    color: #0755aa;
}
.btn-outline-light {
    border-color: #fff;
    color: #fff;
}
.hero-trust {
    display: flex;
    gap: 28px;
    margin-top: 28px;
}
.hero-trust div {
    padding-left: 16px;
    border-left: 1px solid #cbd9e7;
}
.hero-trust strong,
.hero-trust span {
    display: block;
    font-size: 11px;
}
.hero-trust span {
    color: #60738b;
}
.hero-doctor {
    height: 520px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.hero-doctor img {
    height: 500px;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}
.joint-watermark {
    position: absolute;
    font-size: 240px;
    color: #d6eafa;
    right: 120px;
    top: 80px;
}
.doctor-badge {
    position: absolute;
    right: 25px;
    bottom: 45px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 35px #183a5c24;
    z-index: 4;
}
.doctor-badge strong,
.doctor-badge span,
.doctor-badge small {
    display: block;
}
.doctor-badge strong {
    font-size: 14px;
}
.doctor-badge span,
.doctor-badge small {
    font-size: 9px;
    color: #60738b;
}
.section {
    padding: 70px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 250px 1fr 330px;
    gap: 30px;
    align-items: center;
}
.about-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}
.about-copy h2,
.section-heading h2 {
    font-size: 27px;
    line-height: 1.2;
    margin: 0 0 15px;
}
.about-copy p {
    font-size: 15px;
    color: #5d6e82;
}
.text-link {
    display: inline-block;
    color: #0864c5;
    font-weight: 700;
    font-size: 12px;
    margin-top: 8px;
}
.credentials {
    border-left: 1px solid #e5ebf2;
    padding-left: 28px;
}
.credentials > div {
    display: flex;
    gap: 15px;
    margin: 18px 0;
}
.credentials b {
    width: 38px;
    height: 38px;
    background: #edf6ff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #0965c7;
}
.credentials strong {
    font-size: 15px;
}
.credentials p {
    font-size: 13px;
    color: #64758a;
    margin: 3px 0;
}
.section-heading {
    text-align: center;
    margin-bottom: 28px;
}
.section-heading h2 {
    margin-bottom: 0;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.feature-card,
.treatment-card,
.condition-card,
.review-card {
    border: 1px solid #e4ebf2;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 25px #153a5b0a;
}
.feature-card {
    padding: 22px 18px;
}
.feature-card i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #edf6ff;
    color: #0865c7;
    font-style: normal;
    margin-bottom: 10px;
}
.feature-card strong {
    font-size: 15px;
    display: block;
}
.feature-card p {
    font-size: 14px;
    color: #64758a;
}
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.treatment-card {
    padding: 16px 12px;
}
.circle-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #edf6ff;
    display: grid;
    place-items: center;
    color: #0865c7;
    font-size: 25px;
    font-weight: 800;
    margin: auto;
}
.treatment-card h3 {
    font-size: 15px;
    margin: 12px 0 5px;
}
.treatment-card ul {
    padding-left: 14px;
    margin: 0;
    min-height: 80px;
}
.treatment-card li {
    font-size: 13px;
    color: #60738b;
    margin: 2px 0;
}
.treatment-card > a {
    font-size: 9px;
    color: #0865c7;
    font-weight: 800;
}
.conditions {
    background: #fbfdff;
}
.condition-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}
.condition-card {
    padding: 14px 9px;
    text-align: center;
}
.condition-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #eef6ff;
    color: #0865c7;
    display: grid;
    place-items: center;
    margin: auto;
    font-size: 20px;
}
.condition-card h3 {
    font-size: 11px;
    margin: 9px 0 5px;
}
.condition-card p {
    font-size: 8px;
    color: #64758a;
    margin: 0;
}
.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.special-banner {
    min-height: 190px;
    border-radius: 10px;
    color: #fff;
    overflow: hidden;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.knee-banner {
    background: linear-gradient(110deg, #073b91, #0a68c9);
}
.sports-banner {
    background: linear-gradient(110deg, #006c86, #0799b6);
}
.special-banner h2 {
    font-size: 22px;
    line-height: 1.15;
    margin: 3px 0 8px;
}
.special-banner p:not(.eyebrow) {
    font-size: 10px;
    max-width: 300px;
}
.banner-art {
    font-size: 100px;
    align-self: center;
    opacity: 0.8;
}
.journey {
    padding-bottom: 55px;
}
.journey-grid {
    display: grid;
    grid-template-columns: 1fr 25px 1fr 25px 1fr 25px 1fr;
    align-items: center;
    gap: 10px;
}
.journey-grid > div {
    text-align: center;
}
.journey-grid b {
    display: grid;
    place-items: center;
    margin: auto auto 8px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef6ff;
    color: #0865c7;
}
.journey-grid strong {
    font-size: 16px;
    display: block;
}
.journey-grid p {
    font-size: 14px;
    color: #64758a;
}
.journey-grid > span {
    font-size: 24px;
    color: #0865c7;
}
.testimonials {
    background: #f7fbff;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 160px repeat(3, 1fr) 1.45fr;
    gap: 12px;
    align-items: stretch;
}
.review-summary,
.review-card,
.cta-card {
    padding: 20px;
    border-radius: 10px;
}
.review-summary {
    background: #fff;
    border: 1px solid #e4ebf2;
}
.google {
    font-size: 21px;
    font-weight: 800;
    margin: 12px 0;
}
.review-summary > strong {
    font-size: 13px;
}
.review-summary p:last-child {
    font-size: 9px;
    color: #68798e;
}
.review-card {
    position: relative;
}
.stars {
    color: #f5a400;
    letter-spacing: 2px;
    font-size: 13px;
}
.review-card p {
    font-size: 14px;
    color: #50657d;
}
.review-card strong,
.review-card small {
    display: block;
    font-size: 9px;
}
.review-card small {
    color: #7c8b9b;
}
.cta-card {
    background: linear-gradient(135deg, #073d92, #0869c9);
    color: #fff;
}
.cta-card h2 {
    font-size: 19px;
    line-height: 1.2;
}
.cta-card p {
    font-size: 10px;
}
.cta-card .btn {
    font-size: 10px;
    padding: 10px 12px;
    margin-right: 5px;
}
.site-footer {
    background: #062c58;
    color: #fff;
    padding-top: 42px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.4fr 1.7fr;
    gap: 30px;
}
.site-footer h4 {
    font-size: 11px;
    margin: 0 0 14px;
}
.site-footer a,
.site-footer p {
    display: block;
    font-size: 13px;
    color: #d5e1ef;
    margin: 5px 0;
}
.footer-brand strong {
    color: #fff;
}
.footer-brand b {
    color: #d5e1ef;
}
.footer-brand small {
    color: #8fa9c4;
}
.footer-about > p {
    max-width: 200px;
}
.socials {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}
.socials a {
    width: 28px;
    height: 28px;
    border: 1px solid #54789d;
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.footer-form form {
    display: grid;
    gap: 7px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}
.footer-form input,
.footer-form select {
    width: 100%;
    padding: 8px;
    border: 0;
    border-radius: 4px;
    font: inherit;
    font-size: 9px;
}
.footer-form .btn {
    border: 0;
    width: 100%;
}
.footer-bottom {
    border-top: 1px solid #1c4874;
    margin-top: 30px;
    padding: 12px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
}
.footer-bottom a {
    display: inline;
}
.menu-toggle {
    cursor: pointer;
}

/* ================================
   GLOBAL FONT SIZE
================================ */

html {
    font-size: 16px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #172844;
}

/* Paragraphs */
p {
    font-size: 15px;
    line-height: 1.7;
}

/* Navigation */
.navbar a,
.nav-menu a {
    font-size: 15px;
}

/* Top information bar */
.top-bar {
    font-size: 14px;
}

/* Buttons */
.btn,
button {
    font-size: 15px;
}

/* Section small heading */
.section-label {
    font-size: 14px;
}

/* Section headings */
.section-title {
    font-size: 36px;
    line-height: 1.2;
}

/* Service / condition cards */
.service-card,
.condition-card {
    font-size: 15px;
}

.service-card p,
.condition-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Card headings */
.service-card h3,
.condition-card h3 {
    font-size: 17px;
}

/* Journey section */
.journey-step p {
    font-size: 14px;
}

/* Testimonials */
.testimonial-card {
    font-size: 15px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
}

/* Footer */
footer {
    font-size: 14px;
}

footer a,
footer p {
    font-size: 14px;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    p {
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card,
    .condition-card {
        font-size: 15px;
    }

    .service-card p,
    .condition-card p {
        font-size: 14px;
    }

    .testimonial-card p {
        font-size: 15px;
    }
}

/* =========================================================
   PREMIUM ABOUT PAGE
========================================================= */

.about-hero {
    position: relative;
    overflow: hidden;
    background: #f3f8ff;
    min-height: 650px;
}

.about-hero-bg {
    position: absolute;
    width: 650px;
    height: 650px;
    right: -100px;
    top: -150px;
    border-radius: 50%;
    background: #e2efff;
}

.about-hero-bg::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #edf6ff;
    top: 130px;
    left: -180px;
}

.about-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 650px;

    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
}

.about-hero-content {
    padding: 70px 0;
}

.about-eyebrow {
    display: inline-block;
    color: #2865c5;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .7px;
}

.about-hero h1 {
    font-size: 58px;
    line-height: 1.08;
    color: #142744;
    margin: 20px 0;
    max-width: 650px;
}

.about-hero h1 span {
    display: block;
    color: #2865c5;
}

.about-hero-text {
    max-width: 610px;
    font-size: 18px;
    line-height: 1.75;
    color: #5b6d86;
}

.about-hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 32px;
}

.about-primary-btn,
.about-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.about-primary-btn {
    background: #2865c5;
    color: #fff;
    box-shadow: 0 12px 25px rgba(40,101,197,.2);
}

.about-primary-btn span {
    font-size: 20px;
}

.about-secondary-btn {
    border: 1px solid #2865c5;
    color: #2865c5;
    background: #fff;
}

.about-hero-stats {
    display: flex;
    margin-top: 45px;
}

.about-hero-stats div {
    padding: 0 30px;
    border-left: 1px solid #cbd9ea;
}

.about-hero-stats div:first-child {
    padding-left: 0;
    border-left: 0;
}

.about-hero-stats strong {
    display: block;
    color: #17366c;
    font-size: 23px;
}

.about-hero-stats span {
    color: #718198;
    font-size: 14px;
}


/* DOCTOR */

.about-hero-doctor {
    height: 650px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.doctor-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #dceaff;
    top: 70px;
}

.about-hero-doctor img {
    position: relative;
    z-index: 2;
    height: 620px;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
}

.doctor-floating-card {
    position: absolute;
    z-index: 5;
    bottom: 75px;
    right: -15px;

    display: flex;
    align-items: center;
    gap: 15px;

    background: #fff;
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(24,55,95,.15);
    max-width: 330px;
}

.floating-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #eaf3ff;
    color: #2865c5;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: bold;
}

.doctor-floating-card strong {
    display: block;
    font-size: 15px;
    color: #172844;
}

.doctor-floating-card span {
    display: block;
    margin-top: 4px;
    color: #718198;
    font-size: 12px;
    line-height: 1.5;
}


/* INTRODUCTION */

.about-introduction {
    padding: 110px 0;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: .4fr 1.6fr;
    gap: 80px;
}

.intro-label {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.intro-label > span {
    font-size: 32px;
    font-weight: 700;
    color: #2865c5;
}

.intro-label small,
.intro-label strong {
    display: block;
}

.intro-label small {
    font-size: 12px;
    color: #7c8ba0;
}

.intro-label strong {
    font-size: 14px;
    margin-top: 4px;
    color: #172844;
}

.intro-content {
    max-width: 850px;
}

.intro-content h2 {
    margin: 0 0 30px;
    font-size: 45px;
    line-height: 1.2;
    color: #172844;
}

.intro-content h2 span {
    color: #2865c5;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.85;
    color: #60728a;
    margin-bottom: 18px;
}


/* CREDENTIALS */

.credentials-section {
    background: #f5f9ff;
    padding: 100px 0;
}

.credentials-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 50px;
}

.credentials-header h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #172844;
    margin: 15px 0 0;
}

.credentials-header h2 span {
    color: #2865c5;
}

.credentials-header > p {
    width: 430px;
    color: #657891;
    font-size: 15px;
    line-height: 1.7;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.credential-card {
    position: relative;
    background: #fff;
    border: 1px solid #e1eaf5;
    border-radius: 14px;
    padding: 30px;
    min-height: 270px;
    transition: .3s ease;
}

.credential-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(30,70,120,.1);
}

.credential-card.featured {
    background: #2865c5;
    color: #fff;
}

.credential-number {
    position: absolute;
    top: 22px;
    right: 25px;
    color: #b8c8dd;
    font-size: 13px;
    font-weight: 700;
}

.featured .credential-number {
    color: rgba(255,255,255,.5);
}

.credential-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #edf5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.featured .credential-icon {
    background: rgba(255,255,255,.15);
}

.credential-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #172844;
}

.featured h3 {
    color: #fff;
}

.credential-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #657891;
}

.featured p {
    color: rgba(255,255,255,.85);
}


/* EXPERTISE */

.about-expertise {
    padding: 110px 0;
    background: #fff;
}

.expertise-title {
    max-width: 760px;
    margin-bottom: 55px;
}

.expertise-title h2 {
    font-size: 43px;
    line-height: 1.2;
    color: #172844;
    margin-top: 15px;
}

.expertise-title h2 span {
    color: #2865c5;
}

.expertise-list {
    border-top: 1px solid #dfe7f1;
}

.expertise-row {
    display: grid;
    grid-template-columns: .8fr 1.2fr .2fr;
    gap: 50px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #dfe7f1;
    transition: .3s ease;
}

.expertise-row:hover {
    padding-left: 15px;
}

.expertise-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.expertise-main span {
    color: #2865c5;
    font-size: 13px;
    font-weight: 700;
}

.expertise-main h3 {
    font-size: 20px;
    color: #172844;
}

.expertise-row p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #657891;
}

.expertise-row a {
    color: #2865c5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}


/* PATIENT FIRST */

.patient-first {
    padding: 100px 0;
    background: #f5f9ff;
}

.patient-first-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 70px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(40,80,130,.07);
}

.patient-first-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #172844;
    margin: 15px 0 25px;
}

.patient-first-content h2 span {
    color: #2865c5;
}

.patient-first-content > p {
    color: #657891;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.approach-point {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e4ebf3;
}

.approach-point:last-child {
    border-bottom: 0;
}

.approach-point > span {
    width: 40px;
    height: 40px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #edf5ff;
    color: #2865c5;
    font-size: 13px;
    font-weight: 700;
}

.approach-point h3 {
    font-size: 17px;
    margin-bottom: 5px;
    color: #172844;
}

.approach-point p {
    margin: 0;
    color: #657891;
    font-size: 14px;
    line-height: 1.6;
}


/* FINAL CTA */

.about-final-cta {
    padding: 90px 0;
    background: #17366c;
}

.final-cta-content {
    text-align: center;
    max-width: 850px;
    margin: auto;
}

.final-cta-content > span {
    color: #a9caff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.final-cta-content h2 {
    color: #fff;
    font-size: 48px;
    line-height: 1.15;
    margin: 18px 0;
}

.final-cta-content h2 strong {
    color: #62a0ff;
}

.final-cta-content p {
    color: #d1def2;
    font-size: 16px;
    line-height: 1.7;
}

.final-cta-content > div {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.final-cta-content a {
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.final-cta-content a:first-child {
    background: #fff;
    color: #2058ad;
}

.final-cta-content a:last-child {
    border: 1px solid #fff;
    color: #fff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .about-hero-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-content {
        text-align: center;
    }

    .about-hero-text {
        margin: auto;
    }

    .about-hero-buttons,
    .about-hero-stats {
        justify-content: center;
    }

    .about-hero-doctor {
        height: 500px;
    }

    .about-hero-doctor img {
        height: 500px;
    }

    .credentials-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .credentials-header {
        display: block;
    }

    .credentials-header > p {
        width: auto;
        margin-top: 20px;
    }

    .patient-first-box {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    .about-hero h1 {
        font-size: 40px;
    }

    .about-hero-text {
        font-size: 16px;
    }

    .about-hero-buttons {
        flex-direction: column;
    }

    .about-primary-btn,
    .about-secondary-btn {
        justify-content: center;
    }

    .about-hero-stats {
        gap: 15px;
    }

    .about-hero-stats div {
        padding: 0 12px;
    }

    .about-hero-doctor {
        height: 430px;
    }

    .about-hero-doctor img {
        height: 430px;
    }

    .doctor-circle {
        width: 350px;
        height: 350px;
    }

    .doctor-floating-card {
        right: 5px;
        bottom: 25px;
    }

    .intro-content h2,
    .credentials-header h2,
    .expertise-title h2,
    .patient-first-content h2 {
        font-size: 32px;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .expertise-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .patient-first-box {
        padding: 35px 25px;
    }

    .final-cta-content h2 {
        font-size: 35px;
    }

    .final-cta-content > div {
        flex-direction: column;
    }
}

/* =========================================================
   ROBOTIC JOINT REPLACEMENT - HOME PAGE SECTION
========================================================= */

.robotic-joint-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5faff 0%, #ffffff 55%, #eef7ff 100%);
}

.robotic-joint-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -180px;
    border-radius: 50%;
    background: rgba(11, 79, 163, 0.06);
    pointer-events: none;
}

.robotic-joint-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 70px;
}

.robotic-joint-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.robotic-image-glow {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 79, 163, 0.16) 0%, rgba(11, 79, 163, 0) 70%);
    filter: blur(4px);
}

.robotic-joint-image img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 520px);
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 22px 35px rgba(12, 48, 88, 0.16));
}

.robotic-joint-copy {
    max-width: 650px;
}

.robotic-joint-copy h2 {
    max-width: 650px;
    margin: 0 0 18px;
}

.robotic-joint-copy h2 span {
    display: block;
    color: #0b4fa3;
}

.robotic-lead {
    max-width: 620px;
    margin: 0 0 28px;
    color: #5a708b;
    font-size: 16px;
    line-height: 1.75;
}

.robotic-points {
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
}

.robotic-points > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 15px 17px;
    border: 1px solid #e0eaf4;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px rgba(18, 57, 95, 0.05);
}

.robotic-point-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #eaf4ff;
    color: #0b4fa3;
    font-size: 12px;
    font-weight: 800;
}

.robotic-points strong {
    display: block;
    margin: 1px 0 4px;
    color: #172f50;
    font-size: 15px;
}

.robotic-points p {
    margin: 0;
    color: #647992;
    font-size: 14px;
    line-height: 1.55;
}

.robotic-joint-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.robotic-joint-actions .btn {
    min-height: 48px;
}

@media (max-width: 900px) {
    .robotic-joint-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .robotic-joint-image {
        min-height: 350px;
        order: 1;
    }

    .robotic-joint-copy {
        order: 2;
        max-width: none;
    }

    .robotic-joint-image img {
        width: min(100%, 470px);
        max-height: 410px;
    }
}

@media (max-width: 600px) {
    .robotic-joint-grid {
        gap: 22px;
    }

    .robotic-joint-image {
        min-height: 280px;
    }

    .robotic-image-glow {
        width: 280px;
        height: 280px;
    }

    .robotic-joint-image img {
        width: 100%;
        max-height: 320px;
    }

    .robotic-joint-copy h2 {
        font-size: 30px;
        line-height: 1.15;
    }

    .robotic-lead {
        font-size: 15px;
        line-height: 1.7;
    }

    .robotic-points > div {
        grid-template-columns: 38px 1fr;
        gap: 11px;
        padding: 13px;
    }

    .robotic-point-icon {
        width: 36px;
        height: 36px;
    }

    .robotic-points p {
        font-size: 14px;
    }

    .robotic-joint-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .robotic-joint-actions .btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}
/* =========================================================
   ROOPESH ORTHO CARE - BRAND UPDATE
   Inspired by the clinic brochure supplied by the clinic.
   Body text remains in the requested 14-16px range.
========================================================= */
:root{
    --roc-navy:#073b70;
    --roc-blue:#0b68bd;
    --roc-cyan:#11a9d2;
    --roc-red:#c9252d;
}

body{font-family:Inter,Arial,sans-serif;font-size:15px;}
p,li,.hero-text,.about-copy p,.condition-card p,.treatment-card li{font-size:15px;line-height:1.7;}

/* Brochure-style top strip */
.roc-topbar{
    position:relative;
    background:linear-gradient(90deg,var(--roc-navy),#0b4f8d,var(--roc-navy));
    border-top:5px solid var(--roc-cyan);
    color:#fff;
}
.roc-topbar .topbar-inner{min-height:42px;}
.roc-topbar .topbar-item,.roc-topbar .topbar-phone{color:#fff;font-size:14px;}

/* Clinic identity */
.roc-header{background:#fff;border-bottom:1px solid #d9e5ef;}
.roc-brand{gap:12px;align-items:center;}
.roc-logo{
    width:72px;height:72px;object-fit:contain;border-radius:50%;
    flex:0 0 72px;background:#fff;
}
.roc-brand-copy{display:flex;flex-direction:column;line-height:1.05;}
.roc-brand-copy strong{
    color:var(--roc-red);font-size:15px;letter-spacing:.3px;font-weight:800;
}
.roc-brand-copy b{
    color:var(--roc-red);font-size:14px;letter-spacing:.2px;font-weight:800;margin-top:3px;
}
.roc-brand-copy small{
    color:var(--roc-navy);font-size:11px;font-weight:600;letter-spacing:.25px;margin-top:6px;
}
.roc-header .main-nav a{font-size:14px;}
.roc-header .nav-cta{background:var(--roc-blue);}
.roc-header .nav-cta:hover{background:var(--roc-navy);}

/* Regenerative therapy card */
.regenerative-card{position:relative;overflow:hidden;border:1px solid #d8e6f3;}
.regenerative-card:before{content:"";position:absolute;inset:0 auto 0 0;width:4px;background:linear-gradient(var(--roc-cyan),var(--roc-blue));}
.regenerative-card .circle-icon{background:#eaf7fb;color:#0878b8;}
.regenerative-card .regenerative-icon{font-size:24px;}

/* Home-page regenerative section */
.regenerative-section{background:linear-gradient(135deg,#f4fbff,#fff);}
.regenerative-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:stretch;}
.regenerative-copy,.regenerative-list{background:#fff;border:1px solid #dce8f2;border-radius:20px;padding:30px;box-shadow:0 15px 40px rgba(7,59,112,.07);}
.regenerative-copy h2{font-size:34px;line-height:1.2;color:#142f52;margin:0 0 12px;}
.regenerative-copy h2 span{color:var(--roc-blue);}
.regenerative-copy p{margin:0 0 12px;}
.regenerative-badge{display:inline-flex;align-items:center;gap:8px;margin-bottom:14px;padding:8px 12px;border-radius:999px;background:#e8f7fb;color:#086da9;font-weight:800;font-size:13px;}
.regenerative-list h3{font-size:20px;color:#142f52;margin:0 0 15px;}
.regenerative-list ul{margin:0;padding:0;list-style:none;display:grid;gap:12px;}
.regenerative-list li{display:flex;gap:10px;align-items:flex-start;font-size:15px;line-height:1.6;color:#536b86;}
.regenerative-list li:before{content:"✓";color:var(--roc-blue);font-weight:800;}

@media(max-width:900px){
    .roc-topbar .topbar-inner{padding-top:7px;padding-bottom:7px;}
    .roc-logo{width:58px;height:58px;flex-basis:58px;}
    .roc-brand-copy strong{font-size:17px;}
    .roc-brand-copy b{font-size:13px;}
    .roc-brand-copy small{font-size:9px;}
    .regenerative-grid{grid-template-columns:1fr;}
}
@media(max-width:620px){
    body{font-size:15px;}
    p,li,.hero-text,.about-copy p,.condition-card p,.treatment-card li{font-size:15px;}
    .roc-topbar .topbar-item:first-child{display:none;}
    .roc-topbar .topbar-inner{justify-content:space-between;}
    .roc-topbar .topbar-item,.roc-topbar .topbar-phone{font-size:12px;}
    .roc-brand-copy strong{font-size:15px;}
    .roc-brand-copy b{font-size:11px;}
    .roc-brand-copy small{font-size:8px;}
    .regenerative-copy,.regenerative-list{padding:22px;}
    .regenerative-copy h2{font-size:28px;}
}
/* =========================================================
   DROPDOWN FIX
   Show all Treatments and Conditions menu items
   ========================================================= */

.site-header .nav-dropdown {
    position: relative;
}

.site-header .nav-dropdown .dropdown-menu {
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
}

/* Make the dropdown comfortable for the longer list */
.site-header .nav-dropdown .dropdown-menu a {
    display: block;
    white-space: nowrap;
}

/* Conditions dropdown */
.site-header .nav-dropdown:nth-of-type(2) .dropdown-menu {
    min-width: 300px;
}

/* Treatments dropdown */
.site-header .nav-dropdown:nth-of-type(1) .dropdown-menu {
    min-width: 320px;
}
/* FORCE DROPDOWN TO SHOW ALL ITEMS */
.site-header .nav-dropdown .dropdown-menu {
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
}

.site-header .nav-dropdown .dropdown-menu a {
    display: block !important;
    white-space: nowrap !important;
}

/* Conditions dropdown */
.site-header .nav-dropdown:nth-of-type(2) .dropdown-menu {
    min-width: 320px !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
}

/* Treatments dropdown */
.site-header .nav-dropdown:nth-of-type(1) .dropdown-menu {
    min-width: 340px !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
}

/* =========================================================
   DESKTOP FLOATING CALL + WHATSAPP BUTTONS
========================================================= */

.desktop-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.desktop-contact-btn {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    box-shadow: 0 6px 20px rgba(0,0,0,.18);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.desktop-contact-btn svg {
    width: 23px;
    height: 23px;
    fill: white;
}

.desktop-contact-btn span {
    position: absolute;
    right: 62px;

    background: #173b70;
    color: white;

    padding: 7px 11px;

    border-radius: 6px;

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    transform: translateX(5px);

    transition: .2s ease;
}

.desktop-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 25px rgba(0,0,0,.25);
}

.desktop-contact-btn:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.desktop-call {
    background: #0b4fa3;
}

.desktop-whatsapp {
    background: #25D366;
}


/* =========================================================
   HIDE DESKTOP FLOATING BUTTONS ON MOBILE
   Mobile already has bottom contact buttons
========================================================= */

@media (max-width: 760px) {

    .desktop-contact-buttons {
        display: none;
    }

}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
    flex-shrink: 0;
        border-radius: 8px;

}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-brand-text strong {
    color: #c73535;
    font-size: 19px;
    font-weight: 800;
}

.footer-brand-text b {
    color: #c73535;
    font-size: 15px;
    font-weight: 700;
}

.footer-brand-text small {
    color: #dbe8f7;
    font-size: 11px;
    margin-top: 5px;
}

@media (max-width: 450px) {
    .footer-logo {
        width: 58px;
        height: 58px;
    }

    .footer-brand-text strong {
        font-size: 16px;
    }

    .footer-brand-text b {
        font-size: 13px;
    }
}

