/* ============================================
   ONECARE MEDICAL NJ — DESIGN SYSTEM
   ============================================ */

:root {
    /* Brand colors */
    --primary: #0d6e8c;
    --primary-dark: #0a5369;
    --primary-light: #e0f2f7;
    --primary-tint: #f0f9fc;

    --secondary: #1e3a5f;
    --secondary-light: #2c5282;

    --accent: #e8842c;
    --accent-dark: #c46e1e;
    --accent-light: #fef3e6;

    --dark: #0f1f2e;
    --light: #f5fafc;
    --text: #1a2a3a;
    --muted: #5a6b7c;
    --border: #dce5ec;
    --white: #ffffff;

    --success: #2e9c6e;
    --danger: #d64545;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(13, 110, 140, 0.08);
    --shadow-md: 0 6px 24px rgba(13, 110, 140, 0.12);
    --shadow-lg: 0 16px 48px rgba(13, 110, 140, 0.18);
    --shadow-accent: 0 8px 24px rgba(232, 132, 44, 0.3);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    /* Layout */
    --container: 1200px;
    --container-wide: 1340px;
    --container-narrow: 880px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    /* Fonts */
    --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: var(--container-wide);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: clamp(64px, 8vw, 110px) 0;
}

.section-sm {
    padding: clamp(48px, 6vw, 80px) 0;
}

.bg-light {
    background: var(--light);
}

.bg-primary-tint {
    background: var(--primary-tint);
}

.bg-primary {
    background: var(--primary);
    color: var(--white);
}

.bg-secondary {
    background: var(--secondary);
    color: var(--white);
}

/* Section heading */
.section-head {
    max-width: 720px;
    margin: 0 auto clamp(40px, 5vw, 64px);
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    background: var(--primary-light);
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
}

.eyebrow.on-dark {
    color: var(--accent);
    background: rgba(232, 132, 44, 0.15);
}

.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.section-head h2 {
    margin-bottom: 16px;
}

.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.97rem;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-ghost-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    background: var(--secondary);
    color: var(--white);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s var(--ease);
}

.topbar-item:hover {
    color: var(--white);
}

.topbar-item svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
    flex-shrink: 0;
}

.topbar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.18);
}

.topbar-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-weight: 600;
}

.topbar-cta:hover {
    background: var(--accent-dark);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s var(--ease);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--dark);
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: grid;
    place-items: center;
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.logo-mark svg {
    width: 26px;
    height: 26px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text .brand {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-text .sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: color 0.2s var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--primary);
}

.nav-cta {
    margin-left: 8px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-tint);
    color: var(--primary);
    align-items: center;
    justify-content: center;
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 200;
    padding: 80px 24px 32px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-tint);
    color: var(--primary);
    display: grid;
    place-items: center;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
}

.mobile-menu .btn {
    width: 100%;
    margin-top: 24px;
}

.mobile-menu-info {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--muted);
    font-size: 0.92rem;
}

.mobile-menu-info .topbar-item {
    color: var(--muted);
}

.mobile-menu-info .topbar-item svg {
    color: var(--primary);
}

body.menu-open {
    overflow: hidden;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-tint) 0%, var(--white) 60%);
    padding: clamp(60px, 9vw, 110px) 0 clamp(60px, 8vw, 100px);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 110, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 132, 44, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 18px 8px 8px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

.hero-badge .pill {
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero h1 .accent {
    color: var(--primary);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.hero-stat .num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.85rem;
    color: var(--primary);
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 6px;
    letter-spacing: 0.02em;
}

/* Hero visual */
.hero-visual {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

.hero-floating-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.hero-floating-card .icon svg {
    width: 22px;
    height: 22px;
}

.hero-floating-card.top-left {
    top: 30px;
    left: -20px;
}

.hero-floating-card .icon.primary {
    background: var(--primary-light);
    color: var(--primary);
}

.hero-floating-card .icon.accent {
    background: var(--accent-light);
    color: var(--accent);
}

.hero-floating-card .icon.success {
    background: #e3f7ed;
    color: var(--success);
}

.hero-floating-card .title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--dark);
}

.hero-floating-card .text {
    font-size: 0.78rem;
    color: var(--muted);
}

.hero-floating-card.bottom-right {
    bottom: 30px;
    right: -20px;
}

.hero-stethoscope-deco {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 80px;
    height: 80px;
    color: var(--primary);
    opacity: 0.15;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 8px;
}

