@charset "utf-8";
/* CSS Document */

/* ===== GLOBAL RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =============================================
   1. VARIABLES
   ============================================= */
:root {
    --primary: #0284c7; 
    --primary-dark: #0c4a6e;
    --primary-light: #7aa5c2;
    --accent: #f0b86e;
    --accent-hover: #0d9488;
    --accent-warm: #f97316; 
    --bg-body: #ffffff;
    --bg-sidebar: #f0f9ff; 
    --bg-section-alt: #f8fafc;
    --bg-disclaimer: #fffbeb; 
    --text-body: #334155;
    --text-light: #64748b;
    --text-white: #ffffff;
    --font-head: 'Manrope', sans-serif;
    --font-body: 'Lora', serif;
    
    --nav-height: 60px;
    --header-height: 110px;
    --contactbar-height: 60px;
    --container-width: 1240px;
    --content-width: 880px;
    --sidebar-width: 320px;
    
    --radius: 8px;
    --shadow: 0 4px 6px -1px rgba(2, 132, 199, 0.1); 
    --shadow-lg: 0 10px 15px -3px rgba(2, 132, 199, 0.15);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05);
    
    /* Label colors */
    --label-before: #c53030;
    --label-after: #2f855a;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.8;
    background-color: var(--bg-body);
    font-size: 16px;
    padding-bottom: 20px;
}

/* Base Image Styles - Consolidated */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

/* Exceptions for specific images */
.logo-square-img,
.footer-square-img,
.doctor-profile-widget img,
.qr-item img {
    box-shadow: none;
}

a { 
    text-decoration: none; 
    transition: all 0.2s ease; 
    color: var(--primary); 
}

ul, ol { padding-left: 20px; }

/* Consolidated h4 styles */
h4 {
    font-family: var(--font-head);
    font-size: 1.25rem; 
    font-weight: 700;   
    color: var(--primary-light); 
    margin: 25px 0 10px 0;
    letter-spacing: -0.01em;
}
h5 {
    font-family: var(--font-body);
    font-size: 1.0rem; 
    font-weight: 700;   
    color: #0c4a6e; 
    margin: 5px 0 10px 0;
    letter-spacing: -0.01em;
}


/* =============================================
   AUTHORITY BAR
   ============================================= */
.top-authority-bar {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    color: rgba(255,255,255,0.9);
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 0;
    letter-spacing: 0.05em;
}

