        :root {
            --primary: #0079d3;
            --primary-light: #4da3e0;
            --primary-dark: #005ba1;
            --primary-darker: #003d6b;
            --accent-green: #28a745;
            --accent-red: #dc3545;
            --accent-yellow: #ffc107;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --medium-gray: #6c757d;
            --dark-gray: #171a1d;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

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

        body {
            font-family: "Noto Serif", -apple-system, BlinkMacSystemFont, serif;
            line-height: 1.3;
            color: var(--dark-gray);
            overflow-x: hidden;
            letter-spacing: -1px;
            background: #fffefb;
        }

        .lekton-regular {
            font-family: "Lekton";
            font-weight: 400;

        }

        .lekton-bold {
            font-family: "Lekton";
            font-weight: 700;
        }

        .lekton-regular-italic {
            font-family: "Lekton";
            font-weight: 400;
            font-style: italic;
        }


        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: #fffcf39a;
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }


        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .logo:hover {
            color: var(--primary-dark);
        }

        .nav-logo {
            width: 170px;
            margin-bottom: -22px;
            margin-top: -14px;
            opacity: 0.9;
        }

        .nav-logo img {
            width: 100%;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-gray);
            font-size: 1.5rem;
            font-weight: 700;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero,
        .hero-sub {
            height: 50vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-top: 3rem;
        }

        .hero-sub {
            height: 30vh;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            backdrop-filter: blur(2px);
            background: #ffffffae;
            z-index: 0;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 1;
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            color: var(--dark-gray);
            max-width: 800px;
            padding: 0 2rem;
            z-index: 1;
        }

        .subpage {
            margin-top: 2.5vh;
        }

        .hero-logo {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            font-weight: bold;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .hero-logo img {
            opacity: 0.8;
            max-width: 60%;
            max-height: 100%;
        }

        .hero-stars {
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .snippet {
            text-align: center;
        }

        .snippet p {
            text-align: left;
        }

        .hero-stars img {
            opacity: 0.8;
            margin: 0 0.5rem;
            height: 3rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
            letter-spacing: -3px;
        }

        .hero-subtitle {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.7s forwards;
            font-weight: 500;
            font-variant: italic;
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--medium-gray);
            opacity: 0;
            animation: fadeInUp 1s ease 0.9s forwards;
        }

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

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

        /* Sections */
        .section {
            padding: 0;
            /* min-height: calc(100vh - 80px); */
            display: flex;
            align-items: center;
            /* background: url('assets/bg.jpg'); */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            width: 100%;
        }

        .container.ptop0 {
            padding-top: 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin: 2rem 0 2rem 0;
        }

        .section-title.tight {
            margin-bottom: 0;
        }

        #reviews {
            margin-top: -6vh;
            padding-top: 0;
            background: none;
        }

        #reviews.sub-reviews {
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .contactUs h2 {
            margin-bottom: 0;
        }

        .contactUs .container {
            padding-top: 0;
            padding-bottom: 0;
        }

        /* Reviews Section */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 3fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .review-card {
            background: var(--white);
            padding: 2rem 2rem 0.5rem 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-top: -3rem;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
        }

        .review-info {
            margin-top: 1.5rem;
        }

        .review-info h4 {
            color: var(--dark-gray);
            margin-bottom: 0.25rem;
        }

        .review-info h4 a {
            text-decoration: none;
            color: var(--primary);
        }

        .review-date {
            color: var(--medium-gray);
            font-size: 0.9rem;
        }

        .stars {
            color: var(--accent-yellow);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .review-text {
            color: var(--dark-gray);
            line-height: 1.2;
            margin-top: 1rem;
            letter-spacing: -0.5px;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 10rem;
            margin-bottom: -150px;
        }

        .sub-services-grid {
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        }

        .service-card {
            background: var(--white);
            border-radius: 12px;
            /* overflow: hidden; */
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 150px;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .service-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            border-radius: 12px;

        }

        .service-image img {
            width: 100%;
            /* filter: grayscale(1); */
            cursor: pointer;
            /* filter: drop-shadow(0px 0px 5px var(--primary-light)); */
        }

        .sub-services-grid .service-image img {
            max-width: 70%;
            filter: grayscale(0);
        }

        .service-card:hover .service-image img {
            filter: brightness(1.1);
        }

        .service-content {
            padding: 9rem 1rem 1.5rem 1rem;

            text-align: center;
        }

        .service-content h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .service-content p {
            color: var(--medium-gray);
            margin-bottom: 1.5rem;
        }

        #aboutUs h3 {
            margin: 1rem 0;
        }

        #aboutUs p {
            margin-bottom: 1rem;
        }

        #aboutUs img {
            max-width: 100%;
        }

        ul {
            list-style-position: inside;
        }

        li {
            margin-bottom: 0.5rem;
        }

        .cta-button {
            background: var(--primary);
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-family: sans-serif;
            letter-spacing: 0;
        }

        .cta-button:hover {
            filter: brightness(1.1);
        }

        /* Photos Section */
        .photos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .sub-photos .photos-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .photo-item {
            aspect-ratio: 1;
            background: var(--light-gray);
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--medium-gray);
            font-size: 2rem;
        }

        .photo-item:hover {
            transform: scale(1.05);
        }

        /* Photo Overlay */
        .photo-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .photo-overlay.active {
            display: flex;
        }

        .photo-overlay-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .photo-overlay img {
            object-fit: contain;
            max-width: 90vw;
            max-height: 90vh;
            border-radius: 1rem;
        }

        .photo-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.3);
            border: none;
            color: white;
            font-size: 2rem;
            width: 4rem;
            height: 4rem;
            padding: 1rem;
            cursor: pointer;
            border-radius: 1rem;
            transition: background 0.3s ease;
        }

        .photo-nav:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .photo-prev {
            left: -60px;
        }

        .photo-next {
            right: -60px;
        }

        .photo-close {
            position: absolute;
            top: -60px;
            right: -60px;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            color: white;
            font-size: 2rem;
            width: 4rem;
            height: 4rem;
            padding: 1rem;
            cursor: pointer;
            border-radius: 1rem;
            transition: background 0.3s ease;
        }

        .photo-close:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            margin-bottom: 1rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            overflow: hidden;
            font-size: 1.5rem;
        }

        .faq-question {
            background: var(--primary);
            color: white;
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }

        .faq-question:hover {
            background: var(--primary-dark);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 1.5rem;
        }

        .faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark-gray);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--light-gray);
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Footer */
        .footer {
            background: var(--dark-gray);
            color: var(--light-gray);
            padding: 3rem 0 2rem;
        }

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

        .footer-section h3 {
            color: var(--primary-light);
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: var(--light-gray);
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
        }

        .footer-section a:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--medium-gray);
            color: var(--medium-gray);
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .container {
                padding: 0 0.5rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 1rem;
                box-shadow: var(--shadow);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 1.8rem;
                margin: 1rem 0 1.3rem 0;
            }

            .reviews-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }

            .photos-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .photo-nav {
                display: none;
            }

            .photo-close {
                top: 20px;
                right: 20px;
            }

            .service-image img {
                max-width: 70vw;
            }

            .service-content {
                padding-top: 6rem;
            }

            .service-card {
                margin-bottom: 80px;
            }

            .services-grid {
                margin-bottom: -80px;
                margin-top: 6rem;
            }

            .sub-services-grid {
                margin-top: 5rem;
            }

            .sub-services-grid .service-content {
                padding-top: 4rem;
            }

            section {
                padding-bottom: 1rem;
            }

            .hero-sub {
                height: 30vh;
            }

            #hero {
                zoom: 0.7;
                margin-top: 10.5vh;
                height: 40vh;
            }

            #reviews {
                margin-top: -3.5vh;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Hardware acceleration */
        .hero-video,
        .review-card,
        .service-card,
        .photo-item {
            transform: translateZ(0);
            will-change: transform;
        }


        /* OVERRRIDES */
        /* Reviews Section: horizontal scrolling, full-width cards */

        /* Avatar full size and circle crop */
        .review-avatar {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
            margin-right: 1rem;
        }

        /* Bigger stars */
        .stars {
            color: var(--accent-yellow);
            font-size: 2rem;
            margin: 0;
            text-align: right;
        }

        /* Read more link */
        .read-more {
            color: var(--primary);
            cursor: pointer;
            font-weight: 600;
            margin-left: 0.25rem;
        }