/* ==========================================================================
   SATWICK MEDIA - DESIGN SYSTEM & STYLING
   ========================================================================== */

/* Color Tokens & Variables */
:root {
    --primary-red: #E8000E;
    --primary-red-rgb: 232, 0, 14;
    --black-pure: #000000;
    --black-deep: #0A0A0A;
    --black-card: #121212;
    --black-input: #1C1C1E;
    --white-pure: #FFFFFF;
    --white-soft: #F5F5F7;
    --white-muted: rgba(255, 255, 255, 0.6);
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-accent: 'Syne', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --header-height: 90px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: auto; /* Disabled for Lenis smooth scrolling */
    background-color: var(--black-deep);
    color: var(--white-pure);
    font-family: var(--font-body);
    font-size: 16px;
    overflow-x: hidden;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--black-pure);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border: 2px solid var(--black-pure);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* Typography Selection */
::selection {
    background-color: var(--primary-red);
    color: var(--white-pure);
}

/* Shared Containers */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}
@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-pure);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-logo-container {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 1; }
}

.preloader-bar-bg {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background: var(--primary-red);
    box-shadow: 0 0 10px var(--primary-red);
    transition: width 0.4s ease;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    color: var(--white-pure);
}

@keyframes spin-spiral {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    mix-blend-mode: normal;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.cursor-ring {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-red);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: width 0.3s ease, height 0.3s ease;
}

.cursor-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--black-pure);
    font-weight: bold;
    pointer-events: none;
    transition: transform 0.3s ease;
}

/* Hover States for Custom Cursor */
.custom-cursor.black-cursor .cursor-dot {
    background-color: var(--black-pure);
}
.custom-cursor.black-cursor .cursor-ring {
    border-color: var(--black-pure);
}

.custom-cursor.hovering .cursor-dot {
    width: 12px;
    height: 12px;
}
.custom-cursor.hovering .cursor-ring {
    width: 60px;
    height: 60px;
}

