:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #ccff00;
    /* Acid Green */
    --accent-dim: rgba(204, 255, 0, 0.1);
    --border-color: #222;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --transition-ease: cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b3e000;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden !important;
    height: 100vh;
}

/* Lenis */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Background Noise */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9000;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    z-index: 10000;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 40px;
    transition: transform 0.8s var(--transition-ease);
}

.counter-wrap {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: #000;
}

/* =========================================
   NAVIGATION (LOGO TOGGLE LOGIC)
   ========================================= */

/* =========================================
   NAVIGATION (Restored Structure)
   ========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9990;
    transition: padding 0.3s ease;
    /* Main Navbar Background */
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Navbar Logo Hidden by default (Hero State) - Restored */
.nav-logo {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

/* Navbar Logo Visible (Scrolled State) - Restored */
.nav-logo.show-logo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

/* Centered Glass Switch Menu */
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0;
    /* No gap for continuous track */
    align-items: center;

    /* Glassmorphism Track Style */
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    padding: 5px;
    /* Inner padding for the track */
    transition: all 0.3s ease;
}

.nav-links:hover {
    background: rgba(25, 25, 25, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Sliding Indicator */
.nav-indicator {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    width: calc((100% - 10px) / 4);
    /* Half of the available track width */
    background: var(--accent-color);
    border-radius: 40px;
    z-index: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* State Classes for Indicator Position */
.nav-links.active-partner .nav-indicator {
    transform: translateX(200%);
}

.nav-links.active-founder .nav-indicator {
    transform: translateX(300%);
}

.nav-links.active-who .nav-indicator {
    transform: translateX(100%);
}

.nav-links a {
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    /* Above indicator */
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 50px;
    /* Comfortable click area */
    border-radius: 40px;
    flex: 1;
    /* Equal width */
    min-width: 200px;
    /* Ensure consistency */
    white-space: nowrap;
}

/* Active Text Color Change */
.nav-links.active-home a.link-home,
.nav-links.active-partner a.link-partner,
.nav-links.active-who a.link-who,
.nav-links.active-founder a.link-founder {
    color: #000;
    font-weight: 700;
}

/* Hover effect for inactive links */
.nav-links a:hover {
    color: #fff;
}

.nav-links a:not(.active) i {
    transform: none;
    /* Reset transform on hover for consistency */
}

.nav-links a:hover i {
    transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }

    .logo img {
        height: 35px;
    }

    .nav-links {
        padding: 8px 15px;
        gap: 10px;
        width: auto;
        border-radius: 40px;
    }

    .nav-links a {
        padding: 8px 15px;
        min-width: auto;
        font-size: 0.8rem;
    }

    .nav-links a span {
        display: none;
        /* Hide text on small screens, show icon only or just compact it */
    }

    .nav-links a i {
        font-size: 1.2rem;
    }

    /* Hero Mobile Updates */
    .hero-split-section {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
    }

    .hero-divider {
        display: none;
    }

    .hero-left,
    .hero-right {
        padding: 0;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .hero-large-logo {
        max-width: 60vw;
        max-height: 30vh;
    }

    .logo-tagline-static {
        font-size: 0.9rem;
        transform: rotate(0deg);
        margin-top: 20px;
    }

    .hero-tagline h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-container {
        padding-top: 100px;
    }
}




/* =========================================
   HERO STRUCTURE (GLITCH & TAGLINE)
   ========================================= */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Vertical Flex Layout */
.hero-container {
    width: 100%;
    height: 100%;
    padding: 0 50px;
    padding-top: 120px;
    /* Account for fixed navbar */
    display: flex;
    flex-direction: column;
    /* Back to vertical stack */
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    perspective: 1200px;
    overflow: hidden;
    gap: 0;
}

/* New Split Section Wrapper */
.hero-split-section {
    width: 100%;
    flex: 1;
    /* Take up available space */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* Hero Sides (Left/Right) */
.hero-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 100%;
}

.hero-left {
    align-items: center;
    /* Center align */
    padding-right: 40px;
}

.hero-right {
    align-items: center;
    /* Center align */
    padding-left: 40px;
}

.hero-right-content {
    text-align: center;
    max-width: 600px;
}

/* Remove H1 form here as it moved out */

/* Center Scroll Divider */
.hero-divider {
    width: 2px;
    height: 60vh;
    /* Tall vertical line */
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-divider .scroll-line {
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    position: absolute;
    top: -100%;
    left: 0;
    animation: scrollDown 2.5s infinite;
}

/* Static Tagline (New Style) */
.logo-tagline-static {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #000;
    text-transform: uppercase;
    background: var(--accent-color);
    padding: 10px 20px;
    display: inline-block;
    transform: rotate(-2deg);
    box-shadow: 5px 5px 0 #fff;
}

/* 3D MARQUEE REMOVED */

.logo-tagline {
    position: absolute;
    bottom: 50px;
    right: 0;
    z-index: 10;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #000;
    padding: 5px 10px;
    transform: rotate(-5deg);
    border: 1px solid var(--accent-color);
    box-shadow: 5px 5px 0 var(--accent-color);
}

/* 1. Large Logo Centerpiece */
.hero-center {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 60vh;
    /* Limits center area */
}

/* Grid Stack for Glitch Effect */
.glitch-stack {
    display: grid;
    place-items: center;
    position: relative;
    max-width: 80vw;
}

/* Logo Sizing for Side Layout */
.hero-large-logo {
    grid-area: 1 / 1;
    width: auto;
    max-width: 25vw;
    /* Reduced size */
    height: auto;
    max-height: 35vh;
    object-fit: contain;
    display: block;
}

/* Base Logo */
.base-logo {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
    transition: transform 0.5s ease;
}

/* Glitch Layers */
.glitch-layer {
    z-index: 1;
    opacity: 0;
}

.glitch-1 {
    transform: translate(0);
    animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
}

.glitch-2 {
    transform: translate(0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

/* Glitch Hover Effect */
.glitch-stack:hover .base-logo {
    transform: scale(1.02);
}

.glitch-stack:hover .glitch-1 {
    opacity: 0.5;
    animation-duration: 0.5s;
}

.glitch-stack:hover .glitch-2 {
    opacity: 0.5;
    animation-duration: 0.5s;
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(20% 0 80% 0);
        transform: translate(-2px, 1px);
        opacity: 0.5;
        filter: drop-shadow(2px 0 0 red);
    }

    5% {
        clip-path: inset(60% 0 10% 0);
        transform: translate(2px, -1px);
        opacity: 0.6;
        filter: drop-shadow(-2px 0 0 cyan);
    }

    10% {
        clip-path: inset(40% 0 50% 0);
        transform: translate(-2px, 2px);
        opacity: 0.4;
    }

    15% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(2px, -2px);
        opacity: 0.7;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes glitch-anim-2 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    55% {
        clip-path: inset(10% 0 60% 0);
        transform: translate(2px, 1px);
        opacity: 0.5;
        filter: drop-shadow(2px 0 0 magenta);
    }

    60% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(-2px, -1px);
        opacity: 0.6;
        filter: drop-shadow(-2px 0 0 blue);
    }

    65% {
        clip-path: inset(30% 0 20% 0);
        transform: translate(2px, 0);
        opacity: 0.4;
    }

    70% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* 2. Tagline (Restored) */
.hero-tagline {
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 20;
}

.hero-tagline h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

.hero-tagline p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.5;
}

.funky-tagline {
    font-family: 'Mr Dafoe', cursive;
    font-size: 3.5rem;
    margin-top: 15px;
    background: linear-gradient(90deg, #ccff00, #00ffff, #ff00ff, #ccff00);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientFlow 5s linear infinite;
    transform: rotate(-3deg);
    display: inline-block;
    text-shadow: 0 0 20px rgba(204, 255, 0, 0.3);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* 3. Scroll Indicator */
.hero-bottom {
    margin-bottom: 40px;
}

.scroll-indicator {
    height: 60px;
    display: flex;
    align-items: flex-end;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Marquee */
.marquee-section {
    padding: 40px 0;
    /* Compact size */
    background: var(--accent-color);
    color: #000;
    margin: 80px 0;
    width: 100vw;
    /* Full viewport width */
    position: relative;
    left: 50%;
    margin-left: -50vw;
    /* Center breakout */
    overflow: visible;
    /* NO SCISSORS: Impossible to cut text now */
    transform: rotate(-2deg) scale(1.05);
    -webkit-transform: rotate(-2deg) scale(1.05);
    z-index: 5;
    /* Ensure stable z-index */
    /* Removed 'contain' property to fix flickering/glitches */
    /* Removed 'contain' property to fix flickering/glitches */
    will-change: transform;
    /* Hint for smooth rendering */
    opacity: 0;
    /* Start hidden for lazy reveal fix */
    transition: opacity 1.5s ease;
}

.marquee-section.visible {
    opacity: 1;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: marqueeTrackScroll 40s linear infinite;
    will-change: transform;
}

.marquee-content {
    white-space: nowrap;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.5rem;
    /* Compact desktop size */
    line-height: 1.1;
    /* Tight vertical rhythm */
    flex-shrink: 0;
    padding-right: 50px;
    padding-bottom: 5px;
    /* Safety for descenders */
    /* Performance Optimizations */
    will-change: transform;
    /* Hint for smooth rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes marqueeTrackScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-33.333333%, 0, 0);
    }
}

@media (max-width: 768px) {
    .marquee-track {
        animation-duration: 20s;
        /* Slower speed for mobile to reduce jitter */
    }

    .marquee-content {
        font-size: 2rem;
        /* Balanced mobile size */
    }

    .marquee-section {
        padding: 40px 0;
        width: 100vw;
        margin-left: -50vw;
        /* Standard breakout */
        transform: none;
        -webkit-transform: none;
        /* SAFE MODE: No rotation means no texture clipping */
        will-change: auto;
    }
}

/* Sections */
.section-padding {
    padding: 60px 50px;
}

.section-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.section-header.header-center {
    justify-content: center;
    text-align: center;
}

.sec-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #fff;
}



/* Career Grid */
.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.career-card {
    background: #080808;
    border: 1px solid var(--border-color);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s var(--transition-ease);
    position: relative;
    overflow: hidden;
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.career-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #fff;
    transition: 0.3s;
}

.career-card:hover h3 {
    color: var(--accent-color);
}

.career-card .category {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* REMOVED: .card-arrow class styling deleted */

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--accent-color);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.career-card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.overlay-text {
    overflow-y: auto;
    max-height: 100%;
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
}

/* Artist Reel */
.artist-reel-section {
    overflow: hidden;
}

.artist-reel-container {
    width: 100%;
    position: relative;
}

.artist-reel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px;
    cursor: grab;
    scrollbar-color: var(--accent-color) rgba(255, 255, 255, 0.1);
    scrollbar-width: thin;
}

.artist-reel::-webkit-scrollbar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.artist-reel::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.artist-portrait {
    flex: 0 0 240px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    /* Ensure overlay stays within bounds */
}

.portrait-img {
    width: 100%;
    height: 320px;
    background: #111;
    overflow: hidden;
    position: relative;
    border: 1px solid #222;
    transition: 0.3s;
}

.portrait-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.6s var(--transition-ease);
}

.artist-portrait:hover .portrait-img {
    border-color: var(--accent-color);
}

.artist-portrait:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* New Overlay Logic for Artists */
.artist-portrait .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    /* Allow auto height */
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    border: none;
    border-top: 1px solid var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.4s var(--transition-ease);
    display: flex;
    align-items: flex-end;
    opacity: 0;
}

.artist-portrait:hover .card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.artist-portrait .overlay-text p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Clients */
.client-minimal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.client-box {
    padding: 40px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s ease;
}

.client-box span {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #888;
    transition: 0.3s;
    font-weight: 500;
}

.client-box:hover {
    background: rgba(255, 255, 255, 0.03);
}

.client-box:hover span {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}



/* Contact */
.contact-section {
    border-top: 1px solid var(--border-color);
    background: #030303;
}

/* Stats Section */
.stats-section {
    border-top: 1px solid var(--border-color);
    background: #050505;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-box {
    padding: 30px;
    border: 1px solid #222;
    transition: 0.3s;
}

.stat-box:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.stat-box h3 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-box p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-left h2 {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 20px;
}

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

.input-group {
    margin-bottom: 30px;
}

.input-field {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    padding: 15px 0;
    font-family: var(--font-body);
    font-size: 1.2rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-field:focus {
    border-color: var(--accent-color);
}

.btn-submit {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 15px 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
    transition: 0.3s;
    margin-top: 20px;
}

.btn-submit:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

/* Footer */
.footer {
    margin-top: 100px;
    padding-top: 30px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
}

.footer-socials {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-socials a {
    color: #555;
    font-size: 1.4rem;
    transition: all 0.3s var(--transition-ease);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* =========================================
   SCROLL POSITIONING FIX
   ========================================= */
section,
header {
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {

    section,
    header {
        scroll-margin-top: 80px;
    }
}

/* =========================================
   HAMBURGER MENU & OVERLAY
   ========================================= */
.menu-toggle-btn {
    position: fixed;
    top: 25px;
    right: 50px;
    z-index: 10001;
    /* Above everything */
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    /* Border removed as requested */
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease;

    /* Initial State for Preloader logic */
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.menu-toggle-btn.revealed {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.menu-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.hamburger-lines {
    width: 20px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center for 2 lines */
    gap: 6px;
    /* Space between 2 lines */
}

.line {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Transform to X when active (2 lines) */
.menu-toggle-btn.active .line1 {
    transform: translateY(4px) rotate(45deg);
    background: var(--accent-color);
}

/* Line 2 is now the bottom line in HTML */
.menu-toggle-btn.active .line3 {
    transform: translateY(-4px) rotate(-45deg);
    background: var(--accent-color);
}

/* Small Popup Overlay */
.menu-overlay {
    position: fixed;
    top: 80px;
    /* Below the hamburger button */
    right: 50px;
    width: 300px;
    height: auto;
    background: rgba(10, 10, 10, 0.6);
    /* Glassmorphism Base */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    z-index: 10000;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: top right;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.menu-content {
    text-align: left;
    /* Align left for popup */
}

.menu-links {
    list-style: none;
    padding: 0;
}

.menu-links li {
    margin: 10px 0;
    /* Reduced margin */
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.menu-overlay.active .menu-links li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay for Links */
.menu-overlay.active .menu-links li:nth-child(1) {
    transition-delay: 0.05s;
}

.menu-overlay.active .menu-links li:nth-child(2) {
    transition-delay: 0.1s;
}

.menu-overlay.active .menu-links li:nth-child(3) {
    transition-delay: 0.15s;
}

.menu-overlay.active .menu-links li:nth-child(4) {
    transition-delay: 0.2s;
}

.menu-overlay.active .menu-links li:nth-child(5) {
    transition-delay: 0.25s;
}

.menu-overlay.active .menu-links li:nth-child(6) {
    transition-delay: 0.3s;
}

.menu-link {
    font-family: var(--font-display);
    font-size: 1.4rem;
    /* Smaller font for popup */
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    transition: all 0.3s ease;
}

.menu-link:hover {
    color: #fff;
    transform: translateX(10px);
    /* Simple slide hover */
    color: var(--accent-color);
}

/* Responsive adjustments for Hamburger */
/* Responsive adjustments for Hamburger */
@media (max-width: 768px) {
    .menu-toggle-btn {
        right: 20px;
        top: 20px;
    }

    .menu-overlay {
        right: 20px;
        top: 70px;
        width: 250px;
    }

    .menu-link {
        font-size: 1.2rem;
    }
}

.footer-socials a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s var(--transition-ease);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 1024px) {
    .section-padding {
        padding: 80px 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 25px;
    }

    /* .desktop-menu removed */

    /* .menu-toggle-btn already display: flex */

    .logo img {
        height: 35px;
    }

    .menu-close-btn {
        top: 20px;
        right: 25px;
    }

    .menu-links a {
        font-size: 2.2rem;
    }

    .menu-links li {
        margin: 8px 0;
    }

    .hero-split-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex: 0;
        /* Prevent taking up extra space */
        margin-bottom: 20px;
    }

    .hero-divider {
        display: none;
    }

    .hero-side {
        width: 100%;
        padding: 0;
        justify-content: center;
        align-items: center;
        flex: 0;
        /* Don't stretch */
    }

    .hero-left {
        order: 1;
        /* Logo first */
        margin-bottom: 20px;
    }

    .hero-right {
        order: 2;
        /* Tagline second */
        padding-left: 0;
    }

    /* FIX: Decreased logo size on mobile */
    .hero-large-logo {
        max-width: 65vw;
        max-height: 25vh;
    }

    /* FIX: Decreased tagline font size */
    .hero-tagline h1 {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-top: 10px;
        /* Space from top */
    }

    .marquee-section {
        transform: none;
        width: 100%;

        .marquee-section {
            margin: 50px 0 30px 0;
            padding: 15px 0;
        }
    }

    .marquee-content {
        font-size: 1.2rem;
    }

    .section-header {
        margin-bottom: 40px;
        padding-bottom: 10px;
        flex-direction: column;
    }

    .section-header.header-center {
        align-items: center;
    }

    .sec-title {
        font-size: 2rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .career-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .career-card {
        min-height: 200px;
        padding: 20px;
    }

    .career-card h3 {
        font-size: 1.5rem;
    }

    /* FIX: Smaller Artists on mobile to fit more in row */
    .artist-portrait {
        flex: 0 0 150px;
    }

    /* Reduced size */
    .portrait-img {
        height: 220px;
    }

    /* Reduced height */
    .portrait-info h3 {
        font-size: 1rem;
    }

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

    .client-box {
        padding: 30px 10px;
    }



    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left h2 {
        font-size: 3rem;
    }

    .footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
        width: 100%;
        order: -1;
        margin-bottom: 10px;
    }

    /* Partner Hero Mobile */
    .partner-hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 40px;
        flex-direction: column;
    }

    .hero-center {
        flex-direction: column;
        /* Ensure content stacks */
        text-align: center;
        height: auto;
        max-height: none;
    }

    .partner-headline {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .partner-subheadline {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* Modern Who We Are */
.modern-who-we-are {
    margin: 50px 0 50px 50px;
    padding-left: 50px;
    border-left: 4px solid var(--accent-color);
}

.who-we-are-content {
    max-width: 100%;
    text-align: center;
}

.modern-highlight {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.modern-copy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.copy-col p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: #ccc;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .modern-who-we-are {
        margin-left: 20px;
        padding-left: 20px;
    }

    .modern-highlight {
        font-size: 2.2rem;
    }

    .modern-copy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    background-color: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #080808;
    border: 1px solid var(--border-color);
    padding: 30px;
    transition: all 0.3s var(--transition-ease);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card ul li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #aaa;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.service-card ul li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
    top: -2px;
    /* Slight adjustment to align with text */
}


/* =========================================
   WHY SPREEBUZZ SECTION
   ========================================= */
.why-section {
    background-color: #030303;
    border-top: 1px solid var(--border-color);
}

.why-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 40px;
}

.value-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-points li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #090909;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 8px;
    /* Slight rounded corners */
}

.value-points li:hover {
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.point-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

.point-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #eee;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   GLOBAL VISION SECTION
   ========================================= */
.global-section {
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.global-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.vision-subtitle {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.1;
}

.vision-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .vision-subtitle {
        font-size: 2rem;
    }

    .value-points li {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .point-text {
        font-size: 1.1rem;
    }
}

/* =========================================
   PARTNER PAGE STYLES
   ========================================= */

/* Partner Hero */
.partner-hero {
    min-height: 80vh;
    padding-top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #111 0%, #000 70%);
}

.partner-headline {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-subheadline {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Text Block Sections */
.text-block-section .content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.split-left h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.split-right h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.value-list {
    list-style: none;
    padding: 0;
}

.value-list li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
    color: #ddd;
    font-size: 1.1rem;
}

.bg-darker {
    background: #050505;
}

.content-single {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text,
.outro-text {
    font-size: 1.2rem;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ecosystem-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.eco-item {
    background: #111;
    border: 1px solid var(--border-color);
    padding: 15px 25px;
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Differentiation Grid */
.sec-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 10px;
    font-family: var(--font-display);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.diff-card {
    background: #080808;
    border: 1px solid var(--border-color);
    padding: 30px;
    transition: 0.3s;
}

.diff-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.diff-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.diff-card p {
    color: #999;
    line-height: 1.5;
}

/* Partnership Models */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.model-card {
    background: #000;
    border: 1px solid #222;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.model-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: #111;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 0;
}

.model-card h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.model-card p {
    position: relative;
    z-index: 1;
    color: #aaa;
    margin-bottom: 25px;
}

.model-card ul {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    border-top: 1px solid #222;
    padding-top: 20px;
}

.model-card li {
    color: #ccc;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.model-card li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Commercial Value */
.commercial-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.value-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.value-tags span {
    background: rgba(204, 255, 0, 0.05);
    border: 1px solid var(--accent-dim);
    padding: 15px 30px;
    color: #fff;
    font-family: var(--font-body);
}

.highlight-quote {
    font-size: 1.5rem;
    color: #fff;
    font-family: var(--font-display);
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    display: inline-block;
    text-align: left;
}

/* Vision & CTA */
.vision-list {
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
    color: #ccc;
}

.vision-list li {
    margin-bottom: 10px;
}

.cta-section {
    text-align: center;
    background: var(--accent-color);
    color: #000;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    color: #111;
}

.btn-cta {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 15px 40px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-cta:hover {
    background: #222;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .partner-headline {
        font-size: 2.5rem;
    }

    .text-block-section .content-split {
        grid-template-columns: 1fr;
    }

    .highlight-quote {
        font-size: 1.2rem;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--accent-color);
        padding-left: 0;
        padding-top: 20px;
    }
}


/* Mobile Menu Optimization */
@media (max-width: 480px) {
    .menu-overlay {
        top: 70px;
        right: 15px;
        width: 220px;
        padding: 20px;
    }

    .menu-links a {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .menu-logo-img {
        /* If there's a logo inside menu, resize it too */
        height: 30px;
    }
}

/* =========================================
   WHO WE ARE REDESIGN
   ========================================= */
.who-section {
    position: relative;
    /* ensure z-index context if needed */
}

/* Container: layout for highlight vs grid */
.who-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Highlight Area */
.who-highlight {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.who-highlight h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
}

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

.who-intro {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Details Grid */
.who-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-top: 20px;
}

/* Individual Feature Cards */
.who-card {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid #222;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.4s var(--transition-ease);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.who-card:hover {
    border-color: var(--accent-color);
    background: rgba(10, 10, 10, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Icon Styling */
.card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: 0.3s ease;
}

.who-card:hover .card-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.who-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.who-card p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .who-highlight h3 {
        font-size: 2rem;
    }

    .who-intro {
        font-size: 1rem;
    }

    .who-details-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   BRANDS MARQUEE
   ========================================= */
.brands-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 30px 0;
    /* Containment for performance isolation */
    contain: paint layout;
    z-index: 5;
}

.brands-track {
    display: flex;
    width: max-content;
    gap: 0;
    /* Reuse the same seamless track animation as top marquee */
    animation: marqueeTrackScroll 40s linear infinite;
    will-change: transform;
}

.brands-content {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-right: 80px;
    /* Removed individual animation to prevent sync issues */
    /* Performance Optimizations */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Mobile stability */
    outline: 1px solid transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.brands-content img {
    height: 50px;
    width: auto;
    object-fit: contain;
    /* Use brightness/contrast to normalize visibility */
    filter: grayscale(100%) brightness(1.2) contrast(1.2);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brands-content img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

/* Individual Logo Tweaks */
.logo-capsul {
    height: 30px !important;
}

/* Wide/Small text */
.logo-burma {
    height: 45px;
}

/* Circular/Standard */
.logo-hungrito {
    height: 55px;
}

/* Often detailed */
.logo-bms {
    height: 40px;
}

/* Wide text */
.logo-sunburn {
    height: 45px;
}

.logo-nift {
    height: 50px;
}

.logo-adani {
    height: 35px;
}

/* Boxy */
.logo-zomato {
    height: 35px;
}

/* Wide text */

@keyframes brandsMove {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.brand-disclaimer {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
    letter-spacing: 0.5px;
}


/* Contact Submit Button */
.btn-submit {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    padding: 15px 40px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Mobile Button Optimization */
@media (max-width: 768px) {
    .contact-section .btn-submit {
        width: 100%;
        max-width: 300px;
        display: block;
        margin: 15px auto;
        text-align: center;
    }
}

/* Utility: Text Accent */
.text-accent {
    color: var(--accent-color);
}

.text-accent-hover {
    color: inherit;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-accent-hover:hover {
    color: var(--accent-color);
    text-decoration: none;
}