@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --accent-color: #d4af37;
    --nav-height: 80px;
    --container-padding: 8vw;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    :root {
        --container-padding: 25px;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scroll Smoothing */
html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    /* Taller nav as per image */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 1000;
    background: transparent;
    /* Purely transparent for hero */
    transition: background 0.3s ease;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.book-btn {
    background-color: transparent;
    color: var(--text-color);
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 1px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Mobile Nav Open State */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    nav {
        padding: 0 5vw;
        height: 80px;
        background: transparent !important;
        backdrop-filter: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.7);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        transform: none;
        left: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 14px;
        letter-spacing: 4px;
        font-weight: 300;
    }

    .hamburger {
        display: flex;
    }

    .book-btn {
        display: none;
    }
}

/* Hero Section */
.hero-container {
    position: relative;
    height: 500vh;
    /* Adjust based on scroll length needed */
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#hero-video {
    display: none;
    /* Hide old video if still in DOM */
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#hero-image {
    height: 100vh;
    width: auto;
    /* Maintain aspect ratio */
    min-width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text-wrapper {
    position: relative;
    width: 80%;
    max-width: 900px;
}

.hero-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out;
}

.hero-text.active {
    opacity: 1;
    visibility: visible;
}


/* Shooting Schedule */
.section {
    padding: 100px var(--container-padding);
    scroll-margin-top: 80px;
}

#industries.section {
    padding-left: 0;
    padding-right: 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-card {
    display: flex;
    align-items: center;
    padding: 25px;
    background: #111822;
    /* Deep dark blue/gray matching image */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.schedule-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.card-date {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    margin-right: 25px;
}

.card-date .month {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.card-date .day {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
}

.card-info {
    flex-grow: 1;
}

.card-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.card-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-status {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 50px;
    margin-right: 30px;
}

.status-green {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
}

.status-blue {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.enquire-btn {
    background: #ffffff;
    color: #0c0c0c;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.card-actions {
    display: flex;
    gap: 10px;
}

@media (max-width: 900px) {
    .schedule-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px var(--container-padding);
    }

    .card-date {
        margin-right: 0;
        margin-bottom: 20px;
        flex-direction: row;
        gap: 10px;
        padding: 10px 20px;
        min-width: auto;
    }

    .card-date .month {
        margin-bottom: 0;
    }

    .card-info {
        margin-bottom: 20px;
    }

    .card-status {
        margin-right: 0;
        margin-bottom: 30px;
        display: inline-block;
    }

    .card-actions {
        width: 100%;
        flex-direction: column;
    }

    .card-actions .enquire-btn {
        text-align: center;
        width: 100%;
    }
}

.enquire-btn:hover {
    opacity: 0.85;
}

/* Expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.expertise-card {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
    transition: transform 0.3s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Subtle initial overlay */
    transition: background 0.4s ease;
    z-index: 1;
}

.expertise-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.8);
    /* Deep overlay on hover */
}

.card-content {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.expertise-card:hover .card-content {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.card-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.expertise-card:hover .card-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

.learn-more-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.expertise-card:hover .learn-more-link {
    opacity: 1;
    transform: translateY(0);
}

.learn-more-link:hover {
    letter-spacing: 3px;
}

/* Industries Ticker */
.industries-ticker {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

.ticker-row {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.ticker-item {
    min-width: 350px;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .expertise-card {
        padding: 30px 20px;
        height: 350px;
    }

    .ticker-item {
        min-width: 280px;
        height: 150px;
    }
}

.ticker-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.ticker-item:hover::after {
    background: rgba(0, 0, 0, 0.5);
}

.item-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.item-label span {
    color: #0c0c0c;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Infinite Animation Roles */
.track-left {
    animation: scroll-left 50s linear infinite;
}

.track-right {
    animation: scroll-right 50s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(calc(-50% - 10px));
    }

    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.ticker-row:hover .ticker-track {
    animation-play-state: paused;
}

/* Examples */
.examples-grid {
    display: grid;
    grid-template-columns: 0.6fr 0.4fr;
    grid-template-rows: repeat(2, 300px);
    /* Total height of 620px including gap */
    gap: 20px;
}

.example-item {
    background: #111822;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.example-item:nth-child(1) {
    grid-row: span 2;
}

.example-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.5s ease;
}

.example-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0) 100%);
    color: #ffffff;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.example-overlay .category {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 8px;
}

.example-overlay h4 {
    font-size: 1.2rem;
    font-weight: 500;
}

.example-item:hover img {
    transform: scale(1.05);
    opacity: 0.6;
}

.example-item:hover .example-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Footer */
footer {
    padding: 100px var(--container-padding) 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.studio-location {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-color);
}

.footer-social-icons {
    display: flex;
    gap: 20px;
}

.footer-social-icons a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    footer {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 60px;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .example-item:nth-child(1) {
        grid-row: auto;
    }

    .example-item {
        height: 400px;
    }
}

/* Static Client Grid */
.clients-static-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 80px 50px;
    padding: 0 var(--container-padding);
}

.client-logo-static {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-static img {
    max-width: 180px;
    max-height: 70px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .clients-static-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-static-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Impact/Stats Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.impact-card {
    background: #111822;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.impact-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.impact-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 20px;
}

.impact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.impact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .impact-number {
        font-size: 2.5rem;
    }
}

/* Supplier Badge */
.supplier-badge-container {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.supplier-badge {
    background: #ffffff;
    padding: 25px 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.marriott-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-pre {
    font-size: 10px;
    font-weight: 700;
    color: #5d6d8a;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.badge-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c1221;
    letter-spacing: -0.5px;
}

@media (max-width: 576px) {
    .supplier-badge {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 20px;
    }
}

/* Quote & Lead Forms */
.quote-card {
    background: #111822;
    /* High-contrast background */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 6px;
    color: #fff;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.quote-btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.quote-btn-submit:hover {
    opacity: 0.8;
}

.slots-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}