.custom-cursor.view-mode .cursor-dot {
    width: 80px;
    height: 80px;
    background-color: var(--white-pure);
}
.custom-cursor.view-mode .cursor-ring {
    width: 90px;
    height: 90px;
}
.custom-cursor.view-mode .cursor-label {
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1024px) {
    .custom-cursor {
        display: none !important;
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: transparent;
    color: var(--white-pure);
    border: 2px solid var(--primary-red);
}

.btn-primary .btn-bubble {
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    width: 0;
    height: 0;
    background-color: var(--primary-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--white-pure);
    border-color: var(--primary-red);
}

.btn-primary:hover .btn-bubble {
    width: 350px;
    height: 350px;
}

.btn-secondary {
    background-color: var(--white-pure);
    color: var(--black-pure);
    border: 2px solid var(--white-pure);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--white-pure);
    border-color: var(--primary-red);
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: var(--black-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.main-header.scrolled .logo-link {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo-img {
    height: 36px;
    width: 36px;
    object-fit: contain;
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--black-deep);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--primary-red);
}

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

.btn-talk {
    border: 1.5px solid var(--black-deep);
    color: var(--black-deep);
    padding: 0.6rem 1.4rem;
    border-radius: 20px;
}

.btn-talk::after {
    display: none;
}

.btn-talk:hover {
    border-color: var(--primary-red);
    background-color: var(--primary-red);
    color: var(--white-pure);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 105;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--black-deep);
    transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span {
    background-color: var(--white-pure);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-pure);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.mobile-nav-item {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 0.1em;
    color: var(--white-pure);
    text-decoration: none;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.mobile-menu-overlay.active .mobile-nav-item {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-item:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav-item:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

.mobile-menu-spiral {
    position: absolute;
    width: 60%;
    max-width: 500px;
    height: auto;
    pointer-events: none;
    z-index: -1;
    animation: spin-spiral 60s linear infinite;
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 2rem;
    }
    .nav-menu {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-half {
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
}

.left-half {
    left: 0;
    width: 45vw;
    background-color: #C00000;
    color: var(--white-pure);
}

.right-half {
    left: 45vw;
    width: 55vw;
    background-color: var(--white-pure);
    color: var(--black-deep);
}

.hero-content-clone {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.left-half .hero-content-clone {
    left: 0;
}

.right-half .hero-content-clone {
    left: -45vw;
}

.hero-brand-logo {
    position: absolute;
    top: 3.5rem;
    left: 4.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 4;
}

.hero-brand-logo-mark {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.hero-brand-logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--white-pure);
}

.hero-title {
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    font-size: 5.75rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 3.5rem;
    text-transform: none;
}

.tagline-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tagline-italic {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    text-transform: lowercase;
}

.hero-side-detail {
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--black-pure);
    white-space: nowrap;
    z-index: 4;
}

.hero-cta {
    pointer-events: auto;
}

.left-half .text-stroke {
    -webkit-text-stroke: 1.5px var(--white-pure);
    color: transparent;
}

.left-half .red-highlight {
    color: var(--white-pure);
}

.left-half .hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.left-half .btn-primary {
    background-color: transparent;
    color: var(--white-pure);
    border: 1.5px solid var(--white-pure);
    border-radius: 0;
    padding: 1.1rem 2.2rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.left-half .btn-primary:hover {
    background-color: var(--white-pure);
    color: #C00000;
}

.right-half .text-stroke {
    -webkit-text-stroke: 1.5px var(--black-deep);
    color: transparent;
}

.right-half .red-highlight {
    color: var(--primary-red);
}

.right-half .hero-subtitle {
    color: rgba(0, 0, 0, 0.45);
}

.right-half .btn-primary {
    background-color: var(--primary-red);
    color: var(--white-pure);
    border: 1px solid var(--primary-red);
    border-radius: 0;
    padding: 1.1rem 2.2rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.right-half .btn-primary:hover {
    background-color: var(--black-pure);
    border-color: var(--black-pure);
    color: var(--white-pure);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: -0.02em;
    }
    .hero-subtitle {
        font-size: 1.15rem;
    }
    .hero-brand-logo {
        top: 3rem;
        left: 3rem;
    }
}
@media (max-width: 768px) {
    .right-half {
        display: none !important;
    }
    .left-half {
        width: 100vw !important;
        left: 0 !important;
    }
    .left-half .hero-content-clone {
        width: 100% !important;
        left: 0 !important;
        padding: 0 2rem;
    }
    .hero-title {
        font-size: 3.2rem;
        letter-spacing: -0.01em;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.75rem;
    }
    .hero-brand-logo {
        position: absolute;
        top: 2.25rem;
        left: 2rem;
        margin-bottom: 0;
        gap: 1rem;
    }
    .hero-brand-logo-mark {
        width: 48px;
        height: 48px;
    }
    .hero-brand-logo-text {
        font-size: 1.25rem;
    }
    .main-header:not(.scrolled) .mobile-menu-toggle span {
        background-color: var(--white-pure);
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 0;
        line-height: 1.15;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
    .hero-brand-logo {
        top: 2rem;
        left: 1.5rem;
        gap: 0.75rem;
    }
    .hero-brand-logo-mark {
        width: 40px;
        height: 40px;
    }
    .hero-brand-logo-text {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 2.5rem 0;
    background-color: var(--black-deep);
    position: relative;
    overflow: hidden;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.section-tag {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    display: block;
}

.about-heading {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-bottom: 2.5rem;
}

.about-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--white-muted);
    margin-bottom: 1.5rem;
}

.about-body p.lead-text {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--white-pure);
}

.about-cta {
    margin-top: 3rem;
}

.about-visual-column {
    position: relative;
}

.about-brand-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--primary-red);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(232, 0, 14, 0.35);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.about-logo-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.about-brand-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(232, 0, 14, 0.55);
}

.parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1024px) {
    .about-section {
        padding: 2.5rem 0;
    }
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-heading {
        font-size: 3rem;
    }
    .image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}
@media (max-width: 640px) {
    .about-heading {
        font-size: 2.2rem;
    }
    .about-body p.lead-text {
        font-size: 1.15rem;
    }
}

/* ==========================================================================
   BRANDS SECTION (LOGOS MARQUEE)
   ========================================================================== */
.brands-section {
    padding: 2.5rem 0;
    background-color: var(--black-pure);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.brands-heading-container {
    text-align: center;
    margin-bottom: 2rem;
}

.brands-section-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--white-muted);
    text-transform: uppercase;
}

/* Infinite Marquee */
.ticker-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.ticker-container::before,
.ticker-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ticker-container::before {
    left: 0;
    background: linear-gradient(to right, var(--black-pure) 0%, transparent 100%);
}

.ticker-container::after {
    right: 0;
    background: linear-gradient(to left, var(--black-pure) 0%, transparent 100%);
}

.logo-ticker {
    display: flex;
    width: max-content;
}

.ticker-items {
    display: flex;
    align-items: center;
    animation: marquee-scroll 35s linear infinite;
}

.ticker-logo {
    height: 45px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    opacity: 0.8;
    margin: 0 50px;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s, transform 0.3s;
}

.ticker-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.ticker-text-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    color: white;
    opacity: 0.8;
    margin: 0 50px;
    letter-spacing: 2px;
}

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

