/* ==========================================================================
   Variables & Reset
   ========================================================================== */
   :root {
    /* Colors */
    --clr-bg-deep: #0a0a0c;
    --clr-bg-dark: #121215;
    --clr-bg-card: #1c1c21;
    --clr-text-main: #f0f0f5;
    --clr-text-muted: #a0a0ab;
    --clr-accent: #e50914; /* Red accent inspired by logo */
    --clr-accent-hover: #ff1c27;
    --clr-border: rgba(255, 255, 255, 0.08);
    --clr-glass: rgba(20, 20, 25, 0.7);
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Variables */
    --nav-height: 80px;
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--clr-bg-deep);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
    position: relative;
}

.bg-darker {
    background-color: var(--clr-bg-dark);
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.mt-8 { margin-top: 5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--clr-accent);
    color: white;
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4);
}

.btn-primary:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.6);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: var(--clr-glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--clr-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo construction */
.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    position: relative;
}

.logo-cam {
    position: relative;
    width: 32px;
    text-decoration: none;
    z-index: 1000;
}

.logo-img {
    height: 48px; /* High-res scale */
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

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

/* Preloader Image specific */
.preloader-img {
    height: 80px;
    animation: heartbeat 2s infinite ease-in-out;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-main);
    opacity: 0.8;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    transition: var(--transition-fast);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img/vautex_hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    transform: scale(1.05); /* Slight scale for parallax trick later */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.70);
    z-index: 2;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 4;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    font-family: var(--font-secondary);
    font-style: italic;
    font-weight: 400;
    color: var(--clr-accent);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--clr-text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-indicator p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    margin-top: 6px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--clr-accent);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--clr-text-muted);
    margin-top: 15px;
    font-size: 1.1rem;
}

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

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--clr-text-muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.mv-card {
    background: var(--clr-bg-card);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    transition: var(--transition-smooth);
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-icon {
    font-size: 2rem;
    color: var(--clr-accent);
    margin-bottom: 15px;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.mv-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.value-item {
    background: var(--clr-bg-card);
    padding: 25px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--clr-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--clr-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(28, 28, 33, 0.8);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 10px;
    right: 15px;
}

.value-item h4 {
    margin-bottom: 10px;
    color: white;
}

.value-item p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-category {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.15);
}

.category-header {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.category-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.bg-video {
    background-image: url('../assets/img/vautex_video_prod.png');
}

.bg-photo {
    background-image: url('../assets/img/vautex_photography.png');
}

.service-category:hover .category-img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--clr-bg-card) 0%, rgba(28,28,33,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.category-overlay h3 {
    font-size: 2rem;
    z-index: 2;
}

.class-icon-large {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.category-content {
    padding: 30px;
    flex-grow: 1;
}

.category-desc {
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--clr-accent);
    margin-top: 4px;
}

.service-list li strong {
    color: white;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/img/vautex_hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(80%) brightness(0.2);
    z-index: -2;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--clr-bg-deep) 0%, rgba(10,10,12,0.5) 50%, var(--clr-bg-deep) 100%);
    z-index: -1;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Footer & Contact
   ========================================================================== */
.footer {
    padding: 80px 0 30px;
    background: var(--clr-bg-dark);
}

.border-top {
    border-top: 1px solid var(--clr-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about p {
    color: var(--clr-text-muted);
    max-width: 300px;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--clr-text-muted);
}

.contact-list i {
    color: var(--clr-accent);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-list a:hover {
    color: var(--clr-accent);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid var(--clr-border);
}

.social-icon:hover {
    background: var(--clr-accent);
    transform: translateY(-3px);
    border-color: var(--clr-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   Animations & Reveal Classes
   ========================================================================== */
/* Initial Load Animations */
.animate-on-load,
.animate-on-load-delay,
.animate-on-load-delay-2 {
    opacity: 0;
    transform: translateY(30px);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }

/* ==========================================================================
   Phase 2: Ultra Premium Features
   ========================================================================== */
/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--clr-bg-deep);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preload-cam {
    transform: scale(1.5);
    margin: 0 10px;
    border-color: var(--clr-text-muted);
}

.blinking {
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% { opacity: 0.2; box-shadow: 0 0 0 transparent; }
    100% { opacity: 1; box-shadow: 0 0 10px var(--clr-accent); }
}

.loading-bar {
    width: 150px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.loading-progress {
    position: absolute;
    top: 0; left: 0; height: 100%;
    background: var(--clr-accent);
    width: 0%;
    transition: width 0.3s ease;
}

/* Custom Cursor */
body {
    cursor: none; /* Hide default cursor */
}

/* Make sure links don't show native pointer */
a, button, .hover-target {
    cursor: none;
}

.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--clr-accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.2s, height 0.2s, border-color 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: transparent;
}

.cursor-follower.hovering {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-color: transparent;
    backdrop-filter: blur(4px);
}

.cursor-follower.hover-play {
    width: 80px;
    height: 80px;
    background: rgba(229, 9, 20, 0.8);
    border-color: transparent;
    color: white;
}
.cursor-follower.hover-play::after {
    content: 'PLAY';
}

.cursor-follower.hover-view {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-color: transparent;
    color: black;
}
.cursor-follower.hover-view::after {
    content: 'VER';
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(10,10,12,0.95);
    z-index: 9998;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2rem;
    color: white;
    z-index: 9999;
}

.video-wrapper {
    width: 80vw;
    height: 45vw; /* 16:9 aspect ratio appx */
    max-height: 80vh;
    background: #000;
    border: 1px solid var(--clr-border);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    position: relative;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay-text {
    color: var(--clr-text-muted);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Masonry Grid (Portfolio) */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.masonry-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    grid-column: span 12;
}

.masonry-item.large {
    grid-column: span 8;
    grid-row: span 2;
}

.masonry-item.tall {
    grid-column: span 4;
    grid-row: span 2;
}

.masonry-item.wide {
    grid-column: span 12;
    grid-row: span 1;
}

.project-img {
    position: absolute;
    inset: -10%; /* Extra space for parallax */
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-img.bg-comm { background-image: url('../assets/img/vautex_comm.png'); }
.project-img.bg-music { background-image: url('../assets/img/vautex_music.png'); }
.project-img.bg-wedding { background-image: url('../assets/img/vautex_wedding.png'); }

.masonry-item:hover .project-img {
    transform: scale(1.05); /* Slight scale to contrast with parallax */
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,10,12,0.9) 0%, rgba(10,10,12,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.masonry-item:hover .project-overlay {
    opacity: 1;
}

.project-category {
    color: var(--clr-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-title {
    font-size: 2rem;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.masonry-item:hover .project-category,
.masonry-item:hover .project-title {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--clr-border);
    color: white;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.05);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: var(--clr-bg-deep);
        flex-direction: column;
        padding: 40px;
        transition: var(--transition-smooth);
    }
    
    .nav.nav-open {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }

    .about-grid, .services-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* ==========================================================================
   World-Class Additions (Video, Arsenal, Process, Testimonial)
   ========================================================================== */

/* Hero Video */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
}

/* Arsenal Grid */
.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.arsenal-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--clr-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.arsenal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.15);
}

.arsenal-img-wrapper {
    height: 250px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.arsenal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.arsenal-card:hover .arsenal-img {
    transform: scale(1.05);
}

.arsenal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--clr-bg-card) 0%, transparent 100%);
}

.arsenal-info {
    padding: 30px;
}

.arsenal-info h3 {
    font-size: 1.5rem;
    color: var(--clr-text-main);
    margin-bottom: 15px;
}

.arsenal-info p {
    color: var(--clr-text-muted);
}

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

/* Process Timeline (Horizontal flex) */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: var(--clr-border);
    z-index: 0;
}

.process-step {
    flex: 1;
    background: var(--clr-bg-deep);
    padding: 30px;
    border-radius: var(--radius-md);
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.process-step:hover {
    border-color: var(--clr-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.step-number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition-fast);
}

.process-step:hover .step-number {
    color: var(--clr-accent);
    -webkit-text-stroke: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

@media (max-width: 900px) {
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    .process-timeline::before {
        display: none;
    }
    .process-step {
        width: 100%;
        max-width: 500px;
        text-align: center;
    }
}

/* Testimonial Section */
.testimonial {
    background: var(--clr-bg-card);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.quote-icon {
    font-size: 3rem;
    color: var(--clr-accent);
    opacity: 0.3;
    margin-bottom: 30px;
}

.testimonial-text {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: var(--clr-text-main);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    letter-spacing: 1px;
}

.testimonial-author strong {
    color: var(--clr-text-main);
}

@media (max-width: 768px) {
    .testimonial-text {
        font-size: 1.6rem;
    }
}


/* Split Services Layout */
.services-split.section {
    padding: 0;
}
.split-block {
    display: flex;
    min-height: 85vh;
}
.split-block.reverse {
    flex-direction: row-reverse;
}
.split-img-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.split-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1);
}
.split-block:hover .split-img {
    transform: scale(1.08); /* Slow premium zoom */
}
.split-content {
    flex: 1;
    padding: 8% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--clr-bg-deep);
}
.split-block.reverse .split-content {
    background: var(--clr-bg-card); /* Alternate background */
}
.split-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.split-header h2 {
    font-size: 3.5rem;
    font-family: var(--font-secondary);
    line-height: 1.1;
}
.accent-color {
    color: var(--clr-accent);
    font-size: 2.5rem;
}
.lead-text {
    font-size: 1.3rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}
.large-list {
    list-style: none;
    padding: 0;
}
.large-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--clr-text-main);
}
.large-list li i {
    color: var(--clr-accent);
    margin-top: 5px;
}

