/* ============================================
   Envision Eye Group - Main Stylesheet
   ophthalmologistnyc.com
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #1a4b8c;
    --primary-dark: #0d2d5a;
    --primary-light: #2563eb;
    --secondary-color: #60a5fa;
    --accent-color: #0ea5e9;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

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

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

ul, ol {
    list-style: none;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-left span {
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover {
    color: white;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-btn {
    background: var(--accent-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

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

.top-bar-btn.primary {
    background: var(--success-color);
}

.top-bar-btn.primary:hover {
    background: #059669;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
    }
    .top-bar-content {
        justify-content: center;
    }
    .top-bar-left {
        display: none;
    }
}

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

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    max-width: 1500px;
    margin: 0 auto;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
}

.logo a:hover {
    opacity: 0.9;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon i {
    color: white;
    font-size: 22px;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    padding: 8px 18px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav-menu a.external {
    color: var(--primary-light);
    font-size: 0.85rem;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    border-radius: 0;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-left: 8px;
    padding: 3px;
    background: var(--bg-light);
    border-radius: 20px;
}

.lang-toggle a {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
}

.lang-toggle a.active {
    background: var(--primary-color);
    color: white;
}

.mobile-toggle,
.mobile-close {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
}

@media (max-width: 1280px) {
    .nav-menu a {
        padding: 6px 8px;
        font-size: 0.85rem;
    }
    .nav-menu a.external {
        font-size: 0.8rem;
    }
}

@media (max-width: 1100px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        width: 100%;
        padding: 12px 15px;
        font-size: 1rem;
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }

    .lang-toggle {
        margin: 20px 0 0 0;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
        display: block;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

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

.hero-text h1 {
    font-size: 2.75rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

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

.hero-image img {
    max-width: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 968px) {
    .hero {
        padding: 60px 0;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-image {
        order: -1;
    }
    .hero-image img {
        max-width: 300px;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

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

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

.btn-secondary:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

.btn-success:hover {
    background: #059669;
    color: white;
}

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

.btn-lg {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* ============================================
   Trust Badges
   ============================================ */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badge-icon i {
    font-size: 22px;
    color: white;
}

.trust-badge-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 80px 0;
}

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

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

/* ============================================
   Cards
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 28px;
    color: white;
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary-color);
}

.card-link:hover {
    gap: 10px;
}

/* Service Cards */
.service-card {
    border: 1px solid var(--border-color);
}

.service-card:hover {
    border-color: var(--primary-color);
}

.service-card ul {
    margin: 15px 0;
}

.service-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
}

/* Doctor Cards */
.doctor-card {
    text-align: center;
    padding: 40px 30px;
}

.doctor-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--bg-light);
    box-shadow: var(--shadow);
}

.doctor-card h3 {
    color: var(--primary-color);
}

.doctor-card .specialty {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.doctor-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Why Choose Section
   ============================================ */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 968px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.why-item-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item-icon i {
    color: var(--primary-color);
    font-size: 18px;
}

.why-item h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   Media Section
   ============================================ */
.media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.media-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.media-item iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.media-item-content {
    padding: 20px;
}

.media-item h4 {
    margin-bottom: 10px;
}

.media-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Forms
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    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(26, 75, 140, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
}

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

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

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

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    opacity: 0.8;
    margin: 15px 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-color);
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: white;
}

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

