/* ==========================================================================
   Dr. Zaki Al-Obaid - Luxury Medical Landing Page Styles
   RTL First - Clean, High-Converting, Medical Grade Design
   ========================================================================== */

:root {
    --primary: #0a192f;
    --primary-light: #132f58;
    --primary-dark: #060d19;
    --accent-cyan: #00d2ff;
    --accent-blue: #1d72b8;
    --accent-gold: #c5a059;
    --accent-green: #25d366;
    --green-dark: #128c7e;
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 6px 18px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 35px rgba(10, 25, 47, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Tajawal', sans-serif;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, #00d2ff, #1d72b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gold { color: var(--accent-gold); }
.text-cyan { color: var(--accent-cyan); }
.text-green { color: var(--accent-green); }
.text-red { color: #ef4444; }
.text-muted { color: var(--text-muted); }
.mt-2 { margin-top: 10px; }
.mt-4 { margin-top: 25px; }
.w-100 { width: 100%; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: linear-gradient(135deg, #1d72b8, #0a192f);
    color: #fff;
    box-shadow: 0 4px 15px rgba(29, 114, 184, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 114, 184, 0.45);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-light);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--bg-light);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-call {
    background: #0f172a;
    color: #fff;
}
.btn-call:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 34px;
    font-size: 1.1rem;
}
.btn-xl {
    padding: 18px 40px;
    font-size: 1.25rem;
}

.pulse-btn {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Top Announcement Bar */
.top-bar {
    background: var(--primary-dark);
    color: #e2e8f0;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    margin-left: 8px;
    animation: blink 1.5s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.top-bar-link {
    color: var(--accent-cyan);
    font-weight: 700;
}
.top-bar-link:hover {
    color: #fff;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}
.brand-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.brand-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.brand-link:hover .brand-logo-img {
    transform: scale(1.08) rotate(2deg);
}
.brand-text {
    display: flex;
    flex-direction: column;
}
.brand-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.15;
}
.brand-subtitle {
    font-size: 0.78rem;
    color: var(--accent-blue);
    font-weight: 700;
    letter-spacing: 0.3px;
}
.nav-links {
    display: flex;
    gap: 25px;
}
.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.nav-links a:hover {
    color: var(--accent-blue);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border-bottom: 2px solid var(--accent-blue);
    box-shadow: var(--shadow-md);
}
.mobile-drawer.open {
    display: flex;
}
.mobile-nav-link {
    padding: 12px 0;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef5fc 100%);
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid rgba(29, 114, 184, 0.15);
    margin-bottom: 20px;
}
.hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}
.hero-description {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 30px;
    max-width: 580px;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}
.hero-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image-container {
    position: relative;
}
.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}
.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.5);
}
.floating-badge strong {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
}
.floating-badge small {
    color: var(--text-muted);
}
.top-badge {
    top: -20px;
    left: -20px;
}
.bottom-badge {
    bottom: -20px;
    right: -20px;
}

/* Sections Global */
.section {
    padding: 90px 0;
}
.bg-light {
    background-color: var(--bg-light);
}
.section-header {
    margin-bottom: 50px;
}
.section-tag {
    display: inline-block;
    color: var(--accent-blue);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.section-title {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.feature-card {
    background: var(--bg-card);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(29, 114, 184, 0.3);
}
.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(29, 114, 184, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--text-body);
}

/* Comparison Section */
.comparison-container {
    max-width: 950px;
    margin: 0 auto;
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.comp-col {
    background: #fff;
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.comp-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 25px;
    text-align: center;
}
.comp-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: block;
}
.comp-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 10px;
}
.badge-warning {
    background: #fef2f2;
    color: #b91c1c;
}
.badge-success {
    background: #ecfdf5;
    color: #047857;
}
.highlight-col {
    border: 2px solid var(--accent-blue);
    box-shadow: var(--shadow-lg);
    position: relative;
}
.highlight-col::before {
    content: "الخيار الأفضل لصحتك";
    position: absolute;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
    background: var(--accent-blue);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: var(--radius-pill);
}
.comp-list {
    list-style: none;
}
.comp-list li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
}
.comp-list li:last-child {
    border-bottom: none;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}
.signature-box {
    margin-top: -30px;
    position: relative;
    z-index: 2;
}
.sig-preview {
    max-height: 80px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}
.about-subtitle {
    font-size: 1.15rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    font-weight: 700;
}
.about-text {
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.podcast-quote {
    background: #fff;
    border-right: 4px solid var(--accent-blue);
    padding: 20px 25px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
}
.podcast-quote blockquote {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 10px;
}
.podcast-quote cite {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
}
.about-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.about-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-weight: 700;
    color: var(--primary);
}

/* Cases Section */
.cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.case-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}
.case-img-wrap {
    height: 460px;
    overflow: hidden;
}
.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.case-card:hover .case-img {
    transform: scale(1.04);
}
.case-body {
    padding: 25px;
}
.case-body h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary);
}
.case-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    text-align: right;
}
.faq-arrow {
    transition: transform 0.3s ease;
    color: var(--accent-blue);
}
.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
    color: var(--text-body);
}
.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    color: #fff;
    padding: 80px 0;
}
.cta-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.cta-subtitle {
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 35px;
}
.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: #94a3b8;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h3 {
    color: #fff;
    margin-bottom: 5px;
}
.footer-social a {
    color: #cbd5e1;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.footer-social a:hover {
    color: var(--accent-cyan);
}
.footer-bottom {
    padding-top: 25px;
    font-size: 0.85rem;
}

