/* ============================================================
   YORK RADIOLOGY CONSULTANTS — Main Stylesheet
   Brand: Deep navy + teal accent drawn from logo
   Typography: DM Serif Display (headings) + DM Sans (body)
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* --- CSS Custom Properties --- */
:root {
    --color-navy:       #142039;
    --color-navy-light: #1E3054;
    --color-teal:       #0A8993;
    --color-teal-light: #0CABB7;
    --color-teal-dark:  #077880;
    --color-gold:       #C8963E;
    --color-gold-light: #E8C47A;
    --color-white:      #FFFFFF;
    --color-offwhite:   #F5F7FA;
    --color-gray-100:   #EEF1F5;
    --color-gray-200:   #DDE2EA;
    --color-gray-300:   #B4BDCC;
    --color-gray-500:   #6B7A90;
    --color-gray-700:   #3D4F63;
    --color-gray-900:   #1A2332;
    --color-text:       #2B3648;
    --color-text-light: #5A6980;
    --color-danger:     #C0392B;
    --color-success:    #27AE60;

    --font-heading: 'DM Serif Display', Georgia, serif;
    --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --max-width:    1200px;
    --nav-height:   80px;
    --radius:       8px;
    --radius-lg:    16px;
    --shadow-sm:    0 1px 3px rgba(20,32,57,0.08);
    --shadow-md:    0 4px 16px rgba(20,32,57,0.10);
    --shadow-lg:    0 8px 32px rgba(20,32,57,0.12);
    --shadow-xl:    0 16px 48px rgba(20,32,57,0.14);
    --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-teal-dark); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    line-height: 1.2;
    font-weight: 400;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section--gray {
    background-color: var(--color-offwhite);
}

.section--navy {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.section--navy h2,
.section--navy h3 {
    color: var(--color-white);
}

.section--navy p {
    color: rgba(255,255,255,0.8);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: 12px;
}

.section--navy .section__label {
    color: var(--color-gold-light);
}

.section__header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-top: 16px;
}

/* --- Top Bar --- */
.topbar {
    background-color: var(--color-navy);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.topbar__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar__item svg {
    width: 14px;
    height: 14px;
    fill: var(--color-teal-light);
    flex-shrink: 0;
}

.topbar a {
    color: rgba(255,255,255,0.85);
}
.topbar a:hover {
    color: var(--color-gold-light);
}

/* --- Navigation --- */
.navbar {
    background: var(--color-white);
    height: var(--nav-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar__logo img {
    height: 50px;
    width: auto;
}

.navbar__logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-navy);
    text-decoration: none;
}

.navbar__logo-text span {
    color: var(--color-teal);
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.navbar__link {
    display: block;
    padding: 10px 16px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-gray-700);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--color-teal);
    background: rgba(10,137,147,0.06);
}

/* Dropdown */
.navbar__dropdown {
    position: relative;
}

.navbar__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 240px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    list-style: none;
    z-index: 100;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar__dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--color-gray-700);
    transition: all var(--transition);
}

.navbar__dropdown-menu a:hover {
    background: var(--color-offwhite);
    color: var(--color-teal);
}

/* CTA Button in nav */
.navbar__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--color-teal);
    color: var(--color-white) !important;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    margin-left: 8px;
}

.navbar__cta:hover {
    background: var(--color-teal-dark);
    color: var(--color-white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile toggle */
.navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    margin: 6px 0;
    transition: all var(--transition);
    border-radius: 2px;
}

/* --- Hero --- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 60%, var(--color-teal-dark) 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(10,137,147,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--color-white), transparent);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content h1 {
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero__content h1 em {
    font-style: italic;
    color: var(--color-teal-light);
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.75;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--color-white);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 460px;
}

.hero__image-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}

.hero__image-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.hero__image-card:nth-child(2) {
    margin-top: 32px;
}

.hero__image-card:nth-child(3) {
    margin-top: -32px;
}

.hero__image-card svg {
    width: 40px;
    height: 40px;
    fill: var(--color-teal-light);
    margin-bottom: 12px;
}

.hero__image-card-title {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero__image-card-text {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.3;
}

.btn--primary {
    background: var(--color-teal);
    color: var(--color-white);
    border-color: var(--color-teal);
}

.btn--primary:hover {
    background: var(--color-teal-dark);
    border-color: var(--color-teal-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10,137,147,0.3);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.35);
}

.btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: var(--color-white);
}

.btn--outline-dark {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-gray-200);
}

.btn--outline-dark:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
}

.btn--gold {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn--gold:hover {
    background: #b3852f;
    border-color: #b3852f;
    color: var(--color-white);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(10,137,147,0.1), rgba(10,137,147,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card__icon svg {
    width: 26px;
    height: 26px;
    fill: var(--color-teal);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.service-card__text {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-card__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-teal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform var(--transition);
}

.service-card:hover .service-card__link svg {
    transform: translateX(4px);
}

/* --- Location Cards --- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.location-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.location-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.location-card__map {
    height: 200px;
    background: var(--color-gray-100);
}

.location-card__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-card__body {
    padding: 28px;
}

.location-card__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.location-card__detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.location-card__detail svg {
    width: 16px;
    height: 16px;
    fill: var(--color-teal);
    flex-shrink: 0;
    margin-top: 3px;
}

.location-card__services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-gray-100);
}

.location-card__tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    background: var(--color-offwhite);
    color: var(--color-gray-500);
    border-radius: 100px;
}

.location-card__actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* --- Why Section / Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-item {
    text-align: center;
    padding: 32px 20px;
}

.feature-item__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(10,137,147,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.section--navy .feature-item__icon {
    background: rgba(255,255,255,0.08);
}

.feature-item__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-teal);
}

.section--navy .feature-item__icon svg {
    fill: var(--color-teal-light);
}

.feature-item__title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.section--navy .feature-item__title {
    color: var(--color-white);
}

.feature-item__text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* --- Trust Bar --- */
.trust-bar {
    background: var(--color-offwhite);
    border-top: 1px solid var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-100);
    padding: 24px 0;
}

