:root {
            --primary-blue: #1e5a96;
            --secondary-blue: #2872b8;
            --light-blue: #e6f2ff;
            --dark-blue: #164470;
            --accent-blue: #3a8fd9;
            --text-dark: #2c3e50;
            --text-light: #666;
            --success-green: #25d366;
            --bg-light: #f8f9fa;
        }

        /* Additional custom styles for dental page */
        .dental-hero {
            background: linear-gradient(135deg, var(--light-blue) 0%, #e9ecef 100%);
            padding: 60px 0 60px;
            margin-top: 40px;
        }
        
        .dental-hero .hero-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .dental-hero .hero-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .section-title {
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--primary-blue);
        }
        
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .treatment-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(30, 90, 150, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border-top: 4px solid var(--primary-blue);
        }
        
        /* .treatment-card:hover removed */
        
        .treatment-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .treatment-icon i {
            font-size: 30px;
            color: white;
        }
        
        .treatment-card h3 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 15px;
        }
        
        .treatment-card p {
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .area-item {
            background: var(--bg-light);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-blue);
            transition: all 0.3s ease;
        }
        
        /* .area-item:hover removed */
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        /* .faq-item:hover removed */
        
        .faq-question {
            padding: 20px;
            background: var(--bg-light);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
            color: var(--text-dark);
        }
        
        /* .faq-question:hover removed */
        
        .faq-question i {
            color: var(--primary-blue);
        }
        
        .faq-answer {
            padding: 20px;
            display: none;
            background: white;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        .faq-item.active .faq-question {
            background: var(--primary-blue);
            color: white;
        }
        
        .faq-item.active .faq-question i {
            color: white;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
            padding: 60px 0;
            margin-bottom: 30px;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 20px;
        }
        
        .cta-buttons {
            margin: 30px 0;
        }
        
        .cta-features {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .business-info-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(30, 90, 150, 0.08);
            margin-bottom: 30px;
            height: 100%;
            border-top: 3px solid var(--primary-blue);
        }
        
        .business-info-card h4 {
            color: var(--text-dark);
            margin-bottom: 20px;
        }
        
        .business-info-card .text-primary,
        .business-info-card i {
            color: var(--primary-blue) !important;
        }
        
        .business-info-card a {
            color: var(--primary-blue);
            text-decoration: none;
        }

        .business-info-card .btn {
            color: #ffffff !important;        /* ALWAYS visible */
            font-weight: 600;
        }

        /* .business-info-card .btn:hover removed */
        
        /* .business-info-card a:hover removed */
        
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .amenity-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            background: var(--bg-light);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        /* .amenity-item:hover removed */
        
        .amenity-item i {
            color: var(--primary-blue);
            font-size: 1.2rem;
        }
        
        .opening-hours {
            background: var(--bg-light);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid var(--light-blue);
        }
        
        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }
        
        .hours-row:last-child {
            border-bottom: none;
        }
        
        .hours-row span:first-child {
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .hours-row .text-success {
            color: var(--primary-blue) !important;
        }
        
        .since-badge {
            background: var(--primary-blue);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .hero-features {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .feature-badge {
            background: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            box-shadow: 0 2px 10px rgba(30, 90, 150, 0.15);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .feature-badge i {
            color: var(--primary-blue);
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease; /* Keeping transition for other properties if needed, but hover effects are removed */
        }
        
        .btn-primary {
            background: var(--primary-blue);
            color: white;
            border: 2px solid var(--primary-blue);
        }
        
        /* .btn-primary:hover removed */
        
        .btn-success {
            background: var(--success-green);
            color: white;
            border: 2px solid var(--success-green);
        }
        
        /* .btn-success:hover removed */
        
        .btn-outline-primary {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }
        
        /* .btn-outline-primary:hover removed */
        
        .btn-light {
            background: white;
            color: var(--primary-blue);
            border: 2px solid white;
        }
        
        /* .btn-light:hover removed */
        
        .btn-outline-light {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        /* .btn-outline-light:hover removed */
        
        .btn-lg {
            padding: 15px 30px;
            font-size: 1.1rem;
        }
        
        .btn-sm {
            padding: 8px 15px;
            font-size: 0.9rem;
        }
        
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: var(--success-green);
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(37, 211, 102, 0.4);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        /* .whatsapp-float:hover removed */
        
        .call-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 120px;
            right: 40px;
            background-color: var(--primary-blue);
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(30, 90, 150, 0.4);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        /* .call-float:hover removed */
        
        .breadcrumb-nav {
            background: var(--bg-light);
            padding: 15px 0;
            border-bottom: 1px solid var(--light-blue);
        }
        
        .breadcrumb {
            margin-bottom: 0;
            background: transparent;
            padding: 0;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            content: "›";
            padding: 0 10px;
            color: var(--text-light);
        }
        
        .breadcrumb-item a {
            color: var(--primary-blue);
            text-decoration: none;
        }
        
        /* .breadcrumb-item a:hover removed */
        
        .breadcrumb-item.active {
            color: var(--text-light);
        }
        
        .content-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(30, 90, 150, 0.08);
        }
        
        .content-box .lead {
            font-size: 1.15rem;
            line-height: 1.7;
            color: #555;
        }
        
        .content-box .text-primary,
        .text-primary {
            color: var(--primary-blue) !important;
        }
        
        .reach-card {
            background: var(--bg-light);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 4px solid var(--primary-blue);
            transition: all 0.3s ease;
        }
        
        /* .reach-card:hover removed */
        
        .reach-card h4 {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 10px;
        }
        
        .reach-card p {
            margin: 0;
            color: var(--text-light);
        }
        
        .reach-card i {
            color: var(--primary-blue);
        }
        
        .alert-info {
            background-color: var(--light-blue);
            border-color: var(--primary-blue);
            color: var(--text-dark);
        }
        
        .alert-warning {
            background-color: #fff3cd;
            border-color: #ffc107;
            color: var(--text-dark);
        }
        
        .alert-link {
            color: var(--primary-blue);
            font-weight: bold;
        }
        
        .service-card {
            transition: all 0.3s ease;
        }
        
        /* .service-card:hover removed */
        
        .service-card i {
            color: var(--primary-blue);
            transition: all 0.3s ease;
        }
        
        /* .service-card:hover i removed */
        
        /* Header Styles */
        .header-top {
            background: var(--primary-blue);
        }
        
        .header-top .header-links a {
            color: white;
        }
        
        /* .header-top .header-links a:hover removed */
        
        .header-top i {
            color: var(--light-blue);
        }
        
        .social-btn a {
            color: white;
            transition: all 0.3s ease;
        }
        
        /* .social-btn a:hover removed */
        
        .menu-area {
            background: white;
            box-shadow: 0 2px 10px rgba(30, 90, 150, 0.1);
        }
        
        .main-menu ul li a {
            color: var(--text-dark);
            transition: all 0.3s ease;
        }
        
        /* .main-menu ul li a:hover removed */
        
        /* Footer Styles */
        .footer-wrapper {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
            color: #fff;
        }
        
        .widget-area {
            padding: 60px 0 30px;
        }
        
        .footer-widget {
            margin-bottom: 30px;
        }
        
        .footer-widget .widget_title {
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
        }
        
        .footer-logo img {
            max-width: 160px;
            margin-bottom: 20px;
        }
        
        .about-text {
            color: #e6f2ff;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .social-btn {
            display: flex;
            gap: 10px;
        }
        
        .social-btn a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        /* .social-btn a:hover removed */
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 12px;
        }
        
        .footer-widget ul li a {
            color: #e6f2ff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        /* .footer-widget ul li a:hover removed */
        
        .widget-contact p {
            color: #e6f2ff;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .widget-contact i {
            color: var(--light-blue);
            width: 20px;
            flex-shrink: 0;
            margin-top: 3px;
        }
        
        .widget-contact a {
            color: #e6f2ff;
            text-decoration: none;
        }
        
        /* .widget-contact a:hover removed */
        
        .copyright-wrap {
            background: var(--dark-blue);
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .copyright-text {
            color: #e6f2ff;
            margin: 0;
        }
        
        .copyright-text a {
            color: white;
            text-decoration: none;
        }
        
        /* .copyright-text a:hover removed */
        
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 20px;
            justify-content: flex-end;
        }
        
        .footer-links ul li a {
            color: #e6f2ff;
            text-decoration: none;
        }
        
        /* .footer-links ul li a:hover removed */
        
        /* Back to top button styles */
        .back-to-top {
            position: fixed;
            bottom: 200px;
            right: 40px;
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
            box-shadow: 0 2px 10px rgba(30, 90, 150, 0.4);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        /* .back-to-top:hover removed */
        
        /* List styles with blue checkmarks */
        .content-box ul li i.fa-check,
        .content-box ul li i.fa-check-circle {
            color: var(--primary-blue);
        }
        
        .text-success {
            color: var(--primary-blue) !important;
        }
        
        /* Link styles */
        a {
            color: var(--primary-blue);
            transition: all 0.3s ease;
        }
        
        /* a:hover removed */
        
        @media (max-width: 768px) {
            .dental-hero {
                padding: 40px 0 40px;
            }
            
            .dental-hero .hero-content h1 {
                font-size: 2rem;
            }
            
            .dental-hero .hero-content p {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }
            
            .areas-grid {
                grid-template-columns: 1fr;
            }
            
            .amenities-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .cta-buttons .btn {
                width: 100%;
                justify-content: center;
            }
            
            .cta-features {
                flex-direction: column;
                gap: 15px;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 24px;
            }
            
            .call-float {
                width: 50px;
                height: 50px;
                bottom: 90px;
                right: 20px;
                font-size: 24px;
            }
            
            .back-to-top {
                bottom: 170px;
                right: 20px;
                width: 40px;
                height: 40px;
                font-size: 14px;
            }
            
            .footer-links ul {
                justify-content: center;
                flex-wrap: wrap;
            }
        }
        
        .preloader {
            display: none !important;
        }
        
        /* Additional mobile menu styles */
        .mobile-menu-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 90, 150, 0.95);
            z-index: 9999;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .mobile-menu-wrapper.show {
            opacity: 1;
        }
        
        .mobile-menu-area {
            position: absolute;
            right: 0;
            top: 0;
            width: 300px;
            height: 100%;
            background: white;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
            padding: 20px;
        }
        
        .mobile-menu-wrapper.show .mobile-menu-area {
            transform: translateX(0);
        }
        
        .mobile-menu-area .menu-toggle {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-blue);
            cursor: pointer;
            z-index: 10;
        }
        
        .mobile-logo {
            margin-bottom: 30px;
            padding-top: 20px;
        }
        
        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mobile-menu ul li {
            margin-bottom: 15px;
        }
        
        .mobile-menu ul li a {
            display: block;
            padding: 12px 15px;
            color: var(--text-dark);
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        /* .mobile-menu ul li a:hover removed */
        
        /* Sticky header styles */
        .sticky-wrapper.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            background: white;
            box-shadow: 0 2px 10px rgba(30, 90, 150, 0.15);
            animation: slideDown 0.3s ease;
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }
        
        /* Print styles */
        @media print {
            .whatsapp-float,
            .call-float,
            .back-to-top,
            .header-top,
            .menu-area,
            .breadcrumb-nav,
            .cta-section,
            footer,
            .hero-buttons,
            .btn {
                display: none !important;
            }
            
            body {
                font-size: 12pt;
                line-height: 1.5;
                color: #000;
            }
            
            .container {
                width: 100%;
                max-width: 100%;
            }
            
            .treatment-card,
            .content-box,
            .business-info-card {
                box-shadow: none !important;
                border: 1px solid #ddd;
                page-break-inside: avoid;
            }
        }
        
        /* Accessibility improvements */
        .skip-to-content {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary-blue);
            color: white;
            padding: 8px;
            text-decoration: none;
            z-index: 10000;
        }
        
        .skip-to-content:focus {
            top: 0;
        }
        
        /* Focus styles for better accessibility */
        a:focus,
        button:focus,
        input:focus,
        textarea:focus {
            outline: 2px solid var(--primary-blue);
            outline-offset: 2px;
        }
        
        /* High contrast mode support */
        @media (prefers-contrast: high) {
            body {
                background: white;
                color: black;
            }
            
            .btn-primary {
                background: #000;
                border-color: #000;
            }
        }
        
        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
