/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Medical Greens and Blues */
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-600: #059669;
    --emerald-700: #047857;
    
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Typography */
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--slate-800);
    font-size: var(--text-base);
    background: linear-gradient(to bottom right, var(--slate-50), #ffffff, var(--blue-50));
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.font-semibold {
    font-weight: 600;
}

.text-emerald {
    color: var(--emerald-700);
}

.gradient-text {
    background: linear-gradient(135deg, var(--emerald-600), var(--teal-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
}

.nav-logo .logo {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    background: none;
    border: none;
    color: var(--slate-600);
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--slate-800);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-nav-link {
    background: none;
    border: none;
    color: var(--slate-600);
    cursor: pointer;
    font-weight: 500;
    text-align: left;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--slate-100);
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--slate-800);
}

.mobile-cta {
    width: 100%;
    margin-top: var(--space-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: var(--text-base);
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, var(--emerald-600), var(--teal-600));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--emerald-700), var(--teal-700));
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.btn-large {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-lg);
}

/* Hero Section */
.hero {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--slate-50), #ffffff, var(--emerald-50));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(16, 185, 129, 0.05), transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
}

.hero-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--slate-600);
}

.hero-image {
    position: relative;
    order: -1;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(13, 148, 136, 0.3));
    border-radius: var(--radius-full);
    transform: rotate(3deg);
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-2xl);
}

.hero-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    padding: var(--space-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-heart {
    top: -1rem;
    right: -1rem;
    background: var(--emerald-100);
    color: var(--emerald-600);
}

.hero-icon-shield {
    bottom: -1rem;
    left: -1rem;
    background: var(--teal-100);
    color: var(--teal-600);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat-icon {
    background: white;
    border-radius: var(--radius-full);
    padding: var(--space-md);
    width: 4rem;
    height: 4rem;
    margin: 0 auto var(--space-sm);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--emerald-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
}

.stat p {
    color: var(--slate-600);
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--slate-600);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Science Section */
.science {
    padding: var(--space-3xl) 0;
    background: white;
}

.pillar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.pillar-card {
    border: 2px solid transparent;
    background: linear-gradient(to bottom right, white, rgba(255, 255, 255, 0.8));
}

.pillar-card.emerald {
    border-color: var(--emerald-100);
    background: linear-gradient(to bottom right, white, rgba(16, 185, 129, 0.03));
}

.pillar-card.emerald:hover {
    border-color: var(--emerald-200);
    box-shadow: var(--shadow-xl);
}

.pillar-card.blue {
    border-color: var(--blue-100);
    background: linear-gradient(to bottom right, white, rgba(37, 99, 235, 0.03));
}

.pillar-card.blue:hover {
    border-color: var(--blue-200);
    box-shadow: var(--shadow-xl);
}

.pillar-card.teal {
    border-color: rgba(13, 148, 136, 0.2);
    background: linear-gradient(to bottom right, white, rgba(13, 148, 136, 0.03));
}

.pillar-card.teal:hover {
    border-color: rgba(13, 148, 136, 0.3);
    box-shadow: var(--shadow-xl);
}

.card-header {
    text-align: center;
    margin-bottom: var(--space-md);
}

.pillar-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: white;
}

.pillar-icon.emerald {
    background: linear-gradient(135deg, var(--emerald-600), var(--teal-600));
}

.pillar-icon.blue {
    background: linear-gradient(135deg, var(--blue-600), #4f46e5);
}

.pillar-icon.teal {
    background: linear-gradient(135deg, var(--teal-600), #06b6d4);
}

.card-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: var(--space-sm);
}

.card-content p {
    color: var(--slate-600);
    line-height: 1.6;
}

.results-section {
    background: linear-gradient(135deg, var(--slate-50), var(--emerald-50));
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
}

.results-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--slate-900);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.result-number.emerald {
    color: var(--emerald-600);
}

.result-number.blue {
    color: var(--blue-600);
}

.result-number.teal {
    color: var(--teal-600);
}

.result-item p {
    color: var(--slate-700);
    font-weight: 500;
}

/* Technology Section */
.technology {
    padding: var(--space-3xl) 0;
    background: linear-gradient(to bottom right, var(--slate-50), var(--blue-50));
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.tech-card {
    border: 2px solid var(--blue-100);
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: var(--blue-200);
    box-shadow: var(--shadow-xl);
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.tech-icon {
    background: var(--blue-100);
    border-radius: var(--radius);
    padding: var(--space-xs);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon.blue {
    background: var(--blue-100);
    color: var(--blue-600);
}

.tech-icon.emerald {
    background: var(--emerald-100);
    color: var(--emerald-600);
}

.tech-icon.teal {
    background: rgba(13, 148, 136, 0.1);
    color: var(--teal-600);
}

.tech-image {
    position: relative;
}

.tech-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(16, 185, 129, 0.2));
    border-radius: var(--radius-2xl);
    transform: rotate(3deg);
}

.tech-image-container {
    position: relative;
    background: white;
    padding: var(--space-xs);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.tech-image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
}

/* Doctor Section */
.doctor {
    padding: var(--space-3xl) 0;
    background: linear-gradient(to bottom right, var(--slate-50), var(--emerald-50));
}

.doctor-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.doctor-subtitle {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-lg);
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.credential-item i {
    color: var(--emerald-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.credential-item p {
    color: var(--slate-700);
    line-height: 1.6;
}

.doctor-quote {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    border: 1px solid var(--emerald-100);
    box-shadow: var(--shadow-lg);
}

.doctor-quote h4 {
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-sm);
}

.doctor-quote p {
    color: var(--slate-600);
    line-height: 1.6;
    font-style: italic;
}

.doctor-profile {
    position: relative;
}

.doctor-profile-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(13, 148, 136, 0.3));
    border-radius: var(--radius-2xl);
    transform: rotate(2deg);
}

.doctor-card {
    position: relative;
    border: 2px solid var(--emerald-100);
    box-shadow: var(--shadow-2xl);
}

.doctor-card-content {
    padding: var(--space-lg);
    text-align: center;
}

.doctor-photo {
    width: 8rem;
    height: 8rem;
    margin: 0 auto var(--space-md);
    position: relative;
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-full);
    border: 4px solid var(--emerald-100);
}

