:root {
    --primary: #e34e26;
    /* Logo Red-Orange */
    --primary-glow: rgba(227, 78, 38, 0.4);
    --secondary: #008ed5;
    /* Logo Blue */
    --secondary-glow: rgba(0, 142, 213, 0.4);
    --tertiary: #2ecc71;
    /* Brand Green */
    --tertiary-glow: rgba(46, 204, 113, 0.4);
    --bg-deep: #050505;
    /* Deeper, high-end onyx black */
    --bg-surface: #121214;
    /* Solid surface for bento-style cards */
    --bg-card: rgba(18, 18, 20, 0.8);
    --text-main: #f5f5f7;
    /* Apple-style soft white */
    --text-dim: #86868b;
    /* Professional muted text */
    --glass-inner-border: rgba(255, 255, 255, 0.08);
    /* Sophisticated inner glow */
    --glass-outer-border: rgba(0, 0, 0, 0.5);
    --outfit: 'Outfit', sans-serif;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);

    /* Precision Spacing & Typography */
    --padding-page: clamp(2rem, 5vw, 6rem);
    --section-spacing: clamp(1rem, 6vh, 2rem);
    --btn-radius: 8px;
    --card-radius: 20px;
}

/* Base Reset & Typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

ul {
    list-style: none;
    /* Removed default bullets globally */
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--outfit);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Layout Containers */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Premium Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.5s var(--transition);
}

header.scrolled {
    padding: 1rem 0;
    background: rgb(5 5 5 / 29%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-inner-border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.5s var(--transition);
}

header.scrolled .logo img {
    height: 80px;
}

#nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s var(--transition);
    color: #fff;
}

nav ul li a:hover,
nav ul li.has-dropdown:hover>a {
    color: var(--primary);
}

/* Sophisticated Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-surface);
    border: 1px solid var(--glass-inner-border);
    border-radius: 12px;
    min-width: 240px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 15px;
    /* Visual gap within the container */
}

/* Hover Bridge to prevent premature closing */
nav ul li.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    display: block;
    z-index: 999;
}

nav ul li:hover .dropdown,
nav ul li.has-dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    color: var(--text-dim);
    display: block;
    width: 100%;
    transition: all 0.3s var(--transition);
}

.dropdown li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    padding-left: 1.25rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Slider Section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Default for mobile */
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    /* Fallback */
}

/* Mobile: Only show first slide */
.slide:not(:first-child) {
    display: none;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Desktop Scroll Effect */
@media (min-width: 992px) {
    .hero {
        height: 300vh;
        /* 3 slides * 100vh scroll space */
        overflow: visible;
        /* Allow scrolling through it */
    }

    .slide {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        /* Re-enable if hidden by mobile rule */
        opacity: 1;
        /* Ensure visible */
    }

    /* Unhide other slides on desktop */
    .slide:not(:first-child) {
        display: flex;
    }

    /* Stacking Context */
    .slide:nth-child(1) {
        z-index: 1;
    }

    .slide:nth-child(2) {
        z-index: 2;
    }

    .slide:nth-child(3) {
        z-index: 3;
    }

    /* Ensure backgrounds stay fixed or parallax if desired, 
       but for sticky card effect, they just move with the container 
       until they stick. Standard sticky behavior is what we want. */
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-deep) 0%, rgba(10, 11, 13, 0.4) 50%, rgba(10, 11, 13, 0.7) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.slide h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #fff;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-inline: auto;
}

/* Global Button */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #f2af3b;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--primary-glow);
    filter: brightness(1.1);
}

/* Bento Grid Services */
.services {
    padding: var(--section-spacing) 0;
    background: linear-gradient(to bottom, #050505, #0a0a0b);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 320px;
    /*gap: 1.5rem;*/
}

.service-card {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--glass-inner-border);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.5s var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    min-height: 280px;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.2) 100%), var(--card-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    transition: all 0.8s var(--transition);
    z-index: 0;
}

.service-card:hover::before {
    transform: scale(1.1);
    opacity: 0.9;
}

.service-card * {
    position: relative;
    z-index: 2;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    align-self: flex-start;
    transition: all 0.4s var(--transition);
}

.service-card:hover i {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
    text-shadow: 0 0 20px var(--primary-glow);
}

/* Color Accents */
.service-card.accent-blue i {
    color: var(--secondary);
}

.service-card.accent-blue:hover i {
    text-shadow: 0 0 20px var(--secondary-glow);
}

