@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --yellow: #FFB81F;
            --black: #000000;
            --grey: #1A1A1A;
            --light-grey: #2D2D2D;
            --text-white: #ffffff;
        }
        
        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--black);
            color: #fff;
            line-height: 1.5;
            padding-top: 73px; /* Push all content down from fixed navbar */
        }
        
        nav {
            position: fixed;
            width: 100%;
            padding: 1.5rem 4%;
            background: var(--yellow);
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--black);
        }
        
        nav .container {
            max-width: 1800px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
            width: auto;
            display: flex;
            align-items: center;
        }

        .nav-toggle, .nav-toggle-label {
            display: none;
        }
        
        .nav-right {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            color: var(--yellow);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .social-links svg {
            width: 24px;
            height: 24px;
            fill: var(--black);
        }
        
        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--black);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
        
        .hero {
            height: 100vh;
            position: relative;
            display: grid;
            place-items: center;
            padding: 0 4%;
            background-image: url('./assets/background.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            max-width: 100%;
            margin: 0; /* Override section's margin */
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }
        
        .hero-content {
            max-width: 1200px;
            position: relative;
            text-align: center;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 6rem;
            font-weight: 700;
            line-height: 0.9;
            margin-bottom: 2rem;
            letter-spacing: -3px;
        }
        
        .hero h1 .yellow {
            color: var(--yellow);
        }
        
        .hero p {
            font-size: 1.2rem;
            color: var(--text-white);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 3rem;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--yellow);
            color: var(--black);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%);
        }

        /* --- About Section --- */

        .about-layout {
            display: grid;
            grid-template-columns: 1.5fr 1fr; /* Makes carousel larger than the text block */
            gap: 4rem;
            align-items: center;
        }

        .about-carousel {
            position: relative;
            overflow: hidden;
            border: 1px solid var(--light-grey);
        }

        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            min-width: 100%;
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 4/3;
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: var(--yellow);
            border: none;
            font-size: 2rem;
            padding: 0.5rem;
            cursor: pointer;
            z-index: 10;
            line-height: 1;
            transition: background-color 0.3s ease;
        }

        .carousel-button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .carousel-button.prev { left: 10px; }
        .carousel-button.next { right: 10px; }

        .about-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--yellow);
            font-weight: 600;
            letter-spacing: -1px;
        }

        .about-content p {
            font-size: 1.5rem;
        }
        
        section {
            padding: 5rem 4%;
            max-width: 1600px;
            margin: 0 auto;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 4rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--yellow);
        }
        
        .section-header h2 {
            font-size: 3.5rem;
            font-weight: 700;
            letter-spacing: -2px;
        }
        
        .section-header .number {
            font-size: 5rem;
            font-weight: 700;
            color: var(--light-grey);
            line-height: 1;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--yellow);
        }
        
        .service-item {
            background: var(--grey);
            padding: 1rem;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            position: relative;
            background-size: cover;
            background-position: center;
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .service-item > * {
            position: relative;
            z-index: 2;
        }

        
        .service-item h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 600;
            letter-spacing: -1px;
            color: var(--yellow)
        }
        
        .service-item p {
            color: var(--text-white);
            font-size: 1rem;
            margin-top: auto;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }
        
        .project-item {
            position: relative;
        }
        
        .project-visual {
            width: 100%;
            aspect-ratio: 4 / 3;
            background: var(--grey);
            margin-bottom: 1.5rem;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        /* Hide video by default (mobile-first) */
        .project-video-desktop {
            display: none;
        }

        /* Style for the mobile image fallback */
        .project-image-mobile {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .project-visual iframe.project-video-desktop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        .project-item h3 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
            letter-spacing: -1px;
        }
        
        .project-meta {
            color: var(--text-white);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .project-item p {
            color: var(--text-white);
            line-height: 1.6;
        }
        
        .reviews-section {
            padding: 8rem 4%;
            background: var(--grey);
        }
        
        .reviews-content {
            max-width: 1600px;
            margin: 0 auto;
            text-align: center;
        }
        
        .reviews-content h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            font-weight: 600;
            letter-spacing: -1px;
        }
        
        .reviews-content p {
            font-size: 1.2rem;
            color: var(--text-white);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .review-link {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--black);
            color: var(--yellow);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 1px;
            border: 2px solid var(--yellow);
            clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
        }

        .testimonial-quotes {
            margin-top: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            text-align: left;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            align-items: start; /* Prevents grid items from stretching to equal height */
        }

        .testimonial-quote {
            background: var(--black);
            padding: 2rem;
            border-left: 4px solid var(--yellow);
        }

        .testimonial-quote p {
            margin-bottom: 1.5rem; /* Creates space between review and author */
        }

        .testimonial-quote .review-author {
            font-weight: 600;
            color: var(--yellow);
        }

        .review-link {
            clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
        }
        
        footer {
            background: var(--black);
            padding: 6rem 4%;
            border-top: 1px solid var(--light-grey);
        }
        
        .footer-grid {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
        }
        
        .footer-section h3 {
            color: var(--yellow);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .footer-section p,
        .footer-section a {
            color: var(--text-white);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
        }
        
        .footer-bottom {
            max-width: 1600px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid var(--light-grey);
            display: flex;
            justify-content: space-between;
            color: var(--text-white);
            font-size: 0.9rem;
        }
        
        .contact-section {
            padding: 8rem 4%;
            max-width: 1600px;
            margin: 0 auto;
        }
        
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }
        
        .contact-form {
            background: var(--grey);
            padding: 3rem;
            border: 1px solid var(--light-grey);
            display: flex;
            flex-direction: column;
            height: 100%; /* Make form container fill the column height */
        }
        
        .contact-form h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            font-weight: 600;
            letter-spacing: -1px;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            color: var(--yellow);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: var(--black);
            border: 1px solid var(--light-grey);
            color: #fff;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--yellow);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        .submit-button {
            width: 100%;
            padding: 1.2rem;
            background: var(--yellow);
            color: var(--black);
            border: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            cursor: pointer;
            font-family: 'Space Grotesk', sans-serif;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%);
        }
        
        .submit-button:hover {
            background: #FFC700;
        }
        
        .form-message {
            margin-top: 1rem;
            padding: 1rem;
            text-align: center;
            display: none;
        }
        
        .form-message.success {
            background: rgba(0, 255, 0, 0.1);
            border: 1px solid rgba(0, 255, 0, 0.3);
            color: #00ff00;
        }
        
        .form-message.error {
            background: rgba(255, 0, 0, 0.1);
            border: 1px solid rgba(255, 0, 0, 0.3);
            color: #ff0000;
        }
        
        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            font-weight: 600;
            letter-spacing: -1px;
        }
        
        .info-block {
            margin-bottom: 2.5rem;
        }
        
        .info-block h4 {
            color: var(--yellow);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.8rem;
        }
        
        .info-block p {
            color: var(--text-white);
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .map-container {
            width: 100%;
            height: 500px;
            background: var(--grey);
            border: 2px solid var(--yellow);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 4rem;
            }
            
            .services-grid {
                /* Keep 2 columns for tablets */
                grid-template-columns: repeat(2, 1fr); 
            }
            
            .projects-grid {
                /* Change to 2 columns for tablets */
                grid-template-columns: repeat(2, 1fr); 
            }
            
            .projects-grid {
                /* Remove gap on tablets and mobile to make images bigger */
                gap: 0;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                gap: 1.5rem;
                font-size: 0.85rem;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .section-header h2, .contact-form h3, .contact-info h3 {
                font-size: 2.8rem;
            }
            
            .services-grid {
                /* Change to a fixed 2-column grid on mobile */
                grid-template-columns: repeat(2, 1fr);
            }

            .service-item {
                padding: 1rem; /* Further reduce padding */
            }

            .service-item h3 {
                font-size: 1.2rem; /* Reduce font size on mobile */
                margin-bottom: 0.5rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .about-layout {
                display: flex;
                flex-direction: column-reverse;
                gap: 3rem;
            }
            .about-content h3 {
                font-size: 2rem;
            }
            .testimonial-quotes {
                grid-template-columns: 1fr;
            }
            .testimonial-quote:nth-child(n+2) {
                display: none; /* Show only the first review on mobile */
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-layout {
                grid-template-columns: 1fr;
            }
            
            .map-container {
                height: 400px;
            }

            /* --- Mobile Navigation --- */
            .nav-toggle-label {
                display: block;
                position: relative;
                width: 30px;
                height: 25px;
                cursor: pointer;
                z-index: 1002; /* Above nav-right */
            }

            .nav-toggle-label span,
            .nav-toggle-label span::before,
            .nav-toggle-label span::after {
                display: block;
                background: var(--black);
                height: 3px;
                width: 100%;
                border-radius: 2px;
                position: absolute;
                transition: all 0.3s ease-in-out;
            }

            .nav-toggle-label span::before,
            .nav-toggle-label span::after {
                content: '';
            }

            .nav-toggle-label span { top: 11px; }
            .nav-toggle-label span::before { top: -9px; }
            .nav-toggle-label span::after { top: 9px; }

            .nav-toggle { display: none; }

            .nav-right {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--yellow);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 3rem;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
                z-index: 1001;
            }

            .nav-links { flex-direction: column; text-align: center; }
            .nav-links a { font-size: 2rem; }

            .nav-toggle:checked ~ .nav-right { transform: translateX(0); }
            .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
            .nav-toggle:checked ~ .nav-toggle-label span::before { transform: rotate(45deg); top: 0; }
            .nav-toggle:checked ~ .nav-toggle-label span::after { transform: rotate(-45deg); top: 0; }
        }

        @media (min-width: 769px) {
            /* Show video and hide image on desktop */
            .project-video-desktop { display: block; }
            .project-image-mobile { display: none; }

        }

        .project-visual {
            border: 1px solid var(--light-grey);
        }

/* --- Individual Card Backgrounds --- */

/* Services */
.services-grid .service-item:nth-child(1) { background-image: url('./assets/service-1.jpg'); }
.services-grid .service-item:nth-child(2) { background-image: url('./assets/service-2.jpg'); }
.services-grid .service-item:nth-child(3) { background-image: url('./assets/service-3.jpg'); }
.services-grid .service-item:nth-child(4) { background-image: url('./assets/service-4.jpg'); }
.services-grid .service-item:nth-child(5) { background-image: url('./assets/service-5.jpg'); }
.services-grid .service-item:nth-child(6) { background-image: url('./assets/service-6.jpg'); }

/* Projects */
.projects-grid .project-item:nth-of-type(1) .project-visual { background-image: url('./assets/project-1.jpg'); }
.projects-grid .project-item:nth-of-type(2) .project-visual { background-image: url('./assets/project-2.jpg'); }
.projects-grid .project-item:nth-of-type(3) .project-visual { background-image: url('./assets/project-3.jpg'); }
.projects-grid .project-item:nth-of-type(4) .project-visual { background-image: url('./assets/project-4.jpg'); }