/* Core Design System for AR Studios Bollywood Production House */

/* --- CSS Variables & Design Tokens --- */
:root {
    --bg-dark: #070709;
    --bg-surface: #101014;
    --bg-surface-glow: #16161c;
    --primary-gold: #d4af37;
    --secondary-gold: #aa7c11;
    --light-gold: #f3e5ab;
    --accent-crimson: #c9222b;
    --text-white: #f5f5f7;
    --text-muted: #8e8e93;
    --border-color: rgba(212, 175, 55, 0.15);
    --border-light: rgba(255, 255, 255, 0.06);
    --glass-bg: rgba(16, 16, 20, 0.65);
    --glass-border: rgba(212, 175, 55, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-gold: 0 8px 32px 0 rgba(212, 175, 55, 0.15);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
}

/* --- Base Resets & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

button, input, select, textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

/* --- Premium Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* --- Utility Classes --- */
.gradient-text {
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--primary-gold) 50%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-icon {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.hidden {
    display: none !important;
}

/* --- Button Designs --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
}

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

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* --- Ambient sound controller --- */
.soundscape-controller {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 100;
}

.soundscape-btn {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    color: var(--primary-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-gold);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.soundscape-btn:hover {
    transform: scale(1.05);
    border-color: var(--primary-gold);
}

.soundscape-btn.playing {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
    animation: goldPulse 2s infinite;
}

.sound-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Section Formatting --- */
section {
    padding: 6rem 0;
    position: relative;
}

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

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 1.5rem auto 0;
}

.section-divider-left {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    margin: 1rem 0 2rem;
}

/* --- Header & Navbar Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(7, 7, 9, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 0.5rem 0;
    background: rgba(7, 7, 9, 0.95);
    border-bottom: 1px solid var(--border-color);
}

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

.logo-area {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Nav Menu links */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-gold);
}

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

.contact-btn-link {
    border: 1px solid var(--primary-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
}

.contact-btn-link::after {
    display: none;
}

.contact-btn-link:hover {
    background-color: var(--primary-gold);
    color: #000 !important;
}

/* Nav Toggle Mobile Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-gold);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Hero Section Styling --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    position: relative;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-tagline-small {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 650px;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

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

.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 1.5rem;
    color: var(--primary-gold);
}

/* --- Stats Counter Section --- */
.stats-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 3.5rem 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    border-right: 1px solid var(--border-light);
}

.stat-card:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary-gold);
    display: inline-block;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* --- Movies Slate / Portfolio Section --- */
.portfolio-section {
    background-color: var(--bg-dark);
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-surface);
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    padding: 0.6rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
}

.tab-btn:hover, .tab-btn.active {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2.5rem;
}

.movie-card {
    background: var(--bg-surface);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.movie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    border-color: var(--border-color);
}

.movie-poster-wrap {
    position: relative;
    padding-top: 150%; /* 2:3 Aspect Ratio */
    background: #000;
    overflow: hidden;
}

.movie-poster-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.movie-poster-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.poster-svg {
    width: 100%;
    height: 100%;
}

