/* Base styles */
:root {
    /* Primary Colors — medical teal */
    --primary-color: #0E7490;
    --primary-light: #06B6D4;
    --primary-dark: #155E75;
    
    /* Secondary Colors */
    --secondary-color: #2DD4BF;
    --secondary-dark: #0D9488;
    
    /* CTA Colors */
    --cta-color: #E11D48;
    --cta-dark: #BE123C;
    
    /* Neutral Colors */
    --text-color: #0F172A;
    --text-light: #475569;
    --text-muted: #94A3B8;
    --light-bg: #F0FDFA;
    --lighter-bg: #FFFFFF;
    --white: #ffffff;
    --border-color: #CCFBF1;
    --border-light: #F0FDFA;
    --surface: #ffffff;
    --surface-2: #F0FDFA;
    
    /* Footer Colors */
    --footer-bg: #0C4A6E;
    --footer-text: #BAE6FD;
    
    /* WhatsApp Colors */
    --whatsapp-primary: #25D366;
    --whatsapp-secondary: #128C7E;
    
    /* Shadows */
    --shadow: 0 4px 6px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(21, 94, 117, 0.12);
    --shadow-primary: 0 10px 30px rgba(14, 116, 144, 0.2);
    --shadow-cta: 0 8px 24px rgba(225, 29, 72, 0.28);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Spacing */
    --section-padding: clamp(3rem, 8vw, 5rem);
    --section-padding-mobile: clamp(2.5rem, 6vw, 3.5rem);
    --container-padding: clamp(1rem, 4vw, 1.5rem);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    direction: rtl;
    background-color: var(--light-bg);
    color: var(--text-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--cta-color);
    text-decoration: none;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 70px;
    transition: var(--transition);
}

/* Navbar scroll effect */
nav.scrolled {
    padding: 10px 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

a.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background: linear-gradient(135deg, #155E75 0%, #0E7490 50%, #06B6D4 100%);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(14, 116, 144, 0.35);
    transition: var(--transition);
    flex-shrink: 0;
    line-height: 0;
}

a.logo:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(14, 116, 144, 0.45);
}

.logo img {
    height: 44px;
    width: 44px;
    max-width: 44px;
    object-fit: contain;
    display: block;
}

.nav-content {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
    margin-right: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    margin: 0 10px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 700;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
    background-color: rgba(75, 0, 130, 0.1);
}

/* Language Switcher */
.language-switch {
    margin-right: 20px;
}

.language-switch a {
    padding: 5px 10px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 700;
    color: var(--primary-color);
}

.language-switch a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Dropdown menu */
.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    min-width: 200px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    padding: 10px 0;
    border-top: 3px solid var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid #f1f1f1;
    font-weight: 400;
    color: var(--text-color);
}

.dropdown-menu a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding-right: 25px; /* Slide effect */
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--primary-color);
}

/* --- Sections --- */

/* Hero section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #F0FDFA 0%, #ECFEFF 55%, #CFFAFE 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 0;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-block;
    background-color: var(--cta-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    position: relative;
    z-index: 1;
}

.cta-btn:hover {
    background-color: #b01030;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
    color: var(--white);
}

/* Features section */
.features-section {
    padding: 80px 0;
    background-color: var(--white);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-size: 2.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.feature-card > i {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(75, 0, 130, 0.1);
    padding: 20px;
    border-radius: 50%;
}

.feature-card .icon-box i {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    display: block;
    line-height: 1;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.3rem;
}

/* Doctor section */
.doctor-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.doctor-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.doctor-image img {
    border-radius: 50%;
    max-width: 220px;
    border: 5px solid var(--secondary-color);
}

.doctor-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.doctor-text h4 {
    color: var(--cta-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Regions Section */
.regions-section {
    padding: 80px 0;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.region-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.region-card h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Contact section */
.contact-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background-color: var(--light-bg);
}

.contact-section-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--primary-dark, #155E75);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    background-color: var(--white);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color, #E2E8F0);
    text-align: right;
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.1), rgba(52, 211, 153, 0.12));
    border-radius: 12px;
}

.contact-item-icon i {
    color: var(--cta-color, #E11D48);
    font-size: 1.25rem;
}

.contact-item-body {
    flex: 1;
    min-width: 0;
}

.contact-item-body h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color, #1E293B);
}