.service-card.accent-green i {
    color: var(--tertiary);
}

.service-card.accent-green:hover i {
    text-shadow: 0 0 20px var(--tertiary-glow);
}

/* Bento Spanning */
.service-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.service-card.wide {
    grid-column: span 2;
}

.service-card.tall {
    grid-row: span 2;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: auto;
    transition: transform 0.5s var(--transition);
}

.service-card:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.4;
}

/* Expertise Bento Grid */
.expertise-section {
    padding: var(--section-spacing) 0;
    background: #000;
}

.section-header {
    margin-bottom: 1rem;
    max-width: 99%;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-header h2 span {
    color: #fff;
    /* Keep distinct if needed */
}

.section-header p {
    color: #e34e26;
    font-weight: 500;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 24px;
    width: 100%;
}

.expertise-right-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expertise-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.expertise-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    isolation: isolate;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-card.tall {
    min-height: 500px;
    height: 100%;
}

.expertise-card.small {
    aspect-ratio: 1/1;
    min-height: 250px;
}

.expertise-card.wide {
    aspect-ratio: 2/1;
    min-height: 250px;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.expertise-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    align-items: flex-start;
}

.expertise-card i {
    font-size: 2rem;
    margin-bottom: auto;
    color: #e34e26;
}

/* Custom Icon Colors */
.expertise-card:nth-child(1) i {
    color: #e34e26;
}

.expertise-row .expertise-card:nth-child(1) i {
    color: #3498db;
}

.expertise-row .expertise-card:nth-child(2) i {
    color: #2ecc71;
}

.expertise-card.wide .icon-box {
    background: #e34e26;
    color: #fff;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 6px;
    margin-bottom: auto;
    font-size: 0.9rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

/* Production Showcase Section Split Layout */
.showcase-section {
    padding: 0;
    /* Remove vertical padding, handled by internal wrapper */
    background: #050505;
    width: 100%;
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50/50 Split */
    width: 100%;
    margin: 0;
    align-items: stretch;
    /* Full height */
    gap: 0;
}

.showcase-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 8vh, 8rem) clamp(2rem, 5vw, 6rem);
    /* Responsive padding */
    background: #050505;
}

.showcase-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
    max-width: 800px;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
}

.showcase-item i {
    font-size: 1.5rem;
    color: #e34e26;
    margin-bottom: 0.5rem;
}

.showcase-item.accent-blue i {
    color: #008ed5;
}

.showcase-item.accent-green i {
    color: #2ecc71;
}

.showcase-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
    letter-spacing: 0.02em;
}

.showcase-item p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.showcase-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    /* Ensure height on desktop */
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
}

.showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Full Bleed */
    display: block;
    transition: transform 1s var(--transition);
}

/*.showcase-visual:hover img {
    transform: scale(1.05);
}
*/
.showcase-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 8, 10, 0.4), transparent);
}

/* Contact Section */
/*.contact {
    padding: var(--section-spacing) 0;
}*/

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--bg-surface);
    padding: 4rem;
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-inner-border);
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 106, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
}

/* Rich Footer */
footer {
    padding: 1rem 0 3rem;
    border-top: 1px solid var(--glass-inner-border);
    background: #050505;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col p {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col.about p {
    margin-top: 1.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: var(--text-dim);
    transition: all 0.3s var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-col.contact p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-col.contact i {
    margin-top: 0.3rem;
    color: var(--primary);
    font-size: 1rem;
}

.footer-map {
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    border: 1px solid var(--glass-inner-border);
    background: var(--bg-surface);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .logo img {
    height: 45px;
}

.copyright {
    color: var(--text-dim);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-inner-border);
        border-radius: 8px;
        color: #fff;
        z-index: 2000;
    }

    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-inner-border);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1rem;
        transition: right 0.5s var(--transition);
        z-index: 1500;
    }

    #nav-menu.active {
        right: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        font-size: 1.1rem;
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s var(--transition);
        pointer-events: all;
        min-width: unset;
    }

    li.has-dropdown.open .dropdown {
        max-height: 500px;
        margin-top: 0.5rem;
    }

    li.has-dropdown>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    li.has-dropdown>a i {
        transition: transform 0.3s var(--transition);
    }

    li.has-dropdown.open>a i {
        transform: rotate(180deg);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(240px, auto);
    }

    .service-card.large,
    .service-card.wide,
    .service-card.tall {
        grid-column: span 2;
        grid-row: span 1;
    }

    .detail-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .detail-content {
        padding: 2.5rem;
        order: 2;
        /* Text after image on mobile? Or verify preference. Usually text first is better for specific sections, or image first. Let's stack naturally */
        order: unset;
    }

    .detail-image {
        aspect-ratio: 16/9;
        /* Wider on mobile */
    }

    .contact-grid {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-visual {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-visual {
        order: -1;
        /* Image on top */
        height: 50vh;
        /* Substantial height on mobile */
        min-height: 300px;
    }

    .showcase-content-wrapper {
        padding: 4rem 2rem;
    }
}


@media (max-width: 630px) {
    .showcase-features {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.large,
    .service-card.wide,
    .service-card.tall {
        grid-column: span 1;
    }
}

/* Grain Overlay for Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.02;
    pointer-events: none;
    z-index: 9999;
}

.service-card {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)), var(--card-bg);
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 20px;
    padding: 30px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: scale(1.03);
}

/* Portfolio Slider */
.portfolio-section {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
    padding: 0;
}

.portfolio-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out, height 0.3s ease;
    width: 100%;
    /* Initial height, will be auto-adjusted by JS */
    min-height: 400px;
}

.portfolio-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.portfolio-slide img {
    width: 100%;
    height: auto;
    /*max-height: 90vh;*/
    /* Prevent taking up too vertical space */
    object-fit: contain;
    display: block;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--primary);
    color: #000;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .portfolio-slide img {
        max-height: 60vh;
    }
}