.footer-contact i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    max-width: 900px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-copyright a {
    color: var(--accent-color);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Floating CTA Buttons
   ============================================ */
.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-cta a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.floating-cta a:hover {
    transform: scale(1.1);
}

.floating-cta .cta-call {
    background: var(--success-color);
}

.floating-cta .cta-email {
    background: var(--primary-color);
}

.floating-cta .cta-book {
    background: var(--accent-color);
}

.floating-cta .cta-portal {
    background: #6366f1;
}

.floating-cta .cta-pay {
    background: var(--warning-color);
}

.floating-cta-label {
    position: absolute;
    right: 65px;
    background: var(--text-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-cta a:hover .floating-cta-label {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .floating-cta {
        right: 15px;
        bottom: 15px;
    }
    .floating-cta a {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   Page Hero
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 15px;
}

.page-hero p {
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255,255,255,0.6);
}

/* ============================================
   Service Page Layout
   ============================================ */
.service-page {
    padding: 60px 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.service-main h2 {
    color: var(--primary-color);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

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

.service-main p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.service-main ul {
    margin: 20px 0;
}

.service-main ul li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.service-main ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.service-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 25px;
}

.sidebar-cta h3 {
    color: white;
    margin-bottom: 15px;
}

.sidebar-cta p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.sidebar-cta .btn {
    width: 100%;
    margin-bottom: 10px;
}

.sidebar-info {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.sidebar-info h4 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.sidebar-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

@media (max-width: 968px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    .service-sidebar {
        position: static;
    }
}

/* ============================================
   Insurance Grid
   ============================================ */
.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.insurance-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
}

.insurance-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.insurance-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.insurance-item span {
    display: block;
    font-weight: 500;
}

/* ============================================
   Blog Layout
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

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

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

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image i {
    font-size: 48px;
    color: rgba(255,255,255,0.3);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.blog-card h3 a {
    color: var(--text-color);
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.contact-info-card h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-card h3 i {
    color: var(--primary-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-info-item span,
.contact-info-item a {
    color: var(--text-light);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Comparison Table
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--bg-light);
}

.comparison-table .check {
    color: var(--success-color);
}

.comparison-table .cross {
    color: var(--error-color);
}

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.py-1 { padding-top: 10px; padding-bottom: 10px; }
.py-2 { padding-top: 20px; padding-bottom: 20px; }
.py-3 { padding-top: 30px; padding-bottom: 30px; }

.hidden { display: none; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ============================================
   Enhanced Design Elements
   ============================================ */

/* Gradient backgrounds */
.bg-gradient {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 50%, var(--bg-light) 100%);
}

.bg-light {
    background: var(--bg-light);
}

/* Enhanced Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

/* Section title with decorative line */
.section-title {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 15px auto 0;
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Enhanced Cards */
.card {
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

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

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

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.1rem;
}

.video-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Blog Grid Enhanced */
.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.blog-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* Referral Form Styles */
.referral-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.referral-intro h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.referral-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.referral-services h3 {
    margin-bottom: 20px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.service-item i {
    color: var(--success-color);
    font-size: 18px;
}

.referral-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 25px;
}

.form-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

.form-actions {
    text-align: center;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.method-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.method-icon i {
    font-size: 28px;
    color: white;
}

.method-card h3 {
    margin-bottom: 10px;
}

.method-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.method-link {
    color: var(--primary-color);
    font-weight: 600;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 35px;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
}

.legal-section ul li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--text-light);
}

.legal-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 0.85rem;
}

.legal-disclaimer {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius);
    margin-top: 40px;
    border-left: 4px solid var(--warning-color);
}

.legal-disclaimer p {
    margin-bottom: 10px;
}

.legal-disclaimer p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 8px;
}

/* Feature highlights boxes */
.highlight-box {
    background: linear-gradient(135deg, rgba(26, 75, 140, 0.05), rgba(14, 165, 233, 0.05));
    border: 1px solid rgba(26, 75, 140, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 30px 0;
}

.highlight-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Enhanced service cards */
.service-card .card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 10px 30px rgba(26, 75, 140, 0.3);
}

/* Stat boxes */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Process steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.process-step h4 {
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Benefits list with icons */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 22px;
}

.benefit-content h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.benefit-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Testimonial style quote */
.quote-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    margin: 40px 0;
}

.quote-box::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 60px;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
}

.quote-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Enhanced hero content */
.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature i {
    color: var(--accent-color);
}

/* Smooth animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-element {
    animation: float 3s ease-in-out infinite;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced button hover */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Image with overlay */
.image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.image-overlay img {
    transition: transform 0.5s ease;
}

.image-overlay:hover img {
    transform: scale(1.05);
}

.image-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    pointer-events: none;
}

/* ============================================
   Clinic Gallery Responsive
   ============================================ */
