:root {
    --bg: #000000;
    --fg: #ffffff;
    --fg-muted: #808080;
    --accent: #ffffff;
    --font-heading: 'Archivo', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-smooth: cubic-bezier(0.19, 1, 0.22, 1);
    --header-height: 100px;
    --side-padding: 4vw;
}

/* Cinematic Page Transition */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 1000000;
    pointer-events: none;
    transition: opacity 0.2s var(--ease-smooth);
}

.page-transition.loaded {
    opacity: 0;
}

.page-transition.fade-out {
    opacity: 1;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Noise Overlay - Refined premium texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.12;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

/* Artistic Background Elements */
.artistic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    transition: transform 0.5s var(--ease-smooth);
}

.blob-1 { top: -20vh; left: -20vw; animation: drift 30s infinite alternate; }
.blob-2 { bottom: -20vh; right: -20vw; animation: drift 25s infinite alternate-reverse; }

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, 5vh) scale(1.1); }
}

.accent-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
}

.line-v { width: 1px; height: 100vh; }
.line-h { height: 1px; width: 100vw; }

.line-left { left: 4vw; }
.line-right { right: 4vw; }
.line-top { top: 100px; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 0px; 
}

/* Typography Hub */
h1, h2, h3, .logo {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 10rem);
    text-align: center;
}

/* Redesigned Cursor Removed for better performance */

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 40px;
    transition: background 0.3s var(--ease-smooth), padding 0.3s var(--ease-smooth);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 6vw; /* Moving nav links further from the right edge */
}

.logo {
    margin-left: 4vw;
}

.logo-link {
    color: var(--fg);
    text-decoration: none;
}

.logo-link:visited,
.logo-link:hover,
.logo-link:active {
    color: var(--fg);
    text-decoration: none;
}

.logo sup {
    font-size: 0.5em;
    top: -0.5em;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--fg);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.3s var(--ease-smooth);
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    margin-right: 2vw;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--fg);
    transition: transform 0.3s var(--ease-smooth), opacity 0.3s var(--ease-smooth);
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 20px 0;
    overflow: hidden;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--fg);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    transition: transform 0.5s var(--ease-smooth), opacity 0.3s var(--ease-smooth);
    transform: translateY(100%);
}

.mobile-nav-overlay.active .mobile-nav-link {
    transform: translateY(0);
}

/* Sequential delay for links */
.mobile-nav-links li:nth-child(1) .mobile-nav-link { transition-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) .mobile-nav-link { transition-delay: 0.15s; }
.mobile-nav-links li:nth-child(3) .mobile-nav-link { transition-delay: 0.2s; }
.mobile-nav-links li:nth-child(4) .mobile-nav-link { transition-delay: 0.25s; }
.mobile-nav-links li:nth-child(5) .mobile-nav-link { transition-delay: 0.3s; }

.mobile-nav-link:hover {
    opacity: 0.5;
}

/* Work Item Labels */
.work-category-label {
    font-size: 0.7rem;
    opacity: 0.5;
    margin-right: 10px;
    letter-spacing: 0.2em;
}

/* Sections */
section {
    padding: 10vh 0;
    position: relative;
}

/* Welcome Hero */
.welcome-hero {
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    pointer-events: none;
    transition: filter 1.2s var(--ease-smooth);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, rgba(0,0,0,0.4));
    z-index: 1;
    transition: opacity 1.2s var(--ease-smooth);
}

/* Smooth gradient blend into the background at the bottom */
.hero-video-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent, var(--bg));
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    z-index: 10;
    width: 100%;
    position: relative;
}

.hero-actions {
    margin-top: 3rem;
    text-align: center;
}

/* Buttons */
.btn-pill {
    display: inline-block;
    padding: 20px 40px;
    border: 1px solid var(--fg);
    border-radius: 100px;
    color: var(--fg);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: background 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth);
}

.btn-pill:hover {
    background: var(--fg);
    color: var(--bg);
}

.btn-chat {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid var(--fg);
    border-radius: 100px;
    color: var(--fg);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s var(--ease-smooth);
}

.btn-chat:hover {
    background: var(--fg);
    color: var(--bg);
    transform: scale(1.05);
}

/* Services Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4vw;
    align-items: start;
}

.services-intro .section-title {
    font-size: clamp(3rem, 10vw, 8rem);
    margin-left: 10vw;
    line-height: 0.9;
}

.services-intro .btn-pill {
    margin-top: 3rem;
    margin-left: 10vw;
}

/* Accordion */
.services-accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    margin-left: -2vw;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: padding 0.3s var(--ease-smooth);
}