.action-gradient-bg {
    background: linear-gradient(180deg, #1b0505 0%, #000000 100%);
}

.romance-gradient-bg {
    background: linear-gradient(180deg, #1f0b20 0%, #000000 100%);
}

.epic-gradient-bg {
    background: linear-gradient(180deg, #1b1207 0%, #000000 100%);
}

.upcoming-gradient-bg {
    background: linear-gradient(180deg, #09131d 0%, #000000 100%);
}

.movie-card:hover .movie-poster-img,
.movie-card:hover .movie-poster-custom {
    transform: scale(1.08);
}

.laurel-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.teaser-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-crimson);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 1px;
}

.movie-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 9, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.movie-card:hover .movie-card-overlay {
    opacity: 1;
}

.movie-cast-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--primary-gold);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.movie-cast-list {
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.card-btn {
    background: var(--primary-gold);
    color: #000;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.card-btn:hover {
    background: var(--light-gold);
    transform: scale(1.05);
}

.movie-info {
    padding: 1.5rem;
}

.movie-genre {
    color: var(--primary-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.4rem;
}

.movie-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.movie-streaming-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.streaming-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stream-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-surface-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 0.85rem;
    border: 1px solid var(--border-light);
}

.stream-icon:hover {
    transform: translateY(-2px);
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.stream-icon.netflix {
    color: var(--accent-crimson);
}
.stream-icon.prime {
    color: #1a9cff;
}
.stream-icon.spotify {
    color: #1ed760;
}
.stream-icon.hotstar {
    font-weight: 900;
    color: #fff;
    background: #0a1128;
}

.coming-soon-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    border: 1px solid var(--border-color);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
}

/* --- Services Section --- */
.services-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    padding: 3rem 2rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1.8rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* --- Casting Section --- */
.casting-section {
    background-color: var(--bg-dark);
}

.casting-container {
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
    gap: 4rem;
    align-items: center;
}

.tag-gold {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.casting-details-pane h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.casting-details-pane p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.perk-item i {
    color: var(--primary-gold);
}

.talent-status-board {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
}

.talent-status-board h4 {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.talent-status-board ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.talent-status-board li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.status-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.status-badge.open {
    background: rgba(30, 215, 96, 0.15);
    color: #1ed760;
    border: 1px solid rgba(30, 215, 96, 0.3);
}

/* Glassmorphism Form Card */
.casting-form-pane {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-card-header {
    margin-bottom: 2.2rem;
}

.form-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-card-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Form controls */
.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-white);
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.form-group select option {
    background-color: var(--bg-surface);
    color: var(--text-white);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    resize: none;
}

.required {
    color: var(--accent-crimson);
}

/* Error validation styling */
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: var(--accent-crimson);
    background: rgba(201, 34, 43, 0.05);
}

.error-message {
    color: var(--accent-crimson);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.3rem;
    display: none;
}

.form-group.invalid .error-message {
    display: block;
}

/* Dynamic field transitions */
.dynamic-form-fields {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.divider-gold {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.divider-gold::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

/* Audition Ticket Design */
.success-ticket-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.4s ease-out forwards;
}

.ticket-card {
    background: var(--bg-dark);
    border: 1px dashed var(--primary-gold);
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.ticket-card::before, .ticket-card::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--glass-bg);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 1px dashed var(--primary-gold);
    z-index: 10;
}

.ticket-card::before { left: -13px; }
.ticket-card::after { right: -13px; }

.ticket-top {
    text-align: center;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 1.2rem;
    margin-bottom: 1.5rem;
}

.ticket-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--primary-gold);
}

.ticket-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.ticket-middle {
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ticket-barcode {
    height: 35px;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.ticket-barcode span {
    display: inline-block;
    width: 2px;
    height: 100%;
    background-color: var(--text-white);
}

.ticket-barcode span:nth-child(even) {
    width: 4px;
}

.ticket-barcode span:nth-child(3n) {
    width: 1px;
}

.ticket-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.info-label {
    color: var(--text-muted);
}

.info-val {
    font-weight: 600;
    color: var(--text-white);
}

.ticket-bottom {
    text-align: center;
}

.ticket-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.ticket-note i {
    color: var(--accent-crimson);
}

/* --- Business Queries Section --- */
.queries-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.queries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.query-info-box h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.query-info-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.2rem;
}

.contact-detail-item i {
    font-size: 1.8rem;
    margin-top: 0.2rem;
}

.contact-detail-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.contact-detail-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.query-form-box {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 3rem;
    position: relative;
}

.biz-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    text-align: center;
    animation: fadeIn 0.4s ease-out forwards;
}

.success-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon {
    font-size: 3.5rem;
    color: #1ed760;
    margin-bottom: 1.5rem;
}

.success-box h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.success-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* --- About Section --- */
.about-section {
    background-color: var(--bg-dark);
}

.about-container {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 5rem;
    align-items: center;
}

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

.directors-quote {
    border-left: 2px solid var(--primary-gold);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
}

.directors-quote blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.directors-quote cite {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.about-image-pane {
    position: relative;
}

.bts-frame {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.8rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.bts-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    opacity: 0.85;
}

.overlay-badge-bottom {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(0,0,0,0.8);
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-white);
}

/* --- Footer --- */
.main-footer {
    background: #040405;
    border-top: 1px solid var(--border-light);
    padding: 5rem 0 0;
}

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

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 1.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid var(--border-light);
}

.footer-socials a:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.link-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.link-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.link-col a:hover {
    color: var(--primary-gold);
    padding-left: 4px;
}

.contact-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.footer-newsletter-form {
    display: flex;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
    height: 45px;
}

.footer-newsletter-form input {
    flex: 1;
    background: transparent;
    padding: 0 1rem;
    color: #fff;
    font-size: 0.9rem;
}

.footer-newsletter-form button {
    background: var(--primary-gold);
    color: #000;
    width: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.footer-newsletter-form button:hover {
    background: var(--light-gold);
}

.newsletter-status-msg {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.newsletter-status-msg.success {
    color: #1ed760;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 2rem 0;
    background: #020202;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    margin-left: 1rem;
}

.footer-bottom a:hover {
    color: var(--primary-gold);
}

/* --- Video Trailer Modal --- */
.trailer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.trailer-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 800px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.2);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.trailer-modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-white);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 20;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
}

.modal-close:hover {
    background: var(--accent-crimson);
    color: #fff;
    border-color: var(--accent-crimson);
}

.video-container {
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
}

/* Fallback Mockup Video Playback Overlay */
.cinematic-video-mockup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.playback-controls {
    text-align: center;
    width: 80%;
}

.playback-controls i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    animation: goldPulse 2s infinite;
}

.playback-controls span {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
}

.playback-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.playbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.playbar-line {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 2px;
}

.playbar-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 35%; /* Mock active playback progress */
    background: var(--primary-gold);
    border-radius: 2px;
}