.contact-item-body p {
    margin: 0;
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item-body a {
    color: var(--primary-color, #0E7490);
    font-weight: 600;
    word-break: break-word;
}

.contact-item-body a:hover {
    text-decoration: underline;
}

.contact-social {
    padding-top: 20px;
    margin-top: 4px;
    border-top: 1px solid var(--border-color, #E2E8F0);
}

.contact-social h3 {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color, #1E293B);
}

.contact-social-icons {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.contact-social-icons a {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.1), rgba(52, 211, 153, 0.12));
    border-radius: 50%;
    color: var(--primary-color, #0E7490);
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-social-icons a:hover {
    background: var(--primary-color, #0E7490);
    color: white;
    transform: translateY(-2px);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 1rem;
    text-align: right;
    direction: rtl;
    transition: var(--transition);
    background: var(--white);
}

.contact-form input.input-ltr {
    direction: ltr;
    text-align: right;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.1);
}

.contact-form .submit-btn {
    align-self: flex-start;
    margin-top: 4px;
}

.contact-item i {
    color: var(--cta-color);
    font-size: 24px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: #134E4A;
    transform: translateY(-2px);
}

.contact-map-block {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color, #E2E8F0);
}

.contact-map-title {
    text-align: center;
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    font-weight: 800;
    color: var(--primary-dark, #155E75);
    margin-bottom: 16px;
}

.contact-map .map-wrapper,
.contact-map-block .map-wrapper {
    border-radius: var(--radius-lg, 20px);
    overflow: hidden;
    min-height: 280px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color, #E2E8F0);
}

.contact-map iframe,
.contact-map-block iframe {
    display: block;
    width: 100%;
    min-height: 280px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.1), rgba(52, 211, 153, 0.12));
    border-radius: 50%;
    color: var(--primary-color, #0E7490);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color, #0E7490);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        padding: clamp(1.25rem, 4vw, 2rem);
        gap: 24px;
    }

    .contact-info {
        order: 1;
    }

    .contact-form {
        order: 2;
        width: 100%;
    }

    .contact-social-icons {
        flex-wrap: wrap;
    }

    .contact-form .submit-btn {
        width: 100%;
        align-self: stretch;
    }

    .contact-map-block {
        margin-top: 8px;
    }
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: #ddd;
    padding: 60px 0 20px;
}

footer h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

footer a:hover {
    color: var(--secondary-color);
}

.footer-contact i {
    color: var(--cta-color);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #25D366, #128C7E);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

/* WhatsApp Chat Window */
.whatsapp-chat {
    position: fixed;
    bottom: 90px;
    left: 20px;
    z-index: 1001;
    width: 300px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    display: none; /* Hidden by default */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.whatsapp-chat.show {
    opacity: 1;
    transform: translateY(0);
}

.chat-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.chat-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
}

.chat-header h4 {
    margin: 0;
    font-size: 16px;
}

.chat-header p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.close-chat {
    position: absolute;
    top: 10px;
    right: 15px; /* RTL: left side? No, close usually on corner. */
    left: auto;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
}
/* Since direction is RTL, right is actually right. */

.chat-body {
    padding: 20px;
    background-color: #f9f9f9;
    height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message-bubble {
    background-color: white;
    padding: 10px 15px;
    border-radius: 15px;
    border-top-right-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    max-width: 80%;
    font-size: 14px;
    align-self: flex-start;
}

.message-bubble.user-message {
    background-color: #dcf8c6;
    border-top-right-radius: 15px;
    border-top-left-radius: 0;
    align-self: flex-end;
}

.chat-footer {
    padding: 10px;
    background-color: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex-grow: 1;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-footer .send-btn {
    background-color: #25D366;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-footer .send-btn:hover {
    background-color: #128C7E;
}

/* WhatsApp Float (Anchor version) */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #25D366, #128C7E);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    color: white;
    font-size: 30px;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
}

/* Content Pages */
.content-section h2 {
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 10px;
}

.info-box {
    background-color: #f0f4ff;
    border-right: 5px solid var(--primary-color);
}

.warning-note {
    background-color: #fff5f5;
    border-right: 5px solid var(--cta-color);
    color: #8b0000;
}

/* ====================================
   MISSING CSS CLASSES - ADDED
==================================== */

/* --- Utility Classes --- */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.text-center {
    text-align: center;
}

.line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.subtitle {
    color: var(--cta-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* --- Page Hero Section --- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(152, 251, 152, 0.15);
    border-radius: 50%;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

/* --- Breadcrumb --- */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: var(--secondary-color);
    font-weight: 600;
}

/* --- Contact Page Styles --- */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(75, 0, 130, 0.15);
    border-color: var(--primary-color);
}

.contact-card .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.1), rgba(152, 251, 152, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card .icon-box i {
    font-size: 32px;
    color: var(--primary-color);
}

.contact-card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--cta-color);
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-section .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.col-form,
.col-map {
    min-height: 400px;
}

.col-form h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.col-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(75, 0, 130, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-success,
.form-error {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}

.form-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* --- Blog Styles --- */
.blog-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.blog-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.blog-header .breadcrumb {
    justify-content: center;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    padding: 60px 0;
}

.blog-main-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.blog-main-content h1 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.blog-main-content h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.blog-main-content h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 25px 0 12px;
}

.blog-main-content p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.blog-main-content ul,
.blog-main-content ol {
    margin: 20px 0;
    padding-right: 25px;
}

.blog-main-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.blog-featured-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.blog-meta i {
    color: var(--primary-color);
}

/* --- Author Box --- */
.author-box {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.05), rgba(152, 251, 152, 0.1));
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    display: flex;
    gap: 25px;
    align-items: center;
    border: 1px solid rgba(75, 0, 130, 0.1);
}

.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
}

.author-info h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info .title {
    color: var(--cta-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.author-info p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* --- Sidebar --- */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
}

.sidebar-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.related-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-posts li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.related-posts li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-posts a {
    display: flex;
    gap: 15px;
    align-items: center;
    color: var(--text-color);
    transition: var(--transition);
}

.related-posts a:hover {
    color: var(--primary-color);
}

.related-posts img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.related-posts span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.regions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.regions-list li {
    margin-bottom: 10px;
}

.regions-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background-color: var(--light-bg);
    border-radius: 8px;
    color: var(--text-color);
    transition: var(--transition);
}

.regions-list a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.regions-list i {
    color: var(--primary-color);
}

.regions-list a:hover i {
    color: var(--white);
}

.cta-sidebar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.cta-sidebar h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.cta-sidebar p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.cta-sidebar .cta-btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.cta-sidebar .cta-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* --- FAQ Styles --- */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 25px rgba(75, 0, 130, 0.12);
}