/* Art Department Spotlight Section (Dark Card Aesthetic) */
.spotlight-section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Remove top padding for stacked spotlights to avoid huge gaps */
.spotlight-section+.spotlight-section {
    padding-top: 0;
}

.spotlight-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* The Spotlight Text Card */
.spotlight-card {
    background: #0e0e0e;
    /* Dark Surface Card */
    padding: 4rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
}

.spotlight-card h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}

.spotlight-card h2 span {
    color: #e34e26;
    /* Signature Orange */
    display: block;
}

.spotlight-card p {
    font-size: 1.05rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.spotlight-list {
    margin-top: 2rem;
}

.spotlight-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: #ccc;
    font-size: 1.1rem;
    font-weight: 500;
}

.spotlight-list i {
    color: #e34e26;
    font-size: 1rem;
    background: rgba(227, 78, 38, 0.1);
    /* Subtle orange bg */
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.spotlight-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.spotlight-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.spotlight-section:hover .spotlight-image-wrapper img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .spotlight-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .spotlight-card {
        padding: 2.5rem;
        order: 2;
        /* Text below image on mobile */
    }

    .spotlight-image-wrapper {
        aspect-ratio: 16/9;
    }
}

/* Bento Grid Responsive Rules */
@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card.tall {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .expertise-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .expertise-card.small {
        aspect-ratio: 16/9;
        /* Wider on mobile for better visibility */
        min-height: 200px;
    }

    .expertise-card.wide {
        aspect-ratio: 16/9;
    }
}