.loader-circle {
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: absolute;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.bounce {
    animation: bounce 2s infinite;
}

/* --- MEDIA QUERIES (Responsive Adaptability) --- */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.3rem;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .casting-container, .queries-grid, .about-container {
        gap: 3rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    .header-container {
        height: 70px;
    }
    .nav-toggle {
        display: flex;
    }
    
    /* Navigation drawer overlay on mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0a0a0c;
        border-top: 1px solid var(--border-light);
        transition: var(--transition-smooth);
        padding: 3rem 2rem;
        z-index: 99;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        border-right: none;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-light);
    }
    
    .stat-card:nth-child(2) {
        border-bottom: 1px solid var(--border-light);
    }
    
    .stat-card:nth-child(3), .stat-card:nth-child(4) {
        border-bottom: none;
        padding-top: 1rem;
    }
    
    .casting-container, .queries-grid, .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .casting-details-pane h2 {
        font-size: 2.4rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .soundscape-controller {
        bottom: 1.5rem;
        left: 1.5rem;
    }
}

/* ==========================================
   11. Admin CMS Dashboard Styles
   ========================================== */

/* Dashboard Section */
.admin-dashboard-section {
    min-height: 100vh;
    animation: dashFadeIn 0.6s ease-out;
}

@keyframes dashFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.admin-dashboard-section .dashboard-header {
    position: relative;
}

.admin-dashboard-section .dashboard-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

/* Dashboard Panes Glass Cards */
.dashboard-pane {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
}

.dashboard-pane:hover {
    border-color: rgba(212, 175, 55, 0.25) !important;
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.06);
}

/* File Upload Inputs */
.dashboard-pane input[type="file"] {
    background: var(--bg-surface);
    border: 1px dashed var(--border-color);
    border-radius: 6px;
    padding: 0.8rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    width: 100%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dashboard-pane input[type="file"]:hover {
    border-color: var(--primary-gold);
    background: var(--bg-surface-glow);
}

.dashboard-pane input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
    color: #0a0a0c;
    border: none;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    margin-right: 0.8rem;
    transition: var(--transition-smooth);
}

.dashboard-pane input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
}

/* CMS Project List Items */
.cms-item {
    transition: var(--transition-smooth);
}

.cms-item:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--border-color) !important;
    transform: translateX(4px);
}

.cms-item .delete-proj-btn {
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.cms-item .delete-proj-btn:hover {
    background: var(--accent-crimson) !important;
    color: #fff !important;
    border-color: var(--accent-crimson) !important;
    box-shadow: 0 4px 16px rgba(201, 34, 43, 0.3);
}

/* CMS Movies List Scrollbar */
.cms-movies-list::-webkit-scrollbar {
    width: 5px;
}

.cms-movies-list::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-radius: 3px;
}

.cms-movies-list::-webkit-scrollbar-thumb {
    background: var(--secondary-gold);
    border-radius: 3px;
}

/* Admin Login Modal Adjustments */
#adminLoginModal .modal-content {
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Dashboard Responsive */
@media (max-width: 900px) {
    .admin-dashboard-section .dashboard-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .admin-dashboard-section .dashboard-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem;
    }

    .cms-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }

    .cms-item .delete-proj-btn {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .dashboard-pane {
        padding: 1.5rem !important;
    }

    .admin-dashboard-section {
        padding: 3rem 0 !important;
    }
}

/* --- NEW Star Badge & Custom CMS Checkbox --- */
.new-star-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(10, 10, 12, 0.9);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
    animation: badgeBlinkGlow 2s infinite ease-in-out;
}

.new-star-badge i {
    animation: starRotate 4s infinite linear;
    font-size: 0.75rem;
}

@keyframes badgeBlinkGlow {
    0%, 100% {
        opacity: 0.7;
        box-shadow: 0 0 4px rgba(212, 175, 55, 0.2);
        border-color: rgba(212, 175, 55, 0.5);
        transform: scale(1);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 16px rgba(212, 175, 55, 0.8);
        border-color: var(--primary-gold);
        transform: scale(1.03);
    }
}

@keyframes starRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.new-toggle-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.new-toggle-checkbox:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.new-toggle-checkbox:checked {
    border-color: var(--primary-gold);
    background: var(--primary-gold);
}

.new-toggle-checkbox:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #0a0a0c;
    font-size: 0.75rem;
    position: absolute;
}

.new-star-preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: starRotate 4s infinite linear;
}

/* Ensure the whole page is scrollable, but CMS panels have internal scrolls for neat desktop layout */
#addProjectForm {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 0.8rem;
}

/* Scrollbar customizations for CMS Panels */
#addProjectForm::-webkit-scrollbar,
#cmsMoviesList::-webkit-scrollbar {
    width: 6px;
}

#addProjectForm::-webkit-scrollbar-track,
#cmsMoviesList::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 3px;
}

#addProjectForm::-webkit-scrollbar-thumb,
#cmsMoviesList::-webkit-scrollbar-thumb {
    background: var(--secondary-gold);
    border-radius: 3px;
}

#addProjectForm::-webkit-scrollbar-thumb:hover,
#cmsMoviesList::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}