.accordion-header h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.accordion-header .icon {
    font-size: 2rem;
    transition: transform 0.5s var(--ease-smooth);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-smooth), padding 0.5s var(--ease-smooth);
}

.accordion-content p {
    padding-bottom: 30px;
    color: var(--fg-muted);
    font-size: 1.1rem;
    max-width: 500px;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: 300px; /* Large enough to fit content */
}

/* CTA Section */
.cta-section {
    padding: 15vh 0;
}

.cta-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    padding: 100px 40px;
    text-align: center;
}

.cta-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-bottom: 2rem;
    line-height: 0.9;
}

.contact-details {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    color: var(--fg-muted);
}

.contact-details p {
    margin-bottom: 0.5rem;
}

/* Work Page Styles */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
    margin-bottom: 20vh;
}

.category-section {
    margin-bottom: 12vh;
}

.category-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
}

/* Choice Selection UI */
.choice-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
    height: 65vh;
    margin-top: 5vh;
    margin-bottom: 15vh;
}

.choice-item {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.8s var(--ease-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.choice-item .work-img, .choice-item .choice-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 0;
    border-radius: 0;
    filter: brightness(0.9);
    transition: all 1.2s var(--ease-smooth);
    z-index: 1;
}

.choice-item:hover {
    transform: scale(0.98);
    border-color: rgba(255, 255, 255, 0.4);
}

.choice-item:hover .choice-video {
    filter: brightness(1);
    transform: scale(1.05);
}

.choice-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.choice-label h2 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    color: #ffffff;
    text-shadow: 0 10px 40px rgba(0,0,0,0.8);
    letter-spacing: 0.05em;
    transition: transform 0.8s var(--ease-smooth);
}

.choice-item:hover .choice-label h2 {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .choice-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    .choice-item {
        height: 50vh;
    }
}

.work-item {
    cursor: pointer;
}

.work-img {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 1.2s var(--ease-smooth);
    filter: brightness(0.9);
}

.work-item:hover .work-img {
    transform: scale(0.98);
    filter: brightness(1);
}

.work-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.5s var(--ease-smooth);
    border-radius: 20px;
}

.work-item:hover .work-img-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.work-img-overlay h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #ffffff;
    text-align: center;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    pointer-events: none;
}

.work-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.work-info p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* New Video Grid Styles */
.website-videos {
    padding-bottom: 15vh;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
}

.social-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5vw;
    margin-bottom: 5vh;
}

.video-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5vw;
    margin-bottom: 5vh;
}

.full-video-row {
    margin-bottom: 10vh;
}

.video-card {
    position: relative;
    margin-bottom: 2vh;
}


@media (max-width: 1024px) {
    .social-video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .social-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0a;
}

/* Skeleton Loading Shimmer */
.video-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    min-height: 150px; /* Ensure space for vertical videos too */
}

.video-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    animation: shimmer 2.5s infinite linear;
    z-index: 1;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

.is-playing .video-wrapper::before {
    display: none;
}
.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s var(--ease-smooth);
}

.social-video-wrapper, .aspect-9-16 {
    aspect-ratio: 9 / 16;
}

.video-card:hover .video-wrapper {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

.video-wrapper video, .video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: all 0.8s var(--ease-smooth);
}

.video-card:hover .video-wrapper video,
.video-card:hover .video-wrapper img {
    filter: brightness(1);
    transform: scale(1.05);
}

/* Play Hint Overlay Removed */


/* Service Detail Styles */
.service-box {
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.5s var(--ease-smooth);
}

.service-box:hover {
    background: rgba(255, 255, 255, 0.05);
}

.service-box .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

/* About Page Polishing */
.about-hero {
    height: 60vh;
    display: flex;
    align-items: center;
}

.about-content .grid-2 {
    gap: 6vw;
}

.about-text {
    padding-left: 3vw;
    padding-right: 2vw;
}

.about-text .section-title {
    font-size: clamp(2rem, 6vw, 5rem);
    margin-bottom: 2rem;
    line-height: 0.9;
}

.about-img {
    filter: none;
    transition: filter 0.8s var(--ease-smooth);
    margin-left: -2vw;
}

.about-img:hover {
    filter: none;
}

/* Tagline Section */
.tagline-section {
    padding: 20vh 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tagline-text {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-weight: 900;
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--fg);
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.4;
    transition: opacity 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

/* About Content Refinement */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4vw;
}

.about-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10vh;
    margin-top: 10vh;
    text-align: center;
}

.about-stats .grid-3 {
    justify-items: center;
}

.about-stats h3 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.values-list h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

