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

        :root {
            --neon-orange: #ff3d00;
            --electric-blue: #00d4ff;
            --dark-bg: #0a0e27;
            --card-bg: #141b3d;
            --text-light: #ffffff;
            --text-gray: #b8c1ec;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: clip;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 100%);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .bg-animation {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0.03;
            background-image:
                radial-gradient(circle at 20% 50%, var(--neon-orange) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--electric-blue) 0%, transparent 50%);
            animation: bgFloat 20s ease-in-out infinite;
        }

        @keyframes bgFloat {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        header {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            padding: 14px 64px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--electric-blue);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 30px rgba(255, 61, 0, 0.1);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo img {
            height: 90px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 10px;
        }

        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            padding: 14px 28px;
            display: block;
            transition: all 0.3s ease;
            border-radius: 10px;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            overflow: hidden;
        }

        nav ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 61, 0, 0.2), transparent);
            transition: left 0.5s;
        }

        nav ul li a:hover::before {
            left: 100%;
        }

        nav ul li a:hover {
            background: rgba(255, 61, 0, 0.1);
            transform: translateY(-2px);
        }

        .button-link {
            background: linear-gradient(135deg, var(--neon-orange), #ff6b35) !important;
            font-weight: 800 !important;
            box-shadow: 0 10px 30px rgba(255, 61, 0, 0.3);
            border-radius: 4px !important;
            clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
            padding: 14px 34px !important;
        }

        .button-link:hover {
            box-shadow: 0 15px 40px rgba(255, 61, 0, 0.5);
            transform: scale(1.05) !important;
        }

        .hero {
            padding: 100px 40px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            position: relative;
            overflow: hidden;
            background: #0a0e27;
        }

        .hero-shard-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .shard {
            position: absolute;
            background: linear-gradient(135deg, rgba(26, 36, 86, 0.4), rgba(45, 27, 78, 0.4));
            backdrop-filter: blur(10px);
            clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.5s ease;
        }

        .shard-1 {
            width: 60%;
            height: 120%;
            top: -10%;
            left: -10%;
            transform: rotate(-5deg);
        }

        .shard-2 {
            width: 40%;
            height: 80%;
            bottom: -5%;
            right: -5%;
            background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), transparent);
            clip-path: polygon(0% 15%, 100% 0%, 100% 100%, 15% 100%);
        }

        .neon-line {
            position: absolute;
            background: var(--electric-blue);
            box-shadow: 0 0 20px var(--electric-blue);
            opacity: 0.6;
            z-index: 2;
        }

        .line-1 {
            width: 2px;
            height: 300px;
            top: 10%;
            left: 45%;
            transform: rotate(15deg);
        }

        .line-2 {
            width: 100px;
            height: 2px;
            bottom: 20%;
            left: 10%;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            animation: fadeInUp 1s ease;
            text-align: left;
            padding-left: 5%;
        }

        .hero h1 {
            font-size: 85px;
            margin-bottom: 15px;
            font-weight: 800;
            color: var(--text-light);
            line-height: 0.9;
            letter-spacing: -4px;
            text-transform: uppercase;
            text-shadow: 10px 10px 0px rgba(0, 212, 255, 0.1);
        }

        .hero-subtitle {
            font-size: 24px;
            margin-bottom: 40px;
            font-weight: 400;
            color: var(--electric-blue);
            text-transform: uppercase;
            letter-spacing: 4px;
            border-left: 4px solid var(--neon-orange);
            padding-left: 20px;
        }

        .shard-badges {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .shard-badge {
            background: rgba(20, 27, 61, 0.8);
            padding: 15px 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
        }

        .shard-badge:hover {
            border-color: var(--electric-blue);
            transform: translateY(-5px) skewX(-5deg);
            background: rgba(0, 212, 255, 0.05);
        }

        .shard-badge i {
            font-size: 20px;
            color: var(--electric-blue);
        }

        .shard-info {
            display: flex;
            flex-direction: column;
        }

        .shard-number {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-light);
            line-height: 1;
        }

        .shard-label {
            font-size: 11px;
            color: var(--text-gray);
            text-transform: uppercase;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .phone-cta {
            background: linear-gradient(135deg, var(--neon-orange), #ff6b35);
            color: white;
            padding: 20px 40px;
            border-radius: 4px;
            font-weight: 800;
            font-size: 20px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 15px;
            clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 61, 0, 0.3);
        }

        .phone-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 61, 0, 0.5);
        }

        .phone-cta i {
            font-size: 24px;
            background: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .secondary-btn {
            background: transparent;
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 20px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }

        .secondary-btn:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--text-light);
        }

        .hero .secondary-btn {
            background: transparent;
            color: white;
            border: 2px solid var(--electric-blue);
            box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
        }

        .hero .secondary-btn:hover {
            background: rgba(0, 212, 255, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4);
        }

        .features {
            position: relative;
        }

        .features h2 {
            font-size: 48px;
            text-align: center;
            margin-bottom: 50px;
            font-weight: 800;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: -1px;
            text-shadow: 4px 4px 0px rgba(0, 212, 255, 0.1);
        }



        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: #0f142b;
            padding: 40px;
            border-radius: 0;
            /* Sharp corners */
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-top: 3px solid transparent;
        }



        .feature-icon {
            width: 70px;
            height: 70px;
            background: transparent;
            border: 1px solid var(--electric-blue);
            color: var(--electric-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 32px;
            transition: all 0.3s ease;
        }



        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .feature-card p {
            color: var(--text-gray);
            line-height: 1.8;
            font-size: 16px;
        }

        .reviews {
            background: var(--card-bg);
        }

        .reviews h2 {
            font-size: 48px;
            text-align: center;
            margin-bottom: 50px;
            font-weight: 800;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: -1px;
            text-shadow: 4px 4px 0px rgba(0, 212, 255, 0.1);
        }



        .reviews-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 50px;
        }

        .review-card {
            background: #0f142b;
            padding: 20px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .review-card::after {
            display: none;
        }

        .review-header {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 0;
            position: relative;
        }

        .review-avatar {
            width: 40px;
            height: 40px;
            background: #7b1fa2;
            /* Generic Google Avatar Color */
            border-radius: 50%;
            /* Circle */
            clip-path: none;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 500;
            color: #fff;
            flex-shrink: 0;
        }

        /* Different Colors for avatars for realism */
        .review-card:nth-child(2) .review-avatar {
            background: #d32f2f;
        }

        .review-card:nth-child(3) .review-avatar {
            background: #1976d2;
        }

        .review-info {
            display: flex;
            flex-direction: column;
        }

        .review-info h4 {
            font-size: 16px;
            margin-bottom: 2px;
            font-weight: 600;
            color: #e8eaed;
            /* Google Dark Text */
        }

        .review-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #9aa0a6;
        }

        .review-stars {
            color: #fbbc04;
            /* Google Star Color */
            font-size: 12px;
            letter-spacing: -1px;
        }

        .review-google-icon {
            position: absolute;
            top: 0;
            right: 0;
            width: 20px;
            height: 20px;
        }

        .review-text {
            color: #e8eaed;
            line-height: 1.5;
            margin-bottom: 0;
            font-size: 14px;
        }

        .review-date {
            display: none;
            /* Moved to meta */
        }

        .leave-review-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--neon-orange), #ff6b35);
            color: white;
            padding: 20px 40px;
            border-radius: 4px;
            font-size: 18px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(255, 61, 0, 0.3);
            clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
        }

        .leave-review-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 61, 0, 0.5);
        }

        .services {
            background: rgba(20, 27, 61, 0.5);
        }

        .services h2 {
            font-size: 48px;
            text-align: center;
            margin-bottom: 50px;
            font-weight: 800;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: -1px;
            text-shadow: 4px 4px 0px rgba(0, 212, 255, 0.1);
        }



        .service-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .service-block {
            background: #0f142b;
            padding: 45px 35px;
            border-radius: 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-left: 3px solid var(--electric-blue);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-video-corner {
            position: absolute;
            top: 0;
            right: 0;
            width: 90px;
            height: 90px;
            border: 0;
            background: linear-gradient(135deg, var(--neon-orange), #ff6b35);
            color: #fff;
            clip-path: polygon(100% 0, 0 0, 100% 100%);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease, filter 0.2s ease;
            z-index: 2;
        }

        .service-block .service-video-corner i {
            font-size: 22px;
            color: #ffffff;
            margin: 0;
            transform: translate(89%, -72%);
            text-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
        }

        .service-video-corner:hover {
            transform: scale(1.04);
            filter: brightness(1.08);
        }

        .service-block:hover {
            transform: translateY(-8px);
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
            background: #121836;
        }

        .service-block i {
            font-size: 52px;
            color: var(--electric-blue);
            margin-bottom: 25px;
            display: block;
        }

        .service-block h3 {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .service-block p {
            color: var(--text-gray);
            line-height: 1.8;
            font-size: 15px;
            flex-grow: 1;
        }

        .service-price {
            display: inline-block;
            margin-top: 20px;
            padding: 8px 20px;
            background: transparent;
            border: 1px solid var(--electric-blue);
            border-radius: 0;
            font-weight: 700;
            color: var(--electric-blue);
            font-size: 18px;
            clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
            align-self: flex-start;
        }

        .service-block:hover .service-price {
            background: var(--electric-blue);
            color: #000;
        }

        .why-us,
        .features,
        .reviews,
        .services,
        .contact {
            padding: 60px 40px 100px;
        }

        .why-us h2 {
            font-size: 48px;
            text-align: center;
            margin-bottom: 50px;
            font-weight: 800;
            color: var(--text-light);
            text-transform: uppercase;
            text-shadow: 4px 4px 0px rgba(0, 212, 255, 0.1);
        }



        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .benefit-item {
            text-align: center;
        }

        .benefit-icon {
            width: 90px;
            height: 90px;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-size: 55px;
            color: var(--electric-blue);
            transition: all 0.3s ease;
        }



        .benefit-item h3 {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .benefit-item p {
            color: var(--text-gray);
            font-size: 15px;
        }

        .contact {
            background: var(--card-bg);
        }

        .contact h2 {
            font-size: 48px;
            text-align: center;
            margin-bottom: 60px;
            font-weight: 800;
            color: var(--text-light);
            text-transform: uppercase;
            text-shadow: 4px 4px 0px rgba(0, 212, 255, 0.1);
        }

        .contact-map-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: start;
        }

        .contact-container {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-card {
            background: #0f142b;
            padding: 40px;
            border-radius: 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            position: relative;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 30px rgba(255, 61, 0, 0.2);
            border-color: var(--neon-orange);
            background: #151a35;
        }

        .contact-card i {
            font-size: 40px;
            color: var(--neon-orange);
            margin-bottom: 20px;
            display: block;
        }

        .contact-card h3 {
            margin-bottom: 15px;
            font-size: 22px;
            font-weight: 700;
        }

        .contact-card p {
            color: var(--text-gray);
            font-size: 16px;
            line-height: 1.7;
        }

        .map-container {
            width: 100%;
            height: 100%;
            min-height: 500px;
            border-radius: 0;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        footer {
            background: var(--dark-bg);
            text-align: center;
            padding: 50px 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links {
            margin: 30px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: var(--card-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 22px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--neon-orange), var(--electric-blue));
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 61, 0, 0.4);
        }

        .copyright {
            color: var(--text-gray);
            margin-top: 30px;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--text-light);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

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

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

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

        body.menu-open {
            overflow: hidden;
        }

        @media (max-width: 768px) {

            /* ===== HEADER ===== */
            header {
                flex-direction: row;
                padding: 10px 15px;
                gap: 0;
                justify-content: space-between;
            }

            .logo img {
                height: 50px;
            }

            .hamburger {
                display: flex;
            }

            nav {
                display: none;
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: min(82vw, 320px);
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                padding: 70px 20px 20px;
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
                z-index: 1000;
                overflow-y: auto;
                overscroll-behavior: contain;
                animation: mobileMenuIn 0.2s ease;
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }

            nav ul li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            nav ul li:last-child {
                border-bottom: none;
                margin-top: 15px;
            }

            nav ul li a {
                padding: 14px 16px;
                width: 100%;
                text-align: left;
                border-radius: 0;
                font-size: 14px;
            }

            @keyframes mobileMenuIn {
                from {
                    opacity: 0;
                    transform: translateX(18px);
                }

                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }

            .button-link {
                padding: 10px 20px !important;
                font-size: 14px !important;
            }

            /* ===== HERO SECTION ===== */
            .hero {
                padding: 40px 15px;
                min-height: auto;
                justify-content: center;
            }

            .hero-content {
                padding-left: 0;
                text-align: center;
            }

            .hero h1 {
                font-size: 36px;
                letter-spacing: -1px;
                margin-bottom: 10px;
                text-align: center;
            }

            .hero-subtitle {
                font-size: 13px;
                letter-spacing: 2px;
                margin-bottom: 25px;
                padding-left: 0;
                border-left: none;
                text-align: center;
            }

            /* ===== SHARD BADGES (STATS) ===== */
            .shard-badges {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 8px;
                margin-bottom: 30px;
            }

            .shard-badge {
                padding: 10px 8px;
                gap: 8px;
                clip-path: none;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .shard-badge i {
                font-size: 16px;
            }

            .shard-info {
                align-items: center;
            }

            .shard-number {
                font-size: 16px;
            }

            .shard-label {
                font-size: 9px;
            }

            /* ===== HERO BUTTONS ===== */
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }

            .phone-cta {
                padding: 14px 20px;
                font-size: 16px;
                clip-path: none;
                border-radius: 8px;
                justify-content: center;
            }

            .phone-cta i {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }

            .secondary-btn {
                padding: 12px 20px;
                font-size: 13px;
                letter-spacing: 1px;
                text-align: center;
            }

            /* ===== ALL SECTIONS - GENERAL ===== */
            .why-us,
            .features,
            .reviews,
            .services {
                padding: 40px 15px 50px;
            }

            /* ===== SECTION HEADINGS ===== */
            .services h2,
            .features h2,
            .why-us h2,
            .reviews h2 {
                font-size: 24px;
                margin-bottom: 30px;
                letter-spacing: 0;
            }

            .contact h2 {
                font-size: 24px;
                margin-bottom: 30px;
            }

            /* ===== WHY-US / BENEFITS - 3 columns ===== */
            .benefits-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }

            .benefit-icon {
                width: 45px;
                height: 45px;
                font-size: 28px;
                margin-bottom: 5px;
            }

            .benefit-item h3 {
                font-size: 14px;
                margin-bottom: 4px;
            }

            .benefit-item p {
                font-size: 12px;
                line-height: 1.4;
            }

            /* ===== FEATURE CARDS ===== */
            .features-container {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }

            .feature-card {
                padding: 15px 10px;
                text-align: center;
            }

            .feature-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
                margin: 0 auto 10px;
            }

            .feature-card h3 {
                font-size: 14px;
                margin-bottom: 6px;
            }

            .feature-card p {
                font-size: 12px;
                line-height: 1.4;
            }

            /* ===== REVIEWS ===== */
            .reviews-container {
                grid-template-columns: 1fr;
                gap: 15px;
                margin-bottom: 30px;
            }

            .review-card {
                padding: 15px;
                gap: 12px;
            }

            .review-avatar {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .review-info h4 {
                font-size: 14px;
            }

            .review-text {
                font-size: 13px;
            }

            .leave-review-btn {
                padding: 14px 25px;
                font-size: 14px;
                clip-path: none;
                border-radius: 8px;
            }

            /* ===== SERVICES ===== */
            .service-container {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }

            .service-block {
                padding: 15px 12px;
            }

            .service-block i {
                font-size: 28px;
                margin-bottom: 10px;
            }

            .service-block h3 {
                font-size: 14px;
                margin-bottom: 6px;
            }

            .service-block p {
                font-size: 12px;
                line-height: 1.4;
            }

            .service-price {
                margin-top: 10px;
                padding: 4px 10px;
                font-size: 12px;
            }

            /* ===== CONTACT ===== */
            .contact {
                padding: 40px 15px 50px;
            }

            .contact-map-wrapper {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .map-container {
                min-height: 250px;
                order: 2;
            }

            .contact-container {
                order: 1;
                gap: 12px;
            }

            .contact-card {
                padding: 15px;
            }

            .contact-card i {
                font-size: 24px;
                margin-bottom: 10px;
            }

            .contact-card h3 {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .contact-card p {
                font-size: 11px;
            }

            /* ===== FOOTER ===== */
            footer {
                padding: 35px 20px;
            }

            .social-links {
                margin: 20px 0;
                gap: 15px;
            }

            .social-links a {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }

            .copyright {
                font-size: 13px;
                margin-top: 20px;
            }

            /* ===== MODAL ===== */
            .modal-content {
                width: 95%;
                max-width: 480px;
                clip-path: none;
                border-radius: 12px;
            }

            .modal-header {
                padding: 15px 20px;
            }

            .modal-header h3 {
                font-size: 16px;
            }

            .modal-body {
                padding: 20px;
                max-height: calc(100dvh - 180px);
                overflow-y: auto;
            }

            .price-item {
                padding: 10px 0;
            }

            .service-name {
                font-size: 13px;
            }

            .service-cost {
                font-size: 14px;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Service Modal Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 14, 39, 0.85);
            backdrop-filter: blur(8px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: #0f142b;
            width: 90%;
            max-width: 500px;
            border-radius: 0;
            border: 1px solid var(--electric-blue);
            box-shadow: 0 0 50px rgba(0, 212, 255, 0.2);
            position: relative;
            transform: scale(0.9) translateY(20px);
            transition: all 0.3s ease;
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
            padding: 0;
            max-height: min(88dvh, 760px);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1) translateY(0);
        }

        .modal-header {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }

        .modal-header h3 {
            margin: 0;
            font-size: 20px;
            font-weight: 700;
            color: var(--electric-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .close-modal {
            background: transparent;
            border: none;
            color: var(--text-gray);
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: var(--neon-orange);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 30px;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

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

        .price-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .price-item:last-child {
            border-bottom: none;
        }

        .service-name {
            color: var(--text-light);
            font-size: 15px;
        }

        .service-cost {
            color: var(--electric-blue);
            font-weight: 700;
            font-size: 16px;
        }

        .booking-modal-overlay {
            z-index: 3500;
        }

        .booking-modal-content {
            width: 92%;
            max-width: 720px;
            clip-path: none;
        }

        .booking-form {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px 18px;
        }

        .booking-field {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .booking-field label {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .booking-field-full {
            grid-column: 1 / -1;
        }

        .booking-input {
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(8, 12, 34, 0.95);
            color: var(--text-light);
            padding: 12px 14px;
            font-size: 15px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .booking-input:focus {
            border-color: var(--electric-blue);
            box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.15);
        }

        .booking-input::placeholder {
            color: rgba(184, 193, 236, 0.7);
        }

        textarea.booking-input {
            resize: vertical;
            min-height: 110px;
        }

        .booking-actions {
            grid-column: 1 / -1;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-top: 6px;
        }

        .booking-feedback {
            grid-column: 1 / -1;
            min-height: 22px;
            font-size: 14px;
            margin: 0;
        }

        .booking-feedback.success {
            color: #66bb6a;
        }

        .booking-feedback.error {
            color: #ff8a80;
        }

        /* Make service blocks clickable */
        .service-block {
            cursor: pointer;
        }

        /* Service Actions Container */
        .service-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        /* Video Button */
        .video-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: linear-gradient(135deg, var(--neon-orange), #ff6b35);
            border: none;
            border-radius: 0;
            color: white;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
        }

        .video-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(255, 61, 0, 0.4);
        }

        .video-btn i {
            font-size: 16px;
            margin: 0;
            color: white;
        }

        /* Video Modal Overlay */
        .video-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            z-index: 3000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .video-modal-content {
            background: #0f142b;
            width: 90%;
            max-width: 900px;
            border: 1px solid var(--electric-blue);
            box-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
            position: relative;
            transform: scale(0.9);
            transition: all 0.3s ease;
            max-height: min(88dvh, 860px);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .video-modal-overlay.active .video-modal-content {
            transform: scale(1);
        }

        .video-modal-header {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px 25px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }

        .video-modal-header h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 700;
            color: var(--electric-blue);
            text-transform: uppercase;
        }

        .close-video-modal {
            background: transparent;
            border: none;
            color: var(--text-gray);
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-video-modal:hover {
            color: var(--neon-orange);
            transform: rotate(90deg);
        }

        .video-modal-body {
            padding: 0;
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            flex: 1;
            min-height: 240px;
        }

        .video-modal-body iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-gray);
            text-align: center;
            padding: 20px;
        }

        .video-placeholder i {
            font-size: 60px;
            color: var(--electric-blue);
            margin-bottom: 20px;
        }

        /* Mobile styles for video button */
        @media (max-width: 768px) {
            .modal-overlay,
            .video-modal-overlay,
            .booking-modal-overlay {
                align-items: flex-start;
                padding: calc(12px + env(safe-area-inset-top)) 10px 12px;
                overflow-y: auto;
            }

            .service-actions {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                margin-top: 12px;
            }

            .booking-form {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .booking-modal-content,
            .video-modal-content {
                width: 100%;
                max-width: 100%;
                border-radius: 12px;
                clip-path: none;
            }

            .modal-content {
                max-height: calc(100dvh - 24px - env(safe-area-inset-top));
            }

            .booking-modal-content {
                max-height: calc(100dvh - 24px - env(safe-area-inset-top));
                overflow-y: auto;
            }

            .video-btn {
                padding: 6px 12px;
                font-size: 11px;
            }

            .service-video-corner {
                width: 72px;
                height: 72px;
            }

            .service-block .service-video-corner i {
                font-size: 18px;
                transform: translate(87%, -72%);
            }

            .video-btn i {
                font-size: 12px;
            }

            .video-modal-content {
                width: 100%;
                max-height: calc(100dvh - 24px - env(safe-area-inset-top));
                overflow: hidden;
            }

            .video-modal-body {
                min-height: 200px;
            }

            .video-modal-header {
                padding: 12px 15px;
            }

            .video-modal-header h3 {
                font-size: 14px;
            }
        }

        @media (max-width: 560px) {
            .hero {
                padding: 26px 12px 34px;
            }

            .shard-badges,
            .benefits-grid,
            .features-container {
                grid-template-columns: 1fr;
            }

            .service-container {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .why-us,
            .features,
            .reviews,
            .services,
            .contact {
                padding: 34px 12px 42px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .service-block {
                padding: 18px 14px;
            }

            .modal-header h3 {
                font-size: 15px;
                letter-spacing: 0.2px;
            }

            .modal-body {
                padding: 14px;
            }

            .price-item {
                gap: 12px;
            }

            .service-name,
            .service-cost {
                font-size: 13px;
            }

            .booking-input {
                padding: 11px 12px;
                font-size: 14px;
            }
        }