.authority-container {
    max-width: var(--container-width); 
    margin: 0 auto; 
    padding: 0 20px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.authority-text span { 
    color: #fff; 
    margin-right: 5px; 
}

.authority-links { 
    color: rgba(255,255,255,0.8); 
    font-size: 0.75rem; 
    font-weight: 600; 
}

/* =============================================
   MAIN HEADER
   ============================================= */
.top-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    min-height: var(--header-height);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.header-container {
    max-width: var(--container-width); 
    margin: 0 auto; 
    padding: 0 20px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 25px;
}

.logo-square-img {
    width: 70px; 
    height: 70px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.logo-text-block {
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    border-left: 1px solid #e2e8f0; 
    padding-left: 25px; 
    line-height: 1.2;
}

.brand-name {
    font-family: var(--font-head); 
    font-size: 1.6rem; 
    font-weight: 800;
    color: var(--primary-dark); 
    letter-spacing: -0.02em; 
    margin: 0;
    display: flex; 
    align-items: baseline; 
    gap: 10px; 
    flex-wrap: wrap;
}

.brand-name span.cn { 
    color: var(--primary); 
    font-size: 1.4rem; 
    font-weight: 700; 
}

.brand-location {
    font-family: var(--font-head); 
    font-size: 0.85rem; 
    text-align: center;
    color: var(--text-light); 
    font-weight: 600;
    letter-spacing: 0.05em; 
    margin-top: 4px; 
    text-transform: uppercase;
}

/* =============================================
   NAVIGATION
   ============================================= */
.sticky-nav {
    position: sticky; 
    top: 0; 
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #f1f5f9;
    height: var(--nav-height);
    box-shadow: 0 4px 20px rgba(2, 132, 199, 0.08);
}

.nav-container {
    max-width: var(--container-width); 
    margin: 0 auto; 
    padding: 0 20px;
    height: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 20px;
}

/* Desktop Menu */
.nav-menu { 
    display: flex; 
    gap: 5px; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}

.nav-menu > li { 
    position: relative; 
}

.nav-menu > li > a {
    display: block; 
    padding: 0 18px; 
    height: var(--nav-height);
    line-height: var(--nav-height);
    font-family: var(--font-head); 
    font-weight: 600; 
    font-size: 0.95rem;
    color: var(--text-body);
    transition: all 0.2s ease;
}

.nav-menu > li > a:hover, 
.nav-menu > li.current-menu-item > a {
    color: var(--primary); 
    background: #f0f9ff; 
    border-radius: 4px;
}

.arrow-icon {
    font-size: 0.7rem; 
    margin-left: 6px; 
    opacity: 0.5; 
    color: var(--primary);
}

.nav-menu > li:not(.has-submenu) > .arrow-icon { 
    display: none; 
}

/* =============================================
   DARK SUBMENU - UPDATED
   ============================================= */

/* Dropdown (Desktop) - Dark Background */
.nav-menu .sub-menu {
    position: absolute; 
    top: 100%; 
    left: 0;
    background: #1a2b3c;  /* Dark background */
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); 
    border: 1px solid #2d3f4f;
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(10px);
    transition: all 0.25s ease; 
    list-style: none; 
    z-index: 1001;
    padding: 6px 0;
}

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

/* Submenu Links - White Text */
.nav-menu .sub-menu li a {
    display: block; 
    padding: 12px 20px; 
    height: auto; 
    line-height: 1.4;
    font-family: var(--font-head); 
    font-size: 0.9rem; 
    font-weight: 500;
    color: #ffffff;  /* White text */
    border-bottom: 1px solid #2d3f4f;
    transition: all 0.2s ease;
}

.nav-menu .sub-menu li:last-child a { 
    border-bottom: none; 
}

/* Alternative hover color - Teal if you prefer */
.nav-menu .sub-menu li a:hover {
    color: #ffffff;
    background: #0284c7;  /* Teal alternative - comment out one */
    padding-left: 28px;
    border-bottom-color: #0d9488;
}

/* Optional: Add a subtle left border accent on hover */
.nav-menu .sub-menu li a:hover {
    border-left: 3px solid #fbbf24;  /* Gold accent */
    padding-left: 25px;  /* Slightly less padding to accommodate border */
}

/* Current page indicator in submenu (if needed) */
.nav-menu .sub-menu li.current-menu-item a {
    background: rgba(37, 99, 235, 0.3);
    color: #ffffff;
    border-left: 3px solid #fbbf24;
}

/* Language Wrapper */
.nav-language-wrapper { 
    display: flex; 
    align-items: center; 
}

.language-selector { 
    display: flex; 
    gap: 6px; 
    align-items: center; 
    font-family: var(--font-head); 
}

.lang-desktop { 
    display: flex; 
}

.lang-mobile { 
    display: none; 
}

.lang-link { 
    font-size: 0.9rem; 
	min-width: 50px;
	text-align: center;
    color: var(--text-body); 
    padding: 4px 8px; 
    border-radius: 4px; 
    font-weight: 400;
    background-color: #f0f9ff;
}

.lang-link:hover { 
    background: var(--primary); 
    color: #fff; 
    text-decoration: none; 
}

.lang-divider { 
    color: #cbd5e1; 
    font-size: 0.8rem; 
}

.mobile-menu-toggle {
    display: none; 
    background: none; 
    border: none;
    font-size: 1.4rem; 
    color: var(--primary); 
    cursor: pointer;
    padding: 8px; 
    margin-right: 10px;
}

/* =============================================
   CONTACT BAR
   ============================================= */
.contact-bar {
    background: #f0f9ff;
    border-bottom: 1px solid #bae6fd;
    padding: 10px 0 5px 0;
}

.contact-bar-container {
    max-width: var(--container-width); 
    margin: 0 auto; 
    padding: 0 20px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    width: 100%;
}

.contact-buttons { 
    display: flex; 
    gap: 12px; 
    flex-wrap: nowrap; 
    margin: 5px 0;
}


/* =============================================
   LANDING PAGE STYLES
   ============================================= */

/* Hero Banner */
.hero-banner-full {
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.hero-banner-full h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-head);
}

.hero-banner-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #f0b86e;
    display: block;
    margin-bottom: 25px;
}