.clinic-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 968px) {
    .clinic-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .clinic-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* About Section with Photo Responsive */
.about-with-photo {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

@media (max-width: 968px) {
    .about-with-photo {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .about-with-photo .doctor-photo {
        width: 250px;
    }
    .about-with-photo .memberships-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   Service Page Enhanced Styles
   ============================================ */

/* Service Intro Section */
.service-intro {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: center;
}

.intro-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.intro-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.intro-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(26, 75, 140, 0.08), rgba(14, 165, 233, 0.08));
    border-radius: 30px;
    border: 1px solid rgba(26, 75, 140, 0.15);
    transition: var(--transition);
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(26, 75, 140, 0.12), rgba(14, 165, 233, 0.12));
    transform: translateY(-2px);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.highlight-item span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.intro-image {
    position: relative;
}

.intro-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

@media (max-width: 968px) {
    .service-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .intro-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    .intro-image::before {
        display: none;
    }
}

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

.feature-card {
    background: white;
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(26, 75, 140, 0.3);
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.15rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.two-column .column h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.two-column .column > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Check List */
.check-list {
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li:hover {
    padding-left: 10px;
    background: var(--bg-light);
    margin: 0 -10px;
    padding-right: 10px;
    border-radius: var(--radius);
}

.check-list li i {
    color: var(--success-color);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Warning List */
.warning-list {
    margin: 0;
}

.warning-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.warning-list li:last-child {
    border-bottom: none;
}

.warning-list li:hover {
    padding-left: 10px;
    background: rgba(245, 158, 11, 0.05);
    margin: 0 -10px;
    padding-right: 10px;
    border-radius: var(--radius);
}

.warning-list li i {
    color: var(--warning-color);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Process Steps */
.step {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 25px rgba(26, 75, 140, 0.35);
}

.step h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Info Box */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(96, 165, 250, 0.08));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin-top: 40px;
}

.info-box i {
    font-size: 28px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.info-box div {
    color: var(--text-light);
    line-height: 1.7;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tech-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(26, 75, 140, 0.05), transparent);
    border-radius: 0 0 0 100%;
}

.tech-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-color);
}

.tech-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.tech-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

/* Services List Enhanced */
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(26, 75, 140, 0.25);
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   Doctor Page Enhanced Styles
   ============================================ */
.doctor-profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

.doctor-sidebar {
    position: sticky;
    top: 100px;
}

.doctor-photo-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    text-align: center;
}

.doctor-photo-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.doctor-info-card {
    padding: 30px;
}

.doctor-info-card h1 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.75rem;
}

.doctor-info-card .specialty {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.doctor-contact-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.doctor-contact-btns .btn {
    width: 100%;
    justify-content: center;
}

.doctor-main h2 {
    color: var(--primary-color);
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-light);
    font-size: 1.5rem;
}

.doctor-main h2:first-child {
    margin-top: 0;
}

.doctor-main p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.credentials-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.credential-item:hover {
    background: white;
    box-shadow: var(--shadow);
}