.doctor-name {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-md);
}

.doctor-titles {
    color: var(--slate-600);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.doctor-specialty {
    font-weight: 600;
}

.doctor-divider {
    height: 1px;
    background: var(--slate-200);
    margin: var(--space-md) 0;
}

.doctor-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.doctor-stat {
    text-align: center;
}

.stat-number {
    font-size: var(--text-2xl);
    font-weight: 700;
}

.stat-number.emerald {
    color: var(--emerald-600);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--slate-600);
}

/* Conditions Section */
.conditions {
    padding: var(--space-3xl) 0;
    background: white;
}

.conditions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.conditions-column-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-lg);
}

.conditions-icon {
    background: var(--emerald-100);
    border-radius: var(--radius);
    padding: var(--space-xs);
    display: flex;
    align-items: center;
    justify-content: center;
}

.conditions-icon.emerald {
    background: var(--emerald-100);
    color: var(--emerald-600);
}

.conditions-icon.blue {
    background: var(--blue-100);
    color: var(--blue-600);
}

.conditions-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.condition-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.condition-card.emerald {
    border-color: var(--emerald-100);
}

.condition-card.emerald:hover {
    border-color: var(--emerald-200);
    box-shadow: var(--shadow-lg);
}

.condition-card.blue {
    border-color: var(--blue-100);
}

.condition-card.blue:hover {
    border-color: var(--blue-200);
    box-shadow: var(--shadow-lg);
}

.condition-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.condition-header h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--slate-900);
}

.condition-badge {
    background: var(--emerald-100);
    color: var(--emerald-700);
    padding: 2px var(--space-xs);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: 500;
}

.condition-badge.blue {
    background: var(--blue-100);
    color: var(--blue-700);
}

.condition-content p {
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.antigens {
    margin-top: var(--space-sm);
}

.antigens-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: var(--space-xs);
}

.antigens-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.antigen-tag {
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: var(--radius);
    border: 1px solid var(--emerald-200);
    color: var(--emerald-700);
    background: white;
}

.antigen-tag.blue {
    border-color: var(--blue-200);
    color: var(--blue-700);
}

.conditions-cta {
    text-align: center;
}

.conditions-cta-content {
    background: linear-gradient(135deg, var(--slate-50), var(--emerald-50));
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
}

