/* Base Styles & Custom Properties */
:root {
    --bg-color: #030303;
    --text-color: #f7f7f7;
    --accent-color: #ff3300;
    /* Deeper, richer Orange */
    --accent-glow: rgba(255, 51, 0, 0.5);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --glass-bg: rgba(20, 20, 20, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
    cursor: auto;
    /* Restored default cursor for usability */
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.highlight {
    color: var(--accent-color);
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Services Background Effects */
.services-section {
    position: relative;
    overflow: hidden;
}

.bg-gradient-sphere {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 74, 0, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    z-index: 0;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {

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

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

/* Custom Cursor Elements */
.cursor-followers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

.follower {
    position: absolute;
    font-size: 1.5rem;
    will-change: transform;
    opacity: 0.8;
    filter: drop-shadow(0px 4px 12px rgba(255, 74, 0, 0.4));
    pointer-events: none;
}

/* Global 3D Highlighter Spotlight */
#globalHighlighter {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 51, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.5s ease;
    will-change: transform;
}

/* Background Parallax Text */
.bg-text {
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18vw;
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-color);
}

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

/* Hamburger Menu Button */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    cursor: pointer;
    padding: 4px 0;
    z-index: 200;
}

.menu-btn .bar {
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animate to X when open */
.menu-btn.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.theme-toggle {
    cursor: pointer;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    user-select: none;
}

.theme-toggle:hover {
    transform: scale(1.2) rotate(15deg);
}



/* Light Mode Theme */
body.light-mode {
    background: #f5f5f7;
    color: #1a1a1a;
}

body.light-mode .highlight {
    color: var(--accent-color);
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

body.light-mode .logo {
    color: #1a1a1a;
}

body.light-mode .nav-links a {
    color: #333;
}

body.light-mode .nav-links a:hover {
    color: var(--accent-color);
}

body.light-mode .menu-btn .bar {
    background: #333;
}

body.light-mode .bg-text {
    opacity: 0.03;
    color: #000;
}

body.light-mode #globalHighlighter {
    background: radial-gradient(circle, rgba(255, 51, 0, 0.1) 0%, transparent 60%);
    mix-blend-mode: multiply;
}

body.light-mode .hero-text-glass {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

body.light-mode .hero-text-glass h1 {
    color: #111;
    text-shadow: none;
}

body.light-mode .hero-text-glass p {
    color: #444 !important;
}

body.light-mode .hero-top-brand h2 {
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.05);
    opacity: 0.1;
}

body.light-mode .bg-gradient-sphere {
    opacity: 0.3;
}

body.light-mode footer {
    background: #eaeaec;
}

body.light-mode .footer-logo,
body.light-mode footer h4,
body.light-mode footer p,
body.light-mode footer a {
    color: #1a1a1a !important;
}

body.light-mode footer a:hover {
    color: var(--accent-color) !important;
}

/* ── Subpage Hero ── */
body.light-mode .subpage-hero {
    background: linear-gradient(135deg, #f5f5f7 0%, #eaeaec 100%);
}

body.light-mode .hero-text-glass .badge {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* ── Glass Panel ── */
body.light-mode .glass-panel {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* ── Headings / Section Header ── */
body.light-mode section h2 {
    color: #1a1a1a;
}

body.light-mode .section-header h2 {
    color: #1a1a1a !important;
    text-shadow: none;
}

body.light-mode .section-header .line {
    background: linear-gradient(90deg, var(--accent-color), rgba(0, 0, 0, 0.1));
}

/* ── Global text overrides ── */
body.light-mode p,
body.light-mode li {
    color: #333 !important;
}

body.light-mode .col-text p {
    color: #333 !important;
}

body.light-mode .hero-right-split p {
    color: #333 !important;
    text-shadow: none;
}

body.light-mode .lead,
body.light-mode .col-text .lead {
    color: #000 !important;
    font-weight: 400;
}

/* ── Visual Boxes (About section) ── */
body.light-mode .visual-box {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .visual-box h3 {
    color: #1a1a1a;
}

/* ── Service Cards ── */
body.light-mode .service-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.light-mode .service-card h3,
body.light-mode .service-card h4 {
    color: #1a1a1a !important;
    text-shadow: none;
}

body.light-mode .service-card p,
body.light-mode .service-card ul li {
    color: #333 !important;
}

body.light-mode .service-card .badge {
    color: #444;
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.04);
}

/* ── Hero (home page) splits ── */
body.light-mode .hero-left-split h1 {
    color: #111;
    text-shadow: none;
    filter: none;
}

/* ── Mobile nav overlay ── */
body.light-mode .nav-links {
    background: rgba(245, 245, 247, 0.98);
}

/* ── Contact Section ── */
body.light-mode .contact-info h3 {
    color: #111;
}

body.light-mode .contact-info p {
    color: #555 !important;
}

body.light-mode .contact-list li {
    color: #333 !important;
}

body.light-mode .contact-form input,
body.light-mode .contact-form textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.18);
    color: #111;
}

body.light-mode .contact-form input::placeholder,
body.light-mode .contact-form textarea::placeholder {
    color: #888;
}

/* ── Footer granular overrides ── */
body.light-mode footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #eaeaec;
}

body.light-mode .footer-logo-text {
    color: rgba(0, 0, 0, 0.25);
}

body.light-mode .footer-logo-text:hover {
    color: var(--accent-color);
}

body.light-mode .footer-heading {
    color: #111 !important;
}

body.light-mode .footer-description {
    color: #555 !important;
}

body.light-mode .footer-contact-list li {
    color: #444 !important;
}

body.light-mode .footer-social-links a {
    color: #222 !important;
}

body.light-mode .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .footer-bottom p {
    color: #666 !important;
}

/* ── Marquee fades match light-mode bg ── */
body.light-mode .reviews-marquee-wrapper::before {
    background: linear-gradient(to right, #f5f5f7, transparent);
}

body.light-mode .reviews-marquee-wrapper::after {
    background: linear-gradient(to left, #f5f5f7, transparent);
}

body.light-mode .clients-marquee-wrapper::before {
    background: linear-gradient(to right, #f5f5f7, transparent);
}

body.light-mode .clients-marquee-wrapper::after {
    background: linear-gradient(to left, #f5f5f7, transparent);
}

/* ── Reviews headline ── */
body.light-mode .reviews-headline-main {
    color: #111;
    text-shadow: none;
}

/* ── Team cards ── */
body.light-mode .team-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

body.light-mode .team-info h3 {
    color: #111;
    text-shadow: none;
}

body.light-mode .team-info p {
    color: var(--accent-color) !important;
    text-shadow: none;
}

body.light-mode .team-card:hover {
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* ── Brand logos marquee ── */
body.light-mode .brand-logo {
    color: #111;
    opacity: 0.8;
}

body.light-mode .brand-logo:hover {
    opacity: 1;
}

/* ── Portfolio items ── */
body.light-mode .portfolio-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .portfolio-item .overlay {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98), transparent);
}

body.light-mode .portfolio-item .overlay h4 {
    color: #111;
}

body.light-mode .portfolio-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ── Inline style overrides via attribute selectors ── */
body.light-mode .hero-section[style*="linear-gradient"] {
    background: var(--bg-color) !important;
}

body.light-mode .hero-text-glass[style*="rgba(10,10,10"] {
    background: rgba(255, 255, 255, 0.7) !important;
}

body.light-mode .hero-text-glass h1 .highlight {
    color: var(--accent-color) !important;
}

body.light-mode h4[style*="color: #fff"] {
    color: #111 !important;
}

body.light-mode ul[style*="color: #ccc"] {
    color: #444 !important;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
    overflow: hidden;
}

.subpage-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, #050505 0%, #1a0a00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: none;
    /* Subpages don't usually need the 3D depth of home */
}

.hero-text-glass {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 4rem;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.hero-text-glass h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 0;
    word-wrap: break-word;
    /* Ensure titles don't break the glass container */
}

@media (max-width: 1024px) {
    .hero-text-glass h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-text-glass h1 {
        font-size: 2.5rem;
    }
}

.hero-text-glass p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-top: 2rem;
    color: #ccc;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    /* Ensures 3 distinct zones */
    align-items: center;
    padding: 0 4rem;
    gap: 3rem;
    /* Fixed physical gap between text and image */
}

.hero-top-brand {
    position: absolute;
    top: 8%;
    /* Higher up to avoid head */
    left: 50%;
    transform: translateX(-50%) translateZ(150px);
    width: 100%;
    text-align: center;
    z-index: 5;
    pointer-events: none;
}

.hero-top-brand h2 {
    font-size: 14vw;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 40px;
    margin: 0;
    line-height: 0.7;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    font-family: 'Outfit', sans-serif;
    opacity: 0.3;
    user-select: none;
    white-space: nowrap;
}

.hero-top-brand h2 span {
    color: var(--accent-color);
    -webkit-text-stroke: 0;
    opacity: 0.6;
    text-shadow: 0 0 50px rgba(255, 74, 0, 0.3);
}

.hero-image-wrapper {
    position: relative;
    flex: 1.4;
    /* Takes more space as the main character */
    height: 75%;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    border-radius: 40px;
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.9), 0 0 100px rgba(255, 74, 0, 0.25);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-right: -4rem;
    /* Shifted right to fill more space as requested */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    /* Cropped properly on left, expanded on right */
    border-radius: 20px;
    filter: brightness(1.35) contrast(1.15) saturate(1.1);
    /* Even more enlightened */
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.6);
}

.interactive-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 74, 0, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 2;
}

.hero-image-wrapper:hover .interactive-glow {
    opacity: 1;
}

.hero-left-split {
    position: relative;
    /* No longer absolute to avoid overlap */
    flex: 1;
    /* Equal spacing partner */
    max-width: 500px;
    text-align: left;
    z-index: 25;
    transform: translateZ(120px);
}

.hero-left-split h1 {
    font-size: 5rem;
    font-weight: 950;
    line-height: 0.8;
    margin: 0;
    letter-spacing: -4px;
    text-transform: uppercase;
    text-shadow: 0 20px 50px rgba(0, 0, 0, 1);
    filter: drop-shadow(0 0 30px rgba(255, 74, 0, 0.1));
}

.creative-tag {
    display: block;
    font-family: 'Outfit', sans-serif;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    text-shadow: 0 0 20px rgba(255, 74, 0, 0.4);
}

.hero-right-split {
    position: relative;
    flex: 0.8;
    /* Smaller width for description */
    max-width: 380px;
    text-align: left;
    z-index: 20;
    padding-left: 2.5rem;
    border-left: 2px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateZ(120px);
}

.hero-right-split p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1400px) {
    .hero-left-split h1 {
        font-size: 3.5rem;
    }

    .hero-top-brand h2 {
        font-size: 5rem;
        letter-spacing: 12px;
    }
}

