        :root {
            --vibrant-red: #ED1C24;
            --bright-orange: #F7941E;
            --golden-yellow: #FFD200;
            --solid-black: #000000;
            --dark-grey: #808080;
            --light-grey: #f5f5f5;
            --transition-speed: 0.8s;
            --nav-bg: rgba(255, 255, 255, 0.95);
            --card-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            --card-hover-shadow: 0 15px 50px rgba(237, 28, 36, 0.15);
        }

        * {
            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;
        }

        .about-hero {
            min-height: 150vh;
            height: 150vh;
            padding: 0;
            background-image: url('./images/hero.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: block;
            position: relative;
        }

        .about-hero-content {
            padding: 60px 20px;
            background: #f9f9f9;
            text-align: center;
        }
        .about-hero-content-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }
        .about-hero-content-wrapper h1 {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--solid-black);
            animation: none;
        }
        .about-hero-content-wrapper h1 .gold-text {
            color: var(--golden-yellow);
        }
        .about-hero-content-wrapper p {
            font-size: 1.2rem;
            color: var(--dark-grey);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            animation: none;
        }

        .section {
            padding: 80px 8%;
        }

        .title-group {
            text-align: center;
            margin-bottom: 50px;
        }

        .title-group h2 {
            font-size: 2.5rem;
            color: var(--vibrant-red);
            font-weight: 800;
            margin-bottom: 10px;
        }

        .title-group p {
            color: var(--dark-grey);
            font-size: 1.05rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .intro-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .intro-img img {
            width: 100%;
            display: block;
            transition: 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .intro-img:hover img {
            transform: scale(1.08) rotate(1.5deg);
        }

        .intro-text h2 {
            font-size: 2.2rem;
            color: var(--vibrant-red);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .intro-text p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
        }

        .offices-section {
            background: var(--light-grey);
        }

        .offices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .office-card {
            background: #fff;
            padding: 25px 15px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid rgba(237, 28, 36, 0.06);
            transition: all 0.5s ease;
            box-shadow: var(--card-shadow);
        }

        .office-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--card-hover-shadow);
            border-color: var(--vibrant-red);
        }

        .office-card i {
            font-size: 28px;
            color: var(--vibrant-red);
            margin-bottom: 10px;
        }

        .office-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--solid-black);
        }

        .brand-slider-section {
            padding: 60px 0;
            background: #fff;
            overflow: hidden;
            position: relative;
        }

        .brand-slider-section .title-group {
            margin-bottom: 30px;
        }

        .brand-track {
            display: flex;
            width: max-content;
            animation: scrollBrands 30s linear infinite;
        }

        .brand-logo {
            width: 180px;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }

        .brand-logo img {
            height: 50px;
            filter: grayscale(1);
            opacity: 0.5;
            transition: all 0.4s ease;
            max-width: 100%;
        }

        .brand-logo:hover img {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.15);
        }

        @keyframes scrollBrands {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .mission-vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .mv-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 20px;
            border: 1px solid rgba(237, 28, 36, 0.06);
            box-shadow: var(--card-shadow);
            transition: all 0.5s ease;
            text-align: center;
        }

        .mv-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--card-hover-shadow);
            border-color: var(--vibrant-red);
        }

        .mv-card i {
            font-size: 45px;
            color: var(--vibrant-red);
            margin-bottom: 15px;
        }

        .mv-card h3 {
            font-size: 1.5rem;
            color: var(--solid-black);
            margin-bottom: 10px;
        }

        .mv-card p {
            color: #555;
            line-height: 1.7;
            font-size: 1rem;
        }

        .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);
        }

        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);
        }

        .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);
        }

        .map-section {
            padding: 60px 8%;
            background: #fff;
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(237, 28, 36, 0.06);
            transition: all 0.5s ease;
        }

        .map-container:hover {
            box-shadow: 0 20px 60px rgba(237, 28, 36, 0.12);
            border-color: var(--vibrant-red);
        }

        .map-container iframe {
            width: 100%;
            height: 450px;
            border: none;
            display: block;
        }

        .map-address {
            padding: 20px 30px;
            background: #fafafa;
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
            border-top: 1px solid rgba(237, 28, 36, 0.06);
        }

        .map-address i {
            font-size: 20px;
            color: var(--vibrant-red);
        }

        .map-address p {
            color: #555;
            font-size: 1rem;
        }

        .prominent-projects-section {
            padding: 80px 8%;
            background: #fff;
            text-align: center;
        }

        .projects-slider-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            position: relative;
            margin-top: 40px;
        }

        .projects-slider-container {
            overflow: hidden;
            width: 100%;
            max-width: 900px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .projects-slider-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .project-slide {
            min-width: 100%;
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
        }

        .project-slide-image {
            position: relative;
            height: 380px;
            overflow: hidden;
        }

        .project-slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 1.2s ease;
        }

        .project-slide:hover .project-slide-image img {
            transform: scale(1.05);
        }

        .project-slide-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 2;
        }

        .project-slide-badge {
            display: inline-block;
            background: var(--vibrant-red);
            color: white;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
        }

        .project-slide-content {
            padding: 25px 30px 30px;
            text-align: left;
            background: #fff;
        }

        .project-slide-content h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--solid-black);
            margin-bottom: 12px;
        }

        .project-slide-details {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .project-slide-location,
        .project-slide-capacity {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: var(--dark-grey);
        }

        .project-slide-location i,
        .project-slide-capacity i {
            color: var(--vibrant-red);
            font-size: 16px;
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--vibrant-red);
            background: white;
            color: var(--vibrant-red);
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            z-index: 5;
        }

        .slider-arrow:hover {
            background: var(--vibrant-red);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 4px 20px rgba(237, 28, 36, 0.3);
        }

        .slider-arrow:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: none;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 25px;
        }

        .slider-dots .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--dark-grey);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .slider-dots .dot.active {
            background: var(--vibrant-red);
            border-color: var(--vibrant-red);
            transform: scale(1.3);
        }

        .slider-dots .dot:hover {
            background: var(--bright-orange);
            transform: scale(1.1);
        }

        .projects-section {
            background-color: #fff;
            padding: 80px 8%;
            overflow: hidden;
        }

        .projects-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
            margin-bottom: 50px;
        }

        .header-left {
            flex: 1;
            min-width: 280px;
        }

        .header-right {
            flex: 1.5;
            min-width: 280px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
        }

        .project-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0f0f0;
            transition: all 0.5s ease;
        }

        .project-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 45px rgba(237, 28, 36, 0.1);
            border-color: #ED1C24;
        }

        .client-full-img {
            width: 100%;
            height: auto;
            display: block;
            transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .project-card:hover .client-full-img {
            transform: scale(1.05);
        }

        .project-details {
            padding: 25px;
            text-align: left;
        }

        .project-details h3 {
            font-size: 1.2rem;
            color: #1a1a1a;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .project-details p {
            color: #666;
            font-size: 14px;
            margin-bottom: 4px;
        }

        .system-size {
            font-weight: 800;
            color: #000;
            margin-top: 10px;
            border-top: 1px solid #eee;
            padding-top: 10px;
        }

        .brands-section {
            padding: 60px 8%;
            background: #fff;
            text-align: center;
        }

        .brands-image-wrapper {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: all 0.5s ease;
        }

        .brands-image-wrapper:hover {
            box-shadow: 0 20px 60px rgba(237, 28, 36, 0.08);
        }

        .brands-full-image {
            width: 100%;
            height: auto;
            display: block;
            transition: 1.2s ease;
        }

        .brands-full-image:hover {
            transform: scale(1.02);
        }

        @media (max-width: 768px) {
            .about-hero-content-wrapper h1 {
                font-size: 2.2rem;
            }
            .about-hero-content-wrapper p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .about-hero-content-wrapper h1 {
                font-size: 1.8rem;
            }
            .about-hero-content-wrapper p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 360px) {
            .about-hero-content-wrapper h1 {
                font-size: 1.5rem;
            }
            .about-hero-content-wrapper p {
                font-size: 0.8rem;
            }
        }

        @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;
            }

            .intro-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr;
            }

            .offices-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            }

            .project-slide-image {
                height: 320px;
            }

            .projects-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            }

            .about-hero-content-wrapper h1 {
                font-size: 2.8rem;
            }
        }

        @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;
            }

            .about-hero {
                min-height: 100vh;
                height: 100vh;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            .brands-section {
                padding: 40px 5%;
            }

            .brands-image-wrapper {
                border-radius: 12px;
            }

            .projects-header {
                flex-direction: column;
                text-align: center;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .prominent-projects-section {
                padding: 50px 5%;
            }

            .projects-slider-wrapper {
                gap: 10px;
            }

            .project-slide-image {
                height: 260px;
            }

            .project-slide-content {
                padding: 18px 20px 22px;
            }

            .project-slide-content h3 {
                font-size: 1.2rem;
            }

            .project-slide-details {
                gap: 15px;
                flex-direction: column;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .slider-dots .dot {
                width: 10px;
                height: 10px;
            }

            .section {
                padding: 50px 5%;
            }

            .title-group h2 {
                font-size: 2rem;
            }

            .intro-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .intro-text h2 {
                font-size: 1.8rem;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr;
            }

            .offices-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 12px;
            }

            .office-card {
                padding: 18px 10px;
            }

            .office-card i {
                font-size: 22px;
            }

            .office-card h4 {
                font-size: 0.85rem;
            }

            .brand-logo {
                width: 130px;
                padding: 12px;
            }

            .brand-logo img {
                height: 35px;
            }

            .mv-card {
                padding: 30px 20px;
            }

            .mv-card h3 {
                font-size: 1.3rem;
            }

            .contact-banner {
                padding: 40px 5%;
            }

            .contact-banner h2 {
                font-size: 1.8rem;
            }

            .contact-banner .btn-cta {
                padding: 12px 30px;
                font-size: 0.95rem;
            }

            .map-container iframe {
                height: 350px;
            }

            .map-address {
                padding: 15px 20px;
            }
        }

        @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;
            }

            .about-hero {
                min-height: 30vh;
                height: 30vh;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            .brands-section {
                padding: 30px 4%;
            }

            .brands-image-wrapper {
                border-radius: 8px;
            }

            .projects-section {
                padding: 40px 4%;
            }

            .project-details h3 {
                font-size: 1.1rem;
            }

            .prominent-projects-section {
                padding: 40px 4%;
            }

            .projects-slider-wrapper {
                gap: 6px;
            }

            .project-slide-image {
                height: 200px;
            }

            .project-slide-content {
                padding: 14px 16px 18px;
            }

            .project-slide-content h3 {
                font-size: 1rem;
            }

            .project-slide-location,
            .project-slide-capacity {
                font-size: 0.8rem;
            }

            .slider-arrow {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }

            .project-slide-badge {
                font-size: 10px;
                padding: 4px 14px;
            }

            .slider-dots {
                gap: 8px;
                margin-top: 15px;
            }

            .slider-dots .dot {
                width: 8px;
                height: 8px;
            }

            .section {
                padding: 40px 4%;
            }

            .title-group h2 {
                font-size: 1.6rem;
            }

            .title-group p {
                font-size: 0.9rem;
            }

            .intro-text h2 {
                font-size: 1.5rem;
            }

            .intro-text p {
                font-size: 0.9rem;
            }

            .offices-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 10px;
            }

            .office-card {
                padding: 15px 8px;
                border-radius: 12px;
            }

            .office-card i {
                font-size: 18px;
                margin-bottom: 6px;
            }

            .office-card h4 {
                font-size: 0.75rem;
            }

            .brand-logo {
                width: 100px;
                padding: 10px;
            }

            .brand-logo img {
                height: 28px;
            }

            .mv-card {
                padding: 25px 15px;
            }

            .mv-card h3 {
                font-size: 1.1rem;
            }

            .mv-card p {
                font-size: 0.85rem;
            }

            .contact-banner h2 {
                font-size: 1.5rem;
            }

            .contact-banner p {
                font-size: 0.9rem;
            }

            .contact-banner .btn-cta {
                padding: 10px 25px;
                font-size: 0.85rem;
            }

            .map-container iframe {
                height: 250px;
            }

            .map-address {
                padding: 12px 15px;
                gap: 10px;
            }

            .map-address i {
                font-size: 16px;
            }

            .map-address p {
                font-size: 0.85rem;
            }

            footer {
                padding: 25px 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;
            }

            .about-hero {
                min-height: 30vh;
                height: 30vh;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            .title-group h2 {
                font-size: 1.3rem;
            }

            .intro-text h2 {
                font-size: 1.2rem;
            }

            .offices-grid {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }

            .office-card {
                padding: 10px 5px;
            }

            .office-card i {
                font-size: 14px;
            }

            .office-card h4 {
                font-size: 0.65rem;
            }

            .mv-card {
                padding: 15px 10px;
            }

            .mv-card h3 {
                font-size: 0.9rem;
            }

            .mv-card p {
                font-size: 0.75rem;
            }

            .contact-banner h2 {
                font-size: 1.2rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .project-details h3 {
                font-size: 0.95rem;
            }

            .project-details p {
                font-size: 0.75rem;
            }
        }

        @media (min-width: 401px) and (max-width: 576px) {
            .offices-grid {
                grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .brand-logo {
                width: 110px;
                padding: 10px;
            }

            .brand-logo img {
                height: 30px;
            }

            footer {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 577px) and (max-width: 768px) {
            .offices-grid {
                grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            }

            .projects-grid {
                grid-template-columns: 1fr 1fr;
            }

            .brand-logo {
                width: 140px;
                padding: 15px;
            }

            .brand-logo img {
                height: 38px;
            }

            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;
            }

            .about-hero-content-wrapper h1 {
                font-size: 14px !important;
            }

            .about-hero-content-wrapper p {
                font-size: 10px !important;
            }

            .title-group h2 {
                font-size: 12px !important;
            }

            .offices-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 5px !important;
            }

            .office-card {
                padding: 8px !important;
            }

            .brand-logo {
                width: 60px !important;
                padding: 5px !important;
            }

            .brand-logo img {
                height: 18px !important;
            }

            .mv-card {
                padding: 15px !important;
            }

            .mv-card h3 {
                font-size: 10px !important;
            }

            .mv-card p {
                font-size: 8px !important;
            }

            .projects-section {
                padding: 15px 2%;
            }

            .project-details h3 {
                font-size: 11px;
            }

            .project-details p {
                font-size: 8px;
            }
        }