@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

:root {
    --bg-color: #050506;
    --card-bg: rgba(25, 25, 30, 0.4);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --accent-red: #ff3344;
    --accent-gradient: linear-gradient(135deg, #ff6b7b 0%, #e11d48 100%);
    --accent-blue: #0ea5e9;
    --glow-red: rgba(255, 51, 68, 0.15);
    --glow-blue: rgba(14, 165, 233, 0.15);
    --font-heading: 'Outfit', 'Noto Sans KR', sans-serif;
    --font-body: 'Outfit', 'Noto Sans KR', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

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

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

::-webkit-scrollbar-thumb {
    background: #2b2b35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

body {
    background-color: var(--bg-color);
    overflow-x: hidden;
    position: relative;
}

/* Background Ambient Glows */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.glow-1 {
    top: 5%;
    right: -10%;
    background: radial-gradient(circle, rgba(255, 51, 68, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
}

.glow-2 {
    top: 35%;
    left: -15%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
}

.glow-3 {
    top: 70%;
    right: -15%;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

section {
    padding: 120px 0;
    position: relative;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(5, 5, 6, 0.4) 0%, rgba(5, 5, 6, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 8px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--accent-red);
    text-transform: uppercase;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(255, 51, 68, 0.3);
}

.hero .description {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    font-weight: 300;
}

.scroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.scroll-btn:hover {
    border-color: var(--accent-red);
    background: var(--accent-red);
    box-shadow: 0 0 25px rgba(255, 51, 68, 0.4);
    transform: translateY(-2px);
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* "WE ARE THE MORE" Section */
.we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.we-are-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: transform 0.4s ease;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.img-wrapper.large {
    grid-column: span 2;
    height: 320px;
}

.img-wrapper.small {
    height: 200px;
}

.we-are-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(90deg, #ffffff, #85858f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.we-are-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

/* "WHAT WE DO" Section */
.film-strip-outer {
    margin: 0 -24px;
    padding: 20px 24px;
    overflow-x: auto;
    display: flex;
    gap: 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.film-strip-outer::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.film-card {
    min-width: 320px;
    width: 320px;
    height: 420px;
    background: #0d0d12;
    border: 10px solid #1a1a24;
    border-bottom-width: 40px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* Film-strip hole details */
.film-card::before,
.film-card::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    background-image: linear-gradient(to right, #000 0%, #000 50%, transparent 50%, transparent 100%);
    background-size: 12px 100%;
    z-index: 3;
}

.film-card::before {
    top: -8px;
}

.film-card::after {
    bottom: -38px;
}

.film-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: all 0.5s ease;
}

.film-card-info {
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #85858f;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    z-index: 4;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.film-card:hover {
    transform: translateY(-15px) rotate(2deg);
    border-color: #ff3344;
}

.film-card:hover img {
    filter: grayscale(0);
    transform: scale(1.08);
}

.film-card:hover .film-card-info {
    color: #ffffff;
}

/* Card rotation offsets for casual organic feel */
.film-card:nth-child(even) {
    transform: rotate(-1deg);
}

.film-card:nth-child(odd) {
    transform: rotate(1deg);
}

.film-card:nth-child(3n) {
    transform: translateY(5px);
}

/* "WHY THE MORE" Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 51, 68, 0.08) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 51, 68, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 51, 68, 0.05);
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 51, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 51, 68, 0.2);
}

.why-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.why-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* "THE STAGE IS SET" Section */
.stage-set-section {
    text-align: center;
    padding: 160px 0;
    background: radial-gradient(circle at center, rgba(25, 25, 30, 0.4) 0%, rgba(5, 5, 6, 1) 80%);
}

.stage-set-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.stage-set-title span {
    display: block;
}

.now-badge {
    display: inline-block;
    padding: 4px 28px;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    border-radius: 50px;
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin: 10px 0;
    text-shadow: 0 0 20px rgba(255, 51, 68, 0.3);
    box-shadow: 0 0 30px rgba(255, 51, 68, 0.1);
    animation: badgePulse 2s infinite alternate;
}

.stage-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.stage-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* ORANGE GLOWING BALL SECTION */
.glowing-ball-section {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.glowing-ball {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 51, 68, 0.8) 0%, rgba(225, 29, 72, 0.3) 50%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(10px);
    box-shadow: 0 0 80px rgba(255, 51, 68, 0.6);
    z-index: 1;
    animation: floatBall 6s ease-in-out infinite;
}

.glowing-text {
    z-index: 2;
    text-align: center;
}

.glowing-text h3 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.glowing-text p {
    color: var(--accent-red);
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

/* "GET IN TOUCH" Section */
.contact-section {
    position: relative;
}

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

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-btn-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 51, 68, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
}

.contact-btn-circle:hover {
    transform: scale(1.08) rotate(15deg);
    box-shadow: 0 15px 40px rgba(255, 51, 68, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-size: 0.75rem;
    color: #85858f;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 0;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-red);
}

/* Footer Section */
.footer {
    padding: 100px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #030304;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    text-align: center;
    color: rgba(255, 255, 255, 0.05);
    user-select: none;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 40px;
    position: relative;
}

.footer-brand span {
    position: absolute;
    top: 10px;
    font-size: 1.5rem;
    vertical-align: super;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #555560;
}

.footer-links a {
    color: #555560;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePulse {
    from {
        border-color: var(--accent-red);
        box-shadow: 0 0 20px rgba(255, 51, 68, 0.1);
    }

    to {
        border-color: #ff6b7b;
        box-shadow: 0 0 40px rgba(255, 51, 68, 0.4);
    }
}

@keyframes floatBall {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

/* Inline Edit Controls Style */
.admin-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 18, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    font-family: var(--font-body);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.admin-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.admin-actions {
    display: flex;
    gap: 12px;
}

.admin-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.admin-btn.save {
    background: var(--accent-red);
    color: #ffffff;
}

.admin-btn.save:hover {
    background: #e11d48;
    box-shadow: 0 0 15px rgba(255, 51, 68, 0.4);
}

.admin-btn.cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.admin-btn.cancel:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Edit Mode Overlay & Borders */
.edit-mode-active [data-editable] {
    outline: 1px dashed rgba(255, 51, 68, 0.4);
    outline-offset: 4px;
    cursor: double-click;
    transition: outline-color 0.2s ease;
}

.edit-mode-active [data-editable]:hover {
    outline-color: var(--accent-red);
    background: rgba(255, 51, 68, 0.05);
}

/* Inline Edit Element placeholder */
.inline-editing {
    background: rgba(25, 25, 30, 0.9) !important;
    color: #ffffff !important;
    border: 1px solid var(--accent-red) !important;
    outline: none !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    text-align: inherit !important;
    width: 100% !important;
}

/* Image Upload Overlay */
.image-edit-container {
    position: relative;
}

.edit-mode-active .image-edit-container::after {
    content: '📷 Click to upload';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 10;
    pointer-events: auto;
}

.edit-mode-active .image-edit-container:hover::after {
    opacity: 1;
}

/* Toast Message Notification */
.toast-msg {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0d0d12;
    border: 1px solid var(--accent-red);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100000;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.toast-msg.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .we-are-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-info {
        text-align: center;
    }

    .contact-btn-circle {
        margin: 0 auto;
    }
}

/* Film strip slider container and arrows */
.film-strip-container {
    position: relative;
    width: 100%;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(13, 13, 18, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    outline: none;
}

.slide-arrow:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 0 15px rgba(255, 51, 68, 0.5);
    transform: translateY(-50%) scale(1.08);
}

.slide-arrow.prev {
    left: -23px;
}

.slide-arrow.next {
    right: -23px;
}

@media (max-width: 1300px) {
    .slide-arrow.prev {
        left: 10px;
    }

    .slide-arrow.next {
        right: 10px;
    }
}

/* Global Section Backgrounds (Applied to both Mobile and Desktop) */
#we-are-section {
    background: radial-gradient(circle at 15% 25%, rgba(255, 51, 68, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 85% 75%, rgba(14, 165, 233, 0.04) 0%, transparent 55%),
        #050506;
}

#what-we-do-section {
    background: radial-gradient(circle at 80% 30%, rgba(255, 51, 68, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.03) 0%, transparent 50%),
        #09090c;
}

#why-the-more-section {
    background: radial-gradient(circle at 50% 50%, rgba(255, 51, 68, 0.05) 0%, transparent 70%),
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        #050506;
    background-size: 100% 100%, 50px 50px, 50px 50px;
}

.stage-set-section {
    background: radial-gradient(circle at 50% 20%, rgba(255, 51, 68, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 50%),
        #08080b;
}

.glowing-ball-section {
    background: radial-gradient(circle at center, rgba(255, 51, 68, 0.05) 0%, transparent 65%),
        #050506;
}

.contact-section {
    background: radial-gradient(circle at 85% 20%, rgba(255, 51, 68, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(14, 165, 233, 0.04) 0%, transparent 50%),
        #030304;
}

/* Scroll Snapping & Height overrides for Desktop */
@media (min-width: 992px) {
    html {
        scroll-snap-type: y mandatory;
        height: 100vh;
        overflow-y: scroll;
        scroll-behavior: smooth;
    }

    body {
        min-height: 100vh;
        overflow-x: hidden;
        margin: 0;
    }

    section {
        height: 100vh !important;
        padding: 0 !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }

    .glowing-ball-section {
        height: 100vh !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Contact & Footer Snapped Group */
    .contact-footer-group {
        height: 100vh;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: #030304;
    }

    .contact-footer-group .contact-section {
        flex: 1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto !important;
        padding: 60px 0 0 0 !important;
        scroll-snap-align: none;
    }

    .contact-footer-group .footer {
        width: 100%;
        padding: 30px 0 !important;
        height: auto !important;
    }
}

/* Premium Mobile & Tablet Optimization (max-width: 991px) */
@media (max-width: 991px) {
    section {
        padding: 80px 0 !important;
    }

    /* Hero adjustments */
    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4.2rem);
    }

    .hero .subtitle {
        font-size: clamp(1.1rem, 3.5vw, 1.6rem);
        margin-bottom: 20px;
    }

    .hero .description {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 32px;
    }

    /* We Are grid */
    .we-are-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .we-are-text h3 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .we-are-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .img-wrapper.large {
        height: 240px;
    }

    .img-wrapper.small {
        height: 150px;
    }

    /* Film strip items */
    .slide-arrow {
        display: none !important;
        /* Hide arrows on touch screens */
    }

    .film-strip-outer {
        gap: 20px;
        margin: 0 -16px;
        padding: 10px 16px;
    }

    .film-card {
        min-width: 250px;
        width: 250px;
        height: 330px;
        border-width: 6px;
        border-bottom-width: 30px;
    }

    .film-card::after {
        bottom: -28px;
    }

    .film-card-info {
        bottom: -26px;
        font-size: 0.75rem;
    }

    /* Why Section Grid */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 30px 24px;
        border-radius: 12px;
    }

    .why-card h4 {
        font-size: 1.2rem;
    }

    .why-card p {
        font-size: 0.9rem;
    }

    /* Stage Set Sizing */
    .stage-set-section {
        padding: 80px 0 !important;
    }

    .stage-set-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .now-badge {
        padding: 2px 20px;
        font-size: clamp(1.2rem, 3.5vw, 2.5rem);
    }

    .stage-subtitle {
        font-size: 1.4rem;
    }

    .stage-desc {
        font-size: 0.95rem;
    }

    /* Glowing Ball height */
    .glowing-ball-section {
        height: 350px;
    }

    .glowing-ball {
        width: 180px;
        height: 180px;
    }

    .glowing-text h3 {
        font-size: 1.7rem;
    }

    /* Contact forms stacking */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }

    .contact-info p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .contact-btn-circle {
        width: 120px;
        height: 120px;
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        /* Stack inputs vertically on mobile */
        gap: 20px;
    }

    .contact-form {
        gap: 20px;
    }

    /* Footer styling */
    .footer-brand {
        font-size: clamp(3rem, 12vw, 5rem);
    }

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