.trust-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.trust-bar__item svg {
    width: 20px;
    height: 20px;
    fill: var(--color-teal);
}

/* --- Contact Form --- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.form-group label .required {
    color: var(--color-danger);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-white);
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(10,137,147,0.12);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-file-wrapper {
    position: relative;
    border: 2px dashed var(--color-gray-200);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--color-offwhite);
}

.form-file-wrapper:hover {
    border-color: var(--color-teal);
    background: rgba(10,137,147,0.03);
}

.form-file-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.form-file-wrapper svg {
    width: 32px;
    height: 32px;
    fill: var(--color-gray-300);
    margin: 0 auto 8px;
}

.form-file-wrapper p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
}

.form-file-wrapper .highlight {
    color: var(--color-teal);
    font-weight: 600;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-teal);
}

.form-success {
    background: rgba(39,174,96,0.08);
    border: 1px solid rgba(39,174,96,0.2);
    color: var(--color-success);
    padding: 16px 20px;
    border-radius: var(--radius);
    font-weight: 500;
}

.form-error {
    background: rgba(192,57,43,0.08);
    border: 1px solid rgba(192,57,43,0.2);
    color: var(--color-danger);
    padding: 16px 20px;
    border-radius: var(--radius);
    font-weight: 500;
}

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* --- Service Detail Page --- */
.service-hero {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    padding: 60px 0;
}

.service-hero h1 {
    color: var(--color-white);
    margin-bottom: 12px;
}

.service-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
}
.breadcrumb a:hover {
    color: var(--color-teal-light);
}

.service-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    padding: 60px 0;
}

.service-detail__content h2 {
    margin-bottom: 16px;
    margin-top: 40px;
}

.service-detail__content h2:first-child {
    margin-top: 0;
}

.service-detail__content p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.service-detail__sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 32px);
    align-self: start;
}

.sidebar-card {
    background: var(--color-offwhite);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-card__title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gray-500);
    margin-bottom: 16px;
}

.sidebar-card__list {
    list-style: none;
}

.sidebar-card__list li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-gray-100);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card__list li:last-child {
    border-bottom: 0;
}

.sidebar-card__list li svg {
    width: 14px;
    height: 14px;
    fill: var(--color-teal);
    flex-shrink: 0;
}

.sidebar-cta {
    background: var(--color-navy);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
}

.sidebar-cta h4 {
    color: var(--color-white);
    margin-bottom: 8px;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--color-teal-dark), var(--color-teal));
    padding: 64px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--color-white);
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 28px;
}

.cta-banner .btn--outline {
    border-color: rgba(255,255,255,0.4);
}

/* --- Footer --- */
.footer {
    background: var(--color-navy);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer__brand-text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer__links a:hover {
    color: var(--color-teal-light);
    padding-left: 4px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer__contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--color-teal-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer__bottom {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer__bottom a {
    color: rgba(255,255,255,0.4);
}
.footer__bottom a:hover {
    color: var(--color-teal-light);
}

/* --- Page Header (generic inner pages) --- */
.page-header {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(10,137,147,0.08) 0%, transparent 70%);
}

.page-header h1 {
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    max-width: 600px;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

/* --- Radiologist Cards --- */
.radiologist-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.radiologist-card:hover {
    box-shadow: var(--shadow-md);
}

.radiologist-card__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.radiologist-card__credentials {
    font-size: 0.85rem;
    color: var(--color-teal);
    font-weight: 500;
    margin-bottom: 12px;
}

.radiologist-card__specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.radiologist-card__tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 3px 10px;
    background: rgba(10,137,147,0.08);
    color: var(--color-teal-dark);
    border-radius: 100px;
}

.radiologist-card__bio {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Reviews Section --- */
.reviews-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.review-card__stars {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 16px;
}

.review-card__author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy);
}

.review-card__source {
    font-size: 0.78rem;
    color: var(--color-gray-500);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
    }
    .hero__visual { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }

    .navbar__menu { 
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }
    .navbar__menu.open { display: flex; }
    .navbar__toggle { display: block; }
    .navbar__cta { margin: 12px 0 0; width: 100%; }
    
    .navbar__dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 16px;
        display: none;
    }
    .navbar__dropdown.open .navbar__dropdown-menu {
        display: block;
    }

    .topbar__inner { justify-content: center; }
    .hero { padding: 64px 0 56px; }
    .hero__stats { gap: 24px; flex-wrap: wrap; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
    .trust-bar__inner { gap: 24px; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    .hero__stat-number { font-size: 1.8rem; }
    .container { padding: 0 16px; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-teal { color: var(--color-teal); }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}