.faq-item h3 {
    padding: 20px 25px;
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item h3:hover {
    color: var(--primary-color);
}

.faq-item h3.active {
    color: var(--primary-color);
    background-color: rgba(75, 0, 130, 0.05);
}

.faq-item h3::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item h3.active::after {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 25px;
    color: #666;
    line-height: 1.8;
}

/* --- Warning Box and CTA Box --- */
.warning-box {
    background: linear-gradient(135deg, #fff5f5, #ffe6e6);
    border-right: 5px solid var(--cta-color);
    padding: 25px 30px;
    border-radius: 10px;
    margin: 25px 0;
}

.warning-box h4 {
    color: var(--cta-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.warning-box h4 i {
    font-size: 1.3rem;
}

.warning-box p {
    color: #8b0000;
    margin: 0;
    line-height: 1.7;
}

.related-articles {
    background: var(--bg-light, #F0FDFA);
    border: 1px solid #CCFBF1;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.related-articles h3 {
    color: var(--primary-color, #0E7490);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.related-articles ul {
    margin: 0;
    padding-right: 1.25rem;
}

.related-articles li {
    margin-bottom: 0.35rem;
}

.related-articles a {
    color: var(--secondary-color, #155E75);
    text-decoration: none;
}

.related-articles a:hover {
    text-decoration: underline;
}

.cta-box {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.05), rgba(152, 251, 152, 0.15));
    border-right: 5px solid var(--primary-color);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.cta-box h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.cta-box .cta-btn {
    display: inline-block;
}

/* --- Price Table --- */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.price-table thead {
    background: linear-gradient(135deg, var(--primary-color), #155E75);
}

.price-table th {
    padding: 18px 20px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
}

.price-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: var(--text-color);
}

.price-table tbody tr:hover {
    background-color: rgba(75, 0, 130, 0.03);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- Blog Grid --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(75, 0, 130, 0.15);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.blog-card h3 a {
    color: var(--text-color);
    transition: var(--transition);
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.blog-card .read-more {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.blog-card .read-more:hover {
    color: var(--cta-color);
    gap: 12px;
}

/* --- Features Section (Enhanced) --- */
.features {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.1), rgba(152, 251, 152, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.icon-box i {
    font-size: 36px;
    color: var(--primary-color);
}

.feature-card:hover .icon-box {
    background: linear-gradient(135deg, var(--primary-color), #155E75);
}

.feature-card:hover .icon-box i {
    color: var(--white);
}

/* --- Hero Buttons --- */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary,
.hero-buttons .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--cta-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.35);
}

.btn-primary:hover {
    background-color: #b01030;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.45);
    color: var(--white);
}

.btn-secondary,
.hero-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* --- Page Section --- */
.page-section {
    padding: 80px 0;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-text h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.page-text h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin: 25px 0 12px;
}

.page-text p {
    margin-bottom: 18px;
    line-height: 1.9;
}

/* --- Footer Enhanced --- */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-about p {
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links ul,
.footer-regions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-regions li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-regions a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-regions a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ====================================
   ANIMATION CLASSES
==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.whatsapp-btn {
    animation: pulse 2s infinite;
}

/* ====================================
   RESPONSIVE STYLES
==================================== */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .contact-form-section .row {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .doctor-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1,
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p,
    .page-hero p {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .blog-main-content {
        padding: 25px;
    }
    
    .blog-main-content h1 {
        font-size: 1.6rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .page-hero {
        padding: 60px 15px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .faq-item h3 {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .price-table th,
    .price-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

/* ====================================
   CONVERSION OPTIMIZATION - CRO STYLES
   Professional WhatsApp-First Design
==================================== */

/* === Announcement Bar === */
.announcement-bar {
    background: linear-gradient(90deg, #128C7E, #25D366, #128C7E);
    background-size: 200% 100%;
    animation: shimmer-bg 4s linear infinite;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    position: relative;
    z-index: 999;
}

.announcement-bar a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}

.announcement-bar a:hover { color: #dcf8c6; }

@keyframes shimmer-bg {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.announcement-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin-left: 8px;
    vertical-align: middle;
    animation: dot-blink 1.4s infinite;
}

@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* === Trust Badges Strip === */
.trust-badges {
    background: white;
    padding: 20px 0;
    border-bottom: 2px solid #f0f0f0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.trust-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
}

.trust-badge i {
    font-size: 22px;
    color: #25D366;
    flex-shrink: 0;
}

.trust-badge-label {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.trust-badge-label small {
    color: #888;
    font-weight: 400;
    font-size: 0.75rem;
}

.trust-divider {
    width: 1px;
    height: 35px;
    background: #eee;
}

/* === Hero Stats === */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-top: 40px;
    flex-wrap: wrap;
    padding: 22px 30px;
    background: rgba(255,255,255,0.75);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.9);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px rgba(75,0,130,0.08);
}

.hero-stat {
    text-align: center;
    flex: 1;
    min-width: 90px;
}

.hero-stat .stat-number {
    display: block;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

.hero-divider {
    width: 1px;
    background: #ddd;
    align-self: stretch;
    margin: 5px 0;
}

/* === WhatsApp Primary CTA Button === */
.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    padding: 20px 45px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    text-decoration: none !important;
    position: relative;
    z-index: 1;
    animation: wa-glow 2.5s ease-in-out infinite;
}

.whatsapp-cta-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    color: white !important;
}

.whatsapp-cta-btn i { font-size: 1.5rem; }

@keyframes wa-glow {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 8px 45px rgba(37, 211, 102, 0.7); }
}

/* === Urgency Badge === */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.12);
    border: 1.5px solid rgba(37, 211, 102, 0.35);
    color: #0e7a4f;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    animation: dot-blink 1.4s infinite;
}

/* === Hero Secondary Button === */
.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-color) !important;
    padding: 17px 35px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    border: 2.5px solid var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.hero-secondary-btn:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-3px);
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* === Testimonials Section === */
.testimonials-section {
    padding: 90px 0;
    background: linear-gradient(160deg, #f8f9ff 0%, #f0fdf4 60%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,211,102,0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.testimonials-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.section-stars {
    color: #FFB800;
    font-size: 1.2rem;
    display: block;
    text-align: center;
    margin-bottom: 8px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 25px;
    margin-bottom: 45px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(75,0,130,0.12);
    border-color: rgba(75,0,130,0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 100px;
    color: rgba(75, 0, 130, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    color: #555;
    line-height: 1.85;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #155E75);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-info strong {
    display: block;
    color: #333;
    font-size: 0.92rem;
}

.testimonial-info span {
    color: #aaa;
    font-size: 0.8rem;
}

.testimonials-rating-box {
    background: white;
    border-radius: 24px;
    padding: 35px 40px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.08);
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 1;
}

.rating-big-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.rating-stars {
    color: #FFB800;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.rating-count {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 7px 0;
    font-size: 0.85rem;
    color: #666;
}

.rating-bar-fill {
    flex: 1;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.rating-bar-fill span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #FFB800, #FF8C00);
    border-radius: 3px;
}

/* === CTA Banner Section === */
.cta-banner-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0E7490 50%, #155E75 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.cta-banner-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: rgba(37,211,102,0.1);
    border-radius: 50%;
}

.cta-banner-section h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-banner-section p {
    color: rgba(255,255,255,0.88);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto 35px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.cta-banner-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.cta-banner-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    font-weight: 600;
}

.cta-banner-feature i { color: #25D366; }

/* === Sticky WhatsApp Bar (Mobile) === */
.sticky-whatsapp-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(90deg, #128C7E, #25D366);
    padding: 14px 20px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 -5px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-whatsapp-bar:hover {
    background: linear-gradient(90deg, #0d7a6e, #20c45a);
}

.sticky-whatsapp-bar i {
    font-size: 1.6rem;
    color: white;
}

.sticky-whatsapp-bar span {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

/* === Section Title Line === */
.section-title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin: 12px auto 0;
}

/* === Mobile Adjustments === */
@media (max-width: 768px) {
    .sticky-whatsapp-bar {
        display: flex;
    }

    body {
        padding-bottom: 58px;
    }

    .whatsapp-btn {
        bottom: 75px !important;
    }

    .whatsapp-chat {
        bottom: 145px !important;
        width: calc(100% - 30px) !important;
        max-width: 340px;
        right: 15px !important;
        left: 15px !important;
    }

    .trust-badges-grid {
        gap: 18px;
    }

    .trust-divider {
        display: none;
    }

    .hero-stats {
        gap: 15px;
        padding: 18px;
    }

    .hero-stat .stat-number {
        font-size: 1.6rem;
    }

    .whatsapp-cta-btn {
        padding: 16px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-secondary-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .testimonials-section h2,
    .cta-banner-section h2 {
        font-size: 1.7rem;
    }

    .rating-big-number {
        font-size: 3.5rem;
    }

    .cta-banner-features {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        font-size: 0.78rem;
        padding: 8px 12px;
    }

    .trust-badge-label small {
        display: none;
    }

    .hero-stat .stat-label {
        font-size: 0.75rem;
    }

    .testimonials-rating-box {
        padding: 25px 20px;
    }
}

/* ============================================
   Scroll Reveal & Lazy Load Enhancements
   ============================================ */

.animate-on-scroll,
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-left {
    transform: translateX(36px);
}

.reveal-right {
    transform: translateX(-36px);
}

.animate-on-scroll.animated,
.reveal-left.animated,
.reveal-right.animated,
.reveal-up.animated {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.animate-on-scroll[data-delay="1"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="2"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="3"] { transition-delay: 0.3s; }

img.lazy-img {
    opacity: 0;
    transition: opacity 0.45s ease, filter 0.45s ease;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
}

img.lazy-img.is-loaded,
img.lazy-img.loaded {
    opacity: 1;
    background: none;
}

img.lazy-img.is-loading {
    animation: lazy-shimmer 1.4s linear infinite;
}

@keyframes lazy-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Hero layout refresh */
.hero {
    background: linear-gradient(135deg, #faf8ff 0%, #ede7f6 45%, #e8f5e9 100%);
    padding: 70px 20px 50px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    text-align: right;
}

.hero-main {
    position: relative;
    z-index: 1;
}

.hero-visual-wrap {
    position: relative;
    z-index: 1;
}

.hero-visual-img {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.85);
}

.hero-main h1,
.hero-main p,
.hero-cta-group {
    text-align: right;
}

.doctor-credentials {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.doctor-credentials li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 600;
}

.doctor-credentials i {
    color: var(--secondary-dark);
}

.feature-card {
    border-radius: 18px;
    border: 1px solid rgba(75, 0, 130, 0.08);
    background: linear-gradient(180deg, #fff 0%, #fdfcff 100%);
}

.doctor-content {
    border: 1px solid rgba(75, 0, 130, 0.06);
    background: linear-gradient(145deg, #ffffff 0%, #f9f6ff 100%);
}

.doctor-image img {
    box-shadow: 0 12px 30px rgba(75, 0, 130, 0.15);
}

@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-main h1,
    .hero-main p,
    .hero-cta-group {
        text-align: center;
    }

    .hero-visual-wrap {
        order: -1;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* ============================================
   MODERN UI REFRESH 2026 — Mobile-First
   ============================================ */

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    background: var(--surface-2);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

.container {
    width: min(92%, 1200px);
    padding-inline: var(--container-padding);
}

/* --- Navigation --- */
nav {
    padding: 12px clamp(1rem, 4vw, 5%);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(14, 116, 144, 0.07);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 4px 24px rgba(21, 94, 117, 0.05);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.96);
}

.nav-links a {
    border-radius: var(--radius-sm);
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(14, 116, 144, 0.08);
    color: var(--primary-color);
}

.language-switch a {
    border-radius: var(--radius-full);
    border-width: 1.5px;
    padding: 6px 14px;
    font-size: 0.85rem;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(14, 116, 144, 0.08);
    transition: var(--transition);
}

.menu-toggle:active {
    transform: scale(0.95);
    background: rgba(14, 116, 144, 0.15);
}

/* --- Hero --- */
.hero {
    background: linear-gradient(135deg, #FAF5FF 0%, #F0FDF4 45%, #EFF6FF 100%);
    padding: clamp(2.5rem, 8vw, 4.5rem) 0 clamp(2rem, 6vw, 3rem);
    overflow: hidden;
}

.hero::before {
    width: 320px;
    height: 320px;
    top: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.25) 0%, transparent 70%);
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(34, 211, 238, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 15% 85%, rgba(52, 211, 153, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.hero-main h1,
.hero h1 {
    font-size: clamp(1.75rem, 5.5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
}

.hero-main p,
.hero p {
    font-size: clamp(1rem, 2.8vw, 1.2rem);
    color: var(--text-light);
    line-height: 1.75;
}

.hero-visual-img {
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 60px rgba(21, 94, 117, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* --- Buttons --- */
.cta-btn,
.whatsapp-cta-btn,
.hero-secondary-btn {
    min-height: 48px;
    border-radius: var(--radius-full);
    font-size: clamp(0.92rem, 2.5vw, 1.05rem);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:active,
.whatsapp-cta-btn:active,
.hero-secondary-btn:active {
    transform: scale(0.98);
}

.whatsapp-cta-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.hero-secondary-btn {
    border: 1.5px solid rgba(14, 116, 144, 0.2);
    background: var(--surface);
    color: var(--primary-dark);
}

.hero-secondary-btn:hover {
    background: rgba(14, 116, 144, 0.06);
    border-color: var(--primary-light);
}

/* --- Trust Badges --- */
.trust-badges {
    background: var(--surface);
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
}

.trust-badge {
    padding: 8px 4px;
}

.trust-badge i {
    color: var(--primary-light);
    font-size: 1.35rem;
}

/* --- Content Section --- */
.content-section {
    padding: var(--section-padding) 0;
}

.content-section h2 {
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    font-weight: 800;
    color: var(--primary-dark);
    border-bottom: none;
    margin: 2rem 0 1rem;
    padding-bottom: 0;
}

.content-section h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-top: 10px;
}

.content-section > p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.content-section > ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
    margin: 1.25rem 0;
}

.content-section > ul li {
    padding: 14px 18px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border-right: 3px solid var(--secondary-color);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    color: var(--text-color);
    line-height: 1.6;
}

/* --- FAQ --- */
.content-section .faq-section,
.faq-section {
    padding: 2.5rem 0 0;
    margin-top: 1rem;
}

.faq-section > h2 {
    text-align: center;
    font-size: clamp(1.4rem, 4vw, 1.9rem);
    margin-bottom: 1.75rem;
}

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--surface);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    margin-bottom: 10px;
}

.faq-item:hover {
    border-color: rgba(14, 116, 144, 0.25);
    box-shadow: 0 4px 20px rgba(14, 116, 144, 0.08);
}

.faq-item h3 {
    font-size: clamp(0.92rem, 2.8vw, 1.05rem);
    padding: clamp(1rem, 3vw, 1.2rem) clamp(1rem, 4vw, 1.4rem);
    line-height: 1.55;
    font-weight: 700;
}

.faq-item p {
    padding: 0 clamp(1rem, 4vw, 1.4rem) clamp(1rem, 3vw, 1.2rem);
    color: var(--text-light);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* --- Related Links --- */
.related-links {
    padding: 2.5rem 0 0;
}

.related-links h2 {
    text-align: center;
    font-size: clamp(1.3rem, 4vw, 1.75rem);
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.related-links-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.related-links-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    min-height: 48px;
    background: var(--surface);
    border: 1.5px solid rgba(14, 116, 144, 0.12);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    color: var(--primary-dark);
    box-shadow: 0 2px 12px rgba(21, 94, 117, 0.06);
    transition: var(--transition);
}

.related-links-list a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* --- Blog Preview --- */
.blog-preview-section {
    padding: var(--section-padding) 0;
    background: var(--surface);
}

.section-heading {
    text-align: center;
    font-size: clamp(1.45rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.mb-lg {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem) !important;
}

.mt-lg {
    margin-top: clamp(1.5rem, 4vw, 2rem);
}

.cta-center {
    text-align: center;
}

.blog-preview-section .blog-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--surface);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card .blog-img {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.06);
}

.blog-preview-section .blog-content {
    padding: 1rem 1.25rem 1.25rem;
}

.blog-card h3 {
    font-size: clamp(0.95rem, 2.8vw, 1.05rem);
    line-height: 1.45;
}

.blog-card h3 a {
    color: var(--text-color);
    font-weight: 700;
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

/* --- Order Steps --- */
.order-steps-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #ECFDF5 0%, var(--surface-2) 100%);
}

.order-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(1rem, 3vw, 1.75rem);
    max-width: 920px;
    margin: 0 auto;
}

.order-step-card {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    transition: transform 0.25s ease;
}

.order-step-card:hover {
    transform: translateY(-4px);
}

.order-step-card h3 {
    font-size: clamp(1rem, 3vw, 1.15rem);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.order-step-card p {
    color: var(--text-light);
    font-size: clamp(0.88rem, 2.5vw, 0.95rem);
    line-height: 1.7;
}

.order-step-card a {
    color: var(--whatsapp-secondary);
    font-weight: 700;
}

.step-badge {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.35rem;
    color: white;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* --- Features --- */
.features-section {
    padding: var(--section-padding) 0;
    background: var(--surface);
}

.features-section h2 {
    font-size: clamp(1.45rem, 4vw, 2rem);
    font-weight: 800;
}

.feature-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14, 116, 144, 0.08);
    background: linear-gradient(180deg, #fff 0%, #FAFAFF 100%);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    padding: clamp(1.5rem, 4vw, 2rem);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 116, 144, 0.18);
}

.feature-card .icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.1), rgba(52, 211, 153, 0.12));
    border-radius: var(--radius-md);
}

.feature-card .icon-box i,
.feature-card > i {
    font-size: 1.75rem;
    color: var(--primary-color);
    background: none;
    padding: 0;
    margin: 0;
}

.feature-card h3 {
    font-size: clamp(1rem, 3vw, 1.15rem);
    font-weight: 800;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: clamp(0.88rem, 2.5vw, 0.95rem);
}

/* --- Doctor Section --- */
.doctor-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--surface-2) 0%, #F5F3FF 100%);
}

.doctor-content {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(14, 116, 144, 0.08);
    box-shadow: var(--shadow-md);
    padding: clamp(1.5rem, 5vw, 2.5rem);
    gap: clamp(1.5rem, 4vw, 3rem);
}

.doctor-text h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--primary-dark);
}

.doctor-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.doctor-actions .whatsapp-cta-btn,
.doctor-actions .cta-btn {
    padding: 14px clamp(1rem, 3vw, 1.75rem);
    font-size: clamp(0.88rem, 2.5vw, 1rem);
}

/* --- Testimonials & CTA Banner --- */
.testimonials-section {
    padding: var(--section-padding) 0;
}

.cta-banner-section {
    border-radius: 0;
}

.section-title-line {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* --- Footer --- */
footer {
    background: var(--footer-bg);
}

/* --- Blog Page --- */
.page-hero,
.blog-header {
    background: linear-gradient(135deg, #FAF5FF 0%, #F0FDF4 100%);
    padding: clamp(2.5rem, 8vw, 4rem) 0;
}

.blog-header h1 {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    font-weight: 800;
    color: var(--primary-dark);
}

.blog-card .read-more {
    font-weight: 700;
    color: var(--primary-color);
}

.blog-card .category {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-full);
    padding: 4px 12px;
    font-size: 0.75rem;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

/* --- Mobile Optimizations --- */
@media (max-width: 768px) {
    body {
        padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    }

    nav {
        padding: 10px 4%;
        min-height: 60px;
    }

    a.logo {
        padding: 6px 8px;
    }

    .logo img {
        height: 38px;
        width: 38px;
        max-width: 38px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-content.active {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border: 1px solid var(--border-color);
        border-top: none;
    }

    .nav-links a {
        min-height: 48px;
        font-size: 1rem;
    }

    .trust-badges {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 14px 0;
    }

    .trust-badges::-webkit-scrollbar {
        display: none;
    }

    .trust-badges-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-inline: var(--container-padding);
        gap: 12px;
        min-width: max-content;
    }

    .trust-badge {
        flex-shrink: 0;
        padding: 10px 16px;
        background: var(--surface-2);
        border-radius: var(--radius-full);
        border: 1px solid var(--border-color);
    }

    .trust-divider {
        display: none;
    }

    .hero-layout {
        gap: 1.5rem;
    }

    .hero-visual-wrap {
        max-width: 100%;
    }

    .hero-visual-img {
        max-height: 260px;
        object-fit: cover;
        width: 100%;
    }

    .hero-cta-group {
        width: 100%;
    }

    .whatsapp-cta-btn,
    .hero-secondary-btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 8px;
        padding: 14px;
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius-lg);
    }

    .hero-divider {
        display: none;
    }

    .hero-stat {
        flex: 1 1 42%;
        text-align: center;
        padding: 8px 4px;
    }

    .hero-stat .stat-number {
        font-size: clamp(1.25rem, 4vw, 1.6rem);
    }

    .hero-stat .stat-label {
        font-size: 0.72rem;
    }

    .related-links-list {
        flex-direction: column;
        align-items: stretch;
    }

    .related-links-list a {
        width: 100%;
    }

    .doctor-content {
        flex-direction: column;
        text-align: center;
    }

    .doctor-image img {
        max-width: 200px;
        margin: 0 auto;
        border-radius: var(--radius-xl);
    }

    .doctor-credentials {
        text-align: right;
    }

    .doctor-actions {
        flex-direction: column;
    }

    .doctor-actions .whatsapp-cta-btn,
    .doctor-actions .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .announcement-bar {
        font-size: clamp(0.72rem, 2.5vw, 0.85rem);
        padding: 10px 12px;
        line-height: 1.5;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .blog-preview-section .blog-grid {
        grid-template-columns: 1fr;
    }

    .order-steps-grid {
        grid-template-columns: 1fr;
    }

    .sticky-whatsapp-bar {
        padding: 14px 16px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 380px) {
    .hero-main h1,
    .hero h1 {
        font-size: 1.6rem;
    }

    .trust-badge-label {
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-card:hover,
    .feature-card:hover,
    .order-step-card:hover {
        transform: none;
    }

    .blog-card:hover .blog-img img {
        transform: none;
    }
}
/* ============================================
   SITE-WIDE ENHANCEMENTS v2 — All Pages
   ============================================ */

/* --- Typography --- */
h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.bg-light {
    background: var(--surface-2) !important;
}

/* --- Page Hero (inner pages) --- */
.page-hero,
.blog-header {
    background: linear-gradient(135deg, #155E75 0%, #06B6D4 50%, #0E7490 100%);
    padding: clamp(2.5rem, 8vw, 4.5rem) clamp(1rem, 4vw, 1.5rem);
    position: relative;
    overflow: hidden;
}

.page-hero::before,
.blog-header::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::after,
.blog-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: rgba(52, 211, 153, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero h1,
.blog-header h1 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-hero p,
.blog-header p {
    font-size: clamp(0.95rem, 2.8vw, 1.15rem);
    position: relative;
    z-index: 1;
}

.breadcrumb {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0.5rem;
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* --- Section headers --- */
.section-header {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.section-header.text-center {
    text-align: center;
}

.section-header h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--primary-dark);
}

.section-header p {
    color: var(--text-light);
    max-width: 640px;
    margin: 0.75rem auto 0;
    line-height: 1.75;
}

.subtitle {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(14, 116, 144, 0.08);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.line,
.section-title-line {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* --- Blog listing page --- */
.blog-section {
    padding: var(--section-padding) 0;
    background: var(--surface-2);
}

.blog-section .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(1.25rem, 3vw, 1.75rem);
}

.blog-card .blog-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card .category {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(21, 94, 117, 0.3);
}

.blog-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-card .meta i {
    color: var(--primary-light);
    margin-left: 4px;
}

.blog-card .blog-content {
    padding: clamp(1rem, 3vw, 1.35rem);
}

/* --- Blog article pages --- */
section.blog-content {
    padding: var(--section-padding) 0;
    background: var(--surface-2);
}

.blog-main-content {
    max-width: 780px;
    margin: 0 auto;
    padding: clamp(1.25rem, 4vw, 2.5rem);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
}

.blog-main-content h2 {
    font-size: clamp(1.2rem, 3.5vw, 1.55rem);
    border-bottom: none;
    padding-bottom: 0;
}

.blog-main-content h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.blog-main-content p {
    color: var(--text-light);
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.blog-featured-image {
    width: 100%;
    max-width: 720px;
    margin: 1rem auto 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.info-box {
    background: linear-gradient(135deg, #F5F3FF 0%, #ECFDF5 100%);
    border-right: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    padding: clamp(1.25rem, 4vw, 1.75rem);
    margin-top: 1.5rem;
}

.info-box h3 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.warning-box {
    border-radius: var(--radius-md);
    padding: clamp(1.25rem, 4vw, 1.75rem);
}

/* --- Contact page --- */
.contact-info-section,
.contact-form-section {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
}

.contact-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: var(--surface);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 116, 144, 0.15);
}

.contact-card .icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.1), rgba(52, 211, 153, 0.12));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card .icon-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 0.75rem;
    padding: 10px 20px;
    background: rgba(14, 116, 144, 0.08);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
}

.contact-link:hover {
    background: var(--primary-color);
    color: white;
}

/* --- Forms --- */
.main-form .form-group {
    margin-bottom: 1rem;
}

.main-form input,
.main-form textarea,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    background: var(--surface);
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 48px;
}

.main-form input:focus,
.main-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.12);
}

.main-form textarea,
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-primary,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-primary);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
}

@media (min-width: 480px) {
    .btn-primary,
    .submit-btn {
        width: auto;
    }
}

.btn-primary:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(14, 116, 144, 0.25);
    color: white;
}

.contact-form-section .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: start;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 320px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

/* --- Page content (city/benefits pages) --- */
.page-section {
    padding: var(--section-padding) 0;
}

.page-text h2 {
    font-size: clamp(1.3rem, 4vw, 1.75rem);
    font-weight: 800;
    border-bottom: none;
}

.page-text h2::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-top: 8px;
}

.page-text p,
.page-text li {
    color: var(--text-light);
    line-height: 1.85;
}

.related-links-list {
    list-style: none;
}

/* --- Testimonials --- */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--surface) 0%, #F5F3FF 100%);
}

.testimonials-section h2 {
    font-size: clamp(1.45rem, 4vw, 2rem);
    font-weight: 800;
}

.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
}

.testimonial-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: clamp(1.25rem, 4vw, 1.75rem);
    background: var(--surface);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* --- CTA Banner --- */
.cta-banner-section {
    padding: var(--section-padding) clamp(1rem, 4vw, 1.5rem);
}

.cta-banner-section h2 {
    font-size: clamp(1.45rem, 4vw, 2.1rem);
}

/* --- Footer (all variants) --- */
footer {
    background: linear-gradient(180deg, #0C4A6E 0%, #155E75 100%);
    color: var(--footer-text);
    padding: clamp(2.5rem, 6vw, 3.5rem) 0 0;
}

footer h3 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-top {
    padding-bottom: 0;
}

.footer-grid,
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-info p,
.footer-about p {
    font-size: 0.9rem;
    line-height: 1.75;
    opacity: 0.85;
}

.footer-logo img,
img.footer-logo,
.footer-info img.footer-logo {
    max-height: 48px;
    max-width: 48px;
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    padding: 8px;
    background: linear-gradient(135deg, #155E75 0%, #0E7490 50%, #06B6D4 100%);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(14, 116, 144, 0.3);
    box-sizing: border-box;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-regions ul,
.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a,
.footer-regions a,
footer a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    transition: color 0.2s;
    display: inline-block;
    padding: 4px 0;
    min-height: 32px;
}

.footer-links a:hover,
.footer-regions a:hover,
footer a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    min-height: 40px;
    padding: 0;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.75;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom a {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 3px;
}

/* --- Newsletter --- */
.newsletter-section {
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 1.5rem);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 480px;
    margin: 1.5rem auto 0;
}

.newsletter-form input {
    flex: 1 1 200px;
    min-height: 48px;
    padding: 12px 18px;
    border: none;
    border-radius: var(--radius-full);
    font-family: inherit;
}

.newsletter-form .btn-primary {
    flex: 0 0 auto;
}

/* --- WhatsApp widget --- */
.whatsapp-btn {
    width: 56px;
    height: 56px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-chat {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.chat-header {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.chat-header img {
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.message-bubble {
    border-radius: var(--radius-md);
    line-height: 1.6;
}

.sticky-whatsapp-bar {
    font-size: clamp(0.88rem, 2.5vw, 1rem);
    font-weight: 700;
}

/* --- Mobile nav overlay --- */
body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 998;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

body.nav-open {
    overflow: hidden;
}

/* Blog pages: nav-links as mobile menu fallback */
nav > .nav-links.mobile-nav-fallback {
    display: flex;
}

@media (max-width: 768px) {
    nav > .nav-links.mobile-nav-fallback {
        position: absolute;
        right: 0;
        top: 100%;
        width: 100%;
        flex-direction: column;
        background: var(--surface);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border: 1px solid var(--border-color);
        border-top: none;
        padding: 0;
    }

    nav > .nav-links.mobile-nav-fallback.active {
        max-height: calc(100dvh - 60px);
        overflow-y: auto;
        padding: 8px 0;
    }

    nav > .nav-links.mobile-nav-fallback li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid var(--border-light);
    }

    nav > .nav-links.mobile-nav-fallback a {
        display: flex;
        width: 100%;
        padding: 14px 20px;
        min-height: 48px;
        border-radius: 0;
    }

    .contact-form-section .row {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        min-height: 240px;
    }

    .blog-main-content {
        padding: 1.25rem;
        border-radius: var(--radius-md);
    }

    .blog-section .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid,
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        padding: 0 1rem;
    }

    .newsletter-form input,
    .newsletter-form .btn-primary {
        width: 100%;
    }

    .whatsapp-chat {
        width: calc(100vw - 24px) !important;
        max-width: 360px;
        left: 12px !important;
        right: 12px !important;
    }

    .page-hero,
    .blog-header {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-rating-box {
        padding: 1.25rem;
    }

    .rating-big-number {
        font-size: 3rem !important;
    }
}