.trust-item .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.trust-item .icon-wrap svg {
    width: 24px;
    height: 24px;
}

.trust-item h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.trust-item p {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
}

.intro-visual {
    position: relative;
}

.intro-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 5/4;
    box-shadow: var(--shadow-lg);
}

.intro-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--primary);
    color: var(--white);
    padding: 22px 26px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.intro-experience-badge .num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1;
}

.intro-experience-badge .label {
    font-size: 0.78rem;
    margin-top: 6px;
    opacity: 0.9;
}

.intro-content .eyebrow {
    margin-bottom: 14px;
}

.intro-content h2 {
    margin-bottom: 18px;
}

.intro-content p {
    color: var(--muted);
    margin-bottom: 16px;
}

.intro-features {
    margin: 24px 0 30px;
    display: grid;
    gap: 12px;
}

.intro-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.intro-feature .check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0d6e8c !important;
    color: var(--white);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.intro-feature .check svg {
    width: 14px;
    height: 14px;
}

.intro-feature .text {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--dark);
}

.intro-feature .text span {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 2px;
}

/* ============================================
   SERVICE CARDS GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    transition: all 0.4s var(--ease);
}

.service-card .icon svg {
    width: 30px;
    height: 30px;
}

.service-card:hover .icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(-6deg) scale(1.05);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
}

.service-card p {
    color: var(--muted);
    font-size: 0.93rem;
    margin-bottom: 18px;
    flex-grow: 1;
}

.service-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    transition: gap 0.3s var(--ease);
}

.service-card .read-more svg {
    width: 16px;
    height: 16px;
}

.service-card:hover .read-more {
    gap: 12px;
}

/* ============================================
   VIDEO / COMPANY PROFILE
   ============================================ */
.video-section {
    position: relative;
    padding: clamp(70px, 9vw, 120px) 0;
    background: var(--secondary);
    color: var(--white);
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(13, 110, 140, 0.4), transparent 60%);
}

.video-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-lg);
    background: var(--dark);
    max-width: 980px;
    margin: 0 auto;
}

.video-wrap img,
.video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 31, 46, 0.7), rgba(13, 110, 140, 0.3));
    display: grid;
    place-items: center;
}

.play-button {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    display: grid;
    place-items: center;
    transition: all 0.3s var(--ease);
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--accent);
    color: var(--white);
}

.play-button svg {
    width: 36px;
    height: 36px;
    margin-left: 4px;
}

.video-section .section-head h2,
.video-section .section-head p {
    color: var(--white);
}

.video-section .section-head p {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   DOCTOR PROFILE
   ============================================ */
.doctor-section {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
}

.doctor-image {
    position: relative;
}

.doctor-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

.doctor-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-credential-card {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
}

.doctor-credential-card .icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--accent-light);
    color: var(--accent);
    display: grid;
    place-items: center;
}

.doctor-credential-card .icon svg {
    width: 24px;
    height: 24px;
}

.doctor-credential-card .text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.95rem;
    color: var(--dark);
}

.doctor-credential-card .text span {
    font-size: 0.78rem;
    color: var(--muted);
}

.doctor-content .eyebrow {
    margin-bottom: 14px;
}

.doctor-name {
    margin-bottom: 6px;
}

.doctor-credentials {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 20px;
}

.doctor-bio {
    color: var(--muted);
    margin-bottom: 20px;
}

.doctor-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 28px 0;
    padding: 24px;
    background: var(--primary-tint);
    border-radius: var(--radius-md);
}

.doctor-info-item .label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.doctor-info-item .value {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.doctor-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================
   SAME-DAY CARE
   ============================================ */
.sameday {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.sameday::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    border-radius: 50%;
}

.sameday .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 70px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.sameday .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.sameday h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.sameday p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.sameday-conditions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0 32px;
}

.sameday-condition {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.93rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s var(--ease);
}

.sameday-condition:hover {
    background: rgba(255, 255, 255, 0.16);
}

.sameday-condition svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.sameday-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.sameday-visual {
    position: relative;
}

.sameday-card-stack {
    position: relative;
    background: var(--white);
    color: var(--text);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.sameday-card-stack h3 {
    color: var(--dark);
    margin-bottom: 16px;
}

.sameday-card-stack .hour-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.92rem;
}

.sameday-card-stack .hour-row:last-child {
    border-bottom: 0;
}

.sameday-card-stack .hour-row .day {
    font-weight: 600;
    color: var(--dark);
}

