@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap');

:root {
    --navy: #142e42;
    --teal: #096577;
    --teal-dark: #084b59;
    --teal-light: #eff7fa;
    --gold: #d97706;
    --muted: #5c7180;
    --blue: #e9f3f8;
    --line: #dce6eb;
    --card-border: #e2ebf0;
    --radius-lg: 12px;
    --radius-md: 8px;
    --shadow-sm: 0 4px 20px rgba(20, 46, 66, 0.05);
    --shadow-md: 0 10px 30px rgba(20, 46, 66, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    margin: 0;
    color: var(--navy);
    background: #fff;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #1996bd;
    outline-offset: 4px;
}

.wrap {
    width: min(1232px, calc(100% - 80px));
    margin: auto;
}

/* Top bar */
.topline {
    background: var(--navy);
    color: #d4e1e9;
    font-size: 12px;
    letter-spacing: .04em;
    padding: 9px 0;
}

.topline .wrap {
    display: flex;
    justify-content: space-between;
}

/* Header & Nav */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #e5edf1;
}

.navrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-brand {
    gap: 0;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
    /* subtle fade-in on load */
    transition: opacity .2s;
}

.logo-img:hover {
    opacity: 0.85;
}

.footer-logo-img {
    height: 52px;
    /* logo has a white background so it looks clean on the light footer */
    filter: brightness(0.97);
}

.brandmark {
    position: relative;
    width: 44px;
    height: 46px;
    border: 1px solid #09657755;
    border-radius: 12px;
    color: var(--teal);
    font: 600 32px Georgia, serif;
    display: grid;
    place-items: center;
    background: #fcfdfe;
}

.brandmark span {
    font: 15px Arial;
    position: absolute;
    right: 3px;
    top: 0;
    background: white;
    color: var(--teal);
}

.brand strong {
    font-family: Manrope, Arial, sans-serif;
    font-size: 17px;
    font-weight: 800;
    display: block;
    letter-spacing: -.4px;
}

.brand small {
    font-size: 10px;
    letter-spacing: 1.8px;
    color: var(--teal);
    display: block;
    margin-top: 2px;
}

nav {
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
}

nav a {
    padding: 32px 0;
    position: relative;
    transition: color .2s;
}

nav a:hover,
nav a.active {
    color: var(--teal);
}

nav a.active:after {
    position: absolute;
    content: '';
    bottom: 20px;
    width: 100%;
    height: 2px;
    background: var(--teal);
    left: 0;
}

.button {
    background: var(--teal);
    color: white;
    display: inline-flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s, transform .2s, box-shadow .2s;
}

.button:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(9, 101, 119, 0.25);
}

.button span {
    font-size: 17px;
    font-weight: 400;
}

.navcta {
    padding: 10px 16px;
    font-size: 13px;
}

.menu {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(105deg, #f0f7fa 0%, #edf5f9 50%, #e1eff6 100%);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.08fr 0.95fr;
    gap: 50px;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 40px;
    min-height: 560px;
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 12px;
}

.line {
    height: 1px;
    width: 30px;
    background: var(--teal);
}

h1,
h2,
h3,
blockquote,
p {
    margin: 0;
}

h1,
h2,
h3 {
    font-family: Manrope, Arial, sans-serif;
}

h1 {
    font-size: clamp(38px, 4.2vw, 56px);
    line-height: 1.15;
    letter-spacing: -2.4px;
    font-weight: 650;
    margin: 20px 0;
}

em {
    font-style: normal;
    color: var(--teal);
}

.hero-description {
    color: var(--muted);
    line-height: 1.75;
    font-size: 16px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 26px;
}

.text-link {
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    transition: color .2s;
}

.text-link:hover {
    color: var(--teal);
}

.hero-languages {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #dbe6ec;
}

.lang-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #647b8a;
    display: block;
    margin-bottom: 8px;
}

.lang-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.lang-tags span {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #d3e2e9;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 550;
    color: var(--navy);
}