@media (max-width: 1100px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        gap: 4rem;
        padding: 8rem 2rem;
        text-align: center;
    }

    .hero-image-wrapper {
        width: 90%;
        height: 450px;
        flex: none;
        margin: 0 auto;
        order: 1;
        /* Image in middle */
    }

    .hero-left-split {
        flex: none;
        max-width: 100%;
        text-align: center;
        order: 0;
        /* Title on top */
    }

    .hero-right-split {
        flex: none;
        max-width: 100%;
        text-align: center;
        align-items: center;
        padding-left: 0;
        border-left: none;
        order: 2;
        /* Description at bottom */
    }
}

@media (max-width: 768px) {
    .hero-text-glass {
        padding: 3rem 1.5rem;
    }

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

    .hero-text-glass p {
        font-size: 1.1rem;
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.cta-button:hover {
    box-shadow: 0 10px 30px rgba(255, 74, 0, 0.4);
}

/* Content Sections & Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

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

.content-section {
    padding: 10rem 0;
    position: relative;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 5rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: -1px;
}

.section-header .line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

/* Two Column Layout (About) */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.col-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.col-text .lead {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 300;
}

.cta-link {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 1rem;
}

.col-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.visual-box:hover {
    transform: translateX(20px);
    border-color: var(--accent-color);
}

.visual-box .icon {
    font-size: 3rem;
}

/* Services Grid v2 - 3 Top, 2 Bottom Centered */
/* Services Grid v2 - Perfect Grid Sync */
.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    /* Forces all cards in a row to identical heights */
    gap: 2rem;
    /* Shrunk from 3rem to fit 4 seamlessly */
    padding: 2rem 0;
    max-width: 100%;
}

.services-grid-v2 .service-card {
    height: 100%;
    /* Fully expand to match the tallest card in the row */
    padding: 2.5rem 1.8rem;
    /* Adjusted internal padding to optimize narrower columns */
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease-out;
    /* Much faster and smoother */
}

/* Dynamic text scaling required to comfortably fit 4 dense columns */
.services-grid-v2 .service-card h3 {
    font-size: 1.55rem;
    min-height: 6rem;
}

.services-grid-v2 .service-card h4.highlight {
    font-size: 1rem;
    min-height: 4rem;
}

.services-grid-v2 .service-card p {
    font-size: 1rem;
    min-height: 9.5rem;
}

.services-grid-v2 .service-card ul li {
    font-size: 0.95rem;
    /* Slightly smaller for density */
    margin-bottom: 0.6rem;
}

.services-grid-v2 .service-card .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
}