@media (max-width: 640px) {
    .brands-section {
        padding: 2.5rem 0;
    }
    .ticker-logo {
        height: 30px;
        margin: 0 25px;
    }
    .ticker-text-logo {
        font-size: 20px;
        margin: 0 25px;
    }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 2.5rem 0;
    background-color: var(--black-deep);
}

.section-header {
    margin-bottom: 1.25rem;
    max-width: 800px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 0.01em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 350px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.card-inner {
    padding: 2rem 2.25rem 2.25rem 2.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 44px;
    height: 44px;
    color: var(--primary-red);
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white-muted);
    transition: var(--transition-smooth);
}

.card-spiral {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    opacity: 0;
    color: rgba(0, 0, 0, 0.15);
    transform: rotate(0deg) scale(0.8);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.card-spiral svg {
    width: 100%;
    height: 100%;
    animation: spin-spiral 10s linear infinite;
}

/* Hover States for Services Cards */
.service-card:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(232, 0, 14, 0.2);
}

.service-card:hover .card-icon {
    color: var(--white-pure);
    transform: scale(1.1);
}

.service-card:hover .service-title {
    color: var(--white-pure);
}

.service-card:hover .service-desc {
    color: rgba(255, 255, 255, 0.85);
}

.service-card:hover .card-spiral {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        height: auto;
        min-height: 300px;
    }
    .card-inner {
        padding: 2.5rem;
    }
}
@media (max-width: 640px) {
    .section-title {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   WORK / CASE STUDIES SECTION
   ========================================================================== */
.work-section {
    padding: 2.5rem 0;
    background-color: var(--black-pure);
}

.red-highlight-title {
    color: var(--primary-red);
    font-size: 1.25em;
    display: inline-block;
    margin-top: 0.5rem;
    line-height: 0.95;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3.5rem;
    width: 100%;
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.project-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--black-deep);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.project-img {
    width: 100%;
    height: 100%; /* Height changed to 100% since parallax is disabled */
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.project-card:hover .project-image-container {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    z-index: 5;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-img {
    transform: scale(1.06);
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 0.5rem;
}

.project-brand-tags {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary-red);
    text-transform: uppercase;
    display: block;
}

.project-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.02em;
    color: var(--white-pure);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    transition: var(--transition-fast);
}

.project-card:hover .project-title {
    color: var(--primary-red);
}

.project-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white-muted);
    margin: 0;
}

@media (max-width: 1024px) {
    .work-grid {
        gap: 2rem;
    }
    .project-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .project-image-container {
        aspect-ratio: 1 / 1;
    }
    .project-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   STATS / IMPACT BAR
   ========================================================================== */
.stats-section {
    padding: 2.5rem 0;
    background-color: var(--primary-red);
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    color: var(--white-pure);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 7rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--white-pure);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--white-pure);
    margin-top: 0.8rem;
}

.stat-divider {
    width: 1px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
}

.stats-bg-spiral {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    animation: spin-spiral 80s linear infinite;
}

@media (max-width: 1024px) {
    .stat-number {
        font-size: 5rem;
    }
    .stat-plus {
        font-size: 3rem;
    }
    .stat-divider {
        height: 80px;
    }
}
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 4rem;
        padding: 0 2rem;
    }
    .stat-divider {
        display: none;
    }
    .stats-section {
        padding: 2.5rem 0;
    }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 2.5rem 0;
    background-color: var(--black-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    width: 100%;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 5.5rem;
    line-height: 0.95;
    letter-spacing: 0.01em;
    margin-bottom: 2rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--white-muted);
    margin-bottom: 3rem;
    max-width: 650px;
}

.office-locations {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    width: 100%;
}

.office h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--white-pure);
    margin-bottom: 0.75rem;
}

.office p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--white-muted);
}

.office-email {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white-pure);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
    margin-top: 0.25rem;
}

.office-email:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-item {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-item:hover {
    color: var(--primary-red);
}

/* Glassmorphic Form */
.contact-form-container {
    display: flex;
    align-items: center;
}

.glass-form {
    width: 100%;
    background-color: rgba(18, 18, 18, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white-muted);
}

.form-group input,
.form-group textarea {
    background-color: var(--black-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-pure);
    padding: 1.1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    border-radius: 0;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(232, 0, 14, 0.2);
}

.btn-submit {
    margin-top: 1rem;
    align-self: flex-start;
    width: 100%;
}

.form-status {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: none;
}

.form-status.success {
    display: block;
    color: #00FF66;
}

.form-status.error {
    display: block;
    color: var(--primary-red);
}

@media (max-width: 1024px) {
    .contact-title {
        font-size: 4rem;
    }
}
@media (max-width: 640px) {
    .contact-title {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--black-pure);
    padding: 4rem 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright, .credits {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--white-muted);
}

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

.footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--white-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-links {
        margin-top: 1rem;
    }
}