.hero-banner-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Split Layout Sections */
.split-section {
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.split-content {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Monochrome theme for Japan era */
.split-section.monochrome .split-content {
    background: #f4f4f4;
    color: #333;
}

.split-section.monochrome h2,
.split-section.monochrome h3 {
    color: #2c3e50;
}

/* Color theme for Orentreich era */
.split-section.color-theme .split-content {
    background: #e8f4f8;
    color: #1a4d6b;
}

.split-section.color-theme h2 {
    color: #0c4a6e;
}

/* Modern theme for 4G */
.split-section.modern-theme .split-content {
    background: #f0f9ff;
    color: #1e293b;
}

.split-section.modern-theme h2 {
    color: #0284c7;
}

/* Typography for split sections */
.split-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-head);
}

.split-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.split-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.split-section ul {
    padding-left: 20px;
    margin: 15px 0;
}

.split-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Mobile: Stack on top */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }
    
    .split-image {
        min-height: 250px;
    }
    
    .split-content {
        padding: 40px 30px;
    }
    
    .hero-banner-full h1 {
        font-size: 2rem;
    }
    
    .hero-banner-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .split-content {
        padding: 30px 20px;
    }
    
    .split-section h2 {
        font-size: 1.5rem;
    }
}

/* =============================================
   MAIN LAYOUT & CONTENT
   ============================================= */
.main-wrapper {
    max-width: var(--container-width); 
    margin: 0 auto; 
    padding: 40px 20px;
    display: grid; 
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 50px; 
    align-items: start;
}

.content-area { 
    min-width: 0; 
    max-width: var(--content-width); 
}

.content-area h1 {
    font-family: var(--font-head); 
    font-size: 2.4rem; 
    font-weight: 700; 
    margin-top: 30px;
    color: var(--primary-dark); 
    margin-bottom: 15px; 
    line-height: 1.2;
}

.tagline {
    font-size: 1.0rem; 
    color: var(--text-light); 
    font-style: italic;
    border-left: 4px solid var(--accent); 
    padding-left: 20px;
    margin-bottom: 30px; 
    line-height: 1.6;
}

.featured-image {
    width: 100%; 
    height: auto; 
    border-radius: var(--radius);
    margin: 30px 0 40px 0; 
    box-shadow: var(--shadow);
}

.content-section {
    border: 1px solid #e2e8f0; 
    border-radius: var(--radius);
    padding: 30px; 
    margin: 40px 0; 
    background: #fff;
}

.content-section.section-1 { 
    border-left: 5px solid var(--primary); 
}

.content-section.section-2 { 
    border-left: 5px solid var(--accent); 
    background: #f0fdfa; 
}

.content-section h2 { 
    font-family: var(--font-head); 
    font-size: 1.8rem; 
    font-weight: 700; 
    color: var(--primary-dark); 
    margin: 0 0 15px 0; 
}

.content-section h3 { 
    font-family: var(--font-head); 
    font-size: 1.4rem; 
    font-weight: 600; 
    color: var(--primary); 
    margin: 20px 0 10px 0; 
}

.content-section p { 
    font-size: 16px; 
    line-height: 1.8; 
    margin-bottom: 15px; 
}

.content-section mark { 
    background: #fff7ed; 
    color: #c2410c; 
    padding: 2px 6px; 
    border-radius: 4px; 
    font-weight: 600; 
}

/* =============================================
   BUTTONS - Consolidated
   ============================================= */
.btn-read-more {
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    background-color: #ffffff; 
    color: #0c4a6e; 
    border: 2px solid #0c4a6e;
    padding: 10px 24px;
    border-radius: var(--radius); 
    font-family: var(--font-head);
    font-weight: 600; 
    font-size: 0.9rem; 
    margin: 15px 0;
    transition: all 0.3s ease;
}

.btn-read-more:hover { 
    background: var(--primary-dark); 
    color: #fff; 
    transform: translateY(-2px); 
}