.services-grid-v2 .service-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1400px) {
    .services-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
        /* Fallback for smaller laptops */
    }
}

@media (max-width: 1100px) {
    .services-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 750px) {
    .services-grid-v2 {
        grid-template-columns: 1fr;
    }

    .services-grid-v2 .service-card h3,
    .service-card h3 {
        min-height: unset;
    }

    .services-grid-v2 .service-card p,
    .service-card p {
        min-height: unset;
    }

    .service-icon {
        text-align: left;
    }
}

/* Services Horizontal Track (Better earlier way) */
.services-track {
    display: flex;
    overflow-x: auto;
    gap: 2.5rem;
    padding: 3rem 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    margin: 0 -1rem;
}

.services-track::-webkit-scrollbar {
    display: none;
}

.services-track:active {
    cursor: grabbing;
}

.services-track .service-card {
    flex: 0 0 400px;
    /* Wider cards for better presentation */
    scroll-snap-align: center;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: center;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.services-track:hover .service-card {
    opacity: 0.6;
    filter: blur(2px);
    transform: scale(0.95);
}

.services-track .service-card:hover {
    opacity: 1 !important;
    filter: blur(0px) !important;
    transform: scale(1.05) translateY(-20px) !important;
    border-color: var(--accent-color);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 74, 0, 0.1);
}