@media (max-width: 992px) {
    .split-block, .split-block.reverse {
        flex-direction: column;
    }
    .split-img-container {
        min-height: 400px;
    }
    .split-header h2 {
        font-size: 2.5rem;
    }
    .split-content {
        padding: 60px 5%;
    }
}

/* ==========================================================================
   Supremo Update: Services Cards, Vertical Method & Cinematic Portfolio
   ========================================================================== */


/* 1. Services Editorial Grid */
.services-editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-ed-card {
    background: var(--clr-bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-ed-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 2px;
    background: var(--clr-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.service-ed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0, 0.5);
    background: var(--clr-bg-card);
    border-color: rgba(229, 9, 20, 0.15);
}

.service-ed-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.ed-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.05);
    border: 1px solid rgba(229, 9, 20, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: var(--clr-accent);
    transition: var(--transition-smooth);
}

.service-ed-card:hover .ed-icon-wrapper {
    background: var(--clr-accent);
    color: #fff;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
    transform: rotateY(180deg);
}

.service-ed-card:hover .ed-icon-wrapper i {
    transform: rotateY(-180deg); /* counter rotate the icon so it stays readable */
}
.ed-icon-wrapper i {
    transition: var(--transition-smooth);
}


.ed-content h3 {
    font-size: 1.6rem;
    font-family: var(--font-secondary);
    color: var(--clr-text-main);
    margin-bottom: 15px;
    padding-top: 10px;
}

