        /* Main Navbar Container */
        .main-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            background: #ffffff;
            border-bottom: 1px solid #e5e7eb;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .main-navbar.hidden {
            transform: translateY(-100%);
        }

        .navbar-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
            box-sizing: border-box;
            overflow: visible;
        }

        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 0;
            gap: 1rem;
            min-width: 0;
            overflow: visible;
        }

        .navbar-actions-section {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
            min-width: auto;
        }

        /* Big Logo - Professional */
        .navbar-logo-section {
            flex-shrink: 0;
        }

        .navbar-logo-section a {
            display: block;
            text-decoration: none;
        }

        .navbar-logo-section img {
            height: 90px;
            width: auto;
            max-width: none;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        /* Navigation Menu - Aligned to Right, Compact */
        .navbar-menu {
            flex: 1 1 auto;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-right: 0;
            min-width: 0;
            overflow: visible;
        }

        .navbar-menu-list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 0.25rem;
            align-items: center;
            justify-content: flex-end;
            margin-left: auto;
            margin-right: 0.5rem;
            min-width: 0;
        }

        .navbar-menu-item {
            position: relative;
            flex-shrink: 1;
            overflow-x: visible;
            min-width: 0;
        }

        /* Hover bridge prevents accidental dropdown close while moving cursor */
        .navbar-menu-item.has-dropdown::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 100%;
            height: 14px;
        }

        .navbar-menu-link {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.75rem 1.1rem;
            color: #1e293b;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            white-space: nowrap;
            transition: all 0.3s ease;
            border-radius: 4px;
            max-width: 100%;
        }

        .navbar-menu-link:hover {
            color: #1F5FFF;
            background: #f8f9fa;
        }

        .navbar-menu-link.active {
            color: #1F5FFF;
        }

        .navbar-menu-link i {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        /* Keep dropdown arrow rotated when dropdown is hovered */
        .navbar-menu-item .navbar-dropdown:hover~.navbar-menu-link i,
        .navbar-menu-item.has-dropdown:hover .navbar-menu-link i {
            transform: rotate(180deg);
        }

        /* Dropdown Menu - Stays open for clicking */
        .navbar-menu-item.active .navbar-dropdown,
        .navbar-menu-item:hover .navbar-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }

        .navbar-dropdown:hover {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            pointer-events: auto !important;
        }

        .navbar-menu-item.active .navbar-menu-link i,
        .navbar-menu-item:hover .navbar-menu-link i {
            transform: rotate(180deg);
        }

        .navbar-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            min-width: 280px;
            max-width: calc(100vw - 2rem);
            opacity: 0;
            visibility: hidden;
            transform: translateY(6px);
            transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
            z-index: 10001;
            pointer-events: none;
            padding: 0.75rem 0;
        }

        /* Ensure dropdowns on rightmost items don't overflow */
        .navbar-menu-list>.navbar-menu-item:last-child .navbar-dropdown {
            right: 0;
            left: auto;
        }

        /* For items that would overflow, align to left */
        .navbar-menu-list>.navbar-menu-item:not(:last-child) .navbar-dropdown {
            right: 0;
        }

        /* Keep dropdown open when hovering over it or when active (clicked) */
        .navbar-menu-item.active .navbar-dropdown,
        .navbar-menu-item:hover .navbar-dropdown,
        .navbar-dropdown:hover {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            pointer-events: auto !important;
        }

        /* Ensure active state keeps dropdown visible even when not hovering */
        .navbar-menu-item.active .navbar-dropdown {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            pointer-events: auto !important;
        }

        /* Force active dropdown to stay visible even when not hovering */
        .navbar-menu-item.active:not(:hover) .navbar-dropdown {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            pointer-events: auto !important;
        }

        /* Force active dropdown to stay visible - highest priority */
        .navbar-menu-item.active .navbar-dropdown,
        .navbar-menu-item.active:hover .navbar-dropdown {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            pointer-events: auto !important;
        }

        .navbar-dropdown::before {
            content: '';
            position: absolute;
            top: -8px;
            right: 24px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid #ffffff;
        }

        .navbar-dropdown-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.875rem 1.5rem;
            color: #1e293b;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .navbar-dropdown-item:hover {
            background: #f8f9fa;
            color: #1F5FFF;
            padding-left: 1.75rem;
        }

        .navbar-dropdown-item i.lucide-download {
            color: #1F5FFF;
            font-size: 0.85rem;
            margin-left: 0.5rem;
            opacity: 0.7;
            transition: all 0.2s ease;
        }

        .navbar-dropdown-item:hover i.lucide-download {
            opacity: 1;
            transform: translateY(-2px);
        }

        /* Right Side Actions */
        .navbar-actions-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
            min-width: auto;
        }

        .navbar-appointment-btn,
        .navbar-pay-btn,
        .navbar-zocdoc-btn {
            flex-shrink: 1;
        }

        /* Phone Button - Round */
        .navbar-phone-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: #f8f9fa;
            border: 1px solid #e5e7eb;
            border-radius: 50%;
            color: #1F5FFF;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .navbar-phone-button:hover {
            background: #1F5FFF;
            color: white;
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(31, 95, 255, 0.3);
        }

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

        /* Book Appointment Button - Vertical layout, one line text */
        .navbar-appointment-btn {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
            padding: 0.65rem 1rem;
            background: #1F5FFF;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.8rem;
            line-height: 1.2;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(31, 95, 255, 0.25);
            width: auto;
            min-width: 110px;
            height: auto;
            min-height: 55px;
            text-align: center;
        }

        .navbar-appointment-btn i {
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .navbar-appointment-btn span {
            display: block;
            white-space: nowrap;
            line-height: 1.2;
        }

        .navbar-appointment-btn:hover {
            background: #1e40af;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(31, 95, 255, 0.35);
            color: white;
        }

        /* Pay Button - Similar style to appointment button */
        .navbar-pay-btn {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
            padding: 0.65rem 1rem;
            background: #04CE78;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.8rem;
            line-height: 1.2;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(4, 206, 120, 0.25);
            width: auto;
            min-width: 110px;
            height: auto;
            min-height: 55px;
            text-align: center;
        }

        .navbar-pay-btn i {
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .navbar-pay-btn span {
            display: block;
            white-space: nowrap;
            line-height: 1.2;
        }

        .navbar-pay-btn:hover {
            background: #03b868;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(4, 206, 120, 0.35);
            color: white;
        }

        /* ZocDoc Button - Similar style to appointment button */
        .navbar-zocdoc-btn {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
            padding: 0.65rem 1rem;
            background: #00A4E4;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.8rem;
            line-height: 1.2;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0, 164, 228, 0.25);
            width: auto;
            min-width: 110px;
            height: auto;
            min-height: 55px;
            text-align: center;
        }

        .navbar-zocdoc-btn i {
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .navbar-zocdoc-btn span {
            display: block;
            white-space: nowrap;
            line-height: 1.2;
        }

        .navbar-zocdoc-btn:hover {
            background: #0088c2;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 164, 228, 0.35);
            color: white;
        }

        /* Mobile Menu Toggle */
        .navbar-mobile-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: none;
            border: none;
            cursor: pointer;
            gap: 5px;
            padding: 0;
        }

        .navbar-mobile-toggle span {
            display: block;
            width: 28px;
            height: 2px;
            background: #1e293b;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .navbar-mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .navbar-mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .navbar-mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        .navbar-mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 380px;
            height: 100vh;
            background: #ffffff;
            z-index: 10000;
            transition: right 0.4s ease;
            overflow-y: auto;
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-mobile-menu.active {
            right: 0;
        }

        .navbar-mobile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .navbar-mobile-logo img {
            height: 70px;
            width: auto;
        }

        .navbar-mobile-close {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            border: none;
            border-radius: 8px;
            color: #64748b;
            font-size: 1.25rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .navbar-mobile-close:hover {
            background: #1F5FFF;
            color: white;
        }

        .navbar-mobile-content {
            padding: 1.5rem 0;
        }

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

        .navbar-mobile-item {
            border-bottom: 1px solid #f1f5f9;
        }

        .navbar-mobile-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            color: #1e293b;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .navbar-mobile-link:hover {
            background: #f8f9fa;
            color: #1F5FFF;
            padding-left: 2rem;
        }

        .navbar-mobile-link i {
            color: #1F5FFF;
            font-size: 1.1rem;
        }

        .navbar-mobile-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #f8f9fa;
        }

        .navbar-mobile-item.active .navbar-mobile-dropdown {
            max-height: 300px;
        }

        .navbar-mobile-dropdown-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem 1rem 3.5rem;
            color: #64748b;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.2s ease;
        }

        .navbar-mobile-dropdown-link:hover {
            background: #ffffff;
            color: #1F5FFF;
            padding-left: 4rem;
        }

        .navbar-mobile-dropdown-link i.lucide-download {
            color: #1F5FFF;
            font-size: 0.85rem;
            margin-left: 0.5rem;
            opacity: 0.7;
        }

        .navbar-mobile-dropdown-link:hover i.lucide-download {
            opacity: 1;
        }

        /* Scroll Popup - Prominent CTA buttons in bottom left */
        .scroll-cta-popup {
            position: fixed !important;
            bottom: 20px !important;
            left: 20px !important;
            z-index: 9998 !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 0.75rem !important;
            opacity: 0 !important;
            visibility: hidden !important;
            transform: translateY(10px) !important;
            transition: all 0.4s ease !important;
            pointer-events: none !important;
        }

        .scroll-cta-popup.visible {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0);
            pointer-events: auto;
        }

        .scroll-cta-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            padding: 0.875rem 1.25rem;
            background: #1F5FFF;
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.875rem;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(31, 95, 255, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
            min-width: 160px;
            white-space: nowrap;
        }

        .scroll-cta-button:hover {
            background: #1e40af;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(31, 95, 255, 0.5);
            color: white;
        }

        .scroll-cta-button.phone {
            background: #04CE78;
            box-shadow: 0 6px 20px rgba(4, 206, 120, 0.4);
        }

        .scroll-cta-button.phone:hover {
            background: #03b865;
            box-shadow: 0 8px 24px rgba(4, 206, 120, 0.5);
        }

        .scroll-cta-button i {
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .scroll-cta-button span {
            display: inline-block;
            font-weight: 700;
        }

        /* Responsive Styles */
        @media (max-width: 1400px) {

            .navbar-appointment-btn,
            .navbar-pay-btn,
            .navbar-zocdoc-btn {
                min-width: 95px;
                padding: 0.55rem 0.85rem;
                font-size: 0.75rem;
            }

            .navbar-appointment-btn span,
            .navbar-pay-btn span,
            .navbar-zocdoc-btn span {
                font-size: 0.75rem;
            }

            .navbar-actions-section {
                gap: 0.5rem;
            }

            .navbar-menu-link {
                font-size: 0.9rem;
                padding: 0.7rem 0.9rem;
            }
        }

        @media (max-width: 1200px) {
            .navbar-menu-list {
                gap: 0.15rem;
            }

            .navbar-menu-link {
                font-size: 0.8rem;
                padding: 0.6rem 0.7rem;
            }

            .navbar-inner {
                gap: 0.75rem;
            }

            .navbar-appointment-btn,
            .navbar-pay-btn,
            .navbar-zocdoc-btn {
                min-width: 85px;
                padding: 0.5rem 0.75rem;
                font-size: 0.7rem;
                flex-shrink: 1;
            }

            .navbar-appointment-btn span,
            .navbar-pay-btn span,
            .navbar-zocdoc-btn span {
                font-size: 0.7rem;
            }

            .navbar-actions-section {
                gap: 0.4rem;
            }
        }

        @media (max-width: 1100px) {
            .navbar-menu-link {
                font-size: 0.75rem;
                padding: 0.55rem 0.6rem;
            }
        }

        @media (max-width: 1024px) {
            .navbar-menu {
                display: none;
            }

            .navbar-actions-section {
                gap: 0.75rem;
            }

            .navbar-phone-button,
            .navbar-appointment-btn {
                display: none;
            }

            .navbar-mobile-toggle {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            .navbar-wrapper {
                padding: 0 1.5rem;
            }

            .navbar-inner {
                padding: 1rem 0;
                gap: 1.5rem;
            }

            .navbar-logo-section img {
                height: 75px;
            }
        }

        @media (max-width: 480px) {
            .navbar-wrapper {
                padding: 0 1rem;
            }

            .navbar-logo-section img {
                height: 65px;
            }

            .scroll-cta-popup {
                bottom: 15px;
                left: 15px;
            }

            .scroll-cta-button {
                min-width: 140px;
                padding: 0.75rem 1rem;
                font-size: 0.8rem;
            }

            .scroll-cta-button i {
                font-size: 1rem;
            }
        }

        /* Phone & Forms Dialogs */
        .phone-dialog-overlay,
        .forms-dialog-overlay {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            background: rgba(0, 0, 0, 0.5) !important;
            backdrop-filter: blur(5px) !important;
            z-index: 10001 !important;
            opacity: 0 !important;
            visibility: hidden !important;
            transition: all 0.3s ease !important;
            pointer-events: none !important;
        }

        .phone-dialog-overlay.active,
        .forms-dialog-overlay.active {
            opacity: 1 !important;
            visibility: visible !important;
            pointer-events: auto;
        }

        .phone-dialog,
        .forms-dialog {
            position: fixed !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) scale(0.9) !important;
            background: white !important;
            border-radius: 16px !important;
            padding: 2rem !important;
            min-width: 400px !important;
            max-width: 90vw !important;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
            z-index: 10002 !important;
            transition: all 0.3s ease !important;
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
        }

        .phone-dialog-overlay.active .phone-dialog,
        .forms-dialog-overlay.active .forms-dialog,
        .phone-dialog.active,
        .forms-dialog.active {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translate(-50%, -50%) scale(1) !important;
            pointer-events: auto !important;
        }

        .dialog-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .dialog-header h3 {
            margin: 0;
            color: #1e293b;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .dialog-close {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            border: none;
            border-radius: 8px;
            color: #64748b;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dialog-close:hover {
            background: #1F5FFF;
            color: white;
        }

        .dialog-options {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .dialog-option {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            text-decoration: none;
            color: #1e293b;
            transition: all 0.3s ease;
        }

        .dialog-option:hover {
            border-color: #1F5FFF;
            background: #f8f9fa;
            transform: translateX(5px);
        }

        .dialog-option i {
            color: #1F5FFF;
            font-size: 1.2rem;
        }

        .dialog-option-text {
            flex: 1;
        }

        .dialog-option-text strong {
            display: block;
            color: #1e293b;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .dialog-option-text small {
            color: #64748b;
            font-size: 0.85rem;
        }

        /* Appointment Popup */
        .appointment-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            z-index: 10003;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .appointment-popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .appointment-popup {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 500px;
            width: 90%;
            transform: scale(0.9) translateY(20px);
            transition: all 0.3s ease;
        }

        .appointment-popup-overlay.active .appointment-popup {
            transform: scale(1) translateY(0);
        }

        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 2rem 1rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .popup-header h3 {
            margin: 0;
            color: #1e293b;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .popup-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #64748b;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .popup-close:hover {
            background: rgba(31, 95, 255, 0.1);
            color: #1F5FFF;
        }

        .appointment-popup-content {
            padding: 2rem;
        }

        .appointment-options {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .appointment-option {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            border: 2px solid #e5e7eb;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f8fafc;
        }

        .appointment-option:hover {
            border-color: #1F5FFF;
            background: rgba(31, 95, 255, 0.05);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(31, 95, 255, 0.15);
        }

        .option-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #1F5FFF 0%, #3b82f6 100%);
            color: white;
            border-radius: 12px;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .option-content {
            flex: 1;
        }

        .option-content h4 {
            margin: 0 0 0.5rem 0;
            color: #1e293b;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .option-content p {
            margin: 0;
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .option-arrow {
            color: #1F5FFF;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .appointment-option:hover .option-arrow {
            transform: translateX(5px);
        }

        @media (max-width: 1100px) {
            .navbar-navigation {
                display: none !important;
            }

            .navbar-actions {
                max-width: 100px;
            }

            .mobile-toggle {
                display: flex !important;
            }

            .book-appointment-btn {
                display: none !important;
            }

            .navbar-content {
                justify-content: space-between;
                gap: 0.5rem;
            }
        }

        /* Fix navbar width overflow */
        .unified-navbar {
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
        }

        .navbar-container {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }

        .navbar-content {
            width: 100%;
            max-width: 100%;
            overflow: visible;
            gap: 0.3rem;
            flex-wrap: nowrap;
        }

        .navbar-navigation {
            flex: 1;
            min-width: 0;
            overflow: visible;
            display: flex;
            justify-content: center;
        }

        .nav-menu {
            gap: 0.8rem;
            flex-wrap: nowrap;
            overflow: visible;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-item {
            flex-shrink: 1;
            min-width: 0;
            max-width: 120px;
        }

        .nav-link {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
            font-size: 0.75rem;
            padding: 0.3rem 0.5rem;
        }


        /* Additional navbar width fixes */
        .container {
            max-width: 100%;
            overflow-x: hidden;
        }

        .navbar-actions {
            flex-shrink: 0;
            min-width: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Fix overlapping at 1024px breakpoint */
        @media (max-width: 1024px) {
            .navbar-actions {
                gap: 0.3rem;
            }

            .book-appointment-btn {
                display: none !important;
            }

            .mobile-toggle {
                display: flex !important;
                order: 2;
            }
        }

        /* Ensure navbar doesn't exceed viewport */
        @media (max-width: 1200px) {
            .nav-menu {
                gap: 0.4rem;
            }

            .nav-link {
                font-size: 0.7rem;
                padding: 0.3rem 0.4rem;
            }
        }

        @media (max-width: 1100px) {
            .nav-menu {
                gap: 0.3rem;
            }

            .nav-link {
                font-size: 0.65rem;
                padding: 0.25rem 0.35rem;
            }
        }

        /* Dropdown Menu Styles */
        .dropdown-menu {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(31, 95, 255, 0.15);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(31, 95, 255, 0.2);
            padding: 0.5rem 0;
            margin-top: 0.5rem;
        }

        .dropdown-item {
            padding: 0.75rem 1.5rem;
            color: #2d3748;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dropdown-item:hover {
            background: linear-gradient(135deg, rgba(31, 95, 255, 0.08) 0%, rgba(4, 206, 120, 0.08) 100%);
            color: #1F5FFF;
            transform: translateX(5px);
        }

        .dropdown-item i {
            color: #1F5FFF;
            width: 16px;
            text-align: center;
        }

        /* Mobile Forms Submenu */
        .mobile-forms-submenu {
            transition: all 0.3s ease;
        }

        .mobile-forms-submenu li {
            border-bottom: 1px solid rgba(31, 95, 255, 0.05);
        }

        .mobile-forms-submenu .mobile-nav-link {
            font-size: 0.9rem;
            color: #64748b;
        }

        .mobile-forms-submenu .mobile-nav-link:hover {
            color: #1F5FFF;
            background: rgba(31, 95, 255, 0.05);
        }

        /* New Phone Contact Styles */
        .navbar-phone-contact {
            display: flex;
            align-items: center;
        }

        .phone-contact-item {
            position: relative;
        }

        .phone-contact-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            background: linear-gradient(135deg, #1F5FFF 0%, #04CE78 100%);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(31, 95, 255, 0.3);
        }

        .phone-contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(31, 95, 255, 0.4);
            color: white;
        }

        .phone-contact-btn i {
            font-size: 1rem;
        }

        .phone-dropdown-menu {
            position: fixed !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) !important;
            background: #ffffff !important;
            border: 2px solid #1F5FFF !important;
            border-radius: 20px !important;
            box-shadow: 0 20px 60px rgba(31, 95, 255, 0.3) !important;
            padding: 2rem !important;
            min-width: 400px !important;
            max-width: 90vw !important;
            z-index: 999999 !important;
            display: none !important;
            opacity: 0 !important;
            scale: 0.9 !important;
            transition: all 0.3s ease !important;
        }

        .phone-dropdown-overlay {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            background: rgba(0, 0, 0, 0.5) !important;
            backdrop-filter: blur(5px) !important;
            z-index: 999998 !important;
            display: none !important;
            opacity: 0 !important;
            transition: all 0.3s ease !important;
        }

        .phone-dropdown-overlay.show {
            display: block !important;
            opacity: 1 !important;
        }

        .phone-dropdown-menu.show {
            display: block !important;
            opacity: 1 !important;
            transform: translate(-50%, -50%) !important;
            scale: 1 !important;
        }

        .phone-dialog-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f1f5f9;
        }

        .phone-dialog-header h3 {
            margin: 0;
            color: #1e293b;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .phone-dialog-close {
            background: #f1f5f9;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #64748b;
        }

        .phone-dialog-close:hover {
            background: #e2e8f0;
            color: #1e293b;
            transform: scale(1.1);
        }

        .phone-options-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        /* Patient Forms Dialog Styles */
        .patient-forms-overlay {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            background: rgba(0, 0, 0, 0.5) !important;
            backdrop-filter: blur(5px) !important;
            z-index: 999998 !important;
            display: none !important;
            opacity: 0 !important;
            transition: all 0.3s ease !important;
        }

        .patient-forms-overlay.show {
            display: block !important;
            opacity: 1 !important;
        }

        .patient-forms-dialog {
            position: fixed !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) !important;
            background: #ffffff !important;
            border: 2px solid #1F5FFF !important;
            border-radius: 20px !important;
            box-shadow: 0 20px 60px rgba(31, 95, 255, 0.3) !important;
            padding: 2rem !important;
            min-width: 400px !important;
            max-width: 90vw !important;
            z-index: 999999 !important;
            display: none !important;
            opacity: 0 !important;
            scale: 0.9 !important;
            transition: all 0.3s ease !important;
        }

        .patient-forms-dialog.show {
            display: block !important;
            opacity: 1 !important;
            transform: translate(-50%, -50%) !important;
            scale: 1 !important;
        }

        .forms-dialog-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f1f5f9;
        }

        .forms-dialog-header h3 {
            margin: 0;
            color: #1e293b;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .forms-dialog-close {
            background: #f1f5f9;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #64748b;
        }

        .forms-dialog-close:hover {
            background: #e2e8f0;
            color: #1e293b;
            transform: scale(1.1);
        }

        .forms-options-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .forms-option {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            color: #2d3748;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(31, 95, 255, 0.1);
            border-radius: 10px;
        }

        .forms-option:last-child {
            border-bottom: none;
        }

        .forms-option:hover {
            background: linear-gradient(135deg, rgba(31, 95, 255, 0.1) 0%, rgba(4, 206, 120, 0.1) 100%);
            color: #1F5FFF;
            transform: translateX(5px);
        }

        .forms-option i {
            color: #1F5FFF;
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }

        .forms-info {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .forms-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: #1e293b;
        }

        .forms-description {
            color: #64748b;
            font-size: 0.85rem;
            font-weight: 500;
        }


        .phone-option {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            color: #2d3748;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(31, 95, 255, 0.1);
        }

        .phone-option:last-child {
            border-bottom: none;
        }

        .phone-option:hover {
            background: linear-gradient(135deg, rgba(31, 95, 255, 0.1) 0%, rgba(4, 206, 120, 0.1) 100%);
            color: #1F5FFF;
            transform: translateX(5px);
        }

        .phone-option i {
            color: #1F5FFF;
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }

        .phone-info {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .phone-number {
            font-weight: 700;
            font-size: 1.1rem;
            color: #1e293b;
        }

        .phone-label {
            color: #64748b;
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* Mobile Phone Dropdown */
        .mobile-phone-dropdown {
            display: none;
            background: rgba(31, 95, 255, 0.05);
            margin: 0.5rem 0;
            border-radius: 8px;
            overflow: hidden;
        }

        .mobile-phone-dropdown.show {
            display: block;
        }

        .mobile-phone-option {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            color: #2d3748;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(31, 95, 255, 0.1);
        }

        .mobile-phone-option:last-child {
            border-bottom: none;
        }

        .mobile-phone-option:hover {
            background: rgba(31, 95, 255, 0.1);
            color: #1F5FFF;
        }

        .mobile-phone-option i {
            color: #1F5FFF;
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }

        .mobile-phone-option .phone-info {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .mobile-phone-option .phone-number {
            font-weight: 700;
            font-size: 1.1rem;
            color: #1e293b;
        }

        .mobile-phone-option .phone-label {
            color: #64748b;
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* Equal Height Feature Cards */
        .feature-card {
            height: 100%;
            display: flex;
            flex-direction: column;
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card .title-wrap {
            flex-shrink: 0;
            margin-bottom: 1rem;
        }

        .feature-card .box-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .feature-card .box-text {
            flex: 1;
            color: #64748b;
            line-height: 1.6;
            font-size: 0.95rem;
            margin: 0;
        }

        .feature-card .box-icon {
            margin-bottom: 1rem;
        }

        .feature-card .box-icon img {
            width: 48px;
            height: 48px;
            object-fit: contain;
        }

        /* Ensure equal height for all cards */
        .row.gy-4 .col-lg-4 {
            display: flex;
        }

        .row.gy-4 .col-lg-4>div {
            width: 100%;
        }

        /* Mobile Contact Toggle Button in Mobile Menu */
        .contact-toggle-item {
            border-top: 1px solid rgba(31, 95, 255, 0.1);
            margin-top: 0.5rem;
            padding-top: 0.5rem;
        }

        .mobile-contact-toggle-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: none;
            color: #1e293b;
            border: none;
            padding: 1rem 1.5rem;
            width: 100%;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .mobile-contact-toggle-btn:hover {
            background: rgba(31, 95, 255, 0.05);
            color: #1F5FFF;
        }

        .mobile-contact-toggle-btn i:first-child {
            color: #1F5FFF;
            width: 20px;
        }

        .mobile-contact-toggle-btn .toggle-icon {
            margin-left: auto;
            color: #1F5FFF;
            transition: transform 0.3s ease;
        }

        .mobile-contact-toggle-btn.active .toggle-icon {
            transform: rotate(180deg);
        }

        /* Mobile Contact Panel */
        .mobile-contact-panel {
            display: none;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
            padding: 1rem 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9998;
        }

        .mobile-contact-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0 1rem;
        }

        .mobile-contact-header h4 {
            margin: 0;
            color: #1e293b;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .contact-panel-close {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: #64748b;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .contact-panel-close:hover {
            background: rgba(31, 95, 255, 0.1);
            color: #1F5FFF;
        }

        .mobile-contact-panel.active {
            display: block;
            max-height: 500px;
        }

        .mobile-contact-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: white;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .mobile-contact-item i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: #1F5FFF;
            color: white;
            border-radius: 6px;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .mobile-contact-text {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .mobile-contact-label {
            font-size: 0.7rem;
            font-weight: 700;
            color: #1F5FFF;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.8;
        }

        .mobile-contact-text a,
        .mobile-contact-text span {
            font-size: 0.9rem;
            font-weight: 600;
            color: #1e293b;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .mobile-contact-text a:hover {
            color: #1F5FFF;
        }

        .mobile-locations {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .mobile-locations span {
            font-size: 0.85rem;
            font-weight: 500;
            color: #475569;
        }

        .mobile-separator {
            color: #1F5FFF;
            font-weight: 600;
            opacity: 0.6;
        }

        /* Responsive adjustments for contact bar */
        @media (max-width: 1200px) {
            .contact-bar-content {
                justify-content: center;
                gap: 1.5rem;
            }

            .contact-item {
                min-width: 160px;
            }
        }

        @media (max-width: 1024px) {
            .contact-bar {
                display: none;
                /* Hide contact bar below 1025px */
            }

            .professional-navbar {
                top: 0;
                /* Navbar goes to top when contact bar is hidden */
                position: fixed;
            }

            body {
                margin-top: 80px !important;
                /* Account for navbar height */
            }
        }

        @media (max-width: 767px) {
            .contact-bar {
                padding: 0.5rem 0;
                min-height: 50px;
            }

            .contact-toggle-btn {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            .mobile-contact-item {
                padding: 0.5rem 0.75rem;
            }

            .mobile-contact-item i {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }

            .mobile-contact-text a,
            .mobile-contact-text span {
                font-size: 0.8rem;
            }

            .mobile-contact-label {
                font-size: 0.65rem;
            }

            .mobile-locations {
                flex-direction: column;
                gap: 0.25rem;
                align-items: flex-start;
            }

            .mobile-separator {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .contact-bar {
                padding: 0.25rem 0;
                min-height: 45px;
            }

            .contact-toggle-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.75rem;
            }

            .mobile-contact-item {
                padding: 0.4rem 0.6rem;
            }

            .mobile-contact-text a,
            .mobile-contact-text span {
                font-size: 0.75rem;
            }

            .mobile-contact-label {
                font-size: 0.6rem;
            }
        }

        /* Professional Navbar Styles */
        .professional-navbar {
            position: fixed;
            top: 80px;
            /* Exact height of contact bar */
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(31, 95, 255, 0.1);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        /* Navbar responsive adjustments */
        @media (max-width: 1024px) {
            .professional-navbar {
                position: relative;
                top: auto;
                margin-top: 0;
            }
        }

        .professional-navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 32px rgba(31, 95, 255, 0.1);
            padding: 0.75rem 0;
        }

        .navbar-container {
            position: relative;
        }

        .navbar-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .navbar-logo {
            flex-shrink: 0;
        }

        .logo-image {
            max-height: 83px;
            width: auto;
            transition: all 0.3s ease;
        }

        .professional-navbar.scrolled .logo-image {
            max-height: 76px;
        }

        .navbar-navigation {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 2.5rem;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #1e293b;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            position: relative;
        }

        .nav-text {
            position: relative;
            z-index: 2;
        }

        .nav-line {
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #1F5FFF, #3b82f6);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 1px;
        }

        .nav-link:hover .nav-line,
        .nav-link.active .nav-line {
            width: 100%;
        }

        .nav-link:hover {
            color: #1F5FFF;
            transform: translateY(-1px);
        }

        .navbar-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #1F5FFF, #3b82f6);
            color: white;
            text-decoration: none;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(31, 95, 255, 0.3);
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #1e3a8a, #1F5FFF);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(31, 95, 255, 0.4);
            color: white;
            text-decoration: none;
        }

        .mobile-toggle {
            display: flex;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-toggle:hover {
            background: rgba(31, 95, 255, 0.1);
        }

        .hamburger-line {
            width: 24px;
            height: 2px;
            background: #1e293b;
            border-radius: 1px;
            transition: all 0.3s ease;
        }

        .mobile-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Navigation */
        .mobile-navigation {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 9999;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            display: flex;
            flex-direction: column;
            padding: 2rem;
            visibility: hidden;
        }

        .mobile-navigation.active {
            transform: translateX(0);
            visibility: visible;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
        }



        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(31, 95, 255, 0.1);
        }

        .mobile-logo img {
            max-height: 76px;
            width: auto;
        }

        .mobile-close {
            background: rgba(31, 95, 255, 0.1);
            border: 2px solid #1F5FFF;
            font-size: 1.5rem;
            color: #1F5FFF;
            cursor: pointer;
            padding: 0.75rem;
            border-radius: 50%;
            transition: all 0.3s ease;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-close:hover {
            background: #1F5FFF;
            color: white;
            transform: scale(1.1);
        }

        .mobile-nav-menu {
            flex: 1;
        }

        .mobile-nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-nav-item {
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .mobile-nav-item:hover {
            background: rgba(31, 95, 255, 0.05);
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            text-decoration: none;
            color: #1e293b;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .mobile-nav-link i {
            width: 20px;
            color: #1F5FFF;
            font-size: 1.2rem;
        }

        .mobile-nav-link:hover {
            color: #1F5FFF;
            text-decoration: none;
            transform: translateX(5px);
        }

        .mobile-cta {
            padding-top: 2rem;
            border-top: 1px solid rgba(31, 95, 255, 0.1);
        }

        .mobile-cta-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            width: 100%;
            background: linear-gradient(135deg, #1F5FFF, #3b82f6);
            color: white;
            text-decoration: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(31, 95, 255, 0.3);
        }

        .mobile-cta-button:hover {
            background: linear-gradient(135deg, #1e3a8a, #1F5FFF);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(31, 95, 255, 0.4);
            color: white;
            text-decoration: none;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .nav-menu {
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .professional-navbar {
                padding: 0.75rem 0;
            }

            .logo-image {
                max-height: 76px;
            }
        }

        /* Credential Item - Fix for text wrapping alignment */
        .credential-item {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
            line-height: 1.6;
        }

        .credential-item i {
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        /* Legal Links Styling (Extracted) */
        /* Legal Links Styling */
        .legal-links-wrap {
            background: rgba(255, 255, 255, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1.5rem 0;
        }

        .legal-links {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .legal-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.1);
        }

        .legal-link:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.2);
            text-decoration: none;
            transform: translateY(-1px);
        }

        .legal-separator {
            color: rgba(255, 255, 255, 0.6);
            font-weight: 300;
        }

        @media (max-width: 768px) {
            .legal-links {
                gap: 0.5rem;
            }

            .legal-link {
                font-size: 0.9rem;
                padding: 0.4rem 0.8rem;
            }
        }
/* Social Icons in Footer */
.th-social {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 15px;
}

.th-social a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.th-social a:hover {
    background: #04CE78 !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
}

.th-social a svg {
    width: 18px !important;
    height: 18px !important;
    stroke: currentColor !important;
}

@media (max-width: 768px) {
    .th-social {
        justify-content: center !important;
        margin-top: 20px;
    }
}