.conditions-cta-content h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-md);
}

.conditions-cta-content p {
    font-size: var(--text-lg);
    color: var(--slate-600);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-3xl) 0;
    background: linear-gradient(to bottom right, var(--slate-50), var(--blue-50));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.testimonial-card {
    border: 2px solid var(--slate-100);
    transition: all 0.3s ease;
    background: white;
}

.testimonial-card:hover {
    border-color: var(--emerald-200);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    margin-bottom: var(--space-md);
}

.testimonial-header > div:first-child {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.testimonial-avatar {
    background: linear-gradient(135deg, var(--emerald-600), var(--teal-600));
    border-radius: var(--radius-full);
    padding: var(--space-xs);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-info h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--slate-900);
}

.testimonial-info p {
    font-size: var(--text-sm);
    color: var(--slate-600);
}

.testimonial-badges {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.testimonial-badge {
    background: var(--emerald-100);
    color: var(--emerald-700);
    padding: 2px var(--space-xs);
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 500;
}

.testimonial-content blockquote {
    color: var(--slate-600);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: var(--space-md);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.star-filled {
    color: var(--emerald-400);
    fill: currentColor;
    width: 1rem;
    height: 1rem;
}

.testimonials-stats {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--emerald-100);
    text-align: center;
}

.testimonials-stats h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.stat-item p {
    color: var(--slate-600);
    font-weight: 500;
}

.stats-description {
    font-size: var(--text-lg);
    color: var(--slate-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Evaluation Form Section */
.evaluation {
    padding: var(--space-3xl) 0;
    background: var(--emerald-50);
}

.evaluation-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.evaluation-card {
    border: 2px solid var(--emerald-100);
    box-shadow: var(--shadow-2xl);
    background-color: #d1fae5;
}

.evaluation-header {
    text-align: center;
    padding-bottom: var(--space-lg);
}

.evaluation-icon {
    background: var(--emerald-100);
    border-radius: var(--radius);
    padding: var(--space-xs);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    margin-bottom: var(--space-md);
}

.evaluation-header h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-sm);
}

.evaluation-header p {
    color: var(--slate-600);
    line-height: 1.6;
}

.evaluation-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-weight: 600;
    color: var(--slate-800);
    font-size: var(--text-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid var(--emerald-300);
    border-radius: var(--radius);
    padding: var(--space-sm);
    font-size: var(--text-base);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    background-color: white;
}

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

.privacy-notice {
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    border-radius: var(--radius);
    padding: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.privacy-icon {
    color: var(--emerald-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-content h4 {
    font-weight: 600;
    color: var(--emerald-800);
    margin-bottom: var(--space-xs);
}

.privacy-content p {
    font-size: var(--text-sm);
    color: var(--emerald-700);
    line-height: 1.5;
}

.form-submit {
    text-align: center;
    padding-top: var(--space-md);
}

.form-note {
    font-size: var(--text-sm);
    color: var(--slate-600);
    line-height: 1.5;
    margin-top: var(--space-md);
}

/* Footer */
.footer {
    background: var(--slate-900);
    color: white;
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.footer-section h4 {
    font-weight: 600;
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
    color: white;
}

.footer-logo .logo {
    height: 2rem;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: var(--space-md);
}

.contact-info,
.location-info,
.hours-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-item,
.location-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact-item i,
.location-item i {
    color: var(--emerald-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item span,
.location-address p {
    color: rgba(255, 255, 255, 0.8);
}

.location-highlight,
.hours-highlight {
    color: var(--emerald-400);
    font-size: var(--text-sm);
    margin-top: var(--space-xs);
}

.hours-info p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-divider {
    height: 1px;
    background: var(--slate-700);
    margin: var(--space-xl) 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-2xl);
    }
    
    .section-title {
        font-size: var(--text-4xl);
    }
    
    .tech-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .doctor-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
    
    .hero-image {
        order: 0;
    }
    
    .hero-title {
        font-size: var(--text-6xl);
    }
    
    .section-title {
        font-size: var(--text-5xl);
    }
    
    .pillar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Aspect Ratio Utilities */
.aspect-\[4\/3\] {
    aspect-ratio: 4 / 3;
}

/* Object Fit Utilities */
.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

/* Print Styles */
@media print {
    .nav,
    .footer {
        display: none;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
}