.sameday-card-stack .hour-row .time {
    color: var(--muted);
}

.sameday-card-stack .hour-row.today {
    background: var(--primary-tint);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 0;
    margin: 4px -14px;
}

.sameday-card-stack .hour-row.today .time {
    color: var(--primary);
    font-weight: 600;
}

.sameday-card-cta {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 2px solid var(--border);
}

.sameday-card-cta .call-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.3rem;
}

.sameday-card-cta .call-link svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   WHY CHOOSE
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s var(--ease);
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-card .num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.92rem;
    color: var(--primary);
    background: var(--primary-light);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.why-card p {
    color: var(--muted);
    font-size: 0.93rem;
    margin: 0;
}

/* ============================================
   FEATURED HEALTHCARE (Annual/Chronic/Vaccine)
   ============================================ */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
    margin-bottom: clamp(60px, 8vw, 100px);
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse>* {
    direction: ltr;
}

.feature-block .visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 5/4;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.feature-block .visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-block .visual .tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.feature-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 30px;
}

.feature-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 14px;
    background: var(--primary-tint);
    border-radius: var(--radius-sm);
    transition: background 0.3s var(--ease);
}

.feature-list-item:hover {
    background: var(--primary-light);
}

.feature-list-item .check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list-item .check svg {
    width: 14px;
    height: 14px;
}

.feature-list-item .text {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.96rem;
    color: var(--dark);
}

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary-tint) 0%, var(--white) 100%);
    padding: clamp(50px, 6vw, 80px) 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 110, 140, 0.08), transparent 70%);
    border-radius: 50%;
}

.page-hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 18px;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .sep {
    color: var(--border);
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

.page-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
}

.page-hero p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin-bottom: 24px;
}

.page-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.page-hero-visual {
    position: relative;
}

.page-hero-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   SERVICES PAGE — categories
   ============================================ */
.service-category {
    margin-bottom: clamp(50px, 6vw, 80px);
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.service-category-head .icon-lg {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--primary);
    color: var(--white);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.service-category-head .icon-lg svg {
    width: 32px;
    height: 32px;
}

.service-category-head h2 {
    margin-bottom: 4px;
}

.service-category-head p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
}

.service-tags {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease);
}

.service-tag:hover {
    border-color: var(--primary);
    background: var(--primary-tint);
    transform: translateX(4px);
}

.service-tag .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.service-tag .text {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
}

/* ============================================
   ABOUT — Mission
   ============================================ */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mission-card {
    padding: 36px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.mission-card .icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
}

.mission-card .icon-wrap svg {
    width: 32px;
    height: 32px;
}

.mission-card h3 {
    margin-bottom: 10px;
}

.mission-card p {
    color: var(--muted);
    font-size: 0.94rem;
    margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    position: relative;
    transition: all 0.3s var(--ease);
}

.testimonial:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial .quote-mark {
    font-family: var(--font-head);
    font-size: 3rem;
    line-height: 0.8;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.testimonial p {
    color: var(--text);
    font-size: 0.97rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.testimonial-author .avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author .info strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.95rem;
    color: var(--dark);
}

.testimonial-author .info span {
    font-size: 0.82rem;
    color: var(--muted);
}

.testimonial .stars {
    display: flex;
    gap: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.testimonial .stars svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.faq-item.open {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--dark);
    font-size: 1.02rem;
    width: 100%;
    text-align: left;
}

.faq-question .icon-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.faq-question .icon-toggle svg {
    width: 16px;
    height: 16px;
}

.faq-item.open .faq-question .icon-toggle {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: clamp(48px, 6vw, 80px) 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    border-radius: 50%;
}

.cta-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 5vw, 64px);
    align-items: start;
}

.contact-info-list {
    display: grid;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease);
}

.contact-info-item:hover {
    border-color: var(--primary);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.contact-info-item .icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.contact-info-item .icon-wrap svg {
    width: 24px;
    height: 24px;
}

.contact-info-item .label {
    font-size: 0.82rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-item .value {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--dark);
    font-size: 1.05rem;
}

.contact-info-item .sub {
    font-size: 0.88rem;
    color: var(--muted);
    margin-top: 2px;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 40px);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group label .req {
    color: var(--accent);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.96rem;
    color: var(--text);
    background: var(--white);
    transition: all 0.2s var(--ease);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 110, 140, 0.1);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
    font-family: var(--font-body);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6b7c' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 40px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--muted);
    margin: 16px 0 22px;
}