.btn-back {
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    background: #f1f5f9; 
    color: var(--text-body);
    padding: 10px 20px; 
    border-radius: var(--radius);
    font-family: var(--font-head); 
    font-weight: 600; 
    font-size: 0.9rem;
    margin: 15px 0; 
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.btn-back:hover { 
    background: var(--primary); 
    color: #fff; 
    border-color: var(--primary); 
}

.btn-contact-top {
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    padding: 10px 20px; 
    background: #0ea5e9; 
    border: 1px solid #bae6fd;
    border-radius: 10px;
    font-family: var(--font-head); 
    font-weight: 700; 
    font-size: 0.9rem;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(2, 132, 199, 0.1);
    white-space: nowrap;
}

.btn-contact-top:hover { 
    background: var(--primary); 
    color: #fff; 
    border-color: var(--primary); 
    transform: translateY(-2px); 
    box-shadow: 0 4px 8px rgba(2, 132, 199, 0.2);
}

.btn-whatsapp-top { 
    background: #25D366; 
    border-color: #20bd5a; 
    color: #fff;
}

.btn-whatsapp-top:hover { 
    background: #1ebc57; 
    border-color: #199e49; 
    color: #fff; 
}

.btn-result {
    display: block; 
    width: 100%; 
    padding: 10px; 
    background: var(--primary);
    color: #fff; 
    text-align: center; 
    font-family: var(--font-head);
    font-weight: 600; 
    font-size: 0.85rem; 
    border-radius: 6px; 
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.btn-result:hover { 
    background: var(--primary-dark); 
}

.btn-sara {
    display: block; 
    width: 100%; 
    padding: 10px; 
    background: #FF0000;
    color: #fff; 
    text-align: center; 
    font-family: var(--font-head);
    font-weight: 600; 
    font-size: 0.85rem; 
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-sara:hover {
    background: #cc0000;
}

.btn-footer-contact {
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    padding: 12px 24px;
    background: #fff; 
    border: 2px solid var(--primary); 
    color: var(--primary);
    border-radius: 10px; 
    font-weight: 700; 
    font-size: 0.95rem;
    transition: all 0.3s ease; 
    box-shadow: 0 4px 6px rgba(2, 132, 199, 0.1);
}

.btn-footer-contact:hover {
    background: var(--primary); 
    color: #fff; 
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(2, 132, 199, 0.2);
}

.btn-footer-whatsapp { 
    background: #25D366; 
    border-color: #25D366; 
    color: #fff; 
}

.btn-footer-whatsapp:hover { 
    background: #1ebc57; 
    border-color: #1ebc57; 
    color: #fff; 
}

.btn-map {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px;
    padding: 12px; 
    border-radius: 8px; 
    font-weight: 600; 
    font-size: 0.9rem;
    text-decoration: none; 
    transition: all 0.3s ease;
}

.btn-map.google { 
    background: #fff; 
    border: 1px solid #e2e8f0; 
    color: var(--primary-dark); 
}

.btn-map.google:hover { 
    background: #f8fafc; 
    border-color: var(--primary); 
    color: var(--primary); 
}

.btn-map.pdf { 
    background: var(--primary-dark); 
    color: #fff; 
}

.btn-map.pdf:hover { 
    background: var(--primary); 
    color: #fff; 
    transform: translateY(-2px); 
}


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: linear-gradient(to bottom, #f0f9ff, #e0f2fe);
    color: var(--text-body); 
    margin-top: 60px;
    font-family: var(--font-head); 
    border-top: 1px solid #bae6fd;
}

.footer-top { 
    background: #fff; 
    padding: 40px 0; 
    border-bottom: 1px solid #bae6fd; 
}

.footer-top-container {
    max-width: var(--container-width); 
    margin: 0 auto; 
    padding: 0 20px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap; 
    gap: 30px;
}

.footer-logo-group { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.footer-square-img {
    width: 50px; 
    height: 50px; 
    border-radius: 8px;
}

.footer-text-group h2 { 
    font-size: 1.4rem; 
    font-weight: 700; 
    color: var(--primary-dark); 
    margin: 0; 
    line-height: 1.2; 
}

.footer-text-group p { 
    font-size: 0.9rem; 
    color: var(--text-light); 
    margin: 4px 0 0 0; 
}

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

.footer-main { 
    padding: 50px 0; 
}

.footer-main-container {
    max-width: var(--container-width); 
    margin: 0 auto; 
    padding: 0 20px;
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.1rem; 
    font-weight: 700; 
    color: var(--primary-dark);
    margin: 0 0 20px 0; 
    display: flex; 
    align-items: center; 
    gap: 10px;
}

.footer-col h4 i { 
    color: var(--accent); 
}

.hours-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.hours-list li {
    display: flex; 
    justify-content: space-between; 
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0; 
    font-size: 0.95rem;
}

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

.hours-list .day { 
    font-weight: 600; 
    color: var(--text-body); 
}

.hours-list .time { 
    color: var(--text-light); 
}

.hours-list li.closed .time { 
    color: var(--accent-warm); 
    font-weight: 600; 
}

.address-text { 
    font-size: 0.95rem; 
    line-height: 1.6; 
    color: var(--text-body); 
    margin-bottom: 20px; 
}

.qr-codes-footer { 
    display: flex; 
    gap: 15px; 
}

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

.qr-item img {
    width: 95px; 
    height: 95px; 
    border: 1px solid #0c4a6e; 
    border-radius: 8px;
    padding: 5px; 
    background: #fff; 
    margin-bottom: 5px;
}

.qr-item span { 
    font-size: 0.8rem; 
    color: var(--text-light); 
    font-weight: 600; 
}

.map-buttons-footer { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.footer-bottom { 
    background: #fff; 
    padding: 25px 0; 
    border-top: 1px solid #bae6fd; 
}

.footer-bottom-container {
    max-width: var(--container-width); 
    margin: 0 auto; 
    padding: 0 20px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap; 
    gap: 15px;
}

.copyright { 
    font-size: 0.85rem; 
    color: var(--text-light); 
}

.legal-links { 
    display: flex; 
    gap: 20px; 
}

.legal-links a { 
    font-size: 0.85rem; 
    color: var(--text-light); 
    text-decoration: none; 
    transition: color 0.2s; 
}

.legal-links a:hover { 
    color: var(--primary); 
    text-decoration: underline; 
}

.mobile-bottom-nav {
    display: none; 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0;
    background: #fff; 
    border-top: 1px solid #bae6fd;
    box-shadow: 0 -4px 10px rgba(2, 132, 199, 0.1);
    z-index: 1000; 
    padding: 8px 0;
}

.mobile-bottom-nav ul { 
    display: flex; 
    justify-content: space-around; 
    list-style: none; 
    padding: 0; 
}

.mobile-bottom-nav a {
    display: flex; 
    flex-direction: column; 
    align-items: center;
    font-size: 0.7rem; 
    color: var(--text-light);
    font-family: var(--font-head); 
    gap: 4px;
}

.mobile-bottom-nav a.active, 
.mobile-bottom-nav a:hover { 
    color: var(--primary); 
}

.mobile-bottom-nav i { 
    font-size: 1.2rem; 
}

/* =============================================
   GLOBAL TYPOGRAPHY & STRONG HIGHLIGHT
   ============================================= */
strong {
    color: var(--accent-warm); 
    font-weight: 500;          
    letter-spacing: 0.01em;    
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: none; 
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.back-to-top:hover {
    background-color: #0056b3;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.back-to-top.show {
    display: flex; 
}

/* =============================================
   MEDICAL DISCLAIMER - DARK THEME
   ============================================= */
.medical-disclaimer {
    background: linear-gradient(135deg, #1a2b3c 0%, #0f1a26 100%);
    border: 1px solid #2d4b65;
    border-left: 4px solid var(--primary-light);
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 140px 1fr;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    margin: 50px 0 30px 0;
}

.disclaimer-image-box {
    background: linear-gradient(145deg, #2d4b65 0%, #1a3a4f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.disclaimer-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    max-height: 280px;
    border: 2px solid #4a7b9d;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.disclaimer-content {
    padding: 25px 30px;
}

.disclaimer-content h4 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 8px;
    text-transform: uppercase;
}

.disclaimer-content h4 i {
    color: var(--primary-light);
    font-size: 1.4rem;
}

.disclaimer-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.disclaimer-content li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #9db6c5;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.disclaimer-content li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.2rem;
}

.disclaimer-content .btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #0ea5e9;
    border: 1.5px solid var(--primary-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.disclaimer-content .btn-read-more:hover {
    background: var(--primary-light);
    color: #0f1a26;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

.disclaimer-content .btn-read-more:hover i {
    transform: translateX(4px);
}


/* =============================================
   GALLERY STYLES
   ============================================= */
.gallery-item figcaption {
    border-top: 1px solid #e2e8f0;
}

.gallery-grid a:hover div {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-article-text {
    margin: 0;
    padding: 0;
}

.case-gallery {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.image-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: start;
}

.image-row.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 10px;
}

/* =============================================
   FIGURE STYLES
   ============================================= */

figure {
    margin: 0 auto 40px auto;
    position: relative;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

figure:hover {
    transform: translateY(-5px);
}

figure:hover img {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.figure-full {
    width: 100%;
    margin-bottom: 40px;
}

.figure-full img {
    width: 100%;
}

.figure-center-80 {
    width: 80%;
    margin: 0 auto 40px auto;
}

.figure-center-80 img {
    width: 100%;
}

.float-right-figure {
    float: right;
    width: 45%;
    margin: 0 0 20px 30px;
    clear: right;
}

.float-right-figure img {
    width: 100%;
}

/* Caption stays normal but moves with the figure */
figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
    line-height: 1.5;
    max-width: 100%;
	padding-top: 20px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

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

a:hover figure {
    transform: translateY(-5px);
}

a:hover figure img {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

/* Label styles - consolidated */
.label-before {
    color: #c53030;
    background-color: #fff5f5;
    border-bottom: 3px solid #fc8181;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    padding: 8px;
    text-align: center;
    border-radius: 0 0 8px 8px;
}

.label-after {
    color: #2f855a;
    background-color: #f0fff4;
    border-bottom: 3px solid #2f855a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    padding: 8px;
    text-align: center;
    border-radius: 0 0 8px 8px;
}

.label-design {
    color: #1c74e9;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
}

/* =============================================
   CONTACT LIST
   ============================================= */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.contact-list li strong {
    font-family: var(--font-head);
}

.contact-list a:hover {
    border-bottom-color: var(--primary);
    color: var(--primary) !important;
}

/* =============================================
   PUBLICATION STYLES
   ============================================= */
.publication-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.publication-item:hover {
    background-color: #f8fafc;
}

.publication-item h4 {
    font-family: var(--font-head);
    line-height: 1.4;
    margin-top: 0;
}

/* =============================================
   CLEARFIX UTILITY
   ============================================= */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* =============================================
   DIVIDER STYLES
   ============================================= */
.styled-hr {
    width: 40%;
    margin: 2rem auto;
    border: none;
    border-top: 3px solid var(--primary-dark);
    border-radius: 2px;
}

.content-hr {
    border: none;
    margin: 3rem auto;
    text-align: center;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--primary-light), transparent);
}

/* =============================================
   MOBILE RESPONSIVE - MAIN
   ============================================= */
@media (max-width: 992px) {
    
    /* Nav Container */
    .nav-container { 
        justify-content: space-between; 
        padding: 0 15px; 
        position: relative;
        z-index: 1002;
    }
    
    .mobile-menu-toggle { 
        display: block; 
        order: 1; 
        z-index: 1003;
        min-height: 44px;
        min-width: 44px;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-toggle.menu-open {
        opacity: 0;
        pointer-events: none;
    }
    
    .nav-language-wrapper { 
        order: 3; 
        z-index: 1003; 
    }
    
    .lang-desktop { 
        display: none; 
    }
    
    .lang-mobile { 
        display: flex; 
    }
    
    .lang-mobile .lang-link { 
        padding: 4px 6px; 
        font-size: 0.75rem; 
        background: #f1f5f9; 
    }

    .lang-link:hover { 
        background: #0284c7; 
    }
    
    /* Mobile Menu Overlay */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0; 
        left: 0;
        width: 100%;
        height: 100vh; 
        background: #ffffff;
        flex-direction: column;
        z-index: 2000;
        animation: fadeIn 0.3s ease-out;
        overflow-y: auto;
        padding: 0 0 30px 0;
    }

    .nav-menu.active { 
        display: flex; 
    }

    .mobile-close-row {
        position: sticky;
        top: 0;
        background: #f8fafc;
        border-bottom: 1px solid #e2e8f0;
        z-index: 2010;
        padding: 15px 20px;
        text-align: right;
    }

    .btn-close-menu {
        background: transparent;
        border: 1px solid #cbd5e1;
        color: #475569;
        padding: 8px 16px;
        border-radius: 50px;
        font-family: var(--font-head);
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.2s ease;
    }
    
    .btn-close-menu:hover {
        background: #ef4444;
        color: #fff;
        border-color: #ef4444;
    }

    .nav-menu > li { 
        border-bottom: 1px solid #f1f5f9; 
        width: 100%;
    }
    
    .nav-menu > li > a { 
        padding: 20px 25px; 
        display: flex; 
        justify-content: space-between; 
        align-items: center;
        color: #334155; 
        font-weight: 600;
        font-size: 1.1rem;
    }

    .arrow-icon {
        font-size: 1rem;
        transition: transform 0.3s;
    }
    
    .nav-menu > li.open > a .arrow-icon {
        transform: rotate(180deg);
    }

    .nav-menu .sub-menu {
        display: none;
        background: #f0f9ff;
        width: 100%;
        padding: 0;
    }
    
    .nav-menu > li.open .sub-menu {
        display: flex;
        flex-direction: column;
    }
    
    .nav-menu .sub-menu li a { 
        padding: 15px 25px 15px 50px; 
        font-size: 1rem;
        color: #64748b;
        display: block;
    }
    
    /* Contact Bar Mobile */
    .contact-bar { 
        padding: 8px 0; 
    }
    
    .btn-contact-top {
        padding: 10px; 
        width: 44px; 
        height: 44px;
        border-radius: 50%; 
        justify-content: center; 
    }
    
    .btn-contact-top .btn-text { 
        display: none; 
    }
    
    .btn-contact-top i { 
        margin: 0; 
        font-size: 1.2rem; 
    }
    
    .btn-whatsapp-top { 
        width: 44px; 
        height: 44px; 
    }

    /* Main Layout Mobile */
    .main-wrapper { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    
    .sidebar-sticky { 
        position: static; 
        background: transparent; 
        border: none; 
        padding: 0; 
    }
    
    .medical-disclaimer { 
        grid-template-columns: 1fr; 
    }
    
    .disclaimer-image-box { 
        display: none; 
    }
    
    .mobile-bottom-nav { 
        display: block; 
    }
    
    body { 
        padding-bottom: 70px; 
    }

    /* Footer Mobile */
    .footer-main-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .footer-col h4 { 
        justify-content: center; 
    }
    
    .footer-top-container { 
        flex-direction: column; 
        text-align: center; 
    }
    
    .footer-logo-group { 
        flex-direction: column; 
    }
    
    .footer-close-row {
        display: none;
    }
    
    /* AI Search Grid Mobile */
    .ai-search-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ba-pair-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* =============================================
   MOBILE RESPONSIVE - ADDITIONAL BREAKPOINTS
   ============================================= */
@media (max-width: 768px) {
    .hero-banner-full h1 { 
        font-size: 2.8rem; 
    }
    
    .image-row.three-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .split-layout, 
    .split-layout.reverse {
        flex-direction: column;
        gap: 20px;
    }
    
    .split-image, 
    .split-content {
        width: 100%;
        min-width: 100%;
    }
    
    .table_2 th, 
    .table_2 td {
        font-size: 0.85rem;
        padding: 10px;
    }
    
    .publication-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .data-table { 
        font-size: 13px; 
    }
    
    .data-table th, 
    .data-table td { 
        font-size: 13px; 
        padding: 8px 10px; 
    }
    
    .back-to-top {
        bottom: 70px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .ai-search-summary { 
        padding: 20px; 
    }
    
    .header-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; 
    }
    
    .logo-text-block { 
        border-left: none; 
        padding-left: 0; 
        border-top: 1px solid #e2e8f0; 
        padding-top: 15px; 
    }
    
    .top-authority-bar { 
        display: none; 
    }
    
    .disclaimer-content {
        padding: 25px;
    }
    
    .figure-center-80 {
        width: 100%;
    }
    
    .float-right-figure {
        float: none;
        width: 100%;
        margin: 0 auto 30px auto;
    }
    
    .image-row {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .content-area h1 {
        font-size: 1.8rem;
    }
    
    .summary-box h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-banner-full h1 {
        font-size: 2.2rem;
    }
    
    .hero-banner-subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
}

/* CRITICAL: Hide Close Button on Desktop */
@media (min-width: 993px) {
    .mobile-close-row {
        display: none !important;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* =============================================
   ANIMATIONS
   ============================================= */

.steps-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
@media (max-width: 640px) {
        .steps-grid {
            grid-template-columns: 1fr;
        }
    }

/* =============================================
   VERTICAL LINES - FULL PAGE (Body level)
   ============================================= */

/* Left line - spans entire page height */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100vh;
    background: rgba(2, 132, 199, 0.25);
    pointer-events: none;
    z-index: 9999;
    margin-left: -700px; /* Adjust based on your container width (1180px/2 = 590px) */
}

/* Right line - spans entire page height */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100vh;
    background: rgba(2, 132, 199, 0.25);
    pointer-events: none;
    z-index: 9999;
    margin-left: 700px; /* Adjust based on your container width */
}

/* Hide on mobile */
@media (max-width: 768px) {
    body::before,
    body::after {
        display: none;
    }
}