/* Client Logo Slider (Infinite Marquee) */
.clients-section {
    padding: var(--section-spacing) 0;
    background: #050505;
    /* Very dark background for contrast */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.clients-section .section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.clients-section .section-header p {
    color: #666;
    margin-top: 0.5rem;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 5rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.client-logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    max-width: 150px;
}

/* Text fallback style if image fails */
.client-logo {
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    white-space: nowrap;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .logo-track {
        gap: 3rem;
        animation-duration: 20s;
        /* Faster on mobile */
    }

    .client-logo img {
        height: 80px;
    }
}

.services {
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.company-name {
  text-align: center;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-box {
  padding: 35px 35px;
  text-align: center;
  background: #fff;
}

.service-box.gray {
  background: #e0e0e0;
}

.icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.service-box h3 {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: system-ui;
}

.service-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 Mobile */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.grid-item {
  position: relative;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover zoom effect */
.grid-item:hover img {
  transform: scale(1.08);
}

/* Overlay text */
.overlay-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* Tablet */
@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.what-we-do {
  width: 100%;
}

.wwd-container {
  display: flex;
  min-height: 500px;
}

.wwd-left {
  width: 60%;
  padding: 68px;
  background: #7c7c7c;
}

.wwd-left h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.wwd-left ul {
  list-style: none;
  padding: 0;
}

.wwd-left ul li {
  padding: 12px 0;
  font-size: 18px;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  transition: 0.3s;
}

.wwd-left ul li:hover,
.wwd-left ul li.active {
  color: #f3b83c;
  font-weight: bold;
}

.btn-touch {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 25px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
}

.wwd-right {
  width: 50%;
}

.wwd-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media(max-width: 768px) {
  .wwd-container {
    flex-direction: column;
  }

  .wwd-left, .wwd-right {
    width: 100%;
  }

  .wwd-right img {
    height: 300px;
  }
}


.about-section{
  width:100%;
}

.about-wrapper{
  display:flex;
  min-height:600px;
}

/* Left Image */
.about-image{
  width:50%;
}
.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Right Content */
.about-content{
  width:50%;
  background:#e0e0e0; /* change color if needed */
  color:#000;
  padding:80px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.about-small-title{
  font-size:18px;
  margin-bottom:20px;
  opacity:0.8;
}

.about-content h2{
  font-size:40px;
  line-height:1.3;
  margin-bottom:20px;
}

.about-content p{
  font-size:18px;
  line-height:1.7;
  margin-bottom:30px;
}

.about-link{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  display:inline-flex;
  align-items:center;
}
.about-link::before{
  content:"✔";
  margin-right:10px;
}

/* Responsive */
@media(max-width:900px){
  .about-wrapper{
    flex-direction:column;
  }

  .about-image,
  .about-content{
    width:100%;
  }

  .about-content{
    padding:40px 20px;
  }

  .about-content h2{
    font-size:26px;
  }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .slide-content h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 22px;
    }

    .slide-content p {
        font-size: 12px;
    }
}

/* =========================================
   INNER PAGE REDESIGN & GALLERY STYLES
   ========================================= */

/* Inner Page Hero */
.inner-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-bottom: 0; 
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.inner-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.inner-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Page Section Container */
.page-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--bg-deep);
}

.page-section.alt-bg {
    background: var(--bg-surface);
}

/* Content Grid (Text + Image) */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.content-text p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.content-image {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

/* Dynamic Gallery Grid */
.gallery-container {
    padding: 0 0 4rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    background: #222;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Page Specifics */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-inner-border);
}

.contact-details h3 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dim);
    font-size: 1.1rem;
}

.contact-row i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-image {
        order: -1; /* Image first on mobile usually looks better */
    }
    
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

.our-work {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: #000;
}

.work-wrapper {
    display: flex;
    width: max-content;
    animation: scrollWork 117s linear infinite;
}

.work-card {
    min-width: 300px;
    margin-right: 20px;
}

.work-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

/* Animation */
@keyframes scrollWork {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .work-card {
        min-width: 220px;
    }

    .work-img img {
        height: 250px;
    }
}

.work-wrapper:hover {
    animation-play-state: paused;
}

.recent-btn {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(90deg, #f5a623, #ffcc33);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  max-width: 40%;
  text-align: center;
}

/* Hover effect */
.recent-btn:hover {
  background: linear-gradient(90deg, #ffcc33, #f5a623);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Tablet */
@media (max-width: 992px) {
  .recent-btn {
    max-width: 60%;
    padding: 12px 30px;
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .recent-btn {
    max-width: 93%;
    padding: 12px 20px;
    font-size: 14px;
  }
}

.main-footer {
  background: #0f131a;
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  max-width: 140px;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.footer-menu a:hover {
  color: #ff2c2c;
}

.footer-social a {
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #1a1f29;
  color: #fff;
  margin-left: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ff2c2c;
}

.footer-mid {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-mid a {
  color: #bbb;
  margin: 0 20px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.footer-mid a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 15px 10px;
  font-size: 12px;
  color: #aaa;
}

/* RESPONSIVE */
@media(max-width:768px){
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-menu {
    margin: 15px 0;
  }

  .footer-menu a {
    display: block;
    margin: 8px 0;
  }

  .footer-social {
    margin-top: 10px;
  }

  .footer-mid a {
    display: block;
    margin: 8px 0;
  }
}


.video-thumb {
  position: relative;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  color: white;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: 0.3s;
}

.video-thumb:hover .play-btn {
  opacity: 1;
}

/* POPUP */
.video-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-popup-inner {
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  position: relative;
}

.video-popup iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.close-popup {
  position: absolute;
  top: -35px;
  right: 0;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE */
@media(max-width:768px){
  .video-popup-inner{
    max-width: 95%;
  }
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 40px;
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .portfolio-gallery {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .portfolio-gallery {
    grid-template-columns: 1fr;
  }
}

/* LIGHTBOX */
.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

/* CONTROLS */
.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.nav-btn {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

