/* ================================================
   Canadian Concierge Orthopedics - Luxury Medical Website
   Color Palette (Burgundy Theme):
   - Primary: Champagne Beige #EDE7DC
   - Secondary: Greige #B8AFA2
   - Accent: Burgundy Red #8B2635
   - Text: Deep Espresso #3A3A3A
   ================================================ */

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

:root {
    --color-primary: #EDE7DC;
    --color-secondary: #B8AFA2;
    --color-accent: #8B2635;
    --color-text: #3A3A3A;
    --color-white: #FFFFFF;
    --color-light: #F8F6F3;
    --color-accent-hover: #6D1E2A;
    --font-primary: 'Lato', 'Helvetica Neue', sans-serif;
    --font-secondary: 'Lato', 'Helvetica Neue', sans-serif;
    --transition: all 0.3s ease;
    --shadow-soft: 0 4px 20px rgba(58, 58, 58, 0.08);
    --shadow-medium: 0 8px 30px rgba(58, 58, 58, 0.12);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent-hover);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================================
   Header & Navigation
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-medium);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--color-text);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.logo-text span {
    display: block;
    font-size: 0.7rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================
   Hero Section
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    margin-top: 82px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-light) 100%);
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.1) 0%, rgba(184, 175, 162, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder::before {
    content: 'Hero Image / Video Placeholder';
    font-size: 1.2rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 2rem 3rem;
    border: 2px dashed var(--color-secondary);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-text);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Video Background */
.hero-video-section {
    background: var(--color-text); /* Fallback color */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-video-section .hero-content {
    z-index: 2;
}

.hero-video-section h1 {
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-video-section .hero-subtitle {
    color: var(--color-white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Page Hero (Interior Pages) */
.page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    margin-top: 82px;
    overflow: hidden;
}

.page-hero .hero-image-placeholder::before {
    content: 'Banner Image Placeholder';
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    margin-bottom: 0;
    font-size: 1.2rem;
}

/* Page Hero Video Background */
.page-hero-video {
    background: var(--color-primary); /* Fallback color */
}

.page-hero-video .hero-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.page-hero-video h1 {
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.page-hero-video .hero-subtitle {
    color: var(--color-white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ================================================
   Buttons
   ================================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: var(--color-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ================================================
   Sections
   ================================================ */
section {
    padding: 6rem 0;
}

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

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

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

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-secondary);
    font-size: 1.15rem;
}

/* ================================================
   Introduction Section
   ================================================ */
.intro-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--color-text);
}

/* ================================================
   Benefits Grid
   ================================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-accent);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--color-secondary);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Six Benefits (Why Choose Us) */
.benefits-six-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.benefit-item {
    padding: 2.5rem;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.benefit-item p {
    color: var(--color-secondary);
    margin-bottom: 0;
    font-size: 1rem;
}

/* ================================================
   Who We Help Section
   ================================================ */
.who-we-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.help-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.help-image-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
}

.help-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.help-card:hover .help-image {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.help-card h4 {
    font-size: 1.2rem;
    color: var(--color-text);
}

/* ================================================
   Program Steps / Timeline
   ================================================ */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--color-secondary);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 2.5rem;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-medium);
}

.timeline-image-wrapper {
    width: 45%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 2.5%;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.timeline-image-wrapper:hover {
    box-shadow: var(--shadow-medium);
    transform: scale(1.02);
}

.timeline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.timeline-image-wrapper:hover .timeline-img {
    transform: scale(1.08);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.timeline-content p {
    color: var(--color-text);
    margin-bottom: 0;
}

/* What Sets CCO Apart - Redesigned */
.sets-apart-section {
    margin-top: 5rem;
    padding: 4rem 0;
}

.sets-apart-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.sets-apart-header h2 {
    color: var(--color-accent);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.sets-apart-header p {
    font-size: 1.2rem;
    color: var(--color-secondary);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Statistics Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(139, 38, 53, 0.25);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 38, 53, 0.35);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.stat-sublabel {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Differentiators Grid */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.differentiator-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    transition: var(--transition);
}

.differentiator-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.differentiator-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: var(--transition);
}

.differentiator-card:hover .differentiator-icon {
    background: var(--color-accent);
    color: var(--color-white);
}

.differentiator-card h4 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.differentiator-card p {
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ================================================
   Surgeon Profiles
   ================================================ */
.surgeon-profile {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 4rem;
    overflow: hidden;
}

.surgeon-profile:last-child {
    margin-bottom: 0;
}

.surgeon-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    padding: 3rem;
    background: var(--color-light);
}

.surgeon-photo {
    width: 100%;
    height: 350px;
    background: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px dashed var(--color-secondary);
}

.surgeon-intro h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.surgeon-specialty {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.surgeon-credentials h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.surgeon-credentials ul {
    list-style: none;
    margin-bottom: 0;
}

.surgeon-credentials li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text);
}

.surgeon-credentials li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.surgeon-body {
    padding: 3rem;
}

.surgeon-body h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.surgeon-body p {
    color: var(--color-text);
    line-height: 1.8;
}

.surgeon-body > div {
    margin-bottom: 2rem;
}

.surgeon-body > div:last-child {
    margin-bottom: 0;
}

.care-philosophy {
    background: var(--color-primary);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.care-philosophy p {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 0;
    color: var(--color-text);
}

.surgeon-footer {
    padding: 2rem 3rem;
    background: var(--color-light);
    text-align: center;
}

/* ================================================
   FAQ Accordion
   ================================================ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--color-white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-light);
}

.faq-question.active {
    background: var(--color-primary);
    color: var(--color-accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: var(--transition);
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--color-text);
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

/* ================================================
   Contact Form
   ================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-group label span {
    color: var(--color-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-primary);
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.1);
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--color-accent);
}

.error-message {
    color: var(--color-accent);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--color-accent);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--color-light);
    border-radius: 8px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.contact-details p {
    color: var(--color-secondary);
    margin-bottom: 0;
}

.contact-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-primary);
    border-radius: 8px;
    text-align: center;
}

.contact-cta p {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 0;
}

/* ================================================
   CTA Section
   ================================================ */
.cta-section {
    background: var(--color-accent);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ================================================
   Footer
   ================================================ */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about .logo-text {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-about .logo-text span {
    color: var(--color-secondary);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ================================================
   Image Placeholders
   ================================================ */
.image-placeholder {
    background: var(--color-primary);
    border: 2px dashed var(--color-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 1rem;
}

/* ================================================
   Responsive Design
   ================================================ */
@media (max-width: 1024px) {
    .benefits-grid,
    .benefits-six-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .differentiators-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .surgeon-header {
        grid-template-columns: 1fr;
    }

    .surgeon-photo {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }

    .timeline-number {
        position: absolute;
        left: 30px;
        top: 0;
    }

    .timeline-content,
    .timeline-image-wrapper {
        width: 100%;
        margin: 0 0 1.5rem 0;
        margin-left: 70px;
        width: calc(100% - 70px);
    }

    .timeline-image-wrapper {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        box-shadow: var(--shadow-medium);
        transform: translateX(-100%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-primary);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero, .page-hero {
        margin-top: 72px;
    }

    .hero {
        min-height: 90vh;
    }

    .benefits-grid,
    .benefits-six-grid,
    .who-we-help-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2.5rem 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .differentiator-card {
        padding: 2rem 1rem;
    }

    .differentiator-icon {
        width: 60px;
        height: 60px;
    }

    .differentiator-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-content {
        padding: 1rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.85rem;
    }

    .benefit-card,
    .benefit-item {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .surgeon-header,
    .surgeon-body,
    .surgeon-footer {
        padding: 2rem 1.5rem;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
    }

    .sets-apart-header h2 {
        font-size: 1.8rem;
    }
}

/* ================================================
   Utility Classes
   ================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Print Styles */
@media print {
    .header, .footer, .btn {
        display: none;
    }

    .hero, .page-hero {
        margin-top: 0;
        min-height: auto;
        padding: 2rem 0;
    }
}
