
        :root {
            --vibrant-red: #ED1C24;
            --bright-orange: #F7941E;
            --golden-yellow: #FFD200;
            --solid-black: #000000;
            --dark-grey: #808080;
            --transition-speed: 0.8s;
            --nav-bg: rgba(255, 255, 255, 0.95);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            overflow-x: hidden;
            background-color: #f9f9f9;
        }

        .reveal {
            opacity: 0;
            transform: translateY(60px) scale(0.95);
            transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform, opacity;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .reveal.reversing {
            opacity: 0;
            transform: translateY(-60px) scale(0.95);
        }

        .subtle-float {
            animation: float 4s infinite ease-in-out;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .float-img {
            animation: imageFloat 5s infinite ease-in-out;
        }

        @keyframes imageFloat {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-12px) scale(1.02);
            }
        }

        nav {
            background: var(--nav-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 10px 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(237, 28, 36, 0.08);
            border-bottom: 1px solid rgba(237, 28, 36, 0.06);
            transition: all 0.3s ease;
            min-height: 60px;
            gap: 10px;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 30px rgba(237, 28, 36, 0.12);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-container img {
            height: 38px;
            width: auto;
            transition: all 0.3s ease;
        }

        .logo-container .brand-text {
            font-size: 18px;
            font-weight: 800;
            color: var(--solid-black);
            letter-spacing: -0.5px;
            white-space: nowrap;
        }

        .logo-container .brand-text span {
            color: var(--vibrant-red);
        }

        .desktop-nav {
            display: flex;
            list-style: none;
            gap: 4px;
            align-items: center;
            flex-wrap: nowrap;
        }

        .desktop-nav li {
            position: relative;
            flex-shrink: 0;
        }

        .desktop-nav a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 12px;
            padding: 6px 14px;
            border-radius: 50px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }

        .desktop-nav a i {
            font-size: 12px;
            color: var(--vibrant-red);
            transition: all 0.3s ease;
        }

        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2.5px;
            background: linear-gradient(90deg, var(--vibrant-red), var(--golden-yellow));
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .desktop-nav a:hover::after {
            width: 40%;
        }

        .desktop-nav a:hover {
            color: var(--vibrant-red);
            background: rgba(237, 28, 36, 0.08);
        }

        .desktop-nav a:hover i {
            transform: scale(1.15);
        }

        .desktop-nav a.active {
            color: var(--vibrant-red);
            background: rgba(237, 28, 36, 0.12);
        }

        .desktop-nav a.active::after {
            width: 40%;
        }

        .nav-whatsapp {
            background: linear-gradient(135deg, #25d366, #128C7E) !important;
            color: white !important;
            padding: 6px 18px !important;
            border-radius: 50px !important;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
            transition: all 0.3s ease !important;
            animation: whatsappBlink 1.5s ease-in-out infinite;
            position: relative;
            font-weight: 700 !important;
            font-size: 12px !important;
        }

        .nav-whatsapp i {
            color: white !important;
            font-size: 14px !important;
        }

        .nav-whatsapp:hover {
            transform: translateY(-2px) scale(1.06) !important;
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
            animation-play-state: paused;
        }

        .nav-whatsapp::after {
            display: none !important;
        }

        @keyframes whatsappBlink {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
                transform: scale(1);
            }
            25% {
                box-shadow: 0 0 20px 8px rgba(37, 211, 102, 0.2);
                transform: scale(1.04);
            }
            50% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
                transform: scale(1);
            }
            75% {
                box-shadow: 0 0 20px 8px rgba(37, 211, 102, 0.2);
                transform: scale(1.04);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
                transform: scale(1);
            }
        }

        .nav-whatsapp::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50px;
            border: 2px solid rgba(37, 211, 102, 0.3);
            animation: pulseRing 1.5s ease-in-out infinite;
        }

        @keyframes pulseRing {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.25);
                opacity: 0;
            }
        }

        .mobile-nav-wrapper {
            display: none;
            flex-direction: column;
            align-items: center;
            width: 100%;
            gap: 4px;
            padding: 4px 0;
        }

        .mobile-nav-row {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4px;
        }

        .mobile-nav-links {
            display: flex;
            list-style: none;
            gap: 4px;
            align-items: center;
            flex-wrap: nowrap;
            justify-content: center;
        }

        .mobile-nav-links li {
            position: relative;
            flex-shrink: 0;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 12px;
            padding: 5px 12px;
            border-radius: 50px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }

        .mobile-nav-links a i {
            font-size: 12px;
            color: var(--vibrant-red);
            transition: all 0.3s ease;
        }

        .mobile-nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2.5px;
            background: linear-gradient(90deg, var(--vibrant-red), var(--golden-yellow));
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .mobile-nav-links a:hover::after {
            width: 40%;
        }

        .mobile-nav-links a:hover {
            color: var(--vibrant-red);
            background: rgba(237, 28, 36, 0.08);
        }

        .mobile-nav-links a:hover i {
            transform: scale(1.15);
        }

        .mobile-nav-links a.active {
            color: var(--vibrant-red);
            background: rgba(237, 28, 36, 0.12);
        }

        .mobile-nav-links a.active::after {
            width: 40%;
        }

        .mobile-whatsapp {
            background: linear-gradient(135deg, #25d366, #128C7E) !important;
            color: white !important;
            padding: 5px 16px !important;
            border-radius: 50px !important;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
            transition: all 0.3s ease !important;
            animation: whatsappBlink 1.5s ease-in-out infinite;
            position: relative;
            font-weight: 700 !important;
            font-size: 12px !important;
        }

        .mobile-whatsapp i {
            color: white !important;
            font-size: 14px !important;
        }

        .mobile-whatsapp:hover {
            transform: translateY(-2px) scale(1.06) !important;
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
            animation-play-state: paused;
        }

        .mobile-whatsapp::after {
            display: none !important;
        }

        .mobile-whatsapp::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50px;
            border: 2px solid rgba(37, 211, 102, 0.3);
            animation: pulseRing 1.5s ease-in-out infinite;
        }

        .hero {
            height: 100vh;
            min-height: 100vh;
            padding: 60px 20px;
            background: url('./images/1 (16).jpeg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .hero h2 {
            font-size: 1.8rem;
            color: var(--golden-yellow);
        }

        .hero p {
            max-width: 800px;
            margin-top: 15px;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .page-title-bar {
            background: linear-gradient(135deg, var(--vibrant-red), var(--bright-orange));
            padding: 30px 8%;
            text-align: center;
            color: white;
        }

        .page-title-bar h1 {
            font-size: 2.5rem;
            font-weight: 800;
        }

        .page-title-bar p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-top: 8px;
        }

        .section-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--vibrant-red);
            font-weight: bold;
        }

        .section-desc {
            max-width: 850px;
            margin: 0 auto 40px;
            color: #666;
            line-height: 1.6;
            font-size: 1.05rem;
        }

        .maintenance-overview {
            padding: 80px 8%;
            background: #fff;
            text-align: center;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .overview-card {
            background: #fff;
            padding: 35px 25px;
            border-radius: 20px;
            border: 1px solid rgba(237, 28, 36, 0.06);
            transition: all 0.5s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
        }

        .overview-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(237, 28, 36, 0.08);
            border-color: var(--vibrant-red);
        }

        .overview-card .overview-icon {
            font-size: 45px;
            color: var(--vibrant-red);
            margin-bottom: 15px;
            display: inline-block;
        }

        .overview-card h4 {
            font-size: 1.2rem;
            color: var(--solid-black);
            margin-bottom: 10px;
        }

        .overview-card p {
            color: var(--dark-grey);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .maintenance-services {
            padding: 80px 8%;
            background: #f8f8f8;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(237, 28, 36, 0.06);
            transition: all 0.5s ease;
            text-align: left;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 50px rgba(237, 28, 36, 0.1);
            border-color: var(--vibrant-red);
        }

        .service-card .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-card .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .service-card:hover .service-img img {
            transform: scale(1.12) rotate(2deg);
        }

        .service-card .service-body {
            padding: 25px;
        }

        .service-card .service-body .service-icon {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--vibrant-red), var(--bright-orange));
            border-radius: 12px;
            color: white;
            text-align: center;
            line-height: 50px;
            font-size: 22px;
            margin-bottom: 15px;
        }

        .service-card .service-body h3 {
            font-size: 1.3rem;
            color: var(--vibrant-red);
            margin-bottom: 10px;
        }

        .service-card .service-body p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .service-card .service-body ul {
            list-style: none;
            padding: 0;
            margin-top: 12px;
        }

        .service-card .service-body ul li {
            color: #555;
            font-size: 0.9rem;
            padding: 5px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-card .service-body ul li:last-child {
            border-bottom: none;
        }

        .service-card .service-body ul li i {
            color: var(--vibrant-red);
            font-size: 14px;
            width: 20px;
        }

        .bg-slider-section {
            height: 100vh;
            width: 100%;
            position: relative;
            overflow: hidden;
            background: #f5f5f5;
        }

        .bg-slider-section .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            z-index: 1;
        }

        .bg-slider-section .slide.active {
            opacity: 1;
            z-index: 2;
        }

        .bg-slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 14px;
        }

        .bg-slider-dots .dot-bg {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.25);
            cursor: pointer;
            transition: all 0.4s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .bg-slider-dots .dot-bg.active {
            background: var(--vibrant-red);
            transform: scale(1.3);
            border-color: var(--vibrant-red);
            box-shadow: 0 0 20px rgba(237, 28, 36, 0.3);
        }

        .bg-slider-dots .dot-bg:hover {
            transform: scale(1.2);
            background: rgba(0, 0, 0, 0.5);
        }

        .image-gallery-section {
            padding: 80px 8%;
            background: #fff;
            text-align: center;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(237, 28, 36, 0.06);
            background: #fff;
            transform: translateY(0);
        }

        .gallery-item:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(237, 28, 36, 0.15);
            border-color: var(--vibrant-red);
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-item:hover img {
            transform: scale(1.08) rotate(1.5deg);
        }

        .gallery-item .gallery-overlay {
            padding: 15px;
            background: linear-gradient(180deg, transparent, rgba(237, 28, 36, 0.03));
            text-align: center;
            border-top: 1px solid rgba(237, 28, 36, 0.06);
        }

        .gallery-item .gallery-overlay span {
            font-size: 0.85rem;
            color: var(--dark-grey);
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .gallery-item.float-item {
            animation: galleryFloat 6s infinite ease-in-out;
        }

        .gallery-item.float-item:nth-child(2) {
            animation-delay: 1s;
        }

        .gallery-item.float-item:nth-child(3) {
            animation-delay: 2s;
        }

        @keyframes galleryFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .gallery-item:hover.float-item {
            animation-play-state: paused;
        }

        .process-section {
            padding: 80px 8%;
            background: #f8f8f8;
            text-align: center;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
            position: relative;
        }

        .process-step {
            background: #fff;
            padding: 30px 20px;
            border-radius: 16px;
            border: 1px solid rgba(237, 28, 36, 0.06);
            transition: all 0.5s ease;
            position: relative;
        }

        .process-step:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(237, 28, 36, 0.06);
            border-color: var(--bright-orange);
        }

        .process-step .step-number {
            display: inline-block;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--vibrant-red), var(--bright-orange));
            color: white;
            border-radius: 50%;
            line-height: 45px;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .process-step h4 {
            font-size: 1.1rem;
            color: var(--solid-black);
            margin-bottom: 8px;
        }

        .process-step p {
            color: var(--dark-grey);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .contact-banner {
            padding: 60px 8%;
            background: linear-gradient(135deg, var(--vibrant-red), var(--bright-orange));
            text-align: center;
            color: white;
        }

        .contact-banner h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .contact-banner p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 25px;
        }

        .contact-banner .btn-cta {
            display: inline-block;
            padding: 14px 40px;
            background: var(--golden-yellow);
            color: var(--solid-black);
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 210, 0, 0.3);
        }

        .contact-banner .btn-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 30px rgba(255, 210, 0, 0.5);
        }

        .floating-contacts {
            position: fixed;
            right: 15px;
            bottom: 15px;
            z-index: 1001;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .floating-contacts a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: 0.3s;
        }

        .whatsapp {
            background: #25d366;
        }

        .phone {
            background: linear-gradient(135deg, var(--vibrant-red), var(--bright-orange));
        }

        .email {
            background: #ea4335;
        }

        .floating-contacts a:hover {
            transform: scale(1.15);
        }

        footer {
            background: linear-gradient(135deg, var(--solid-black), #1a1a1a);
            padding: 40px 8%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            color: white;
        }

        footer h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--golden-yellow);
        }

        footer p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
        }

        footer a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.85);
            transition: 0.3s;
        }

        footer a:hover {
            color: var(--golden-yellow);
        }

        footer .social-links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 5px;
        }

        footer .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 17px;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        footer .social-links a:hover {
            transform: translateY(-5px) scale(1.1);
            background: var(--golden-yellow);
            color: var(--solid-black);
            border-color: var(--golden-yellow);
            box-shadow: 0 8px 25px rgba(255, 210, 0, 0.3);
        }

        @media (min-width: 1025px) {
            .mobile-nav-wrapper {
                display: none !important;
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .mobile-nav-wrapper {
                display: none !important;
            }

            nav {
                padding: 8px 3%;
                min-height: 56px;
                gap: 8px;
            }

            .logo-container img {
                height: 32px;
            }

            .logo-container .brand-text {
                font-size: 16px;
            }

            .desktop-nav a {
                font-size: 11px;
                padding: 4px 10px;
            }

            .desktop-nav a i {
                font-size: 11px;
            }

            .nav-whatsapp {
                padding: 4px 12px !important;
                font-size: 11px !important;
            }

            .nav-whatsapp i {
                font-size: 12px !important;
            }
        }

        @media (max-width: 768px) {
            .desktop-nav {
                display: none !important;
            }

            .mobile-nav-wrapper {
                display: flex !important;
            }

            nav {
                flex-direction: column;
                padding: 6px 2%;
                min-height: auto;
                gap: 3px;
            }

            .logo-container img {
                height: 28px;
            }

            .logo-container .brand-text {
                font-size: 15px;
                letter-spacing: -0.3px;
            }

            .mobile-nav-links {
                gap: 2px;
            }

            .mobile-nav-links a {
                font-size: 11px;
                padding: 4px 10px;
                border-radius: 30px;
                gap: 4px;
            }

            .mobile-nav-links a i {
                font-size: 11px;
            }

            .mobile-whatsapp {
                padding: 4px 12px !important;
                font-size: 11px !important;
                border-radius: 30px !important;
            }

            .mobile-whatsapp i {
                font-size: 12px !important;
            }

            .mobile-whatsapp::before {
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
            }

            .hero {
                height: 100vh;
                min-height: 100vh;
                padding: 60px 20px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero h2 {
                font-size: 1.3rem;
            }

            .page-title-bar h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .process-steps {
                grid-template-columns: 1fr 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
            }

            .bg-slider-section {
                height: 70vh;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 4px 1.5%;
                gap: 2px;
            }

            .logo-container img {
                height: 22px;
            }

            .logo-container .brand-text {
                font-size: 12px;
                letter-spacing: -0.2px;
            }

            .logo-container {
                gap: 5px;
            }

            .mobile-nav-links {
                gap: 1px;
            }

            .mobile-nav-links a {
                font-size: 9px;
                padding: 3px 7px;
                border-radius: 20px;
                gap: 3px;
            }

            .mobile-nav-links a i {
                font-size: 8px;
            }

            .mobile-whatsapp {
                padding: 3px 8px !important;
                font-size: 9px !important;
                border-radius: 20px !important;
            }

            .mobile-whatsapp i {
                font-size: 9px !important;
            }

            .mobile-whatsapp::before {
                display: none;
            }

            .hero {
                height: 100vh;
                min-height: 100vh;
                padding: 30px 15px;
            }

            .hero h1 {
                font-size: 1.6rem;
            }

            .hero h2 {
                font-size: 1rem;
            }

            .hero p {
                font-size: 0.85rem;
            }

            .page-title-bar {
                padding: 20px 5%;
            }

            .page-title-bar h1 {
                font-size: 1.4rem;
            }

            .page-title-bar p {
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .section-desc {
                font-size: 0.9rem;
                padding: 0 10px;
            }

            .maintenance-overview {
                padding: 40px 5%;
            }

            .overview-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .overview-card {
                padding: 25px 20px;
            }

            .maintenance-services {
                padding: 40px 5%;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card .service-img {
                height: 160px;
            }

            .service-card .service-body {
                padding: 18px;
            }

            .bg-slider-section {
                height: 50vh;
            }

            .bg-slider-dots .dot-bg {
                width: 10px;
                height: 10px;
            }

            .bg-slider-dots {
                bottom: 15px;
                gap: 10px;
            }

            .image-gallery-section {
                padding: 40px 5%;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .gallery-item:hover {
                transform: translateY(-8px) scale(1.01);
            }

            .process-section {
                padding: 40px 5%;
            }

            .process-steps {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .process-step {
                padding: 20px 15px;
            }

            .process-step .step-number {
                width: 35px;
                height: 35px;
                line-height: 35px;
                font-size: 14px;
            }

            .process-step h4 {
                font-size: 0.95rem;
            }

            .process-step p {
                font-size: 0.8rem;
            }

            .contact-banner {
                padding: 40px 5%;
            }

            .contact-banner h2 {
                font-size: 1.6rem;
            }

            .contact-banner p {
                font-size: 0.9rem;
            }

            .contact-banner .btn-cta {
                padding: 12px 30px;
                font-size: 0.95rem;
            }

            footer {
                padding: 30px 5%;
                grid-template-columns: 1fr;
                gap: 20px;
            }

            footer h3 {
                font-size: 1rem;
            }

            footer p {
                font-size: 0.8rem;
            }

            footer .social-links a {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }

            .floating-contacts a {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }

            .floating-contacts {
                right: 10px;
                bottom: 10px;
                gap: 6px;
            }
        }

        @media (max-width: 360px) {
            nav {
                padding: 3px 1%;
                gap: 2px;
            }

            .logo-container img {
                height: 18px;
            }

            .logo-container .brand-text {
                font-size: 10px;
                letter-spacing: -0.1px;
            }

            .logo-container {
                gap: 3px;
            }

            .mobile-nav-links a {
                font-size: 7px;
                padding: 2px 5px;
                border-radius: 16px;
                gap: 2px;
            }

            .mobile-nav-links a i {
                font-size: 6px;
            }

            .mobile-whatsapp {
                padding: 2px 6px !important;
                font-size: 7px !important;
                border-radius: 16px !important;
            }

            .mobile-whatsapp i {
                font-size: 7px !important;
            }

            .hero h1 {
                font-size: 1.5rem;
            }

            .hero h2 {
                font-size: 0.9rem;
            }

            .hero p {
                font-size: 0.75rem;
            }

            .section-title {
                font-size: 1.2rem;
            }

            .page-title-bar h1 {
                font-size: 1.2rem;
            }
        }

        @media (min-width: 401px) and (max-width: 576px) {
            .overview-grid {
                grid-template-columns: 1fr 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .bg-slider-section {
                height: 55vh;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr 1fr;
            }

            footer {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 577px) and (max-width: 768px) {
            .overview-grid {
                grid-template-columns: 1fr 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr 1fr 1fr;
            }

            footer {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 130px) {
            * {
                font-size: 8px !important;
            }

            nav {
                min-height: 30px !important;
                padding: 3px 2% !important;
            }

            .logo-container img {
                height: 15px !important;
            }

            .logo-container .brand-text {
                font-size: 8px !important;
            }

            .hero {
                height: 100vh !important;
                min-height: 100vh !important;
                padding: 20px 10px !important;
            }

            .hero h1 {
                font-size: 12px !important;
            }

            .hero h2 {
                font-size: 8px !important;
            }

            .section-title {
                font-size: 10px !important;
            }

            .page-title-bar h1 {
                font-size: 10px !important;
            }

            .process-step {
                padding: 10px !important;
            }

            .process-step .step-number {
                width: 25px !important;
                height: 25px !important;
                line-height: 25px !important;
                font-size: 10px !important;
            }

            .gallery-grid {
                grid-template-columns: 1fr !important;
                gap: 10px !important;
            }

            .bg-slider-section {
                height: 40vh !important;
            }

            .bg-slider-dots .dot-bg {
                width: 6px !important;
                height: 6px !important;
            }
        }