.form-consent input {
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary);
}

.form-consent a {
    color: var(--primary);
    text-decoration: underline;
}

.form-success {
    background: #e3f7ed;
    color: var(--success);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.93rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-success svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Map */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    filter: grayscale(0.2) contrast(1.05);
}

/* Office hours card */
.hours-card {
    background: var(--primary-tint);
    border-radius: var(--radius-md);
    padding: 22px;
}

.hours-card h4 {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-card h4 svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(13, 110, 140, 0.2);
    font-size: 0.92rem;
}

.hours-row:last-child {
    border-bottom: 0;
}

.hours-row .day {
    color: var(--text);
    font-weight: 500;
}

.hours-row .time {
    color: var(--muted);
}

.hours-row.closed .time {
    color: var(--danger);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(60px, 7vw, 90px) 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 18px;
}

.footer-brand .logo .brand {
    color: var(--white);
}

.footer-brand .logo .sub {
    color: var(--accent);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.93rem;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-brand .logo img {
    background-color: #ffff !important;
    padding: 10px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    color: var(--white);
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
}

.footer-col ul {
    display: grid;
    gap: 10px;
}

.footer-col li a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.2s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col li a:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.footer-col li a svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item strong {
    color: var(--white);
    display: block;
    font-weight: 600;
}

.footer-bottom {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

[data-animate][data-delay="1"] {
    transition-delay: 0.1s;
}

[data-animate][data-delay="2"] {
    transition-delay: 0.2s;
}

[data-animate][data-delay="3"] {
    transition-delay: 0.3s;
}

[data-animate][data-delay="4"] {
    transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 920px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image {
        aspect-ratio: 5/4;
    }

    .intro,
    .doctor-section,
    .feature-block,
    .sameday .container,
    .contact-grid,
    .page-hero .container {
        grid-template-columns: 1fr;
    }

    .intro-visual,
    .doctor-image,
    .sameday-visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .doctor-credential-card {
        left: 16px;
    }

    .intro-experience-badge {
        right: 16px;
    }

    .feature-block.reverse {
        direction: ltr;
    }

    .trust-bar .container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner .container {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 18px;
    }

    .topbar {
        font-size: 0.78rem;
    }

    .topbar .container {
        justify-content: center;
        gap: 10px;
    }

    .topbar-left {
        gap: 14px;
    }

    .topbar-right .topbar-item:not(.topbar-cta) {
        display: none;
    }

    .hero-stats {
        gap: 22px;
    }

    .hero-stat .num {
        font-size: 1.5rem;
    }

    .trust-bar .container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-item {
        padding: 8px 0;
    }

    .doctor-info-grid {
        grid-template-columns: 1fr;
    }

    .sameday-conditions {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .hero-floating-card.top-left {
        left: 10px;
        top: 16px;
        padding: 12px 14px;
    }

    .hero-floating-card.bottom-right {
        right: 10px;
        bottom: 16px;
        padding: 12px 14px;
    }
}

@media (max-width: 400px) {
    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px 6px 6px;
    }

    .hero-badge .pill {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}


/* ============================================
   INDIVIDUAL SERVICE PAGES
   ============================================ */
.service-hero {
  background: linear-gradient(135deg, var(--primary-tint) 0%, var(--white) 100%);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.service-hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-hero-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.service-hero-visual img { width: 100%; height: 100%; object-fit: cover; }

.service-hero h1 { margin-bottom: 16px; }
.service-hero p { color: var(--muted); font-size: 1.05rem; margin-bottom: 24px; }

/* Alternating Feature Block (for Service pages) */
.alternating-features .feature-block {
  margin-bottom: clamp(60px, 8vw, 100px);
}
.alternating-features .feature-block:last-child { margin-bottom: 0; }

/* Highlight Box */
.highlight-box {
  background: var(--primary-tint);
  border-left: 4px solid var(--primary);
  padding: 24px;
  border-radius: var(--radius-md);
  margin: 30px 0;
}
.highlight-box h4 { color: var(--primary); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.highlight-box h4 svg { width: 20px; height: 20px; }
.highlight-box p { margin: 0; color: var(--text); font-size: 0.95rem; }

/* Appointment Page Specifics */
.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}

.appointment-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.appointment-info-card h3 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.appointment-info-list { display: grid; gap: 20px; }
.appointment-info-list .item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.appointment-info-list .item .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.appointment-info-list .item .icon svg { width: 24px; height: 24px; }
.appointment-info-list .item .text strong { display: block; font-family: var(--font-head); font-size: 1rem; margin-bottom: 4px; }
.appointment-info-list .item .text span { color: var(--muted); font-size: 0.9rem; }






/* Base Hero Section Style */
.service-hero {
    background: linear-gradient(135deg, var(--primary-tint) 0%, var(--white) 100%);
    padding: clamp(40px, 6vw, 100px) 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

/* Container Flex Layout (Desktop Par Side-by-Side) */
.service-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Content Block */
.service-hero [data-animate]:first-child {
    flex: 1;
    max-width: 580px;
}

/* Right Content / Card Visual Block */
.service-hero-visual {
    flex: 1;
    max-width: 540px;
    background: #ffffff;
    padding: 35px 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.service-hero-visual p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-hero-visual p:last-child {
    margin-bottom: 0;
}

/* Eyebrow Badge Style */
.service-hero .eyebrow {
    display: inline-block;
    background-color: #e0f2fe;
    color: #0284c7;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Main Heading Style */
.service-hero h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

/* CTA Buttons Layout */
.page-hero-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE STYLES
   ========================================== */
@media screen and (max-width: 991px) {
    .service-hero .container {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 25px !important;
    }

    .service-hero [data-animate]:first-child,
    .service-hero > .container > div:first-child,
    .service-hero-visual {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }

    .service-hero-visual {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        aspect-ratio: auto !important; /* Mobile par aspect-ratio finish kar diya */
        height: auto !important;
        padding: 24px 20px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
}

@media screen and (max-width: 576px) {
    .service-hero {
        padding: 30px 0;
    }

    .page-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .page-hero-cta .btn {
        width: 100%;
        text-align: center;
    }
}
/* Insurance Cards Layout (Exact Image Replica) */
.insurance-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    width: 100%;
}

.insurance-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px; /* Exact rounded pill corners */
    padding: 8px 16px;
    height: 72px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.insurance-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.logo-inner-box {
    width: 140px;
    height: 52px;
    background-color: #f8fafc; /* Subtle light background tint inside box */
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    margin-right: 18px;
    flex-shrink: 0;
}

.logo-inner-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.plan-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0d1b2a; /* Deep navy text */
    line-height: 1.25;
    letter-spacing: -0.2px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .insurance-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .insurance-card {
        height: auto;
        min-height: 68px;
        padding: 8px 12px;
    }

    .logo-inner-box {
        width: 120px;
        height: 48px;
        margin-right: 12px;
    }

    .plan-title {
        font-size: 0.9rem;
    }

    .self-pay-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}



/* SECTION BASE */
.reviews-section {
    padding: 60px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.eyebrow {
    color: #0284c7;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.reviews-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #0f172a;
    font-weight: 800;
    margin: 8px 0 0 0;
}

/* GOOGLE BADGE */
.google-badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.google-icon {
    width: 32px;
    height: 32px;
}

.rating-stars-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-num {
    font-weight: 800;
    font-size: 1.2rem;
    color: #0f172a;
}

.stars-gold {
    color: #f59e0b;
    font-weight: bold;
    font-size: 1rem;
}

.google-link {
    color: #64748b;
    font-size: 0.82rem;
    text-decoration: underline;
}

/* REVIEWS GRID & CARDS FIX */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.review-card {
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

.review-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* AVATAR FIX (Pill Bar Stretch Resolved) */
.user-avatar {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    border-radius: 50% !important;
    color: #ffffff;
    font-weight: 700;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0 !important;
    box-sizing: border-box;
}

.bg-blue { background-color: #0284c7; }
.bg-teal { background-color: #0d9488; }
.bg-purple { background-color: #7c3aed; }

.user-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.review-date {
    font-size: 0.78rem;
    color: #64748b;
}

.review-text {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-style: italic;
}

.verified-tag {
    font-size: 0.75rem;
    color: #16a34a;
    font-weight: 600;
}

/* CTA BUTTONS */
.reviews-cta-box {
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-review {
    background-color: #007791;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-google-review {
    background-color: #ffffff;
    color: #0f172a;
    border: 1.5px solid #cbd5e1;
    padding: 11px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* MODAL STYLES */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: #64748b;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #334155;
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    box-sizing: border-box;
    background: #ffffff;
}

.form-textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background-color: #007791;
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .review-card {
        padding: 18px;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .google-badge {
        width: 100%;
        box-sizing: border-box;
    }
}