.services-track .service-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    text-transform: none;
    text-shadow: none;
    min-height: auto;
    display: block;
}

.services-track .service-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 0;
    min-height: auto;
}

.service-card {
    padding: 3rem 2rem;
    /* Reduced padding from 3.5/2.5 to give text more width */
    border-radius: 30px;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, filter 0.25s ease-out;
    /* Fast reaction hover */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-card .badge {
    align-self: flex-start;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    border: 1px solid var(--glass-border);
}

.service-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(255, 74, 0, 0.3));
}

.service-card h3 {
    font-size: 1.7rem;
    /* Reduced size to prevent long words overflowing (COMMERCIALS) */
    margin-bottom: 0.5rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    min-height: 6.8rem;
    /* Absolute safe lock for up to 3 large lines */
    display: block;
    word-break: normal;
    overflow-wrap: normal;
}


.service-card h4.highlight {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    min-height: 4.5rem;
    /* Forces identical starting point for desc, safe up to 3 lines */
}

.service-card p {
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 8.5rem;
    /* Aligns the checklists absolutely, safe up to 5 lines */
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    flex-grow: 1;
    /* Pushes button down perfectly */
}

.service-card ul li {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.5;
}

.service-card ul li .tick {
    color: var(--accent-color);
    font-weight: bold;
}

.service-card .cta-link {
    margin-top: auto;
    font-size: 1.15rem;
    font-weight: 800;
    align-self: flex-start;
}

/* Services Track (horizontal scroll) - light mode handled in consolidated section above */