.ed-content p {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

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

@media (max-width: 600px) {
    .service-ed-card {
        flex-direction: column;
        padding: 40px 25px;
        gap: 20px;
    }
}

/* 2. Vertical Methodology */
.process-vertical {
    padding: 100px 0;
    background: var(--clr-bg-card);
}

.v-steps-wrapper {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 0 5%;
}

.v-step {
    position: relative;
    padding: 50px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.v-step:last-child {
    border-bottom: none;
}

.v-step-num {
    font-family: var(--font-secondary);
    font-size: 10rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.05);
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    transition: var(--transition-smooth);
    user-select: none;
}

.v-step:hover .v-step-num {
    -webkit-text-stroke: 2px rgba(229, 9, 20, 0.6);
    color: rgba(229, 9, 20, 0.05);
}

.v-step-content {
    position: relative;
    z-index: 1;
    margin-left: 200px;
}

.v-step-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--clr-text-main);
}

.v-step-content p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .v-step-num {
        font-size: 6rem;
        top: 0;
        transform: none;
        left: 0;
    }
    .v-step-content {
        margin-left: 0;
        margin-top: 60px;
    }
}

/* 3. Cinematic Portfolio Showcase */
.portfolio-cinematic {
    padding-bottom: 0; 
}
.c-showcase-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-top: 40px;
}

.c-project {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.c-project-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.c-project:hover .c-project-bg {
    transform: scale(1.05);
}

.c-project-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    transition: background 0.5s ease;
}

.c-project:hover .c-project-overlay {
    background: rgba(0,0,0,0.6);
}

.c-project-meta {
    max-width: 600px;
    transition: transform 0.5s ease;
}

.c-project:hover .c-project-meta {
    transform: translateX(20px);
}

