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

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    background: #ffffff;
}

/* Remove all rounded corners globally */
* {
    border-radius: 0 !important;
    box-sizing: border-box;
}

/* Global Red Accent Color */
:root {
    --accent-red: #dc2626;
    --accent-red-dark: #b91c1c;
    --accent-red-light: #fef2f2;
    --section-spacing: 8rem;
    --section-spacing-mobile: 4rem;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}



/* Header Styles */
.header {
    background-color: #000;
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    font-family: var(--font-body);
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-red);
}

.nav-link.active {
    color: var(--accent-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-red);
}



.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Mobile menu active state */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile navigation */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #000;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid #333;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background-color: white;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--section-spacing) 0;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.hero.animate {
    opacity: 1;
    transform: translateY(0);
}



.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.02) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}





.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    padding-right: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 0.9;
    margin-bottom: 2rem;
    color: black;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: black;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent-red);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-button {
    font-family: var(--font-body);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid var(--accent-red);
    background: white;
    color: var(--accent-red);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.hero-button:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.hero-button.secondary {
    border: 3px solid black;
    background: white;
    color: black;
}

.hero-button.secondary:hover {
    background: black;
    color: white;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.poster-carousel {
    display: flex;
    gap: 3rem; /* Increased gap between slides */
    transition: transform 0.5s ease;
    width: max-content;
    cursor: grab;
    user-select: none;
    padding-left: 2rem; /* Add left padding to start from left edge */
    animation: infiniteScroll 30s linear infinite;
    max-width: none;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.poster-carousel:active {
    cursor: grabbing;
}

.poster {
    flex-shrink: 0;
    height: calc(100vh - 144px); /* Full screen height minus header (80px) and hero padding (2*32px) */
    width: calc((100vh - 144px) * (1080 / 1920)); /* Maintain 1080x1920 aspect ratio */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.poster-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.poster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(100%); /* Black and white by default */
}

/* Desktop hover effects only */
@media (min-width: 769px) {
    .poster:hover .poster-overlay {
        opacity: 1;
    }
    
    .poster:hover .poster-image img {
        transform: scale(1.05);
        filter: grayscale(0%); /* Full color on hover */
    }
    
    .poster:hover {
        transform: scale(1.02);
    }
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.5s ease;
    color: white;
    text-align: center;
    padding: 3rem;
    backdrop-filter: blur(2px);
}

/* Desktop hover effects only */
@media (min-width: 769px) {
    .poster:hover .poster-overlay {
        opacity: 1;
    }
    
    .poster:hover .poster-image img {
        transform: scale(1.05);
    }
    
    .poster:hover {
        transform: scale(1.02);
    }
}

.poster-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.script-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: none;
    letter-spacing: 0;
}

.poster-subtitle {
    font-size: 1.1rem;
    color: #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.poster-label {
    display: none;
    text-align: center;
    margin-top: 1rem;
    padding: 0 1rem;
}

.poster-label h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.poster-label p {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Remove active state animation - all posters stay the same size */

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 3px;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .poster {
        height: calc(100vh - 144px);
        width: calc((100vh - 144px) * (1080 / 1920));
    }
    
    .poster-title {
        font-size: 2rem;
    }
    
    .poster-carousel {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: var(--section-spacing-mobile) 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-features {
        gap: 0.8rem;
    }
    
    .feature {
        font-size: 1rem;
    }
    
    .hero-cta {
        gap: 1rem;
    }
    
    .hero-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .poster-carousel {
        gap: 2rem;
        padding-left: 1.5rem;
    }
    
    .poster {
        height: calc(100vh - 144px);
        width: calc((100vh - 144px) * (1080 / 1920));
    }
    
    .poster-overlay {
        display: none;
    }
    
    .poster-title {
        font-size: 1.8rem;
    }
    
    .poster-subtitle {
        font-size: 1rem;
    }
    
    .poster-label {
        display: block;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 55px;
    }
    
    .hero {
        padding: var(--section-spacing-mobile) 0;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.7rem;
        letter-spacing: 1px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-features {
        gap: 0.6rem;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-button {
        width: 100%;
        max-width: 200px;
    }
    
    .poster-carousel {
        gap: 1.5rem;
        padding-left: 1rem;
    }
    
    .poster {
        height: calc(100vh - 144px);
        width: calc((100vh - 144px) * (1080 / 1920));
    }
    
    .poster-title {
        font-size: 1.5rem;
    }
    
    .poster-subtitle {
        font-size: 0.9rem;
    }
    
    .poster-label h3 {
        font-size: 1rem;
    }
    
    .poster-label p {
        font-size: 0.8rem;
    }
}

/* Services Section */
.services {
    background-color: #f8f8f8;
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.services.animate {
    opacity: 1;
    transform: translateY(0);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(220, 38, 38, 0.02) 40%, rgba(220, 38, 38, 0.02) 60%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(0, 0, 0, 0.01) 40%, rgba(0, 0, 0, 0.01) 60%, transparent 60%);
    background-size: 100px 100px, 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.services-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 6rem;
    color: black;
    line-height: 0.9;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--accent-red);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: transparent;
    border: none;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
}





.service-illustration {
    position: relative;
    height: 120px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* 5X Digital Illustration - Simplified */
.digital-screen {
    width: 120px;
    height: 80px;
    border: 3px solid black;
    position: relative;
    background: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-content {
    font-size: 24px;
    font-weight: 900;
    color: black;
    text-align: center;
    line-height: 1;
}

/* Professional Service Icons */
.service-icon-simple {
    width: 120px;
    height: 80px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-align: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-icon-simple svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-simple {
    background: transparent;
    color: var(--accent-red);
}

.service-card:hover .service-icon-simple svg {
    stroke: var(--accent-red);
}

/* Text-based service icon */
.service-text-icon {
    font-size: 32px;
    font-weight: 900;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

/* Outdoor Illustration */
.outdoor-sky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    overflow: hidden;
}

.cloud {
    position: absolute;
    width: 20px;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    animation: cloudFloat 8s infinite linear;
}

.cloud:nth-child(1) {
    top: 10px;
    left: -20px;
    animation-delay: 0s;
}

.cloud:nth-child(2) {
    top: 20px;
    left: -20px;
    animation-delay: 3s;
}

.cloud:nth-child(3) {
    top: 15px;
    left: -20px;
    animation-delay: 6s;
}

@keyframes cloudFloat {
    0% { left: -20px; }
    100% { left: 100%; }
}

.billboard {
    position: relative;
    width: 100px;
    height: 60px;
    border: 3px solid black;
    background: white;
    margin-bottom: 20px;
    margin-top: 40px;
}

.billboard-content {
    padding: 8px;
    text-align: center;
}

.ad-text {
    font-size: 10px;
    font-weight: bold;
    margin: 2px 0;
    animation: adGlow 3s infinite;
}

@keyframes adGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.billboard-poles {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
}

.pole {
    width: 3px;
    height: 20px;
    background: black;
}

.outdoor-elements {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
}

.building {
    width: 15px;
    height: 30px;
    background: black;
    animation: buildingGrow 2s ease-out;
}

.building:nth-child(1) { animation-delay: 0s; }
.building:nth-child(2) { animation-delay: 0.3s; }
.building:nth-child(3) { animation-delay: 0.6s; }

@keyframes buildingGrow {
    0% { height: 0; }
    100% { height: 30px; }
}

.road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: #333;
    border-top: 2px solid #666;
}

/* Broadcast Illustration */
.radio-tower {
    position: relative;
    width: 20px;
    height: 80px;
    margin: 0 auto;
}

.tower-base {
    width: 20px;
    height: 20px;
    background: black;
    position: absolute;
    bottom: 0;
}

.tower-mast {
    width: 4px;
    height: 50px;
    background: black;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.tower-top {
    width: 30px;
    height: 10px;
    background: black;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sound-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave {
    width: 60px;
    height: 12px;
    background: black;
    margin: 8px 0;
    animation: waveExpand 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wave-text {
    color: white;
    font-size: 8px;
    font-weight: bold;
    animation: waveTextPulse 2s infinite;
}

.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: 0.3s; }
.wave:nth-child(3) { animation-delay: 0.6s; }

.wave:nth-child(1) .wave-text { animation-delay: 0s; }
.wave:nth-child(2) .wave-text { animation-delay: 0.3s; }
.wave:nth-child(3) .wave-text { animation-delay: 0.6s; }

@keyframes waveExpand {
    0% { width: 0; opacity: 0; }
    50% { width: 60px; opacity: 1; }
    100% { width: 0; opacity: 0; }
}

@keyframes waveTextPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.broadcast-signal {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.signal-ring {
    width: 40px;
    height: 40px;
    border: 2px solid black;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: -20px;
    animation: signalPulse 2s infinite;
}

.signal-ring:nth-child(1) { animation-delay: 0s; }
.signal-ring:nth-child(2) { animation-delay: 0.7s; }
.signal-ring:nth-child(3) { animation-delay: 1.4s; }

@keyframes signalPulse {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Podcast Illustration */
.podcast-setup {
    position: relative;
    width: 100px;
    height: 80px;
    margin: 0 auto;
}

.microphone {
    position: relative;
    width: 30px;
    height: 60px;
    margin: 0 auto;
}

.mic-base {
    width: 30px;
    height: 15px;
    background: black;
    position: absolute;
    bottom: 0;
}

.mic-body {
    width: 20px;
    height: 35px;
    background: black;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
}

.mic-top {
    width: 8px;
    height: 10px;
    background: black;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.podcast-setup .sound-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.podcast-setup .wave {
    width: 80px;
    height: 8px;
    background: black;
    margin: 6px 0;
    animation: podcastWave 2.5s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.podcast-setup .wave-text {
    color: white;
    font-size: 7px;
    font-weight: bold;
    animation: podcastTextPulse 2.5s infinite;
}

.podcast-setup .wave:nth-child(1) { animation-delay: 0s; }
.podcast-setup .wave:nth-child(2) { animation-delay: 0.4s; }
.podcast-setup .wave:nth-child(3) { animation-delay: 0.8s; }

.podcast-setup .wave:nth-child(1) .wave-text { animation-delay: 0s; }
.podcast-setup .wave:nth-child(2) .wave-text { animation-delay: 0.4s; }
.podcast-setup .wave:nth-child(3) .wave-text { animation-delay: 0.8s; }

@keyframes podcastWave {
    0% { width: 0; opacity: 0; }
    50% { width: 80px; opacity: 1; }
    100% { width: 0; opacity: 0; }
}

@keyframes podcastTextPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.podcast-signal {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.podcast-signal .signal-ring {
    width: 30px;
    height: 30px;
    border: 2px solid black;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    left: -15px;
    animation: podcastSignalPulse 2.5s infinite;
}

.podcast-signal .signal-ring:nth-child(1) { animation-delay: 0s; }
.podcast-signal .signal-ring:nth-child(2) { animation-delay: 0.8s; }
.podcast-signal .signal-ring:nth-child(3) { animation-delay: 1.6s; }

@keyframes podcastSignalPulse {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}



/* Cinema Illustration */
.cinema-screen {
    position: relative;
    width: 140px;
    height: 80px;
    margin: 0 auto;
}

.screen-border {
    width: 100%;
    height: 100%;
    border: 4px solid black;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.screen-content {
    padding: 10px;
    height: 100%;
}

.movie-frame {
    width: 100%;
    height: 100%;
    background: black;
    position: relative;
    overflow: hidden;
}

.cinema-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
    z-index: 2;
    animation: cinemaBrand 4s infinite;
}

@keyframes cinemaBrand {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.film-strip {
    display: flex;
    height: 100%;
    animation: filmScroll 3s linear infinite;
}

.frame {
    width: 20px;
    height: 100%;
    background: white;
    margin-right: 2px;
    flex-shrink: 0;
}

@keyframes filmScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-22px); }
}

.cinema-elements {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
}

.projector-light {
    width: 4px;
    height: 20px;
    background: black;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.seats {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.seat {
    width: 12px;
    height: 8px;
    background: black;
    border-radius: 2px 2px 0 0;
}

/* Print Illustration */
.print-press {
    position: relative;
    width: 80px;
    height: 60px;
    margin: 0 auto 20px;
}

.press-base {
    width: 80px;
    height: 20px;
    background: black;
    position: absolute;
    bottom: 0;
}

.press-plate {
    width: 60px;
    height: 30px;
    background: black;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: pressAction 2s infinite;
}

@keyframes pressAction {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.press-handle {
    width: 4px;
    height: 20px;
    background: black;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.printed-materials {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.newspaper {
    width: 30px;
    height: 40px;
    background: white;
    border: 2px solid black;
    padding: 5px;
}

.paper-line {
    height: 1px;
    background: black;
    margin: 3px 0;
    animation: printLine 1s ease-out;
}

.paper-line:nth-child(1) { animation-delay: 0s; }
.paper-line:nth-child(2) { animation-delay: 0.2s; }
.paper-line:nth-child(3) { animation-delay: 0.4s; }

.print-brand {
    font-size: 6px;
    font-weight: bold;
    color: black;
    text-align: center;
    margin-top: 3px;
    animation: printBrand 2s ease-out;
    line-height: 1;
}

@keyframes printLine {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes printBrand {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.magazine {
    width: 25px;
    height: 35px;
    position: relative;
}

.magazine-cover {
    width: 100%;
    height: 100%;
    background: black;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.magazine-brand {
    color: white;
    font-size: 6px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}

.magazine-pages {
    width: 100%;
    height: 100%;
    background: white;
    border: 2px solid black;
    position: absolute;
    top: 2px;
    left: 2px;
    animation: pageFlip 3s infinite;
}

@keyframes pageFlip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.ink-drops {
    position: absolute;
    top: 20px;
    right: 20px;
}

.ink-drop {
    width: 8px;
    height: 8px;
    background: black;
    border-radius: 50%;
    margin: 5px 0;
    animation: inkDrop 2s infinite;
}

.ink-drop:nth-child(1) { animation-delay: 0s; }
.ink-drop:nth-child(2) { animation-delay: 1s; }

@keyframes inkDrop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}

.service-name {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    margin-top: 0;
    color: black;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-name {
    color: var(--accent-red);
    transform: scale(1.1);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    margin-top: 0;
    margin-bottom: 0;
}

.service-card:hover .service-description {
    color: var(--accent-red);
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        min-height: 250px;
    }
    
    .service-illustration {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 5rem 0;
    }
    
    .services-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
        margin-bottom: 4rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        min-height: 220px;
    }
    
    .service-illustration {
        height: 90px;
    }
    
    .service-name {
        font-size: 1.5rem;
    }
    
    /* Scale down illustrations for mobile */
    .digital-screen,
    .billboard,
    .cinema-screen,
    .podcast-setup {
        transform: scale(0.8);
    }
    
    .radio-tower {
        transform: scale(0.7);
    }
    
    .print-press {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .services {
        padding: 3rem 0;
    }
    
    .services-container {
        padding: 0 1rem;
    }
    
    .services-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 3rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        min-height: 200px;
    }
    
    .service-illustration {
        height: 80px;
    }
    
    .service-name {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    /* Further scale down illustrations for small mobile */
    .digital-screen,
    .billboard,
    .cinema-screen,
    .podcast-setup {
        transform: scale(0.6);
    }
    
    .radio-tower {
        transform: scale(0.5);
    }
    
    .print-press {
        transform: scale(0.6);
    }
}

/* Our Clients Section */
.clients {
    background-color: white;
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.clients.animate {
    opacity: 1;
    transform: translateY(0);
}



.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.clients-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 4rem;
    color: black;
    line-height: 0.9;
    position: relative;
}

.clients-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--accent-red);
}

.clients-carousel-container {
    position: relative;
    padding: 2rem 0;
}

.clients-carousel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem 2rem;
    justify-items: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo-container {
    position: relative;
    height: 120px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.client-logo-container:hover .client-logo {
    transform: scale(1.1);
}

.logo-placeholder {
    font-size: 12px;
    font-weight: 700;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.client-logo-container:hover .logo-placeholder {
    transform: scale(1.1);
}

.client-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.client-logo-container:hover .client-logo-img {
    filter: grayscale(0%);
    transform: scale(1.1);
}



/* Responsive Design for Clients */
@media (max-width: 1024px) {
    .clients-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .clients-carousel {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem 1.5rem;
    }
    
    .client-logo-container {
        height: 100px;
        width: 150px;
    }
}

@media (max-width: 768px) {
    .clients {
        padding: 4rem 0;
    }
    
    .clients-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
        margin-bottom: 3rem;
    }
    
    .clients-carousel {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem 1rem;
    }
    
    .client-logo-container {
        height: 80px;
        width: 120px;
    }
    
    .logo-placeholder {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .clients {
        padding: 3rem 0;
    }
    
    .clients-container {
        padding: 0 1rem;
    }
    
    .clients-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }
    
    .clients-carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem 0.8rem;
    }
    
    .client-logo-container {
        height: 60px;
        width: 90px;
    }
    
    .logo-placeholder {
        font-size: 8px;
    }
}

/* Our Current Work Section */
.current-work {
    background-color: white;
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.current-work.animate {
    opacity: 1;
    transform: translateY(0);
}

.current-work-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.current-work-header {
    text-align: center;
    margin-bottom: 6rem;
}

.current-work-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: black;
    line-height: 0.9;
    position: relative;
}

.current-work-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--accent-red);
}

/* Our Process Section */
.process {
    background-color: #f8f8f8;
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.process.animate {
    opacity: 1;
    transform: translateY(0);
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 40%, rgba(220, 38, 38, 0.02) 40%, rgba(220, 38, 38, 0.02) 60%, transparent 60%),
        linear-gradient(60deg, transparent 40%, rgba(0, 0, 0, 0.01) 40%, rgba(0, 0, 0, 0.01) 60%, transparent 60%),
        linear-gradient(-60deg, transparent 40%, rgba(220, 38, 38, 0.01) 40%, rgba(220, 38, 38, 0.01) 60%, transparent 60%);
    background-size: 120px 120px, 100px 100px, 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 3rem;
    color: black;
    line-height: 0.9;
}

.process-content {
    max-width: 900px;
    margin: 0 auto;
}

.qa-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.qa-card {
    border: 3px solid #e0e0e0;
    background: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.qa-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.qa-card.active {
    border-color: var(--accent-red);
    background: var(--accent-red);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.25);
}

.qa-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}



.qa-question {
    flex: 1;
}

.qa-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    margin: 0;
    line-height: 1.4;
}

.qa-card.active .qa-question h3 {
    color: white;
}

.qa-toggle {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ccc;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.qa-card.active .qa-toggle {
    color: white;
    transform: rotate(45deg);
}

.qa-card:hover .qa-toggle {
    color: #999;
}

.qa-card.active:hover .qa-toggle {
    color: white;
}

.qa-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.qa-card.active .qa-body {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

.qa-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    transition: all 0.3s ease;
}

.qa-card.active .qa-body p {
    color: white;
}

/* Responsive Design for Process */
@media (max-width: 1024px) {
    .process-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .qa-header {
        padding: 1.8rem;
        gap: 1.2rem;
    }
    
    .qa-question h3 {
        font-size: 1.1rem;
    }
    
    .qa-card.active .qa-body {
        padding: 0 1.8rem 1.8rem;
    }
}

@media (max-width: 768px) {
    .process {
        padding: 4rem 0;
    }
    
    .process-title {
        font-size: 2rem;
        letter-spacing: 3px;
        margin-bottom: 2.5rem;
    }
    
    .qa-header {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .qa-question h3 {
        font-size: 1.1rem;
    }
    
    .qa-toggle {
        font-size: 1.8rem;
        width: 30px;
        height: 30px;
    }
    
    .qa-card.active .qa-body {
        padding: 0 1.5rem 1.5rem;
    }
    
    .qa-body p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .process {
        padding: 3rem 0;
    }
    
    .process-container {
        padding: 0 1rem;
    }
    
    .process-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    
    .qa-header {
        padding: 1.2rem;
    }
    
    .qa-question h3 {
        font-size: 1rem;
    }
    
    .qa-toggle {
        font-size: 1.6rem;
        width: 25px;
        height: 25px;
    }
    
    .qa-card.active .qa-body {
        padding: 0 1.2rem 1.2rem;
    }
    
    .qa-body p {
        font-size: 0.9rem;
    }
}

/* Spotlight Campaign Section */
.spotlight {
    background-color: white;
    color: black;
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.spotlight.animate {
    opacity: 1;
    transform: translateY(0);
}

.spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 0, 0, 0.01) 30%, rgba(0, 0, 0, 0.01) 70%, transparent 70%);
    background-size: 300px 200px, 300px 200px, 100px 100px;
    pointer-events: none;
    z-index: 0;
}

.spotlight-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.spotlight-header {
    text-align: center;
    margin-bottom: 6rem;
}

.spotlight-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: black;
    line-height: 0.9;
    position: relative;
}

.spotlight-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--accent-red);
}

.spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.spotlight-text {
    padding-right: 2rem;
}

.spotlight-quote h3 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: black;
}

.spotlight-quote p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 3rem;
}

.spotlight-portfolio-cta {
    margin-top: 2rem;
}

.portfolio-button {
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--accent-red);
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 3px solid var(--accent-red);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.portfolio-button:hover::before {
    transform: scaleX(1);
}

.portfolio-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.button-text {
    position: relative;
    z-index: 2;
    transition: color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button-arrow {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-button:hover .button-text {
    color: white;
}

.portfolio-button:hover .button-arrow {
    color: white;
    transform: translateX(8px);
}

.spotlight-gallery {
    position: relative;
}

.gallery-showcase {
    display: flex;
    gap: 2rem;
    height: 500px;
}

.gallery-item.featured {
    flex: 2;
    position: relative;
}

.gallery-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    background: white;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

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

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item.featured {
    height: 100%;
}

.gallery-sidebar .gallery-item {
    height: calc(50% - 1rem);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.placeholder-text {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: #666;
    line-height: 1.4;
    z-index: 2;
    transition: color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .placeholder-text {
    color: white;
}

.spotlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
}

.overlay-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.overlay-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Spotlight */
@media (max-width: 1024px) {
    .spotlight-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .spotlight-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .spotlight-text {
        padding-right: 0;
        text-align: center;
    }
    
    .gallery-showcase {
        height: 400px;
    }
    
    .spotlight-quote h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .spotlight {
        padding: 5rem 0;
    }
    
    .spotlight-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .spotlight-quote h3 {
        font-size: 1.8rem;
    }
    
    .spotlight-quote p {
        font-size: 1.1rem;
    }
    
    .gallery-showcase {
        flex-direction: column;
        height: auto;
        gap: 1.5rem;
    }
    
    .gallery-item.featured {
        height: 350px;
    }
    
    .gallery-sidebar {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .gallery-sidebar .gallery-item {
        height: 175px;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .spotlight {
        padding: 3rem 0;
    }
    
    .spotlight-container {
        padding: 0 1rem;
    }
    
    .spotlight-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .spotlight-quote h3 {
        font-size: 1.5rem;
    }
    
    .spotlight-quote p {
        font-size: 1rem;
    }
    
    .portfolio-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .gallery-item.featured {
        height: 250px;
    }
    
    .gallery-sidebar .gallery-item {
        height: 125px;
    }
    
    .gallery-sidebar {
        flex-direction: column;
    }
}

/* Campaign Showcase Carousel */
.campaign-showcase {
    margin-top: 8rem;
    padding-top: 4rem;
    border-top: 3px solid black;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: black;
    margin-bottom: 1rem;
}

.showcase-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 1px;
}

.carousel-section {
    margin-bottom: 3rem;
}

.carousel-section:last-child {
    margin-bottom: 0;
}

.carousel-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: black;
    margin-bottom: 2rem;
    text-align: center;
}

.campaign-carousel-container {
    overflow: hidden;
    margin: 0 -2rem;
    padding: 0 2rem;
}

.campaign-carousel {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.carousel-1 {
    animation: campaignScroll1 35s linear infinite;
}

.carousel-2 {
    animation: campaignScroll2 40s linear infinite;
}

.campaign-item {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border: none;
    background: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.campaign-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

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

.campaign-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.campaign-image {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.campaign-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.campaign-image .placeholder-text {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: #666;
    line-height: 1.4;
    transition: color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.campaign-item:hover .placeholder-text {
    color: white;
}

.campaign-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.campaign-item:hover .campaign-overlay {
    opacity: 1;
}

.campaign-info {
    color: white;
}

.campaign-name {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.campaign-type {
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes campaignScroll1 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes campaignScroll2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.campaign-carousel-container:hover .campaign-carousel {
    animation-play-state: paused;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* Responsive Design for Campaign Showcase */
@media (max-width: 1024px) {
    .campaign-showcase {
        margin-top: 6rem;
        padding-top: 3rem;
    }
    
    .showcase-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .carousel-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .campaign-item {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .campaign-showcase {
        margin-top: 4rem;
        padding-top: 2rem;
    }
    
    .showcase-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .showcase-subtitle {
        font-size: 1rem;
    }
    
    .carousel-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .carousel-section {
        margin-bottom: 2rem;
    }
    
    .campaign-carousel {
        gap: 1.5rem;
    }
    
    .campaign-item {
        width: 200px;
        height: 200px;
    }
    
    .campaign-name {
        font-size: 1rem;
    }
    
    .campaign-type {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .campaign-showcase {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }
    
    .showcase-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .showcase-subtitle {
        font-size: 0.9rem;
    }
    
    .carousel-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .carousel-section {
        margin-bottom: 1.5rem;
    }
    
    .campaign-carousel {
        gap: 1rem;
    }
    
    .campaign-item {
        width: 180px;
        height: 180px;
    }
    
    .campaign-overlay {
        padding: 1.5rem;
    }
    
    .campaign-name {
        font-size: 0.9rem;
    }
    
    .campaign-type {
        font-size: 0.7rem;
    }
}

/* Spotlight Campaigns Section */
.spotlight-campaigns {
    background-color: #f8f8f8;
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.spotlight-campaigns.animate {
    opacity: 1;
    transform: translateY(0);
}

.spotlight-campaigns-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.spotlight-campaigns-header {
    text-align: center;
    margin-bottom: 6rem;
}

.spotlight-campaigns-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: black;
    line-height: 0.9;
    position: relative;
}

.spotlight-campaigns-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--accent-red);
}

.case-studies {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.case-study {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.case-study.animate {
    opacity: 1;
    transform: translateY(0);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.case-study-left .case-study-content {
    grid-template-areas: "text media";
}

.case-study-right .case-study-content {
    grid-template-areas: "media text";
}

.case-study-text {
    grid-area: text;
    padding: 2rem;
}

.case-study-media {
    grid-area: media;
}

.case-study-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: black;
}

.case-study-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 3rem;
}

.case-study-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-red);
    min-width: 80px;
}

.detail-value {
    font-weight: 500;
    color: #333;
}

.media-container {
    position: relative;
    margin-bottom: 2rem;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.media-item {
    position: relative;
}

.case-study-image,
.case-study-video,
.case-study-audio {
    width: 100%;
    height: auto;
    border: none;
    transition: all 0.3s ease;
}

.case-study-image:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive YouTube/VOD embed (16:9) */
.youtube-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: none;
    background: #000;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: relative;
    border: none;
    background: #f0f0f0;
    width: 100%;
    display: block;
}

.case-study-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Custom Audio Player */
.custom-audio-player {
    display: flex;
    align-items: center;
    background: #111;
    padding: 1rem;
    border-radius: 8px;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.audio-play-btn {
    background: var(--accent-red);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.audio-play-btn:hover {
    transform: scale(1.05);
    background: #ff3333;
}

.audio-track-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.audio-seek {
    width: 100%;
    margin: 0;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
}

.audio-seek::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.audio-seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: var(--accent-red);
    margin-top: -4px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    transition: transform 0.1s;
}

.audio-seek::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.audio-seek::-moz-range-track {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.audio-seek::-moz-range-thumb {
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: var(--accent-red);
    border: none;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    transition: transform 0.1s;
}

.audio-seek::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.audio-time {
    color: white;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 500;
    min-width: 85px;
    text-align: right;
    flex-shrink: 0;
}

.hidden-audio {
    display: none;
}

.video-placeholder::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--accent-red);
    z-index: 2;
    pointer-events: none;
}

/* Responsive Design for Spotlight Campaigns */
@media (max-width: 1024px) {
    .spotlight-campaigns-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .case-study-content {
        gap: 4rem;
    }
    
    .case-study-title {
        font-size: 2rem;
    }
    
    .case-studies {
        gap: 6rem;
    }
}

@media (max-width: 768px) {
    .spotlight-campaigns {
        padding: 5rem 0;
    }
    
    .spotlight-campaigns-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .case-study-left .case-study-content,
    .case-study-right .case-study-content {
        grid-template-areas: 
            "text"
            "media";
    }
    
    .case-study-text {
        padding: 1rem;
        text-align: center;
    }
    
    .case-study-title {
        font-size: 1.8rem;
    }
    
    .case-study-description {
        font-size: 1.1rem;
    }
    
    .case-studies {
        gap: 4rem;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .custom-audio-player {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .spotlight-campaigns {
        padding: 3rem 0;
    }
    
    .spotlight-campaigns-container {
        padding: 0 1rem;
    }
    
    .spotlight-campaigns-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .case-study-title {
        font-size: 1.5rem;
    }
    
    .case-study-description {
        font-size: 1rem;
    }
    
    .case-study-text {
        padding: 0.5rem;
    }
    
    .case-studies {
        gap: 3rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-label {
        min-width: auto;
    }
    
    .custom-audio-player {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .audio-play-btn {
        width: 36px;
        height: 36px;
    }
    
    .audio-time {
        font-size: 0.75rem;
        min-width: 70px;
    }
}

/* Contact Section */
.contact {
    background-color: white;
    color: black;
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.contact.animate {
    opacity: 1;
    transform: translateY(0);
}



.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 6rem;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: black;
    line-height: 0.9;
    margin-bottom: 2rem;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--accent-red);
}

.contact-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.info-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.info-icon.location::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.info-icon.email::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.info-icon.phone::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.info-content h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: black;
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.contact-form {
    background: white;
    border: 3px solid black;
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: black;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    background: white;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 3rem;
}

.submit-button {
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--accent-red);
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 3px solid var(--accent-red);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    font-size: 1rem;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.submit-button:hover::before {
    transform: scaleX(1);
}

.submit-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.submit-button .button-text {
    position: relative;
    z-index: 2;
    transition: color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.submit-button .button-arrow {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.submit-button:hover .button-text {
    color: white;
}

.submit-button:hover .button-arrow {
    color: white;
    transform: translateX(8px);
}

/* Footer */
.footer {
    background-color: black;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 2rem;
}

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

.social-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ccc;
}

.footer-section h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: #ccc;
    font-size: 0.9rem;
}

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

.legal-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

/* Responsive Design for Contact & Footer */
@media (max-width: 1024px) {
    .contact-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 5rem 0;
    }
    
    .contact-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .info-item {
        gap: 1rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Pause animation on hover */
.poster-slider:hover {
    animation-play-state: paused;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.poster-slider {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards, marquee 60s linear infinite;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
} 