/* Scrolling Reviews Section */
.reviews-section {
    padding: 8rem 0 4rem 0;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.reviews-marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /* Full width hack */
    position: relative;
    padding: 2rem 0;
}

/* Fading edges */
.reviews-marquee-wrapper::before,
.reviews-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15vw;
    z-index: 2;
    pointer-events: none;
}

.reviews-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.reviews-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.reviews-marquee {
    display: flex;
    gap: 3rem;
    padding: 2rem 0;
    animation: scroll-left 50s linear infinite;
    width: max-content;
    will-change: transform;
}

.reviews-marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1.5rem));
    }

    /* -50% and half the gap size */
}

.review-card {
    flex: 0 0 420px;
    background: linear-gradient(135deg, #f68e00 0%, #d35400 100%);
    border-radius: 30px;
    padding: 3rem;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.review-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 40px 80px rgba(230, 126, 34, 0.4);
}

.review-stars {
    color: #111;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: var(--font-body);
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.review-author-info {
    text-align: left;
}

.review-author-name {
    font-size: 1.1rem;
    font-weight: 900;
    color: #111;
}

.review-author-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
}

/* Headline Cinematic */
.reviews-headline {
    text-align: center;
    margin-top: 5rem;
}

.reviews-headline-sub {
    font-family: var(--font-heading);
    color: #f39c12;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
}

.camera-revolver {
    font-size: 5rem;
    display: inline-block;
    margin: 1.5rem auto;
    filter: drop-shadow(0 0 20px rgba(255, 74, 0, 0.8));
    animation: revolveCamera 4s ease-in-out infinite alternate;
}

@keyframes revolveCamera {
    0% {
        transform: translateX(-200px) perspective(600px) rotateY(-40deg) scale(0.8);
    }

    50% {
        transform: translateX(0px) perspective(600px) rotateY(180deg) scale(1.3);
    }

    100% {
        transform: translateX(200px) perspective(600px) rotateY(400deg) scale(0.8);
    }
}

.reviews-headline-main {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 320px;
        padding: 2rem;
    }

    .reviews-headline-main {
        font-size: 2.5rem;
    }

    .reviews-headline-sub {
        font-size: 1.5rem;
    }

    .camera-revolver {
        font-size: 3.5rem;
        animation: revolveCameraMobile 4s ease-in-out infinite alternate;
    }
}

@keyframes revolveCameraMobile {
    0% {
        transform: translateX(-80px) perspective(400px) rotateY(-40deg) scale(0.8);
    }

    50% {
        transform: translateX(0px) perspective(400px) rotateY(180deg) scale(1.2);
    }

    100% {
        transform: translateX(80px) perspective(400px) rotateY(400deg) scale(0.8);
    }
}

/* Client Logos Marquee Section */
.clients-section {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.clients-headline {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 3rem;
}

.clients-marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

/* Fading edges */
.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15vw;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.clients-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.clients-marquee {
    display: flex;
    gap: 6rem;
    align-items: center;
    padding: 1rem 0;
    animation: scroll-left-fast 30s linear infinite;
    width: max-content;
    will-change: transform;
}

.clients-marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll-left-fast {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 3rem));
    }
}

.brand-logo {
    flex: 0 0 auto;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    opacity: 0.5;
    /* Acts like faded white PNGs */
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
}

.brand-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Brand logo / marquee light mode - handled in consolidated section above */

/* Portfolio Gallery */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.portfolio-item {
    height: 400px;
    background: #0a0a0a;
    border-radius: 30px;
    /* More rounded premium look */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--accent-color), transparent);
    opacity: 0.05;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 0.2;
}

.portfolio-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
    transition: opacity 0.4s ease;
    filter: brightness(0.8);
}

.portfolio-item:hover .portfolio-video {
    opacity: 1;
    filter: brightness(1.1);
}

.portfolio-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 20%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
    z-index: 2;
}

.portfolio-item:hover .overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item .overlay h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #aaa;
    margin-bottom: 3rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    padding: 1.2rem;
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.contact-form button {
    border: none;
    cursor: pointer;
}