.hero-visual {
    position: relative;
    padding: 0 0 0 10px;
}

.photo-frame {
    height: 440px;
    background: #d6e8ef;
    border-radius: 120px 10px 10px 10px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .3s;
}

.hero-visual img[src$="doctor.webp"] {
    object-fit: contain;
    object-position: center bottom;
}

.hero-visual img[src$="brain.jpg"] {
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    background: linear-gradient(transparent, rgba(11, 52, 68, 0.9));
    padding: 40px 20px 16px;
    font-size: 11px;
    letter-spacing: 1.4px;
    font-weight: 600;
}

.photo-label {
    position: absolute;
    bottom: 85px;
    left: -24px;
    display: flex;
    gap: 12px;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(20, 46, 66, 0.12);
    border: 1px solid #edf4f8;
}

.label-cross {
    background: #e6f3f5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--teal);
    font-size: 26px;
    display: grid;
    place-items: center;
    line-height: 1;
}

.photo-label strong {
    font-size: 13px;
    display: block;
}

.photo-label div>span {
    font-size: 12px;
    color: var(--muted);
    display: block;
}

.slide-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
}

#slide-count {
    font-size: 13px;
    font-weight: 600;
}

#slide-count i {
    font-style: normal;
    color: #8097a3;
    font-weight: 400;
    font-size: 12px;
}

.dots {
    display: flex;
    gap: 7px;
}

.dot {
    border: 0;
    width: 7px;
    height: 7px;
    border-radius: 7px;
    background: #adc3cf;
    padding: 0;
    transition: all .2s;
}

.dot.selected {
    width: 24px;
    background: var(--teal);
}

.arrows {
    display: flex;
    gap: 8px;
}

.arrows button {
    width: 34px;
    height: 34px;
    border: 1px solid #b9cdd8;
    border-radius: 50%;
    background: transparent;
    color: var(--navy);
    font-size: 16px;
    transition: background .2s, border-color .2s;
}

.arrows button:hover {
    background: white;
    border-color: var(--teal);
}

.hero-bottom {
    display: flex;
    border-top: 1px solid #cfdee6;
    justify-content: space-between;
    padding: 18px 0;
    color: #5e7787;
    font-size: 11px;
    letter-spacing: 1.6px;
    font-weight: 600;
}

/* Trust Bar Section */
.trust-bar-section {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    padding: 30px 0;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: 1.1fr auto 1.1fr auto 1.1fr auto 1.1fr;
    align-items: center;
    gap: 18px;
}

.trust-item {
    text-align: center;
    padding: 4px 10px;
}

.trust-number {
    display: block;
    font-family: Manrope, Arial, sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.trust-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 4px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: #e2ebf0;
}

/* General Section */
.section {
    padding-top: 80px;
    padding-bottom: 80px;
}

h2 {
    font-size: clamp(30px, 3.2vw, 38px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -1.3px;
    margin: 14px 0 20px;
}

/* About Doctor */
.about {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 65px;
    align-items: flex-start;
}

.section-intro>p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 28px;
}

.highlight-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.5;
}

.point-icon {
    width: 20px;
    height: 20px;
    background: #e8f5f8;
    color: var(--teal);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}

.doctor-bio {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px 36px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.small-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #758993;
}

.doctor-bio h3 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-top: 8px;
}

.role {
    font-size: 14px;
    font-weight: 600;
    color: var(--teal);
    margin: 2px 0 20px;
}

/* Education Timeline */
.education-timeline {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px solid #edf3f6;
    border-bottom: 1px solid #edf3f6;
}

.timeline-item {
    display: flex;
    gap: 14px;
    align-items: baseline;
}

