/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #DC143C;
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --accent-red: #FF6B6B;
    --text-light: #ffffff;
    --text-dark: #000000;
    --text-gray: #666666;
    --background-light: #fafafa;
    --background-dark: #000000;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --section-padding: 72px 0;
    --container-padding: 0 20px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-black);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
    margin: 0 auto 2rem;
}

section { padding: var(--section-padding); }

.section-header {
    text-align: center;
    margin-bottom: 2.8rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo { height: 85px; width: auto; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover { color: var(--primary-red); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition-fast);
}

.nav-link:hover::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-black);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* ===================== HERO SECTION - CINEMATIC BLACK ===================== */
.hero {
    height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle dot grid texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
    z-index: 1;
}

/* Animated red radial glow */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.16) 0%, rgba(220, 20, 60, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Decorative animated rings */
.hero-rings { position: absolute; top: 50%; left: 50%; pointer-events: none; z-index: 1; }

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(220, 20, 60, 0.12);
    transform: translate(-50%, -50%);
    animation: ringExpand 6s ease-out infinite;
}

.ring-1 { width: 400px; height: 400px; animation-delay: 0s; }
.ring-2 { width: 600px; height: 600px; animation-delay: 2s; }
.ring-3 { width: 800px; height: 800px; animation-delay: 4s; }

