/* Base Styles & CSS Variables - MATCHING INDEX PAGE */
            :root {
                --primary: #4CAF50;
                --primary-dark: #388E3C;
                --primary-light: #81C784;
                --secondary: #212121;
                --accent: #FF9800;
                --light: #FFFFFF;
                --gray-light: #F5F5F5;
                --gray: #9E9E9E;
                --gray-dark: #616161;
                --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
                --transition: all 0.3s ease;
            }

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

            body {
                font-family: 'Poppins', sans-serif;
                line-height: 1.6;
                color: var(--secondary);
                background-color: var(--light);
                overflow-x: hidden;
            }

            h1, h2, h3, h4 {
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 1rem;
            }

            a {
                text-decoration: none;
                color: inherit;
            }

            ul {
                list-style: none;
            }

            img {
                max-width: 100%;
                height: auto;
                display: block;
            }

            /* CONTAINER WIDTH MATCHING INDEX PAGE */
            .container {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }

            .section {
                padding: 80px 0;
            }

            .section-title {
                text-align: center;
                margin-bottom: 50px;
                position: relative;
            }

            .section-title h2 {
                font-size: 2.5rem;
                color: var(--secondary);
                display: inline-block;
            }

            .section-title h2 span {
                color: var(--primary);
            }

            .section-title::after {
                content: '';
                position: absolute;
                width: 70px;
                height: 4px;
                background-color: var(--primary);
                bottom: -10px;
                left: 50%;
                transform: translateX(-50%);
            }

            .btn {
                display: inline-block;
                padding: 12px 30px;
                border-radius: 5px;
                font-weight: 600;
                font-size: 1rem;
                transition: var(--transition);
                cursor: pointer;
                border: none;
                font-family: 'Montserrat', sans-serif;
                text-align: center;
            }

            .btn-primary {
                background-color: var(--primary);
                color: var(--light);
            }

            .btn-primary:hover {
                background-color: var(--primary-dark);
                transform: translateY(-3px);
                box-shadow: var(--shadow);
            }

            .btn-outline {
                background-color: transparent;
                color: var(--primary);
                border: 2px solid var(--primary);
            }

            .btn-outline:hover {
                background-color: var(--primary);
                color: var(--light);
            }

            /* ================================================ */
            /* HEADER & NAVIGATION - UPDATED LOGO ALIGNMENT */
            /* ================================================ */
            header {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                background-color: var(--light);
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                z-index: 1000;
                padding: 15px 0;
                transition: var(--transition);
            }

            .header-container {
                display: flex;
                justify-content: space-between;
                align-items: center;
                height: 50px;
            }

            .logo {
                display: flex;
                align-items: center;
                height: 100%;
                z-index: 1001;
                gap: 8px; /* Reduced for closer spacing */
            }

            .logo-image-container {
                height: 50px;
                display: flex;
                align-items: center; /* Center alignment */
                margin-bottom: 3px; /* Push image slightly upward */
            }

            .logo-image {
                height: 42px; /* Slightly smaller for better proportion */
                width: auto;
                object-fit: contain;
                display: block;
            }

            .logo-text {
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                font-size: 1.8rem;
                color: var(--secondary);
                display: flex;
                align-items: center;
                height: 50px;
                padding-bottom: 1px; /* Reduced for tighter alignment */
            }

            .logo-text span {
                color: var(--primary);
            }

            nav {
                display: flex;
                align-items: center;
                height: 100%;
            }

            nav ul {
                display: flex;
                align-items: center;
                margin: 0;
                padding: 0;
            }

            nav ul li {
                margin-left: 30px;
                display: flex;
                align-items: center;
            }

            nav ul li a {
                font-weight: 600;
                color: var(--secondary);
                transition: var(--transition);
                position: relative;
                padding: 8px 0;
                display: flex;
                align-items: center;
                height: 100%;
            }

            nav ul li a:hover {
                color: var(--primary);
            }

            nav ul li a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background-color: var(--primary);
                transition: var(--transition);
            }

            nav ul li a:hover::after {
                width: 100%;
            }

            .nav-cta {
                margin-left: 30px;
            }

            .mobile-menu-btn {
                display: none;
                background: none;
                border: none;
                font-size: 1.5rem;
                color: var(--secondary);
                cursor: pointer;
                padding: 5px;
                z-index: 1001;
            }

            /* Active state for current page */
            nav ul li a.active {
                color: var(--primary);
            }

            nav ul li a.active::after {
                width: 100%;
            }

            /* Page Header */
            .page-header {
                padding: 150px 0 80px;
                background: linear-gradient(rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.9)), url('/assets/services/services-breadcrumb.avif');
                background-size: cover;
                background-position: center;
                color: var(--light);
                text-align: center;
            }

            .page-header h1 {
                font-size: 3.5rem;
                margin-bottom: 20px;
            }

            .page-header p {
                font-size: 1.2rem;
                max-width: 700px;
                margin: 0 auto 30px;
                opacity: 0.9;
            }

            .breadcrumb {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;
                font-size: 1.1rem;
            }

            .breadcrumb a {
                opacity: 0.9;
                transition: var(--transition);
            }

            .breadcrumb a:hover {
                opacity: 1;
                text-decoration: underline;
            }

            .breadcrumb i {
                font-size: 0.8rem;
            }

            /* Services Overview - 9 cards */
            .services-overview {
                background-color: var(--gray-light);
            }

            .services-intro {
                text-align: center;
                max-width: 800px;
                margin: 0 auto 60px;
            }

            .services-intro h2 {
                font-size: 2.2rem;
                color: var(--secondary);
                margin-bottom: 20px;
            }

            .services-intro p {
                font-size: 1.1rem;
                color: var(--gray-dark);
                line-height: 1.8;
            }

            .services-quick-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 30px;
                margin-bottom: 60px;
            }

            .quick-service-card {
                background-color: var(--light);
                padding: 30px;
                border-radius: 10px;
                text-align: center;
                box-shadow: var(--shadow);
                transition: var(--transition);
                cursor: pointer;
                border: 2px solid transparent;
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .quick-service-card:hover,
            .quick-service-card.active {
                transform: translateY(-10px);
                border-color: var(--primary);
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            }

            .quick-service-icon {
                width: 70px;
                height: 70px;
                background-color: var(--primary-light);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 20px;
                color: var(--primary-dark);
                font-size: 1.8rem;
                flex-shrink: 0;
            }

            .quick-service-card h3 {
                font-size: 1.5rem;
                margin-bottom: 15px;
                flex-shrink: 0;
            }

            .quick-service-card p {
                color: var(--gray-dark);
                margin-bottom: 20px;
                flex-grow: 1;
            }

            /* Detailed Services Section */
            .service-detail-section {
                position: relative;
                background: linear-gradient(135deg, var(--primary-light) 0%, var(--light) 100%);
                padding: 80px 0;
                min-height: 600px;
            }

            .service-detail-container {
                max-width: 1200px;
                margin: 0 auto;
            }

            .service-detail-card {
                background-color: var(--light);
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                display: none;
                animation: fadeIn 0.5s ease-out;
            }

            .service-detail-card.active {
                display: block;
            }

            @keyframes fadeIn {
                from { opacity: 0; transform: translateY(20px); }
                to { opacity: 1; transform: translateY(0); }
            }

            .service-detail-header {
                background: linear-gradient(to right, var(--primary), var(--primary-dark));
                color: var(--light);
                padding: 40px;
                display: flex;
                align-items: center;
                gap: 30px;
            }

            .detail-service-icon {
                width: 80px;
                height: 80px;
                background-color: rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 2.2rem;
                flex-shrink: 0;
            }

            .detail-header-content h2 {
                font-size: 2.2rem;
                margin-bottom: 10px;
            }

            .detail-header-content p {
                opacity: 0.9;
                font-size: 1.1rem;
            }

            .service-detail-content {
                padding: 50px;
            }

            .service-stats {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
                margin-bottom: 40px;
                padding: 30px;
                background-color: var(--gray-light);
                border-radius: 10px;
            }

            .service-stat {
                text-align: center;
                padding: 20px;
                background-color: var(--light);
                border-radius: 8px;
                box-shadow: var(--shadow);
            }

            .service-stat h4 {
                font-size: 2.5rem;
                color: var(--primary);
                margin-bottom: 10px;
            }

            .service-stat p {
                font-weight: 600;
                color: var(--secondary);
            }

            .service-description {
                margin-bottom: 40px;
            }

            .service-description h3 {
                font-size: 1.8rem;
                color: var(--secondary);
                margin-bottom: 20px;
                position: relative;
                padding-bottom: 10px;
            }

            .service-description h3::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 60px;
                height: 3px;
                background-color: var(--primary);
            }

            .service-description p {
                font-size: 1.1rem;
                line-height: 1.8;
                color: var(--gray-dark);
                margin-bottom: 20px;
            }

            .service-features {
                margin-bottom: 40px;
            }

            .service-features h3 {
                font-size: 1.8rem;
                margin-bottom: 25px;
                color: var(--secondary);
            }

            .features-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 20px;
            }

            .feature-item {
                background-color: var(--gray-light);
                padding: 25px;
                border-radius: 8px;
                display: flex;
                align-items: flex-start;
                gap: 15px;
                transition: var(--transition);
            }

            .feature-item:hover {
                transform: translateY(-5px);
                background-color: var(--primary-light);
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                background-color: var(--primary);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--light);
                font-size: 1.2rem;
                flex-shrink: 0;
            }

            .feature-content h4 {
                font-size: 1.2rem;
                margin-bottom: 8px;
                color: var(--secondary);
            }

            /* Service Packages - FIXED FOR ALL SERVICES */
            .service-packages {
                margin-bottom: 40px;
            }

            .service-packages h3 {
                font-size: 1.8rem;
                margin-bottom: 25px;
                color: var(--secondary);
            }

            .packages-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }

            .package-card {
                background-color: var(--light);
                border: 2px solid var(--gray-light);
                border-radius: 10px;
                padding: 35px 30px;
                text-align: center;
                transition: var(--transition);
                position: relative;
                display: flex;
                flex-direction: column;
                height: 100%;
            }

            .package-card:hover {
                transform: translateY(-10px);
                border-color: var(--primary);
                box-shadow: var(--shadow);
            }

            .package-card.popular {
                border-color: var(--primary);
                background: linear-gradient(to bottom, var(--primary-light) 0%, var(--light) 100%);
            }

            .popular-badge {
                position: absolute;
                top: -15px;
                left: 50%;
                transform: translateX(-50%);
                background-color: var(--primary);
                color: var(--light);
                padding: 8px 20px;
                border-radius: 20px;
                font-weight: 600;
                font-size: 0.9rem;
            }

            .package-name {
                font-size: 1.5rem;
                font-weight: 700;
                color: var(--secondary);
                margin-bottom: 15px;
                flex-shrink: 0;
            }

            .package-price {
                font-size: 2.8rem;
                font-weight: 700;
                color: var(--primary);
                margin-bottom: 25px;
                flex-shrink: 0;
            }

            .package-price span {
                font-size: 1rem;
                color: var(--gray-dark);
            }

            .package-features {
                list-style: none;
                margin-bottom: 30px;
                text-align: left;
                flex-grow: 1;
            }

            .package-features li {
                padding: 10px 0;
                border-bottom: 1px solid var(--gray-light);
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .package-features li i {
                color: var(--primary);
            }

            .service-cta {
                text-align: center;
                padding-top: 40px;
                border-top: 1px solid var(--gray-light);
                flex-shrink: 0;
            }

            /* Process Section */
            .process-section {
                background-color: var(--secondary);
                color: var(--light);
                padding: 80px 0;
            }

            .process-steps {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 40px;
                margin-top: 50px;
                position: relative;
            }

            .process-steps::before {
                content: '';
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                height: 2px;
                background-color: var(--primary);
                z-index: 1;
            }

            .process-step {
                text-align: center;
                position: relative;
                z-index: 2;
            }

            .step-number {
                width: 70px;
                height: 70px;
                background-color: var(--primary);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.8rem;
                font-weight: 700;
                margin: 0 auto 25px;
                color: var(--light);
                border: 5px solid var(--secondary);
            }

            .process-step h3 {
                font-size: 1.5rem;
                margin-bottom: 15px;
                color: var(--light);
            }

            .process-step p {
                opacity: 0.8;
                line-height: 1.7;
            }

            /* FAQ Section */
            .faq-section {
                background-color: var(--gray-light);
            }

            .faq-container {
                max-width: 800px;
                margin: 0 auto;
            }

            .faq-item {
                background-color: var(--light);
                border-radius: 10px;
                margin-bottom: 20px;
                box-shadow: var(--shadow);
                overflow: hidden;
            }

            .faq-question {
                padding: 25px 30px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                transition: var(--transition);
            }

            .faq-question:hover {
                background-color: rgba(76, 175, 80, 0.05);
            }

            .faq-question h3 {
                font-size: 1.2rem;
                margin: 0;
                color: var(--secondary);
            }

            .faq-toggle {
                color: var(--primary);
                font-size: 1.5rem;
                transition: var(--transition);
            }

            .faq-question.active .faq-toggle {
                transform: rotate(45deg);
            }

            .faq-answer {
                padding: 0 30px;
                max-height: 0;
                overflow: hidden;
                transition: var(--transition);
            }

            .faq-answer.active {
                padding: 0 30px 30px;
                max-height: 500px;
            }

            .faq-answer p {
                color: var(--gray-dark);
                line-height: 1.8;
            }

            /* Pre-Footer CTA Section */
            .pre-footer-cta {
                padding: 80px 0;
                background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
                color: var(--light);
                text-align: center;
                position: relative;
                overflow: hidden;
            }

            .pre-footer-cta::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2381c784' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
                opacity: 0.3;
            }

            .pre-footer-cta h2 {
                font-size: 2.5rem;
                margin-bottom: 20px;
                position: relative;
                z-index: 1;
            }

            .pre-footer-cta p {
                font-size: 1.2rem;
                max-width: 700px;
                margin: 0 auto 30px;
                opacity: 0.9;
                position: relative;
                z-index: 1;
            }

            .pre-footer-cta .btn {
                background-color: var(--light);
                color: var(--primary);
                font-size: 1.1rem;
                padding: 15px 40px;
                position: relative;
                z-index: 1;
            }

            .pre-footer-cta .btn:hover {
                background-color: var(--secondary);
                color: var(--light);
            }

            /* Footer - MATCHING INDEX PAGE */
            footer {
                background-color: var(--secondary);
                color: var(--light);
                padding: 70px 0 20px;
            }

            .footer-content {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 40px;
                margin-bottom: 40px;
            }

            .footer-logo {
                margin-bottom: 20px;
            }

            .footer-logo .logo-text {
                color: var(--light);
            }

            .footer-about p {
                margin-bottom: 20px;
                opacity: 0.8;
            }

            .social-links {
                display: flex;
                gap: 15px;
            }

            .social-links a {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                background-color: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                transition: var(--transition);
            }

            .social-links a:hover {
                background-color: var(--primary);
                transform: translateY(-5px);
            }

            .footer-heading {
                font-size: 1.3rem;
                margin-bottom: 25px;
                position: relative;
                padding-bottom: 10px;
            }

            .footer-heading::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 40px;
                height: 2px;
                background-color: var(--primary);
            }

            .footer-links ul li {
                margin-bottom: 12px;
            }

            .footer-links ul li a {
                opacity: 0.8;
                transition: var(--transition);
            }

            .footer-links ul li a:hover {
                opacity: 1;
                color: var(--primary);
                padding-left: 5px;
            }

            .footer-contact p {
                display: flex;
                align-items: flex-start;
                margin-bottom: 15px;
                opacity: 0.8;
            }

            .footer-contact i {
                margin-right: 10px;
                color: var(--primary);
                margin-top: 5px;
            }

            .copyright {
                text-align: center;
                padding-top: 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                opacity: 0.7;
                font-size: 0.9rem;
            }

            /* Responsive Styles - MATCHING INDEX PAGE WITH FIXES */
            @media (max-width: 1200px) {
                .container {
                    padding: 0 40px;
                }
                
                .packages-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            @media (max-width: 992px) {
                .services-quick-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
                
                .service-detail-content {
                    padding: 30px;
                }
            }

            @media (max-width: 768px) {
                /* ✅ PERFECT HAMBURGER – LARGE, CENTERED, EXTENDED HIT AREA */
                .mobile-menu-btn {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 52px;
                    height: 52px;
                    margin-left: auto;
                    padding: 0;
                    background: none;
                    border: none;
                    font-size: 2rem;
                    color: var(--secondary);
                    cursor: pointer;
                    z-index: 1001;
                    touch-action: manipulation;
                    position: relative;
                }

                /* Expands clickable area – tap anywhere near the icon works */
                .mobile-menu-btn::after {
                    content: '';
                    position: absolute;
                    top: -15px;
                    left: -15px;
                    right: -15px;
                    bottom: -15px;
                    background: transparent;
                }

                .mobile-menu-btn i {
                    line-height: 1;
                }

                nav ul {
                    position: fixed;
                    top: 80px;
                    left: 0;
                    width: 100%;
                    background-color: var(--light);
                    flex-direction: column;
                    align-items: center;
                    padding: 20px 0;
                    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
                    transform: translateY(-150%);
                    transition: var(--transition);
                    z-index: 999;
                }

                nav ul.active {
                    transform: translateY(0);
                }

                nav ul li {
                    margin: 15px 0;
                    width: 100%;
                    justify-content: center;
                }

                nav ul li a {
                    padding: 10px 0;
                    width: 100%;
                    justify-content: center;
                }

                .nav-cta {
                    margin-left: 0;
                    margin-top: 10px;
                }

                .page-header h1 {
                    font-size: 2.8rem;
                }

                .section-title h2 {
                    font-size: 2rem;
                }

                .service-detail-content {
                    padding: 30px 20px;
                }

                .service-stat h4 {
                    font-size: 2rem;
                }
                
                .services-quick-grid {
                    grid-template-columns: 1fr;
                }
                
                .packages-grid {
                    grid-template-columns: 1fr;
                }
                
                .pre-footer-cta h2 {
                    font-size: 2rem;
                }
                
                .pre-footer-cta p {
                    font-size: 1.1rem;
                }
                
                .service-detail-header {
                    flex-direction: column;
                    text-align: center;
                    gap: 20px;
                }
                
                .detail-service-icon {
                    margin: 0 auto;
                }
                
                /* Mobile logo adjustments */
                .logo-image {
                    height: 38px;
                }
                
                .logo-text {
                    font-size: 1.6rem;
                }
                
                .logo {
                    gap: 6px;
                }
                
                .logo-image-container {
                    margin-bottom: 2px;
                }

                /* Hide progress ring on mobile */
                .scroll-to-top .progress-ring {
                    display: none;
                }
            }

            @media (max-width: 576px) {
                .container {
                    padding: 0 20px;
                }
                
                .page-header h1 {
                    font-size: 2.2rem;
                }
                
                .page-header p {
                    font-size: 1rem;
                }
                
                .process-steps {
                    gap: 30px;
                }
                
                .step-number {
                    width: 60px;
                    height: 60px;
                    font-size: 1.5rem;
                }
                
                .pre-footer-cta {
                    padding: 60px 20px;
                }
                
                .pre-footer-cta h2 {
                    font-size: 1.8rem;
                }
                
                .service-stats {
                    grid-template-columns: 1fr;
                }
                
                /* Small mobile logo adjustments */
                .logo-image {
                    height: 33px;
                }
                
                .logo-text {
                    font-size: 1.4rem;
                }
                
                .logo {
                    gap: 5px;
                }
                
                .logo-image-container {
                    margin-bottom: 1px;
                }
            }

            /* Premium Scroll-to-Top Button - Clean version (no gradient) */
            .scroll-to-top {
                position: fixed;
                bottom: 40px;
                right: 40px;
                width: 60px;
                height: 60px;
                background: var(--primary);
                color: var(--light);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.8rem;
                cursor: pointer;
                transition: var(--transition);
                opacity: 0;
                visibility: hidden;
                transform: translateY(20px);
                z-index: 999;
                box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
                border: 2px solid var(--light);
            }

            .scroll-to-top.visible {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .scroll-to-top:hover {
                background: var(--primary-dark);
                transform: translateY(-5px);
                box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
            }

            .scroll-to-top:active {
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
            }

            .scroll-to-top .progress-ring {
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                border-radius: 50%;
                z-index: -1;
            }

            .scroll-to-top .progress-ring-circle {
                fill: none;
                stroke: var(--primary-light);
                stroke-width: 2;
                stroke-dasharray: 100;
                stroke-dashoffset: 100;
                transition: stroke-dashoffset 0.3s ease;
                transform: rotate(-90deg);
                transform-origin: 50% 50%;
            }

            .scroll-to-top .pulse-effect {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--primary);
                border-radius: 50%;
                opacity: 0;
                z-index: -1;
                animation: pulse 2s infinite;
            }

            @keyframes pulse {
                0% {
                    transform: scale(1);
                    opacity: 0.8;
                }
                100% {
                    transform: scale(1.3);
                    opacity: 0;
                }
            }

            /* Mobile Responsive */
            @media (max-width: 768px) {
                .scroll-to-top {
                    width: 50px;
                    height: 50px;
                    bottom: 25px;
                    right: 25px;
                    font-size: 1.5rem;
                }
            }

            @media (max-width: 480px) {
                .scroll-to-top {
                    width: 45px;
                    height: 45px;
                    bottom: 20px;
                    right: 20px;
                    font-size: 1.3rem;
                }
            }
            .custom-cursor {
            width: 12px;
            height: 12px;
            background-color: #4CAF50;
            opacity: 0.5;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 9999;
            transition: width 0.2s, height 0.2s, background-color 0.2s;
            will-change: transform;
            }

            /* Remove default focus outline from all interactive elements */
            button:focus,
            a:focus,
            .btn:focus,
            input:focus,
            textarea:focus,
            select:focus {
                outline: none;
                box-shadow: none;
            }

            /* Add a subtle, premium focus style for keyboard users (optional but recommended) */
            button:focus-visible,
            a:focus-visible,
            .btn:focus-visible,
            input:focus-visible,
            textarea:focus-visible,
            select:focus-visible {
                outline: 2px solid var(--primary, #4CAF50);
                outline-offset: 2px;
                border-radius: 4px;
            }

            /* Force remove all focus outlines and rings */
            button:focus,
            a:focus,
            .btn:focus,
            input:focus,
            textarea:focus,
            select:focus,
            [tabindex]:focus,
            [contenteditable]:focus,
            [role="button"]:focus,
            [type="button"]:focus,
            [type="submit"]:focus,
            [type="reset"]:focus {
                outline: none !important;
                box-shadow: none !important;
                -webkit-tap-highlight-color: transparent !important; /* Removes mobile tap highlight */
            }

            /* Optional: keep a visible focus for keyboard users (accessible) */
            button:focus-visible,
            a:focus-visible,
            .btn:focus-visible,
            input:focus-visible,
            textarea:focus-visible,
            select:focus-visible,
            [tabindex]:focus-visible {
                outline: 2px solid var(--primary, #4CAF50) !important;
                outline-offset: 2px !important;
                box-shadow: none !important;
            }