:root {
            --primary: #0066CC;
            --primary-dark: #004999;
            --primary-light: #E8F4FF;
            --accent: #00C9A7;
            --accent-dark: #00A68A;
            --dark: #1A2B3C;
            --gray-900: #212529;
            --gray-700: #495057;
            --gray-500: #6c757d;
            --gray-300: #dee2e6;
            --gray-100: #f8f9fa;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #0066CC 0%, #00C9A7 100%);
            --gradient-hero: linear-gradient(135deg, #E8F4FF 0%, #E0F7F3 100%);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-700);
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.3;
        }

        /* ===== NAVIGATION ===== */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.95);
            top: 36px !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-sm);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .navbar-logo {
            height: 50px;
            width: auto;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .navbar-logo {
            height: 40px;
        }

        .nav-link {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 0.5px;
            color: var(--dark) !important;
            padding: 0.5rem 1.25rem !important;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 60%;
        }

        .nav-link:hover {
            color: var(--primary) !important;
        }

        .dropdown-menu {
            border: none;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            padding: 0.75rem 0;
            min-width: 280px;
            background: var(--white);
            margin-top: 0;
        }

        @media (min-width: 992px) {
            .nav-item.dropdown:hover > .dropdown-menu {
                display: block;
            }
            .nav-item.dropdown > .dropdown-toggle::after {
                transition: transform 0.2s ease;
            }
            .nav-item.dropdown:hover > .dropdown-toggle::after {
                transform: rotate(180deg);
            }
        }

        .dropdown-item {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--dark);
            padding: 0.625rem 1.5rem;
            transition: all 0.2s ease;
        }

        .dropdown-item:hover,
        .dropdown-item:focus {
            background: var(--primary-light);
            color: var(--primary);
        }

        .navbar-phone {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            font-size: 1rem;
        }

        .navbar-phone i {
            font-size: 1.25rem;
        }

        .btn-nav {
            background: var(--gradient-primary);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--white);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
        }

        .btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
            color: var(--white);
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            min-height: auto;
            padding: 130px 0 50px;
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(0, 201, 167, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--white), transparent);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

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

        .hero-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .hero-title span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--gray-700);
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
        }

        .benefits-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem 0;
            font-size: 1.0625rem;
            font-weight: 500;
            color: var(--dark);
        }

        .benefits-list li i {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: var(--white);
            border-radius: 50%;
            font-size: 0.875rem;
        }

        .btn-primary-custom {
            background: var(--gradient-primary);
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 1rem;
            color: var(--white);
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
            color: var(--white);
        }

        .btn-primary-custom i {
            transition: transform 0.3s ease;
        }

        .btn-primary-custom:hover i {
            transform: translateX(3px);
        }

        .btn-outline-custom {
            background: transparent;
            border: 2px solid var(--primary);
            padding: 1rem 2rem;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 1rem;
            color: var(--primary);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn-outline-custom:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
        }

        .hero-image-wrapper {
            position: relative;
            z-index: 2;
        }

        .hero-image {
            width: 100%;
            height: 500px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            object-fit: cover;
        }

        .hero-stats {
            position: absolute;
            bottom: 30px;
            left: -30px;
            background: var(--white);
            padding: 1.25rem 1.5rem;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            display: flex;
            gap: 1.5rem;
        }

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

        .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--gray-500);
            margin-top: 0.25rem;
        }

        /* ===== SECTION STYLES ===== */
        section {
            padding: 70px 0;
            position: relative;
        }

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

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary-light);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--gray-500);
        }

        /* ===== FEDERAL PROGRAM SECTION ===== */
        #federal-program {
            background: var(--white);
        }

        .program-card {
            background: var(--gray-100);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            height: 100%;
        }

        .program-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .program-card p {
            color: var(--gray-700);
            margin-bottom: 1rem;
        }

        .treatment-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 0 0;
        }

        .treatment-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--gray-300);
        }

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

        .treatment-list li i {
            color: var(--accent);
            font-size: 1.25rem;
            margin-top: 0.125rem;
        }

        /* Before-After Slider */
        .before-after-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            box-shadow: var(--shadow-md);
        }

        .before-after-header {
            text-align: center;
            margin-bottom: 1rem;
        }

        .before-after-header h4 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .before-after-slider {
            border-radius: var(--radius-md);
            overflow: hidden;
        }

        .juxtapose {
            max-width: 100%;
            height: 500px;
        }

        /* ===== STEPS SECTION ===== */
        #appointment {
            background: var(--gradient-hero);
        }

        .step-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            height: 100%;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

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

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

        .step-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem;
        }

        .step-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: invert(33%) sepia(98%) saturate(1497%) hue-rotate(190deg) brightness(91%) contrast(101%);
        }

        .step-card h4 {
            font-size: 1.125rem;
            margin-bottom: 0.75rem;
        }

        .step-card p {
            color: var(--gray-500);
            font-size: 0.9375rem;
            margin: 0;
        }

        /* Steps Vertical Layout */
        .steps-vertical {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .step-horizontal {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: var(--white);
            padding: 1.25rem;
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .step-horizontal:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }

        .step-number-sm {
            width: 44px;
            height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            border-radius: 50%;
        }

        .step-content-h h5 {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .step-content-h p {
            color: var(--gray-500);
            font-size: 0.875rem;
            margin: 0;
            line-height: 1.5;
        }

        /* ===== FORM SECTION ===== */
        .form-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
        }

        .form-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .form-card .subtitle {
            color: var(--gray-500);
            margin-bottom: 2rem;
        }

        .form-section-title {
            font-family: 'Inter', sans-serif;
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .form-check {
            padding: 0.75rem 0 0.75rem 2rem;
            border-bottom: 1px solid var(--gray-100);
        }

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

        .form-check-input {
            width: 1.25rem;
            height: 1.25rem;
            margin-top: 0;
            border: 2px solid var(--gray-300);
        }

        .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .form-check-label {
            font-size: 0.9375rem;
            color: var(--gray-700);
            cursor: pointer;
        }

        .form-control {
            padding: 0.875rem 1rem;
            border: 2px solid var(--gray-300);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
        }

        .form-label {
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .input-group-text {
            background: var(--gray-100);
            border: 2px solid var(--gray-300);
            border-right: none;
            font-size: 1.25rem;
        }

        .input-group .form-control {
            border-left: none;
        }

        .btn-submit {
            width: 100%;
            background: var(--gradient-primary);
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 1rem;
            color: var(--white);
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
            color: var(--white);
        }

        /* ===== DOCTOR SECTION ===== */
        #doctor {
            background: var(--white);
        }

        .doctor-card {
            background: var(--gradient-hero);
            border-radius: var(--radius-xl);
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }

        .doctor-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 60%;
            height: 150%;
            background: radial-gradient(circle, rgba(0, 201, 167, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .doctor-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .doctor-name {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .doctor-specialty {
            color: var(--gray-500);
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .doctor-credentials {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .credential-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--dark);
        }

        .credential-item i {
            color: var(--primary);
        }

        .doctor-questions {
            margin-top: 1.5rem;
        }

        .question-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            background: var(--white);
            border: none;
            padding: 1rem 1.25rem;
            border-radius: var(--radius-sm);
            margin-bottom: 0.75rem;
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--dark);
            text-align: left;
            transition: all 0.3s ease;
        }

        .question-btn:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateX(5px);
        }

        .question-btn i {
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .question-btn:hover i {
            opacity: 1;
            transform: translateX(3px);
        }

        .doctor-image-wrapper {
            position: relative;
            z-index: 1;
        }

        .doctor-image {
            width: 100%;
            height: 500px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            object-fit: cover;
        }

        .doctor-experience {
            position: absolute;
            bottom: 30px;
            right: -15px;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 1.25rem 1.5rem;
            border-radius: var(--radius-md);
            text-align: center;
            box-shadow: var(--shadow-md);
        }

        .experience-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }

        .experience-label {
            font-size: 0.75rem;
            opacity: 0.9;
        }

        /* ===== EVLK SECTION ===== */
        #evlk {
            background: var(--gray-100);
        }

        .evlk-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            height: 100%;
        }

        .evlk-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .evlk-image-grid img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
        }

        .evlk-image-grid img:hover {
            transform: scale(1.02);
        }

        /* ===== ABOUT SECTION ===== */
        #about {
            background: var(--white);
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .about-feature i {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: var(--radius-sm);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .about-feature h5 {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .about-feature p {
            font-size: 0.875rem;
            color: var(--gray-500);
            margin: 0;
        }

        .contact-card {
            background: var(--gradient-primary);
            border-radius: var(--radius-lg);
            padding: 2rem;
            color: var(--white);
        }

        .contact-card h4 {
            color: var(--white);
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .contact-item i {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            font-size: 1rem;
        }

        .contact-item span {
            font-size: 1rem;
        }

        .contact-item .phone {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .about-image {
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

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

        .footer-logo-img {
            height: 60px;
            width: auto;
            margin-bottom: 1.5rem;
            filter: brightness(0) invert(1);
        }

        .footer-contacts {
            margin-top: 1.5rem;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-contact-item i {
            color: var(--accent);
            font-size: 1rem;
            margin-top: 0.25rem;
        }

        .footer-contact-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .footer-contact-label {
            display: block;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 0.25rem;
        }

        .footer-phone {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            color: var(--white) !important;
        }

        .footer-phone:hover {
            color: var(--accent) !important;
        }

        .footer-description {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-address {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.9375rem;
        }

        .footer-address i {
            color: var(--accent);
            margin-top: 0.25rem;
        }

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

        #map {
            width: 100%;
            height: 100%;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ===== FLOATING ELEMENTS ===== */
        .floating-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .floating-btn {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: none;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

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

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

        /* ===== RESPONSIVE ===== */
        
        /* Tablet */
        @media (max-width: 991px) {
            .hero-section {
                padding: 100px 0 40px;
            }

            .hero-image {
                height: 400px;
            }

            .hero-stats {
                position: relative;
                bottom: auto;
                left: auto;
                margin-top: 1.5rem;
                justify-content: center;
            }

            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .doctor-card {
                padding: 2rem;
            }

            .doctor-image {
                height: 400px;
            }

            .doctor-experience {
                right: 20px;
                bottom: 20px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .about-image {
                height: 400px;
            }

            .program-card {
                padding: 1.5rem;
            }

            .evlk-card {
                padding: 1.5rem;
            }
        }

        /* Mobile */
        @media (max-width: 767px) {
            html, body {
                overflow-x: hidden;
                width: 100%;
            }

            .container {
                overflow-x: hidden;
            }

            section {
                padding: 40px 0;
                overflow-x: hidden;
            }

            .row {
                margin-left: 0;
                margin-right: 0;
            }

            .section-header {
                margin-bottom: 2rem;
            }

            .section-badge {
                font-size: 0.7rem;
                padding: 0.4rem 0.75rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            /* Hero */
            .hero-section {
                padding: 90px 0 30px;
                overflow: hidden;
            }

            .hero-image-wrapper {
                overflow: hidden;
            }

            .hero-badge {
                font-size: 0.75rem;
                padding: 0.4rem 0.75rem;
            }

            .hero-title {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .benefits-list li {
                font-size: 0.9375rem;
                padding: 0.5rem 0;
            }

            .benefits-list li i {
                width: 24px;
                height: 24px;
                font-size: 0.75rem;
            }

            .btn-primary-custom,
            .btn-outline-custom {
                padding: 0.875rem 1.5rem;
                font-size: 0.9375rem;
                width: 100%;
                justify-content: center;
            }

            .hero-image-wrapper {
                margin-top: 2rem;
            }

            .hero-image {
                height: 280px;
                border-radius: var(--radius-lg);
            }

            .hero-stats {
                left: 0;
                right: 0;
                flex-wrap: wrap;
                gap: 1rem;
                padding: 1rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .stat-label {
                font-size: 0.7rem;
            }

            /* Program */
            .program-card {
                padding: 1.25rem;
            }

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

            .program-card h4 {
                font-size: 1.125rem !important;
            }

            .treatment-list li {
                padding: 0.5rem 0;
                font-size: 0.875rem;
            }

            .before-after-card {
                padding: 1rem;
                margin-top: 1.5rem;
            }

            .juxtapose {
                height: 350px;
            }

            /* Steps */
            .steps-vertical {
                margin-bottom: 2rem;
            }

            .step-horizontal {
                padding: 1rem;
            }

            .step-number-sm {
                width: 36px;
                height: 36px;
                min-width: 36px;
                font-size: 1rem;
            }

            .step-content-h h5 {
                font-size: 0.9375rem;
            }

            .step-content-h p {
                font-size: 0.8125rem;
            }

            /* Form */
            .form-card {
                padding: 1.25rem;
            }

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

            .form-section-title {
                font-size: 0.875rem;
            }

            .form-check {
                padding: 0.5rem 0 0.5rem 1.75rem;
            }

            .form-check-label {
                font-size: 0.875rem;
            }

            .form-control {
                padding: 0.75rem;
                font-size: 0.9375rem;
            }

            .btn-submit {
                padding: 0.875rem 1.5rem;
                font-size: 0.9375rem;
            }

            /* Doctor */
            .doctor-card {
                padding: 1.5rem;
            }

            .doctor-badge {
                font-size: 0.7rem;
            }

            .doctor-card h3 {
                font-size: 1rem;
            }

            .doctor-name {
                font-size: 1.5rem;
            }

            .doctor-specialty {
                font-size: 0.9375rem;
            }

            .doctor-credentials {
                gap: 0.5rem;
            }

            .credential-item {
                padding: 0.5rem 0.75rem;
                font-size: 0.75rem;
            }

            .question-btn {
                padding: 0.75rem 1rem;
                font-size: 0.8125rem;
            }

            .doctor-image {
                height: 350px;
                margin-top: 1.5rem;
            }

            .doctor-card {
                overflow: hidden;
            }

            .doctor-experience {
                right: 10px;
                bottom: 20px;
                padding: 1rem;
            }

            .doctor-image-wrapper {
                overflow: hidden;
            }

            .experience-number {
                font-size: 1.5rem;
            }

            /* EVLK */
            .evlk-card {
                padding: 1.25rem;
            }

            .evlk-image-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
                margin-top: 1.5rem;
            }

            .evlk-image-grid img {
                height: 150px;
            }

            /* About */
            .about-features {
                gap: 1rem;
                margin: 1.5rem 0;
            }

            .about-feature i {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .about-feature h5 {
                font-size: 0.9375rem;
            }

            .about-feature p {
                font-size: 0.8125rem;
            }

            .contact-card {
                padding: 1.25rem;
            }

            .contact-card h4 {
                font-size: 1.125rem;
                margin-bottom: 1rem;
            }

            .contact-item {
                margin-bottom: 0.75rem;
            }

            .contact-item i {
                width: 36px;
                height: 36px;
                font-size: 0.875rem;
            }

            .contact-item .phone {
                font-size: 1.125rem;
            }

            .about-image {
                height: 300px;
                margin-top: 1.5rem;
            }

            /* Footer */
            .footer {
                padding: 40px 0 20px;
            }

            .footer-logo-img {
                height: 50px;
            }

            .footer-description {
                font-size: 0.8125rem;
            }

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

            .map-container {
                height: 250px;
                margin-top: 1.5rem;
            }

            .footer-bottom {
                margin-top: 30px;
                padding-top: 15px;
                font-size: 0.75rem;
            }

            /* Floating */
            .floating-cta {
                bottom: 15px;
                right: 15px;
                gap: 0.5rem;
            }

            .floating-btn {
                width: 48px;
                height: 48px;
                font-size: 1.25rem;
            }

            /* Navbar */
            .navbar {
                padding: 0.75rem 0;
            }

            .navbar-logo {
                height: 36px;
            }

            .navbar-collapse {
                background: var(--white);
                padding: 1rem;
                margin-top: 0.5rem;
                border-radius: var(--radius-md);
                box-shadow: var(--shadow-md);
            }

            .nav-link {
                padding: 0.75rem 1rem !important;
                border-bottom: 1px solid var(--gray-100);
            }

            .nav-link::after {
                display: none;
            }

            .navbar-collapse .d-flex {
                flex-direction: column;
                gap: 0.75rem;
                margin-top: 1rem;
            }

            .navbar-phone {
                justify-content: center;
                padding: 0.75rem;
                background: var(--primary-light);
                border-radius: var(--radius-sm);
            }

            .btn-nav {
                width: 100%;
                text-align: center;
            }
        }

        /* Small Mobile */
        @media (max-width: 375px) {
            .hero-title {
                font-size: 1.375rem;
            }

            .section-title {
                font-size: 1.375rem;
            }

            .hero-stats {
                flex-direction: column;
                align-items: center;
            }

            .stat-item {
                width: 100%;
            }

            .evlk-image-grid {
                grid-template-columns: 1fr;
            }

            .evlk-image-grid img {
                height: 180px;
            }

            .doctor-credentials {
                flex-direction: column;
            }

            .credential-item {
                width: 100%;
                justify-content: center;
            }
        }

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

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

        /* ===== TOP BAR ===== */
        .top-bar {
            background: var(--dark);
            color: rgba(255,255,255,0.8);
            padding: 0.5rem 0;
            font-size: 0.8125rem;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1060;
        }
        .top-bar a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        .top-bar a:hover { color: var(--accent); }
        .top-bar-contacts { display: flex; gap: 1.5rem; }
        .top-bar-contacts i, .top-bar-links i { margin-right: 0.35rem; }

        /* ===== HERO CAROUSEL ===== */
        .hero-carousel-section { margin-top: 112px; }
        .carousel-slide {
            min-height: 550px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        .carousel-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,30,60,0.7) 0%, rgba(0,102,204,0.4) 100%);
        }
        .carousel-caption-custom {
            position: relative;
            z-index: 2;
            color: var(--white);
            max-width: 600px;
            padding: 2rem 0;
        }
        .carousel-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.25rem;
            color: var(--white);
        }
        .carousel-caption-custom h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
        }
        .carousel-caption-custom p {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }
        .carousel-control-prev { left: 20px; }
        .carousel-control-next { right: 20px; }
        .carousel-control-prev:hover, .carousel-control-next:hover { opacity: 1; background: var(--primary); }
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 6px;
        }

        /* ===== PAGINATION INFO HIDE ===== */
        nav[aria-label="Pagination Navigation"] > div:first-child {
            display: none !important;
        }

        /* ===== PAGE HEADER ===== */
        .page-header-section {
            background: var(--gradient-hero);
            padding: 160px 0 40px;
            text-align: center;
        }
        .page-header-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.75rem;
        }
        .page-header-section .breadcrumb {
            justify-content: center;
            margin: 0;
        }
        .page-header-section .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
        }

        /* ===== WELCOME SECTION ===== */
        .section-welcome {
            padding: 70px 0;
            background: var(--white);
        }
        .glavvrach-card {
            background: var(--gradient-hero);
            border-radius: var(--radius-xl);
            overflow: hidden;
            text-align: center;
            box-shadow: var(--shadow-md);
        }
        .glavvrach-photo {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }
        .glavvrach-info {
            padding: 1.5rem;
        }
        .glavvrach-title {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .glavvrach-info h4 {
            font-size: 1.125rem;
            margin: 0;
        }

        /* ===== DEPARTMENTS SECTION ===== */
        .section-departments {
            padding: 70px 0;
            background: var(--gray-100);
        }
        .department-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: var(--white);
            padding: 2rem 1.5rem;
            border-radius: var(--radius-lg);
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--dark);
            height: 100%;
            border: 1px solid transparent;
        }
        .department-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
            color: var(--primary);
        }
        .department-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: var(--radius-md);
            font-size: 1.75rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        .department-card:hover .department-icon {
            background: var(--gradient-primary);
            color: var(--white);
        }
        .department-card h5 {
            font-family: 'Inter', sans-serif;
            font-size: 0.9375rem;
            font-weight: 700;
            margin: 0;
        }

        /* ===== DOCTORS GRID ===== */
        .section-doctors {
            padding: 70px 0;
            background: var(--gradient-hero);
        }
        .doctor-card-grid {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            padding: 1.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .doctor-card-grid:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .doctor-card-photo {
            width: 100%;
            height: 280px;
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-bottom: 1rem;
        }
        .doctor-card-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .doctor-card-placeholder {
            width: 100%;
            height: 100%;
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--gray-300);
        }
        .doctor-card-body {
            flex: 1;
            margin-bottom: 1rem;
        }
        .doctor-card-body h5 {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }
        .doctor-card-spec {
            color: var(--gray-500);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }
        .doctor-card-dept {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* ===== DOCTORS CAROUSEL ===== */
        .doctors-carousel .owl-stage {
            display: flex;
        }
        .doctors-carousel .owl-item {
            display: flex;
        }
        .doctors-carousel .doctor-card-grid {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .doctors-carousel .doctor-card-photo {
            height: 220px;
            flex-shrink: 0;
        }
        .doctors-carousel .doctor-card-photo img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .doctors-carousel .doctor-card-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-height: 0;
        }
        .doctors-carousel .doctor-card-body h5 {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 0.95rem;
        }
        .doctors-carousel .doctor-card-spec {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .doctors-carousel .doctor-card-grid .btn {
            flex-shrink: 0;
            font-size: 0.8rem;
            padding: 0.4rem 0.5rem;
            margin-top: auto;
        }
        .doctors-carousel .owl-nav {
            position: absolute;
            top: -70px;
            right: 0;
            display: flex;
            gap: 0.5rem;
        }
        .doctors-carousel .owl-nav button.owl-prev,
        .doctors-carousel .owl-nav button.owl-next {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--white) !important;
            border: 2px solid var(--primary) !important;
            color: var(--primary) !important;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            transition: all 0.3s ease;
        }
        .doctors-carousel .owl-nav button.owl-prev:hover,
        .doctors-carousel .owl-nav button.owl-next:hover {
            background: var(--primary) !important;
            color: var(--white) !important;
        }
        .doctors-carousel .owl-nav button span {
            display: none;
        }
        .doctors-carousel .owl-stage-outer {
            overflow: hidden;
        }

        /* ===== SERVICES CARDS ===== */
        .section-services {
            padding: 70px 0;
            background: var(--white);
        }
        .section-services-list { padding: 50px 0; }
        .service-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
        }
        .service-card {
            background: var(--gray-100);
            border-radius: var(--radius-lg);
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
            background: var(--white);
        }
        .service-card-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: var(--radius-md);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .service-card h5 {
            font-family: 'Inter', sans-serif;
            font-size: 1.0625rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        .service-card p {
            color: var(--gray-500);
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
        }
        .service-more {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            transition: gap 0.3s;
        }
        .service-card:hover .service-more { gap: 0.75rem; }

        /* ===== NEWS CARDS ===== */
        .section-news {
            padding: 70px 0;
            background: var(--gray-100);
        }
        /* ===== NEWS INDEX ===== */
        .section-news-list { padding: 50px 0; }
        .news-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
        }
        .news-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .news-card-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        .news-card-img-placeholder {
            background: var(--gradient-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--primary);
        }
        .news-card-body {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.75rem;
        }
        .news-card-date {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.8125rem;
            color: var(--gray-500);
        }
        .news-card-badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary);
            background: var(--primary-light);
            padding: 0.2rem 0.65rem;
            border-radius: 50px;
        }
        .news-card-body h5 {
            font-family: 'Inter', sans-serif;
            font-size: 1.0625rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark);
            line-height: 1.4;
        }
        .news-card-body p {
            color: var(--gray-500);
            font-size: 0.875rem;
            margin: 0;
            flex: 1;
        }
        .news-card-readmore {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--primary);
            margin-top: 1rem;
            transition: gap 0.2s;
        }
        .news-card:hover .news-card-readmore { gap: 0.65rem; }

        /* Featured Card */
        .news-featured-link {
            text-decoration: none;
            color: inherit;
            display: block;
            margin-bottom: 1rem;
        }
        .news-featured {
            display: flex;
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            min-height: 340px;
        }
        .news-featured:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .news-featured-img {
            position: relative;
            width: 50%;
            min-height: 340px;
            background-size: cover;
            background-position: center;
        }
        .news-featured-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background: var(--gradient-hero);
            font-size: 5rem;
            color: var(--primary);
        }
        .news-featured-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 60%, rgba(255,255,255,0.1));
        }
        .news-featured-body {
            width: 50%;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .news-featured-badge {
            display: inline-block;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--white);
            background: var(--primary);
            padding: 0.3rem 1rem;
            border-radius: 50px;
            margin-bottom: 1rem;
            width: fit-content;
        }
        .news-featured-body h2 {
            font-family: 'Inter', sans-serif;
            font-size: 1.625rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }
        .news-featured-body p {
            color: var(--gray-500);
            font-size: 0.9375rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        .news-featured-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.875rem;
            color: var(--gray-500);
        }
        .news-featured-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
        .news-featured-read {
            font-weight: 600;
            color: var(--primary);
            transition: gap 0.2s;
        }
        .news-featured:hover .news-featured-read { gap: 0.65rem !important; }

        /* ===== NEWS DETAIL (SHOW) ===== */

        /* Hero */
        .news-hero {
            padding: 160px 0 80px;
            background: var(--gradient-primary);
            background-size: cover;
            background-position: center;
            color: var(--white);
        }
        .news-hero .breadcrumb { margin-bottom: 1.5rem; }
        .news-hero .breadcrumb-item a { color: rgba(255,255,255,0.8); }
        .news-hero .breadcrumb-item.active { color: rgba(255,255,255,0.6); }
        .news-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
        .news-hero-content { max-width: 750px; }
        .news-hero-meta {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-bottom: 1.25rem;
        }
        .news-hero-date, .news-hero-category {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.9375rem;
            color: rgba(255,255,255,0.85);
        }
        .news-hero-category {
            background: rgba(255,255,255,0.15);
            padding: 0.25rem 0.85rem;
            border-radius: 50px;
        }
        .news-hero h1 {
            font-family: 'Inter', sans-serif;
            font-size: 2.25rem;
            font-weight: 800;
            line-height: 1.25;
            margin: 0;
        }

        /* Article Body */
        .news-article-section { padding: 60px 0; }
        .news-article-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-sm);
        }
        .news-article-img {
            width: 100%;
            border-radius: var(--radius-md);
            object-fit: cover;
            max-height: 420px;
            margin-bottom: 2rem;
        }
        .news-article-content {
            line-height: 1.85;
            color: var(--gray-700);
            font-size: 1rem;
        }
        .news-article-content h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.375rem;
            font-weight: 700;
            color: var(--dark);
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-light);
        }
        .news-article-content h3:first-child { margin-top: 0; }
        .news-article-content p { margin-bottom: 1.125rem; font-size: 0.9375rem; }
        .news-article-content ul, .news-article-content ol {
            padding-left: 1.5rem;
            margin-bottom: 1.25rem;
        }
        .news-article-content li {
            margin-bottom: 0.5rem;
            font-size: 0.9375rem;
        }
        .news-article-content blockquote {
            border-left: 4px solid var(--primary);
            background: var(--gray-100);
            padding: 1.25rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            font-style: italic;
            color: var(--gray-600);
            font-size: 0.9375rem;
            line-height: 1.7;
        }
        .news-article-content strong { color: var(--dark); }
        .news-article-content img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-md);
            margin: 1rem 0;
        }
        .news-article-content p:empty { display: none; }
        .news-article-content div { display: contents; }
        .news-article-content .doccure_post-details-meta,
        .news-article-content .entry-content,
        .news-article-content .footer-meta,
        .news-article-content .tags-share { display: none; }
        .news-article-content a {
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .news-article-content a:hover { color: var(--primary-dark, #0a3d62); }

        .news-article-footer {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--gray-200, #e2e8f0);
        }

        /* Article Navigation */
        .news-nav {
            display: flex;
            justify-content: space-between;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .news-nav-item {
            display: flex;
            flex-direction: column;
            padding: 1.25rem 1.5rem;
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            text-decoration: none;
            transition: all 0.3s ease;
            flex: 1;
            max-width: 48%;
        }
        .news-nav-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .news-nav-next { text-align: right; }
        .news-nav-label {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .news-nav-title {
            font-family: 'Inter', sans-serif;
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.4;
        }
        .news-nav-item:hover .news-nav-title { color: var(--primary); }

        /* Sidebar */
        .news-sidebar-sticky { position: sticky; top: 100px; }
        .news-sidebar-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
            margin-bottom: 1.5rem;
        }
        .news-sidebar-card-title {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .news-sidebar-card-title i { color: var(--primary); }

        /* Share Buttons */
        .news-share-buttons { display: flex; gap: 0.75rem; }
        .news-share-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-md);
            text-decoration: none;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--white);
            transition: all 0.2s;
            flex: 1;
            justify-content: center;
        }
        .news-share-btn:hover { transform: translateY(-2px); color: var(--white); }
        .news-share-vk { background: #4a76a8; }
        .news-share-vk:hover { background: #3d6590; }
        .news-share-tg { background: #2AABEE; }
        .news-share-tg:hover { background: #1d96d4; }
        .news-share-wa { background: #25D366; }
        .news-share-wa:hover { background: #1db954; }

        /* Contact Card in Sidebar */
        .news-contact-card {
            background: var(--gradient-primary) !important;
            color: var(--white);
            text-align: center;
        }
        .news-contact-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }
        .news-contact-card h5 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .news-contact-card p {
            font-size: 0.875rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }
        .news-contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9375rem;
            margin-bottom: 0.5rem;
            justify-content: center;
        }

        /* Sidebar News Links */
        .news-sidebar-link {
            display: flex;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--gray-200);
            text-decoration: none;
            transition: all 0.2s;
        }
        .news-sidebar-link:last-child { border-bottom: none; }
        .news-sidebar-link:hover { padding-left: 0.25rem; }
        .news-sidebar-thumb {
            width: 64px;
            height: 52px;
            min-width: 64px;
            border-radius: var(--radius-sm);
            background-size: cover;
            background-position: center;
        }
        .news-sidebar-thumb-placeholder {
            background: var(--gradient-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.25rem;
        }
        .news-sidebar-link-date {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.75rem;
            color: var(--gray-500);
        }
        .news-sidebar-link-body h6 {
            font-family: 'Inter', sans-serif;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--dark);
            margin: 0.2rem 0 0;
            line-height: 1.35;
        }
        .news-sidebar-link:hover h6 { color: var(--primary); }

        /* CTA */
        .news-cta {
            padding: 70px 0;
            background: var(--gradient-primary);
            color: var(--white);
        }
        .news-cta-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        .news-cta-content h2 {
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
        }
        .news-cta-content p {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        .news-cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== ABOUT PAGE ===== */
        .section-about-content { padding: 50px 0; }
        .section-why-us {
            padding: 70px 0;
            background: var(--gray-100);
        }
        .why-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }
        .why-card-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            font-size: 1.5rem;
            margin: 0 auto 1.25rem;
        }
        .why-card h5 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.0625rem;
            margin-bottom: 0.75rem;
        }
        .why-card p {
            color: var(--gray-500);
            font-size: 0.875rem;
            margin: 0;
        }

        /* ===== FAQ SECTION ===== */
        .section-faq { padding: 70px 0; }
        .faq-item {
            border: none;
            margin-bottom: 0.75rem;
            border-radius: var(--radius-md) !important;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .faq-item .accordion-button {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            color: var(--dark);
            background: var(--white);
            border: none;
            padding: 1.25rem 1.5rem;
        }
        .faq-item .accordion-button:not(.collapsed) {
            background: var(--primary-light);
            color: var(--primary);
            box-shadow: none;
        }
        .faq-item .accordion-body {
            padding: 1rem 1.5rem 1.5rem;
            color: var(--gray-700);
            line-height: 1.7;
        }

        /* ===== CONTACT PAGE ===== */
        .section-contacts { padding: 50px 0; }
        .contact-info-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }
        .contact-info-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            font-size: 1.25rem;
            margin: 0 auto 1rem;
        }
        .contact-info-card h5 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .contact-info-card p {
            color: var(--gray-500);
            font-size: 0.9375rem;
            margin-bottom: 0.25rem;
        }

        /* ===== DEPARTMENT DETAIL (NEW) ===== */
        .dept-hero {
            padding: 160px 0 80px;
            background: var(--gradient-primary);
            background-size: cover;
            background-position: center;
            color: var(--white);
            position: relative;
        }
        .dept-hero .breadcrumb { margin-bottom: 1.5rem; }
        .dept-hero .breadcrumb-item a { color: rgba(255,255,255,0.8); }
        .dept-hero .breadcrumb-item.active { color: rgba(255,255,255,0.6); }
        .dept-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
        .dept-hero-content { max-width: 700px; }
        .dept-hero-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            font-size: 2.25rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255,255,255,0.3);
        }
        .dept-hero h1 {
            font-family: 'Inter', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .dept-hero-desc {
            font-size: 1.125rem;
            opacity: 0.9;
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        .dept-hero-btn {
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: var(--radius-md);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }
        .dept-hero-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

        /* Features */
        .dept-features {
            padding: 70px 0;
            background: var(--gray-100);
        }
        .dept-feature-card {
            display: flex;
            gap: 1.25rem;
            padding: 1.5rem;
            background: var(--white);
            border-radius: var(--radius-lg);
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .dept-feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }
        .dept-feature-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: var(--radius-md);
            font-size: 1.375rem;
            transition: all 0.3s ease;
        }
        .dept-feature-card:hover .dept-feature-icon {
            background: var(--gradient-primary);
            color: var(--white);
        }
        .dept-feature-body h5 {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.375rem;
            color: var(--dark);
        }
        .dept-feature-body p {
            font-size: 0.875rem;
            color: var(--gray-500);
            margin: 0;
            line-height: 1.5;
        }

        /* About section */
        .dept-about { padding: 70px 0; }
        .dept-about-content {
            line-height: 1.8;
            color: var(--gray-700);
        }
        .dept-about-content h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.375rem;
            font-weight: 700;
            color: var(--dark);
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-light);
        }
        .dept-about-content h3:first-child { margin-top: 0; }
        .dept-about-content p { margin-bottom: 1rem; font-size: 0.9375rem; }
        .dept-about-content ul, .dept-about-content ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        .dept-about-content li {
            margin-bottom: 0.5rem;
            font-size: 0.9375rem;
        }

        /* Sidebar */
        .dept-sidebar { position: sticky; top: 100px; }
        .dept-contact-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-md);
            text-align: center;
            border-top: 4px solid var(--primary);
        }
        .dept-contact-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 50%;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }
        .dept-contact-card h4 {
            font-family: 'Inter', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .dept-contact-card > p {
            font-size: 0.875rem;
            color: var(--gray-500);
            margin-bottom: 1.25rem;
        }
        .dept-contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.625rem 0;
            border-top: 1px solid var(--gray-200);
            text-align: left;
        }
        .dept-contact-item i {
            color: var(--primary);
            font-size: 1rem;
            min-width: 20px;
        }
        .dept-contact-item span {
            font-size: 0.9375rem;
            color: var(--dark);
        }
        .dept-sidebar-image img {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .dept-advantages-card {
            background: var(--gray-100);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
        }
        .dept-advantages-card h5 {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        .dept-advantages-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .dept-advantages-card li {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            padding: 0.5rem 0;
            font-size: 0.9375rem;
            color: var(--dark);
        }
        .dept-advantages-card li i {
            color: var(--success, #28a745);
            font-size: 0.875rem;
        }

        /* Doctors section */
        .dept-doctors {
            padding: 70px 0;
            background: var(--gray-100);
        }

        /* CTA section */
        .dept-cta {
            padding: 70px 0;
            background: var(--gradient-primary);
            color: var(--white);
        }
        .dept-cta-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        .dept-cta-content h2 {
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .dept-cta-content p {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        .dept-cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .dept-cta-buttons .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            padding: 0.75rem 1.75rem;
            border-radius: var(--radius-md);
        }

        /* ===== FOOTER SOCIAL ===== */
        .footer-heading {
            font-size: 1.125rem;
            color: var(--white);
            margin-bottom: 1.25rem;
        }
        .footer-social {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.25rem;
        }
        .footer-social-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.15);
            color: var(--white);
            border-radius: 50%;
            text-decoration: none;
            font-size: 1.125rem;
            transition: all 0.3s ease;
        }
        .footer-social-link:hover {
            background: var(--accent);
            color: var(--white);
            transform: scale(1.1);
        }

        /* ===== RESPONSIVE NEW ===== */
        @media (max-width: 991px) {
            .hero-carousel-section { margin-top: 98px; }
            .carousel-slide { min-height: 400px; }
            .carousel-caption-custom h1 { font-size: 1.75rem; }
            .page-header-section { padding: 130px 0 30px; }
            .glavvrach-photo { height: 250px; }
            .dept-hero { padding: 140px 0 60px; }
            .dept-hero h1 { font-size: 2rem; }
            .dept-sidebar { position: static; }
            .dept-features, .dept-about, .dept-doctors, .dept-cta { padding: 50px 0; }
        }
        @media (max-width: 767px) {
            .top-bar-contacts { display: none !important; }
            .hero-carousel-section { margin-top: 92px; }
            .carousel-slide { min-height: 350px; }
            .carousel-caption-custom h1 { font-size: 1.5rem; }
            .carousel-caption-custom p { font-size: 1rem; }
            .carousel-control-prev, .carousel-control-next { width: 36px; height: 36px; }
            .carousel-control-prev { left: 10px; }
            .carousel-control-next { right: 10px; }
            .page-header-section { padding: 120px 0 25px; }
            .section-welcome,
            .section-departments,
            .section-doctors,
            .section-services,
            .section-news,
            .section-why-us,
            .section-faq { padding: 40px 0; }
            .department-card { padding: 1.25rem 1rem; }
            .department-icon { width: 48px; height: 48px; font-size: 1.25rem; }
            .doctor-card-photo { height: 200px; }
            .news-card-img { height: 160px; }
            .news-featured { flex-direction: column; min-height: auto; }
            .news-featured-img { width: 100%; min-height: 220px; }
            .news-featured-body { width: 100%; padding: 1.5rem; }
            .news-featured-body h2 { font-size: 1.25rem; }
            .news-hero { padding: 120px 0 50px; }
            .news-hero h1 { font-size: 1.5rem; }
            .news-article-card { padding: 1.5rem; }
            .news-article-content h3 { font-size: 1.125rem; }
            .news-nav { flex-direction: column; }
            .news-nav-item { max-width: 100%; }
            .news-share-buttons { flex-direction: column; }
            .news-cta-content h2 { font-size: 1.5rem; }
            .news-cta-buttons { flex-direction: column; align-items: center; }
            .glavvrach-photo { height: 200px; }
            .dept-hero { padding: 120px 0 50px; }
            .dept-hero h1 { font-size: 1.75rem; }
            .dept-hero-icon { width: 60px; height: 60px; font-size: 1.75rem; }
            .dept-hero-desc { font-size: 1rem; }
            .dept-feature-card { padding: 1.25rem; }
            .dept-cta-content h2 { font-size: 1.5rem; }
            .dept-cta-buttons { flex-direction: column; align-items: center; }
        }