@keyframes ringExpand {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

/* Logo entrance */
.hero-logo-wrap {
    animation: logoReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

/* White circular glow behind logo */
.hero-logo-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.28) 35%, rgba(255, 255, 255, 0.08) 60%, transparent 75%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

@keyframes logoReveal {
    from { opacity: 0; transform: scale(0.82) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-logo-img {
    height: 200px;
    width: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 12px rgba(220, 20, 60, 0.3));
}

/* Slogan */
.hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
    margin-bottom: 1.2rem;
    line-height: 1.25;
}

/* Expanding red rule */
.hero-rule {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    margin: 0 auto 1.8rem;
    animation: ruleExpand 1.2s ease 2s forwards;
}

@keyframes ruleExpand {
    to { width: 320px; }
}

.hero-sub-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.03em;
    margin-bottom: 3rem;
    animation: fadeUp 1s ease 2.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 2.6s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Override secondary button for dark hero */
.hero-btn-secondary {
    color: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-arrow {
    width: 28px;
    height: 28px;
    border-right: 2px solid rgba(220, 20, 60, 0.7);
    border-bottom: 2px solid rgba(220, 20, 60, 0.7);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===================== ABOUT SECTION ===================== */
.about { background: var(--background-light); }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.profile-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.profile-name { font-size: 2rem; color: var(--primary-black); margin-bottom: 0.5rem; }
.profile-title { color: var(--primary-red); font-weight: 600; margin-bottom: 1.5rem; font-size: 1.1rem; }
.profile-description { color: var(--text-gray); line-height: 1.8; }
.expertise-title { font-size: 1.6rem; color: var(--primary-black); margin-bottom: 1.5rem; font-weight: 600; }
.expertise-description { color: var(--text-gray); margin-bottom: 1.5rem; line-height: 1.8; }

/* ===================== EVENT TYPES - INFINITE TICKER ===================== */
.event-types {
    background: var(--primary-black);
    color: var(--text-light);
    padding: 72px 0 55px;
    overflow: hidden;
}

.event-types .section-title { color: var(--text-light); }
.event-types .section-header { margin-bottom: 3rem; }

.event-ticker-outer {
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0 1.5rem;
}

/* Fade edges */
.event-ticker-outer::before,
.event-ticker-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.event-ticker-outer::before {
    left: 0;
    background: linear-gradient(to right, #000000, transparent);
}

.event-ticker-outer::after {
    right: 0;
    background: linear-gradient(to left, #000000, transparent);
}

.event-ticker-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: tickerScroll 28s linear infinite;
}

.event-ticker-outer:hover .event-ticker-track {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.event-ticker-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 20, 60, 0.2);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    min-width: 280px;
    max-width: 280px;
    text-align: left;
    flex-shrink: 0;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: default;
}

.event-ticker-card:hover {
    border-color: rgba(220, 20, 60, 0.65);
    background: rgba(220, 20, 60, 0.07);
}

.event-ticker-card h3 {
    font-size: 1.25rem;
    color: var(--primary-red);
    margin-bottom: 0.7rem;
    font-family: var(--font-primary);
}

.event-ticker-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ===================== SERVICES - EDITORIAL NUMBERED ===================== */
.services { background: var(--background-light); }

/* 2-column grid — cuts scroll length in half */
.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-row {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 2rem;
    padding: 2.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    border-right: 1px solid rgba(0, 0, 0, 0.07);
    align-items: start;
    position: relative;
    transition: background 0.3s ease;
    overflow: hidden;
}

/* Right column: no right border */
.service-row:nth-child(even) {
    border-right: none;
}

/* Top red accent line on hover */
.service-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-row:hover::before {
    transform: scaleX(1);
}

.service-row:hover { background: rgba(220, 20, 60, 0.018); }

.service-left {
    padding-left: 0;
    padding-top: 0.15rem;
}

.service-name {
    font-size: 1rem;
    color: var(--primary-black);
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.service-row:hover .service-name {
    color: var(--primary-red);
}

.service-right { padding-top: 0.2rem; }

.service-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.88rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 1.5rem;
}

.service-features li {
    color: var(--text-gray);
    position: relative;
    padding-left: 1rem;
    font-size: 0.82rem;
}

.service-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

/* ===================== PORTFOLIO - HIGHLIGHTED & FOCUSED ===================== */
.portfolio {
    background: var(--primary-black);
    color: var(--text-light);
}

.portfolio .section-title { color: var(--text-light); }

.portfolio-subtitle {
    color: rgba(255, 255, 255, 0.55) !important;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
}

.portfolio-item {
    background: var(--primary-black);
    padding: 2.2rem 2rem;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.4s ease;
    cursor: default;
}

/* Red underline sweep on hover */
.portfolio-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover::after { width: 100%; }
.portfolio-item:hover { background: rgba(220, 20, 60, 0.04); }

.portfolio-item h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.portfolio-item:hover h3 { color: var(--primary-red); }

.portfolio-item p {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.portfolio-item.featured-event {
    background: rgba(220, 20, 60, 0.03);
}

.portfolio-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.22rem 0.65rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
    font-family: var(--font-secondary);
}

/* ===================== GALLERY - MASONRY GRID ===================== */
.gallery {
    background: #0f0f0f;
    padding: var(--section-padding);
}

.gallery .section-title { color: #ffffff; }
.gallery .section-subtitle { color: rgba(255, 255, 255, 0.45); }
.gallery .section-divider { background: linear-gradient(90deg, var(--primary-red), var(--accent-red)); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 0.7rem;
    margin-bottom: 2.5rem;
}

/* Featured first image spans 2x2 */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Wide item */
.gallery-item:nth-child(6) {
    grid-column: span 2;
}

.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-expand {
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.gallery-item:hover .gallery-expand {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: scale(1.1);
}

.gallery-load-more { text-align: center; }

.gallery-load-btn {
    color: rgba(255, 255, 255, 0.75) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.gallery-load-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* ===================== PRESS - EDITORIAL ===================== */
.press {
    background: #f2f2f2;
    color: var(--text-dark);
}

.press-eyebrow {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-family: var(--font-secondary);
}

.press .section-title { color: var(--primary-black); }
.press .section-subtitle { color: #888; }

.press-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.press-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    aspect-ratio: 3/4;
}

.press-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.press-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.press-item:hover img { transform: scale(1.04); }

.press-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 20, 60, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.press-item:hover .press-overlay { opacity: 1; }

.press-expand {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    border: 1px solid white;
    border-radius: 30px;
    font-family: var(--font-secondary);
}

/* ===================== WHY CHOOSE US ===================== */
.why-choose-us { background: var(--background-light); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
}

.benefit-item {
    text-align: left;
    padding: 2.5rem 2rem;
    border-top: 2px solid rgba(220, 20, 60, 0.15);
    transition: border-color 0.35s ease, background 0.35s ease;
}

.benefit-item:hover {
    border-color: var(--primary-red);
    background: rgba(220, 20, 60, 0.02);
}

.benefit-item h3 {
    color: var(--primary-black);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.93rem;
}

/* ===================== CONTACT - FULL REDESIGN ===================== */
.contact {
    background: var(--primary-black);
    color: var(--text-light);
}

.contact .section-title { color: var(--text-light); }

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-group {
    border-left: 2px solid rgba(220, 20, 60, 0.25);
    padding-left: 1.5rem;
    transition: border-color 0.3s ease;
}

.contact-group:hover { border-color: var(--primary-red); }

.contact-group-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-family: var(--font-secondary);
}

.contact-group p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.contact-right { display: flex; align-items: stretch; }

.internship-box {
    background: rgba(220, 20, 60, 0.05);
    border: 1px solid rgba(220, 20, 60, 0.18);
    border-radius: 16px;
    padding: 3.5rem;
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease;
}

.internship-box:hover {
    border-color: rgba(220, 20, 60, 0.45);
}

.internship-box h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-family: var(--font-primary);
    position: relative;
}

.internship-box p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    font-size: 0.98rem;
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--background-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img { height: 95px; margin-bottom: 1rem; }
.footer-logo p { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul, .footer-services ul { list-style: none; }

.footer-links li, .footer-services li { margin-bottom: 0.5rem; }

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.footer-links a:hover { color: var(--primary-red); }

.footer-services li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact i { color: var(--primary-red); width: 18px; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
}

/* ===================== LIGHTBOX ===================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover { color: var(--primary-red); }

#lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-btn {
    background: rgba(220, 20, 60, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    pointer-events: all;
    transition: var(--transition-fast);
}

.lightbox-btn:hover { background: var(--primary-red); transform: scale(1.1); }

/* ===================== BACK TO TOP ===================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5); }
.back-to-top.show { display: flex; }

/* ===================== ANIMATION CLASSES ===================== */
.fade-in {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.slide-in-left.visible { opacity: 1; transform: translateX(0); }

.slide-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.slide-in-right.visible { opacity: 1; transform: translateX(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    section { padding: 55px 0; }

    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.97);
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        backdrop-filter: blur(10px);
        padding: 1.5rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 0.7rem 0; }

    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Hero */
    .hero-logo-img { height: 120px; }
    .hero-tagline { font-size: 1.6rem; letter-spacing: -0.01em; margin-bottom: 0.8rem; }
    .hero-sub-text { font-size: 0.85rem; margin-bottom: 2rem; }
    .hero-rule { margin-bottom: 1.2rem; }
    .hero-logo-wrap { margin-bottom: 1.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 0.8rem; }
    .hero-rings { display: none; } /* hide rings on mobile for performance */

    .section-title { font-size: 1.8rem; }
    .section-header { margin-bottom: 2rem; }

    /* About */
    .about-content { grid-template-columns: 1fr; gap: 1.5rem; }
    .profile-card { padding: 2rem; }

    /* Event ticker */
    .event-ticker-card { min-width: 220px; max-width: 220px; padding: 1.5rem; }
    .event-types { padding: 55px 0 45px; }

    /* Services — single column on mobile */
    .services-list { grid-template-columns: 1fr; }
    .service-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.6rem 1.2rem;
        border-right: none !important;
    }
    .service-name { font-size: 1.05rem; }
    .service-right { padding-top: 0; }
    .service-description { font-size: 0.85rem; margin-bottom: 0.7rem; }

    /* Portfolio — 2 columns on mobile (much less scroll) */
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-item { padding: 1.5rem 1.2rem; }
    .portfolio-item h3 { font-size: 1rem; }
    .portfolio-item p { font-size: 0.78rem; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 0.5rem;
    }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(6) { grid-column: span 1; }

    /* Press */
    .press-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    /* Why choose us */
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-item { padding: 1.5rem 1.2rem; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .internship-box { padding: 2rem; }
    .internship-box h3 { font-size: 1.4rem; }
    .contact-group p { font-size: 0.95rem; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .footer-logo { grid-column: 1; }
    .footer-contact p { justify-content: center; }

    /* Lightbox nav */
    .lightbox-nav {
        position: static;
        transform: none;
        margin-top: 1rem;
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    section { padding: 45px 0; }

    .hero-logo-img { height: 95px; }
    .hero-tagline { font-size: 1.25rem; }
    .hero-sub-text { display: none; } /* hide on tiny screens, too cluttered */
    .section-title { font-size: 1.7rem; }

    /* Services */
    .service-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.3rem 1rem; }

    /* Portfolio — keep 2 cols, just tighter */
    .portfolio-item { padding: 1.2rem 0.9rem; }

    /* Gallery single column */
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gallery-item:nth-child(1) { grid-column: span 1; }
    .gallery-item:nth-child(6) { grid-column: span 1; }

    /* Benefits: single column */
    .benefits-grid { grid-template-columns: 1fr; }

    .press-grid { grid-template-columns: 1fr; }
    .btn { padding: 12px 22px; font-size: 0.88rem; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-contact p { justify-content: center; }
    .footer-logo { grid-column: 1; }
}

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

/* Vision / Mission Blocks */
.vision-mission-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vm-item {
    border-left: 3px solid var(--primary-red);
    padding-left: 1.2rem;
}

.vm-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.vm-item p {
    color: var(--text-gray);
    line-height: 1.75;
}

/* Theatre Legacy Section */
.theatre-legacy {
    background: var(--secondary-black);
    color: var(--text-light);
    padding: var(--section-padding);
}

.theatre-legacy .section-title,
.theatre-legacy .section-subtitle {
    color: var(--text-light);
}

.theatre-legacy .section-subtitle {
    color: rgba(255,255,255,0.65);
}

.theatre-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.theatre-stat {
    text-align: center;
}

.theatre-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.theatre-stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.artists-heading {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.2rem;
}

.artists-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.artist-tag {
    padding: 0.5rem 1.4rem;
    border: 1px solid rgba(220, 20, 60, 0.5);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    background: rgba(220, 20, 60, 0.08);
    transition: var(--transition-smooth);
}

.artist-tag:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: var(--primary-red);
}

.theatre-types-text {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
}

.theatre-slogan {
    color: var(--text-light);
    font-style: italic;
    font-weight: 600;
}

/* Events Detailed Grid */
.events-detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.event-detail-card {
    padding: 2rem;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.event-detail-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.1);
    transform: translateY(-3px);
}

.event-detail-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.8rem;
}

.event-detail-card h3::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 3px;
    background: var(--primary-red);
    vertical-align: middle;
    margin-right: 0.6rem;
    border-radius: 2px;
}

.event-detail-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .events-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .theatre-stats {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .events-detailed-grid {
        grid-template-columns: 1fr;
    }
    .theatre-stat-number {
        font-size: 2.2rem;
    }
}
