/* ============================================
   Global Styles & Reset
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Vibrant color palette */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    
    /* Colorful accent colors */
    --purple: #a855f7;
    --pink: #ec4899;
    --orange: #f97316;
    --cyan: #06b6d4;
    --teal: #14b8a6;
    --lime: #84cc16;
    --rose: #f43f5e;
    --amber: #f59e0b;
    
    /* Neutral colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Accent colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 20px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   Header
   ============================================ */

.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    font-weight: 800;
}

.logo .tagline {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact .phone {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--gray-900);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    background: linear-gradient(135deg, #ddd6fe 0%, #fae8ff 50%, #fbcfe8 100%);
    padding: var(--section-padding);
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.hero-benefits {
    margin-bottom: 2rem;
}

.hero-benefits li {
    padding: 8px 0;
    font-size: 1.125rem;
    color: var(--gray-700);
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ============================================
   Problem-Solution Section
   ============================================ */

.problem-solution {
    padding: var(--section-padding);
    background-color: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 3rem;
}

.content-card {
    background-color: var(--gray-50);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.content-card.highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.content-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-card ul {
    margin: 1rem 0;
}

.content-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.content-card li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-weight: bold;
}

.note {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 15px;
    border-radius: 12px;
    border-left: 5px solid var(--warning);
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.2);
}

/* ============================================
   Services Section
   ============================================ */

.services {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 50%, #a7f3d0 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color-1, #6366f1), var(--card-color-2, #a855f7));
}

.service-card:nth-child(1) {
    --card-color-1: #06b6d4;
    --card-color-2: #14b8a6;
}

.service-card:nth-child(2) {
    --card-color-1: #ec4899;
    --card-color-2: #f43f5e;
}

.service-card:nth-child(3) {
    --card-color-1: #f59e0b;
    --card-color-2: #f97316;
}

.service-card:nth-child(4) {
    --card-color-1: #8b5cf6;
    --card-color-2: #6366f1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--card-color-1, #6366f1), var(--card-color-2, #a855f7));
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-card ul {
    margin-top: 1rem;
}

.service-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.info-box {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 3px solid var(--primary-color);
    border-radius: 16px;
    padding: 25px;
    margin-top: 3rem;
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.2);
    position: relative;
}

.info-box::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 20px;
    z-index: -1;
}

.info-box p {
    margin: 0;
    color: var(--gray-800);
}

/* ============================================
   Advantages Section
   ============================================ */

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

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.advantage-card {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--bg-color-1, #faf5ff) 0%, var(--bg-color-2, #fae8ff) 100%);
    transition: var(--transition);
    border: 2px solid transparent;
}

.advantage-card:nth-child(1) {
    --bg-color-1: #ecfeff;
    --bg-color-2: #cffafe;
    --icon-color-1: #06b6d4;
    --icon-color-2: #0891b2;
}

.advantage-card:nth-child(2) {
    --bg-color-1: #fef3c7;
    --bg-color-2: #fde68a;
    --icon-color-1: #f59e0b;
    --icon-color-2: #d97706;
}

.advantage-card:nth-child(3) {
    --bg-color-1: #fee2e2;
    --bg-color-2: #fecaca;
    --icon-color-1: #ef4444;
    --icon-color-2: #dc2626;
}

.advantage-card:nth-child(4) {
    --bg-color-1: #ddd6fe;
    --bg-color-2: #c4b5fd;
    --icon-color-1: #8b5cf6;
    --icon-color-2: #7c3aed;
}

.advantage-card:nth-child(5) {
    --bg-color-1: #d1fae5;
    --bg-color-2: #a7f3d0;
    --icon-color-1: #10b981;
    --icon-color-2: #059669;
}

.advantage-card:nth-child(6) {
    --bg-color-1: #fbcfe8;
    --bg-color-2: #f9a8d4;
    --icon-color-1: #ec4899;
    --icon-color-2: #db2777;
}

.advantage-card:hover {
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px) scale(1.02);
    border-color: var(--icon-color-1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--icon-color-1, #6366f1), var(--icon-color-2, #a855f7));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.advantage-card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--gray-700);
    margin: 0;
}

/* ============================================
   Doctors Section
   ============================================ */

.doctors {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 50%, #c4b5fd 100%);
    position: relative;
}

.doctors::before {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.doctor-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

.doctor-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-card h3 {
    padding: 20px 30px 0;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.doctor-title {
    padding: 0 30px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.doctor-experience {
    padding: 0 30px;
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.doctor-card p:last-child {
    padding: 0 30px 30px;
    color: var(--gray-700);
}

/* ============================================
   Testimonials Section
   ============================================ */

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid;
    border-image: linear-gradient(180deg, #6366f1, #a855f7) 1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--gray-900);
    font-weight: 600;
    margin: 0;
}

.testimonials-note {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 2rem;
    font-style: italic;
}

/* ============================================
   Booking Section
   ============================================ */

.booking {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fed7aa 100%);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 3rem;
}

.booking-info h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.special-offer {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 25px;
    border-radius: 16px;
    border: 3px solid var(--warning);
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.special-offer h3 {
    color: var(--warning);
    margin-bottom: 1rem;
}

.offer-terms {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin-top: 1rem;
    font-style: italic;
}

.contact-details {
    background: linear-gradient(135deg, #ffffff 0%, #fefce8 100%);
    padding: 25px;
    border-radius: 16px;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.75rem;
}

/* ============================================
   Booking Form
   ============================================ */

.booking-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(245, 158, 11, 0.3);
}

.booking-form h3 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.form-note {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    color: var(--success);
    margin-bottom: 1rem;
}

/* ============================================
   Map Section
   ============================================ */

.map-container {
    margin-top: 3rem;
}

.map-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-placeholder {
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.footer-section a {
    color: var(--gray-300);
}

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

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

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

.license-info {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.disclaimer {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: var(--gray-400);
}

.footer-note {
    font-size: 0.875rem;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        height: 400px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-contact {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    
    .header-contact .btn {
        width: 100%;
    }
    
    .hero-text h2 {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-benefits li {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form-container {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .btn {
        font-size: 0.9375rem;
        padding: 10px 20px;
    }
    
    .btn-large {
        font-size: 1rem;
        padding: 14px 24px;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .doctor-image {
        height: 300px;
    }
}

/* ============================================
   Animations
   ============================================ */

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

.hero-content,
.content-card,
.service-card,
.advantage-card,
.doctor-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Accessibility
   ============================================ */

:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