/* Sticky Mobile CTA Bar */
.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    z-index: 9999;
    gap: 10px;
}
.btn-call-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.flex-grow {
    flex-grow: 1;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-description {
        margin: 0 auto 30px;
    }
    .hero-badges {
        justify-content: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-note {
        justify-content: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .podcast-quote {
        border-right: none;
        border-top: 4px solid var(--accent-blue);
    }
    .about-badges {
        justify-content: center;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 75px; /* Space for sticky bar */
    }
    .sticky-mobile-bar {
        display: flex;
    }
    .hero {
        padding: 40px 0 60px;
    }
    .hero-title {
        font-size: 1.9rem;
    }
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .cases-grid {
        grid-template-columns: 1fr;
    }
    .case-img-wrap {
        height: 250px;
    }
    .cta-title {
        font-size: 1.9rem;
    }
    .nav-cta {
        display: none;
    }
}

/* ==========================================================================
   Blog Section & Article Page Styles (High Readability & Conversion)
   ========================================================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(29, 114, 184, 0.3);
}

.blog-img-wrap {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.2);
}

.blog-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--primary);
}

.blog-title a:hover {
    color: var(--accent-blue);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-read-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.blog-read-more:hover {
    color: var(--primary);
    gap: 10px;
}

/* Standalone Article Layout Styles */
.article-header {
    padding: 70px 0 40px;
    background: linear-gradient(135deg, #0a192f 0%, #132f58 100%);
    color: #fff;
}

.article-breadcrumb {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.article-breadcrumb a {
    color: var(--accent-cyan);
}

.article-main-title {
    font-size: 2.6rem;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 20px;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    color: #cbd5e1;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 18px;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #1e293b;
}

.article-body h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 45px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.article-body h3 {
    font-size: 1.4rem;
    color: var(--primary-light);
    margin: 30px 0 15px;
}

.article-body p {
    margin-bottom: 22px;
}

.article-body ul, .article-body ol {
    margin: 20px 30px 25px 0;
}

.article-body li {
    margin-bottom: 12px;
}

.toc-box {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    padding: 25px 30px;
    margin: 30px 0 45px;
}

.toc-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc-list {
    list-style: none;
    margin: 0 !important;
    padding: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.toc-list a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.cta-box-in-article {
    background: linear-gradient(135deg, #eef7ff 0%, #e0f0fe 100%);
    border: 2px solid #bae0fd;
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.cta-box-in-article h3 {
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.cta-box-in-article p {
    color: var(--text-body);
    font-size: 1rem;
    margin-bottom: 20px;
}

.author-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 60px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-blue);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}
/* ==========================================================================
   Patient Journey Timeline
   ========================================================================== */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.journey-card {
    background: #ffffff;
    padding: 30px 22px;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.journey-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-cyan);
}

.journey-step-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--accent-blue);
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 3px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 119, 182, 0.3);
}

.journey-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: rgba(0, 180, 216, 0.12);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.journey-card h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.journey-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================================================
   Comparison Matrix Table
   ========================================================================== */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-top: 30px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: right;
    border-bottom: 1px solid #edf2f7;
}

.comparison-table th {
    background: #0d1b2a;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
}

.comparison-table th.highlight-th {
    background: var(--accent-blue);
    color: #ffffff;
}

.comparison-table tr:hover td {
    background: #f8fafc;
}

.comparison-table td.highlight-td {
    background: rgba(0, 180, 216, 0.05);
    font-weight: 700;
    color: var(--primary);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars-rating {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.patient-initials {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent-cyan);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.patient-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.patient-city {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Trust Stats & Accreditations Bar
   ========================================================================== */
.trust-stats-bar {
    background: linear-gradient(135deg, #071220 0%, #0c1c33 100%);
    color: #ffffff;
    padding: 50px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.trust-stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #ffffff 30%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    color: #e2e8f0;
    font-weight: 600;
}

/* ==========================================================================
   Floating WhatsApp Button (Desktop)
   ========================================================================== */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: waFloat 3s infinite ease-in-out;
}

.floating-wa-btn i {
    font-size: 1.5rem;
}

.floating-wa-btn:hover {
    transform: scale(1.06) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ==========================================================================
   Sticky Mobile Bottom Bar
   ========================================================================== */
.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 18px;
    gap: 12px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.flex-grow {
    flex: 1;
}

.btn-call-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c5a059, #aa820a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    transition: transform 0.2s ease;
}

.btn-call-icon:hover {
    transform: scale(1.08);
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */
@media (max-width: 992px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 75px; /* prevent sticky bar overlap */
    }

    .floating-wa-btn {
        display: none; /* hidden on mobile, sticky bar handles it */
    }

    .sticky-mobile-bar {
        display: flex;
        align-items: center;
    }

    .top-bar {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .trust-badges-row {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-badge {
        justify-content: center;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}