.c-tag {
    color: var(--clr-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.c-title {
    font-size: 4rem;
    font-family: var(--font-secondary);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1;
}

.c-desc {
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.c-project:hover .c-desc {
    opacity: 1;
}

.c-play-node {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
}

.c-project:hover .c-play-node {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .c-project {
        height: 50vh;
        min-height: 400px;
    }
    .c-project-overlay {
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        padding-bottom: 40px;
    }
    .c-title {
        font-size: 2.5rem;
    }
    .c-play-node {
        display: none;
    }
    .c-project:hover .c-project-meta {
        transform: none;
    }
}


/* ==========================================================================
   CAMERA VIEWFINDER OVERLAY
   ========================================================================== */
.viewfinder {
    position: absolute;
    top: 3%; left: 3%; width: 94%; height: 94%;
    z-index: 3;
    pointer-events: none; /* CRITICAL: ensures buttons underneath are clickable */
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Courier New', Courier, monospace;
}

.vf-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}
.vf-corner.top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
.vf-corner.top-right { top: 0; right: 0; border-left: none; border-bottom: none; }
.vf-corner.bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; }
.vf-corner.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

.vf-center-focus {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 25vw;
    height: 25vh;
    opacity: 0.25;
}
.vf-focus-bracket {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 60px;
    border: 3px solid white;
}
.vf-focus-bracket.left { left: 0; border-right: none; }
.vf-focus-bracket.right { right: 0; border-left: none; }
.vf-center-dot {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 6px; height: 6px;
    background: transparent;
    border: 1px solid white;
    border-radius: 50%;
}

.vf-hud {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
}
.vf-hud.vf-top { top: 30px; align-items: center; }
.vf-hud.vf-bottom { bottom: 30px; justify-content: center; gap: 50px; }

.vf-rec {
    color: #e50914;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
}
.rec-dot {
    width: 14px; height: 14px;
    background: #e50914;
    border-radius: 50%;
    animation: blinkRec 1.2s infinite alternate;
}

@keyframes blinkRec {
    0% { opacity: 1; box-shadow: 0 0 10px #e50914; }
    100% { opacity: 0.1; box-shadow: none; }
}

@media (max-width: 768px) {
    .viewfinder { top: 2%; left: 2%; width: 96%; height: 96%; }
    .vf-hud { padding: 0 10px; }
    .vf-hud.vf-bottom { font-size: 0.8rem; gap: 20px; }
    .vf-corner { width: 40px; height: 40px; }
    .vf-center-focus { width: 60vw; height: 15vh; }
}

@media (max-width: 900px) {
    .c-showcase-wrapper {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Lead Modal */
.wa-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.wa-modal-overlay.active {
    opacity: 1; visibility: visible;
}

.wa-modal-box {
    background: var(--clr-bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0,0,0, 0.8);
    width: 90%; max-width: 550px;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.wa-modal-overlay.active .wa-modal-box {
    transform: translateY(0) scale(1);
}

.wa-close-btn {
    position: absolute;
    top: 25px; right: 25px;
    background: transparent;
    color: var(--clr-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.wa-close-btn:hover {
    color: var(--clr-accent);
    transform: rotate(90deg);
}

.wa-modal-header h3 {
    font-family: var(--font-secondary);
    font-size: 2rem; margin-bottom: 15px; color: #fff;
}
.wa-modal-header p {
    color: var(--clr-text-muted); font-size: 1rem; line-height: 1.5; margin-bottom: 30px;
}

.wa-form { display: flex; flex-direction: column; gap: 20px; }
.wa-input-group { display: flex; flex-direction: column; text-align: left; }
.wa-input-group label {
    font-size: 0.9rem; font-weight: 500; color: #aaa; margin-bottom: 8px; letter-spacing: 0.5px;
}
.wa-input-group input, .wa-input-group select, .wa-input-group textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 15px 20px;
    color: #fff;
    font-size: 1rem; font-family: var(--font-primary);
    transition: var(--transition-fast);
}
.wa-input-group input:focus, .wa-input-group select:focus, .wa-input-group textarea:focus {
    outline: none; border-color: var(--clr-accent); background: rgba(0,0,0,0.5);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.2);
}
.wa-input-group option { background: var(--clr-bg-main); color: #fff; }

.btn-wa-submit {
    background: #25D366; /* WhatsApp Green */
    color: #000; font-weight: 600;
    font-size: 1.1rem; padding: 18px;
    border-radius: var(--radius-md);
    margin-top: 10px; cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-wa-submit:hover {
    background: #20b858; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Testimonial Slider System */
.testimonial-slider-container {
    width: 100%;
    margin-top: 20px;
    position: relative;
    padding-bottom: 30px;
}
.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 5vw 40px 5vw;
    scrollbar-width: none; /* Firefox */
}
.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonial-item {
    scroll-snap-align: center;
    flex: 0 0 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255, 0.05);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    text-align: left;
    position: relative;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

@media (min-width: 768px) {
    .testimonial-item {
        flex: 0 0 calc(50vw - 40px);
    }
}
@media (min-width: 1200px) {
    .testimonial-item {
        flex: 0 0 500px;
    }
    .testimonial-slider {
        padding-left: calc((100vw - 1200px) / 2);
    }
}

.testimonial-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border-color: rgba(229, 9, 20, 0.3);
}

.testimonial-item .quote-icon {
    font-size: 2.5rem;
    color: var(--clr-accent);
    opacity: 0.3;
    position: absolute;
    top: 40px; right: 40px;
}

.testimonial-item h3 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--clr-text-main);
    margin-bottom: 30px;
    z-index: 1; position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(229,9,20, 0.1);
    color: var(--clr-accent);
    display: flex; justify-content: center; align-items: center;
    font-size: 1.2rem;
}
.author-details {
    display: flex; flex-direction: column;
}
.author-details strong {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    color: #fff;
    letter-spacing: 0.5px;
}
.author-details span {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}
.slider-hint {
    text-align: center;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
}