.timeline-year {
    background: var(--teal-light);
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    width: 48px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-content strong {
    display: block;
    font-size: 13px;
    color: var(--navy);
}

.timeline-content span {
    display: block;
    font-size: 12px;
    color: var(--muted);
}

.bio-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.skill-pill {
    background: #f0f6f8;
    color: #245062;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #d8e6ec;
}

.bio-bottom {
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: var(--muted);
    align-items: center;
}

.bio-bottom a {
    font-weight: 600;
    color: var(--teal);
    white-space: nowrap;
}

/* Expertise / Focus */
.expertise {
    background: #f6fafc;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 34px;
    gap: 30px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading>p {
    font-size: 15px;
    color: var(--muted);
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.care-card {
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    position: relative;
    padding: 28px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}

.care-card:hover {
    transform: translateY(-4px);
    border-color: #8eb7c4;
    box-shadow: var(--shadow-md);
}

.care-card.featured-focus {
    border-top: 3px solid var(--teal);
}

.focus-badge {
    display: inline-block;
    align-self: flex-start;
    background: #e3f3f7;
    color: var(--teal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.focus-badge.procedure {
    background: #fef3c7;
    color: #92400e;
}

.care-icon {
    font-size: 30px;
    color: var(--teal);
    width: 48px;
    height: 48px;
    background: var(--teal-light);
    border-radius: 10px;
    display: grid;
    place-items: center;
    line-height: 1;
    margin-bottom: 12px;
}

.card-number {
    position: absolute;
    right: 24px;
    top: 24px;
    color: #92a5b0;
    font-size: 12px;
    font-weight: 600;
}

.care-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.3px;
    margin: 10px 0 10px;
}

.care-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* Conditions Section */
.conditions-section {
    background: #ffffff;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.condition-category {
    background: #f9fbfc;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5edf1;
}

.cat-icon {
    font-size: 24px;
}

.cat-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
}

.condition-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.condition-category li {
    font-size: 14px;
    color: #495f6e;
    position: relative;
    padding-left: 18px;
    line-height: 1.5;
}

.condition-category li:before {
    content: '•';
    color: var(--teal);
    position: absolute;
    left: 0;
    font-size: 16px;
    line-height: 1;
    top: -1px;
}

/* Facilities & Clinical Care Visuals */
.facilities-section {
    background: #f6fafc;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.facility-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: flex;
    flex-direction: column;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #a0c6d4;
}

.facility-img-wrap {
    position: relative;
    height: 220px;
    background: #e8f0f4;
    overflow: hidden;
}

.facility-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.facility-card:hover .facility-img-wrap img {
    transform: scale(1.04);
}

.facility-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(13, 82, 100, 0.9);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.facility-body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.facility-body h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.facility-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* Reviews & Testimonials */
.reviews-section {
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.reviews-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 38px;
    gap: 30px;
}

.reviews-badge {
    background: #fdfefe;
    border: 1px solid var(--card-border);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: right;
    box-shadow: var(--shadow-sm);
}

.badge-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.reviews-badge strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
}

.reviews-badge span {
    font-size: 12px;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.review-card {
    background: #fbfdfe;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: #9ac2d0;
    box-shadow: var(--shadow-md);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

.review-date {
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    background: var(--teal-light);
    padding: 4px 10px;
    border-radius: 12px;
}

.review-text {
    font-size: 15px;
    line-height: 1.75;
    color: #3b5060;
    font-style: italic;
    margin-bottom: 22px;
}

.review-patient {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #edf4f7;
    padding-top: 16px;
}

.patient-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #096577, #1b8ba1);
    color: white;
    font-weight: 700;
    font-size: 13px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.review-patient strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.patient-condition {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

/* Contact Section */
.contact {
    background: #0d5264;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: white;
    padding: 48px 56px;
    margin-top: 60px;
    margin-bottom: 80px;
    box-shadow: 0 12px 36px rgba(13, 82, 100, 0.2);
}

.contact .eyebrow {
    color: #a9d4df;
}

.contact h2 {
    font-size: 34px;
    margin-top: 14px;
    margin-bottom: 14px;
}

.contact p {
    font-size: 15px;
    color: #c8dfe7;
    line-height: 1.6;
}

.contact-action {
    text-align: center;
    flex-shrink: 0;
}

.white {
    background: white;
    color: #174653;
}

.white:hover {
    background: #e4f4fa;
    color: #0b3d4a;
}

.contact-action>span {
    display: block;
    font-size: 12px;
    color: #c5dce4;
    margin-top: 12px;
}

/* Footer */
footer {
    border-top: 1px solid #e4ebee;
    background: #fcfdfe;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 36px;
    padding: 56px 0 40px;
}

.footer-main h3 {
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--navy);
}

.footer-main p,
.footer-main>div>a:not(.brand) {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
    transition: color .2s;
}

.footer-main>div>a:not(.brand):hover {
    color: var(--teal);
}

.footer-about p {
    margin-top: 16px !important;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid #e1e8ed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: #778791;
    padding: 22px 0;
}

.footer-bottom>a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    transition: background .2s, border-color .2s;
}

.footer-bottom>a:hover {
    background: #ffffff;
    border-color: var(--teal);
    color: var(--teal);
}

.skip {
    position: fixed;
    top: -100px;
    left: 10px;
    z-index: 200;
    background: white;
    padding: 15px;
    border: 2px solid var(--teal);
}

.skip:focus {
    top: 10px;
}

/* Responsive Breakpoints */
@media (min-width: 1600px) {
    .hero-inner {
        gap: 80px;
    }
}

@media (max-width: 1150px) {
    .wrap {
        width: calc(100% - 48px);
    }

    nav {
        gap: 14px;
        font-size: 13px;
    }

    .navcta {
        display: none;
    }

    .hero-inner {
        gap: 30px;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .photo-label {
        left: -6px;
    }

    .photo-frame {
        height: 400px;
    }

    .care-grid,
    .conditions-grid,
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .trust-divider {
        display: none;
    }

    .contact {
        padding: 38px 42px;
    }
}

@media (max-width: 768px) {
    .wrap {
        width: calc(100% - 36px);
    }

    .topline {
        font-size: 10px;
    }

    .topline .wrap {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .navrow {
        min-height: 74px;
    }

    .brand strong {
        font-size: 15px;
    }

    .brand small {
        font-size: 9px;
    }

    .brandmark {
        width: 38px;
        height: 40px;
    }

    .menu {
        display: block;
        background: none;
        border: 1px solid var(--line);
        border-radius: 6px;
        width: 40px;
        height: 40px;
        font-size: 20px;
        color: var(--navy);
    }

    nav {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: white;
        padding: 16px 24px 24px;
        box-shadow: 0 15px 24px rgba(21, 59, 67, 0.12);
        border-bottom: 1px solid #e2ebf0;
    }

    nav.open {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    nav a {
        padding: 12px 0;
        border-bottom: 1px solid #f0f4f7;
    }

    nav a.active:after {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 28px;
        padding-bottom: 24px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    h1 {
        font-size: 36px;
        letter-spacing: -1.6px;
        margin: 14px 0;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-visual {
        padding-left: 0;
        max-width: 460px;
        width: 100%;
        margin: auto;
    }

    .photo-frame {
        height: 360px;
        border-radius: 80px 8px 8px 8px;
    }

    .photo-label {
        left: 10px;
        bottom: 75px;
        padding: 12px 16px;
    }

    .hero-bottom {
        font-size: 8.5px;
        letter-spacing: 0.8px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 16px 0;
        text-align: center;
    }

    .trust-bar-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-number {
        font-size: 22px;
    }

    .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    h2 {
        font-size: 27px;
        letter-spacing: -1px;
    }

    .doctor-bio {
        padding: 24px 20px;
    }

    .section-heading,
    .reviews-header-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .reviews-badge {
        text-align: left;
        width: 100%;
    }

    .care-grid,
    .conditions-grid,
    .facilities-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 22px;
        gap: 22px;
        margin-top: 36px;
        margin-bottom: 45px;
    }

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 32px 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        transition: none !important;
    }
}