/* Contact Form Styles */
.contact-form-container .section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 2.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 22px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--fg);
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.05em;
    border-radius: 14px;
    transition: border-color 0.3s var(--ease-smooth), background 0.3s var(--ease-smooth);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.6);
    background: rgba(255, 255, 255, 0.07);
}

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

.contact-form .btn-submit {
    display: inline-block;
    padding: 22px 60px;
    background: var(--fg);
    color: var(--bg);
    border: none;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
    align-self: flex-start;
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
}

.contact-form .btn-submit:hover {
    background: #d63a3a;
    color: #fff;
    transform: scale(1.04);
    box-shadow: 0 8px 40px rgba(214, 58, 58, 0.35);
}

/* Enhanced Reveal Animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1.2s var(--ease-smooth), transform 1.2s var(--ease-smooth);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1.2s var(--ease-smooth), transform 1.2s var(--ease-smooth);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1.2s var(--ease-smooth), transform 1.2s var(--ease-smooth);
}

.reveal-left.active, .reveal-right.active, .reveal-scale.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}


/* Responsive Fixes */
/* Mobile Only (< 768px) */
@media (max-width: 767px) {
    /* Hide custom cursor on mobile */
    #cursor {
        display: none !important;
    }
    
    * {
        cursor: auto !important;
    }

    header {
        padding-top: 15px; /* Shorter header on mobile */
    }

    .header-inner {
        flex-direction: row; /* Keep logo and hamburger on same line */
        gap: 0;
        padding: 0 4vw;
    }

    .logo {
        margin-left: 0;
        font-size: 1.1rem;
        letter-spacing: 0.05em;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    header.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    header.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    header.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 4.5rem);
        line-height: 1;
        padding: 0 4vw;
    }

    .welcome-hero {
        height: 75vh;
        padding: 0;
    }

    .section-desc {
        font-size: 0.95rem;
        padding: 0 4vw;
    }

    section {
        padding: 10vh 0; /* Keep decent breathing room */
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 6vh; /* Vertical gap between stacked items */
        padding: 0 4vw;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 4vh;
        padding: 0 4vw;
    }

    .work-img {
        height: 45vh;
    }

    .about-text {
        padding-left: 0;
        padding-right: 0;
        text-align: left; /* Keep left aligned for premium feel */
    }

    .about-hero {
        height: 40vh;
    }

    .about-stats {
        padding-top: 40px;
        margin-top: 40px;
        text-align: left;
    }
    
    .about-stats .grid-3 {
        justify-items: start;
        text-align: left;
    }

    .footer-inner {
        flex-direction: column-reverse; /* Copyright at bottom */
        gap: 40px;
        text-align: center;
        padding: 40px 4vw;
    }

    .social-links {
        justify-content: center;
        gap: 30px;
    }

    .cta-box {
        padding: 80px 5vw;
        border-radius: 30px;
        margin: 0 4vw;
    }

    .cta-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    /* Work category styling for mobile */
    .work-info h3 {
        font-size: 1.3rem;
    }

    /* Mobile Nav Overlay Links sizing */
    .mobile-nav-link {
        font-size: 2.5rem;
    }

    /* FPV Section Fix for mobile */
    #fpv-highlight .grid-2 {
        padding: 0 4vw !important;
        gap: 6vh !important;
    }

    #fpv-highlight .section-title {
        font-size: 3rem !important;
    }
}

/* Tablet (iPad) - Preserving original as requested */
@media (min-width: 768px) and (max-width: 968px) {
    /* Keep current styles as they were */
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 20px;
        padding-right: 4vw;
    }
    
    .logo {
        margin-left: 0;
    }

    .about-stats {
        text-align: center;
    }

    .about-text {
        padding-left: 0;
    }

    .about-img {
        margin-left: 0;
    }

    .about-hero, .welcome-hero {
        height: auto;
        padding: 150px 0 100px;
    }
}

/* Under Construction Popup */
.construction-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    z-index: 2000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s var(--ease-smooth);
}

.construction-popup.active {
    opacity: 1;
    visibility: visible;
}

.construction-content {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 60px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.construction-popup.active .construction-content {
    transform: scale(1) translateY(0);
}

.construction-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    color: var(--fg);
}

.construction-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--fg-muted);
    margin-bottom: 35px;
}

.btn-popup {
    display: inline-block;
    padding: 18px 45px;
    border: 1px solid var(--fg);
    border-radius: 100px;
    color: var(--fg);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.btn-popup:hover {
    background: var(--fg);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Restore default cursor when popup is active */
body.popup-active, 
body.popup-active * {
    cursor: auto !important;
}

body.popup-active #cursor {
    display: none !important;
}