.credential-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.credential-item span {
    font-weight: 500;
    color: var(--text-color);
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.expertise-tag {
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(26, 75, 140, 0.1), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(26, 75, 140, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.expertise-tag i {
    font-size: 0.85rem;
}

.expertise-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Doctor Photo Placeholder */
.doctor-photo-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-gray));
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-photo-placeholder i {
    font-size: 100px;
    color: var(--primary-color);
    opacity: 0.5;
}

.doctor-info-card h2 {
    margin: 0 0 5px;
}

@media (max-width: 968px) {
    .doctor-profile {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .doctor-sidebar {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    .credentials-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FAQ Page Enhanced Styles
   ============================================ */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.faq-category-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-section h3 i {
    font-size: 24px;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.faq-question span {
    flex: 1;
}

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

.faq-question i {
    width: 30px;
    height: 30px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    background: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 800px;
}

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

/* ============================================
   Additional Service Page Components
   ============================================ */

/* Content Box */
.content-box {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.content-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-box p:last-child {
    margin-bottom: 0;
}

/* Comparison Cards */
.comparison-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.compare-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.compare-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.compare-header {
    background: var(--bg-light);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.compare-card.featured .compare-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.compare-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.compare-card.featured .compare-header h3 {
    color: white;
}

.compare-badge {
    padding: 6px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.compare-card.featured .compare-badge {
    background: white;
    color: var(--primary-color);
}

.compare-body {
    padding: 30px;
}

.compare-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.compare-body ul {
    margin: 0;
}

.compare-body ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.compare-body ul li:last-child {
    border-bottom: none;
}

.compare-body ul li i {
    color: var(--success-color);
    font-size: 16px;
}

@media (max-width: 768px) {
    .comparison-cards {
        grid-template-columns: 1fr;
    }
}

/* IOL Grid */
.iol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.iol-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.iol-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.iol-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.iol-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.iol-badge.standard {
    background: var(--success-color);
    color: white;
}

.iol-badge.premium {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.iol-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.iol-card ul {
    margin: 0;
}

.iol-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.iol-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .iol-grid {
        grid-template-columns: 1fr;
    }
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 40px;
}

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

.timeline-marker {
    position: absolute;
    left: 10px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(26, 75, 140, 0.4);
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 25px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Treatment Grid */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.treatment-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.treatment-card.featured {
    border-color: var(--primary-color);
}

.treatment-header {
    background: var(--bg-light);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.treatment-card.featured .treatment-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.treatment-header h3 {
    margin: 0;
    font-size: 1.15rem;
}

.treatment-card.featured .treatment-header h3 {
    color: white;
}

.treatment-tag {
    padding: 5px 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.treatment-tag.premium {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.treatment-card.featured .treatment-tag {
    background: white;
    color: var(--primary-color);
}

.treatment-body {
    padding: 25px;
}

.treatment-body > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.treatment-body h4 {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 15px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.treatment-body ul {
    margin: 0;
}

.treatment-body ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.treatment-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.treatment-body ul.green-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success-color);
    font-size: 0.8rem;
}

@media (max-width: 968px) {
    .treatment-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 40px;
}

.cta-box h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

.cta-box .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Comparison Table Wrapper */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

/* ============================================
   Ocular Surface & Cornea Page Styles
   ============================================ */

/* Type Cards */
.type-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.type-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

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

.type-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.type-card h3 i {
    font-size: 1.25rem;
}

.type-card p {
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .type-cards {
        grid-template-columns: 1fr;
    }
}

/* Symptom & Risk Lists */
.symptom-list,
.risk-list {
    margin: 0;
}

.symptom-list li,
.risk-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.symptom-list li:last-child,
.risk-list li:last-child {
    border-bottom: none;
}

.symptom-list li:hover,
.risk-list li:hover {
    padding-left: 10px;
    background: var(--bg-light);
    margin: 0 -10px;
    padding-right: 10px;
    border-radius: var(--radius);
}

.symptom-list li i {
    color: var(--warning-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.risk-list li i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Condition Grid */
.condition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.condition-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.condition-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(26, 75, 140, 0.03), rgba(14, 165, 233, 0.03));
}

.condition-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.condition-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Treatment Tiers */
.treatment-tiers {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tier {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tier-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tier-number {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.tier-header h3 {
    color: white;
    margin: 0;
    font-size: 1.25rem;
}

.tier-content {
    padding: 30px;
}

.tier-content ul {
    margin: 0;
}

.tier-content ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    line-height: 1.6;
}

.tier-content ul li:last-child {
    border-bottom: none;
}

.tier-content ul li strong {
    color: var(--text-color);
}

/* Treatment Categories */
.treatment-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.category h3 i {
    font-size: 1.25rem;
}

.category > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.category ul {
    margin: 0;
}

.category ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.category ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 0.85rem;
}

.category ul li strong {
    color: var(--text-color);
}

@media (max-width: 968px) {
    .treatment-categories {
        grid-template-columns: 1fr;
    }
}

/* Cornea Layers */
.cornea-layers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.layer-card {
    background: white;
    padding: 25px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid var(--primary-color);
}

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

.layer-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.layer-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .cornea-layers {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .cornea-layers {
        grid-template-columns: 1fr;
    }
}

/* Keratoconus Info */
.keratoconus-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-block {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.info-block h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.15rem;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-light);
}

.info-block > p {
    color: var(--text-light);
    line-height: 1.8;
}

.treatment-steps {
    margin: 0;
    counter-reset: step;
}

.treatment-steps li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.treatment-steps li:last-child {
    border-bottom: none;
}

.treatment-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-steps li strong {
    color: var(--text-color);
}

@media (max-width: 968px) {
    .keratoconus-info {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Contact Page Enhanced Styles
   ============================================ */

/* Full Width Map Container */
.map-container-wide {
    width: 100%;
    height: 400px;
    line-height: 0;
}

.map-container-wide iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Quick Actions Grid - Fixed 3 Columns */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.quick-action-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.quick-action-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.quick-action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(26, 75, 140, 0.3);
}

.quick-action-icon i {
    font-size: 32px;
    color: white;
}

.quick-action-content h3 {
    color: var(--text-color);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.quick-action-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .quick-actions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .quick-action-card {
        padding: 30px 20px;
    }
    .quick-action-icon {
        width: 60px;
        height: 60px;
    }
    .quick-action-icon i {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .map-container-wide {
        height: 300px;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .top-bar,
    .floating-cta,
    .navbar {
        display: none;
    }

    .hero {
        background: white;
        color: black;
    }
}