/* Footer Redesign */
footer {
    padding: 6rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to top, rgba(255, 74, 0, 0.05), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    text-align: left;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.footer-logo-text:hover {
    color: var(--accent-color);
}

.footer-description {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.footer-contact-list li {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-social-links {
    display: flex;
    gap: 1.5rem;
}

.footer-social-links a {
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #555;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Scroll Indicators refine */
.scroll-dot {
    cursor: pointer;
}

/* Team Section */
.team-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 side by side */
    gap: 2rem;
    margin-top: 5rem;
    max-width: 100%;
}

.team-card {
    position: relative;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-style: preserve-3d;
}

.team-card:hover {
    transform: translateY(-20px) rotateX(5deg) rotateY(2deg);
    border-color: var(--accent-color);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 74, 0, 0.1);
}

.team-img-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    /* Big portrait space for full image */
    margin: 0 auto 2.5rem;
    border-radius: 20px;
    /* Clean structured look, not circular */
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
    background: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.team-card:hover .team-img-wrapper {
    transform: scale(1.05) translateZ(40px) rotate(-1.5deg);
    /* circular/rotational floating motion */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 74, 0, 0.3);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Keeps proportions perfect and fills the large box */
    object-position: top center;
    /* Focuses perfectly on the face and torso */
    filter: grayscale(0.1) brightness(1.1);
    transition: all 0.6s ease;
}

.team-card:hover img {
    filter: grayscale(0) brightness(1.2);
}

.team-info {
    transform: translateZ(30px);
    display: flex;
    flex-direction: column;
    min-height: 140px;
    /* Fixed height to enforce bottom alignment */
}

.team-info h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: auto;
    /* Pushes the role down to align evenly */
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.team-info p {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: brightness(1.3);
    /* Properly enlightened */
    text-shadow: 0 0 20px rgba(255, 74, 0, 0.6);
    margin-top: 1rem;
}

.team-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 74, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.team-card:hover .team-glow {
    opacity: 1;
}

/* Team card light mode - handled in consolidated section above */

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

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.bg-gradient-sphere {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 74, 0, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

/* Hero / subpage inline style overrides - handled in consolidated section above */

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-box h2.highlight {
    font-size: 4rem;
}

/* Contact Name Grid */
.contact-name-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Media Queries */
@media (max-width: 1024px) {
    .bg-text {
        font-size: 22vw;
        top: 20%;
    }

    .hero-image-wrapper {
        width: 85%;
    }

    .two-col,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .glass-panel {
        padding: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    /* Nav mobile */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(3, 3, 3, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 150;
    }

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

    .nav-links a {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }

    .menu-btn {
        display: flex;
        position: relative;
        z-index: 200;
    }

    .theme-toggle {
        z-index: 200;
        position: relative;
    }

    /* Hero mobile */
    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .hero-left-split h1 {
        font-size: 2.8rem;
        letter-spacing: -2px;
    }

    .hero-right-split p {
        font-size: 1rem;
    }

    .creative-tag {
        font-size: 0.7rem;
        letter-spacing: 6px;
    }

    /* Stats responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box h2.highlight {
        font-size: 2.5rem;
    }

    /* Sections */
    .glass-panel {
        padding: 2rem 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .content-section {
        padding: 6rem 0;
    }

    /* Contact form */
    .contact-name-grid {
        grid-template-columns: 1fr;
    }

    .contact-info h3 {
        font-size: 1.8rem;
    }

    /* Portfolio */
    .portfolio-gallery {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        height: 280px;
    }

    /* Footer */
    .footer-social-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-logo-text {
        font-size: 2.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    /* Reviews headline */
    .reviews-headline-main {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }

    .hero-left-split h1 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-box h2.highlight {
        font-size: 2rem;
    }

    .glass-panel {
        padding: 1.5rem 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .hero-text-glass {
        padding: 2rem 1.2rem;
    }

    .hero-text-glass h1 {
        font-size: 2rem;
    }

    .two-col {
        gap: 2rem;
    }

    .services-grid-v2 {
        gap: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .review-card {
        flex: 0 0 280px;
        padding: 1.5rem;
    }

    .reviews-headline-main {
        font-size: 1.5rem;
    }

    .team-img-wrapper {
        height: 260px;
    }
}