/* ============================================================
   DRA ASIA — STYLES.CSS
   Muscular · Corporate · Advanced
   ============================================================ */

:root {
    --black: #000000;
    --dark: #0a0a0a;
    --dark2: #111111;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #b0b0b0;
    --crimson: #c4a165;
    --crimson-dark: #a68844;
    --border: rgba(255, 255, 255, 0.12);

    --font-head: 'Syncopate', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ==================== RESET ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ==================== UTILITIES ==================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-crimson {
    color: var(--crimson);
}

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

.section-tag {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--crimson);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
}

.lead-text {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 25px;
}

.body-text {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* ==================== CUSTOM CURSOR ==================== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--crimson);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.3s ease, height 0.3s ease;
}

.cursor.hover {
    width: 60px;
    height: 60px;
    background: var(--white);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 100;
    transition: padding 0.4s ease, background 0.4s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
}

.brand-logo img {
    height: 85px;
    /* Significantly increased for high visibility */
    width: auto;
    display: block;
    transition: height 0.4s ease, transform 0.4s ease;
}

.navbar.scrolled .brand-logo img {
    height: 60px;
}

.logo-accent {
    font-weight: 400;
    color: var(--crimson);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-status {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray);
}

.nav-menu-btn {
    background: none;
    border: none;
    width: 36px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: none;
}

.nav-menu-btn .line {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-menu-btn.active .line:first-child {
    transform: translateY(8px) rotate(45deg);
}

.nav-menu-btn.active .line:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==================== FULLSCREEN MENU ==================== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 90;
    display: flex;
    align-items: center;
    padding: 0 10%;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-overlay.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.menu-links {
    list-style: none;
}

.menu-links li {
    margin-bottom: 15px;
    overflow: hidden;
}

.nav-link {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1), color 0.3s ease;
}

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

.menu-overlay.active .nav-link {
    transform: translateY(0);
}

/* ==================== HERO ==================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img-wrapper {
    width: 100%;
    height: 100%;
}

.hero-img-wrapper img,
.hero-img-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    /* Adjusted to show more of the top subject on desktop */
    opacity: 0.55;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, #000 0%, transparent 25%),
        linear-gradient(to top, #000 0%, transparent 25%),
        radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-tag {
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--crimson);
    margin-bottom: 30px;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.word-block {
    display: block;
    opacity: 0;
    transform: translateY(60px);
}

.hero-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--gray-light);
    max-width: 550px;
    margin: 0 auto;
    opacity: 0;
}

/* Scroll indicator */
.scroll-cue {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.scroll-bar {
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--crimson);
    animation: pulse-down 2s infinite ease-in-out;
}

@keyframes pulse-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.scroll-cue span {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gray);
}

/* ==================== ABOUT ==================== */
.about {
    padding: 160px 0 100px;
    background: var(--black);
}

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

.badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    border: 1px solid var(--border);
    padding: 10px 18px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.badge:hover {
    border-color: var(--crimson);
    background: rgba(196, 161, 101, 0.08);
}

/* Marquee */
.marquee {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background: var(--crimson);
    padding: 18px 0;
    margin-top: 120px;
    transform: rotate(-1.5deg) scale(1.04);
}

.marquee-inner {
    display: flex;
    white-space: nowrap;
    gap: 40px;
    align-items: center;
    animation: marquee-slide 20s linear infinite;
}

@keyframes marquee-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-inner span {
    font-family: var(--font-head);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.marquee-inner .sep {
    font-size: 8px;
    opacity: 0.5;
}

/* ==================== DIVISIONS ==================== */
.divisions {
    position: relative;
}

.division {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.division-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.division-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transition: opacity 0.6s ease;
}

.division:hover .division-bg img {
    opacity: 0.5;
}

.division-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.6) 100%);
}

.division--right .division-bg::after {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.6) 100%);
}

.division-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
}

.division--right .division-inner {
    justify-content: flex-end;
}

.division-text {
    max-width: 600px;
    width: 100%;
}

.division--right .division-text {
    text-align: right;
}


.div-brand-header {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.div-brand-logo {
    height: auto;
    max-height: 120px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    filter: brightness(0.9) contrast(1) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    transition: filter 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.division:hover .div-brand-logo {
    filter: brightness(1.15) drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    transform: scale(1.04);
}

.division--cinematic .div-brand-logo {
    filter: brightness(0) invert(1) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.division--cinematic:hover .div-brand-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(196, 161, 101, 0.65));
    transform: scale(1.04);
}

.division--creative:hover .div-brand-logo {
    filter: brightness(1.15) drop-shadow(0 0 20px rgba(196, 161, 101, 0.45));
}

.division--pictures:hover .div-brand-logo {
    filter: brightness(1.15) drop-shadow(0 0 20px rgba(212, 168, 83, 0.45));
}

/* ==================== INLINE PARTNERS COMPONENT ==================== */
.div-partners {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.partners-label {
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray-light);
    opacity: 0.6;
    font-weight: 600;
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.partner-tag {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: default;
}

.division--cinematic .partner-tag:hover {
    background: rgba(196, 161, 101, 0.08);
    border-color: rgba(196, 161, 101, 0.35);
    color: #c4a165;
    box-shadow: 0 0 15px rgba(196, 161, 101, 0.15);
}

.division--creative .partner-tag:hover {
    background: rgba(196, 161, 101, 0.08);
    border-color: rgba(196, 161, 101, 0.35);
    color: #c4a165;
    box-shadow: 0 0 15px rgba(196, 161, 101, 0.15);
}

.division--pictures .partner-tag:hover {
    background: rgba(212, 168, 83, 0.08);
    border-color: rgba(212, 168, 83, 0.35);
    color: #d4a853;
    box-shadow: 0 0 15px rgba(212, 168, 83, 0.15);
}

.div-label {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--crimson);
    margin-bottom: 25px;
}


.div-name {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 30px;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
    max-width: 100%;
}

.div-desc {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 35px;
}

.div-services {
    list-style: none;
    margin-bottom: 35px;
}

.div-services li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    font-weight: 500;
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.div-services li:hover {
    padding-left: 10px;
    color: var(--crimson);
}

.division--right .div-services li:hover {
    padding-left: 0;
    padding-right: 10px;
}

.div-partner {
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--crimson);
    font-size: 14px;
    color: var(--gray-light);
}

.division--right .div-partner {
    border-left: none;
    border-right: 3px solid var(--crimson);
}

/* ==================== PORTFOLIO — HORIZONTAL SCROLL ==================== */
.portfolio {
    background: var(--dark);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.port-header {
    margin-bottom: 40px;
}

.port-scroll-area {
    overflow: visible;
}

.port-track {
    display: flex;
    gap: 30px;
    padding: 0 40px 40px;
    width: max-content;
    align-items: stretch;
}

.port-card {
    width: 380px;
    height: calc(100vh - 260px);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.port-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.port-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(30%);
}

.port-card:hover .port-img img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.port-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
}

.port-tag {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--crimson);
    margin-bottom: 8px;
}

.port-info h3 {
    font-family: var(--font-head);
    font-size: clamp(0.85rem, 1.5vw, 1.3rem);
    font-weight: 700;
    text-transform: uppercase;
}

/* ==================== FUTURE ==================== */
.future {
    padding: 200px 0;
    background: var(--black);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.mega-title {
    font-family: var(--font-head);
    font-size: clamp(3rem, 9vw, 8rem);
    font-weight: 700;
    line-height: 0.95;
    margin: 25px 0;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
    transition: -webkit-text-stroke-color 0.4s ease;
}

.mega-title:hover {
    -webkit-text-stroke-color: var(--white);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 100px 0 40px;
    background: var(--black);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--gray);
    margin-bottom: 25px;
}

.footer-details {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
}

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

.form-field {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}

.form-field:focus {
    border-color: var(--crimson);
}

.form-field::placeholder {
    color: var(--gray);
}

.btn-submit {
    background: var(--crimson);
    color: var(--white);
    border: none;
    padding: 18px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: none;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 13px;
}

.footer-socials {
    display: flex;
    gap: 25px;
}

.footer-socials a {
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--crimson);
}

/* ==================== DRA ASIA NEW SECTIONS ==================== */
.cinematic-flex {
    gap: 80px;
    align-items: center;
}

.core-experiences-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.core-box {
    border: 1px solid rgba(196, 161, 101, 0.2);
    padding: 30px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.core-box:hover {
    border-color: #c4a165;
    transform: translateY(-5px);
}

.core-box h4 {
    font-family: var(--font-head);
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.core-box .star {
    color: #c4a165;
    font-size: 20px;
}

.core-box p {
    color: var(--gray-light);
    font-size: 15px;
}

.future-vision-block {
    margin-top: 120px;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-divider {
    width: 60px;
    height: 2px;
    background: #c4a165;
    margin: 20px auto 40px;
}

.vision-content p {
    color: var(--gray-light);
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: center;
}

.vision-quote {
    font-family: var(--font-head);
    font-size: 22px;
    color: #c4a165;
    font-style: italic;
    margin-top: 50px;
    font-weight: 400;
    text-align: center;
}

.horizontal-gallery-cinematic {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scrollbar-width: none;
    /* Firefox */
}

.horizontal-gallery-cinematic::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.gallery-track {
    display: flex;
    gap: 60px;
    width: max-content;
    padding: 0 40px;
    align-items: center;
}

.gallery-item-pdf {
    flex-shrink: 0;
    width: 800px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: #050505;
    /* Fallback for transparency */
    transition: transform 0.4s ease;
}

.gallery-item-pdf:hover {
    transform: scale(1.02);
}

.gallery-item-pdf canvas {
    width: 100%;
    height: auto;
    display: block;
}

.concert-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c4a165;
    text-transform: uppercase;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(196, 161, 101, 0.3);
    text-align: center;
}

#sand-canvas {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.cinematic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--black) 0%, transparent 15%, transparent 85%, var(--black) 100%), rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

/* ==================== DIVISION 02: DRA CREATIVE ==================== */
.division--creative {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--black);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.div-bg-parallax--creative {
    position: absolute;
    inset: -10% -5%;
    z-index: 0;
    pointer-events: none;
}

.div-bg-parallax--creative img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.35) contrast(1.1);
    opacity: 0.55;
}

.creative-flex {
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

/* ---- LEFT: Services Grid ---- */
.services-grid--creative {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 55%;
    order: 1;
}

/* Creative card overrides on top of base service-card-premium */
.service-card-premium--creative {
    border-color: rgba(196, 161, 101, 0.15);
}

.service-card-premium--creative:hover {
    box-shadow: 0 20px 40px rgba(196, 161, 101, 0.12);
    border-color: rgba(196, 161, 101, 0.5);
}

.service-card-premium--creative .card-bg img {
    filter: brightness(0.7) saturate(0.9);
}

.service-card-premium--creative:hover .card-bg img {
    filter: brightness(0.9) saturate(1.1);
}

.card-overlay--creative {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.15) 100%);
    transition: opacity 0.6s ease;
}

.service-card-premium--creative:hover .card-overlay--creative {
    opacity: 0.7;
}

.card-number--creative {
    color: var(--crimson) !important;
}

/* ---- RIGHT: Text Content ---- */
.division-text--creative {
    flex: 1;
    max-width: 42%;
    order: 2;
    text-align: left;
}

.div-label--creative {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--crimson);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
}

.div-name--creative {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 30px;
    color: var(--white);
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

.div-desc--creative {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ---- Creative Panel Styles ---- */
.cinematic-panels--creative {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
}

.panel--creative {
    position: absolute;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 0 10%;
}

.panel--creative.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-nav--creative {
    position: absolute;
    top: 50px;
    left: 50px;
    background: none;
    border: 1px solid var(--border);
    color: var(--white);
    padding: 12px 30px;
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1010;
}

.back-nav--creative:hover {
    background: var(--crimson);
    color: var(--white);
    border-color: var(--crimson);
}

/* Crimson-themed core boxes for creative panels */
.core-box--creative {
    border-color: rgba(196, 161, 101, 0.2);
    background: rgba(196, 161, 101, 0.04);
}

.core-box--creative:hover {
    border-color: var(--crimson);
}

/* ---- Division 02 Responsive ---- */
@media (max-width: 1100px) {
    .creative-flex {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .services-grid--creative {
        max-width: 100%;
    }

    .division-text--creative {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .division--creative {
        min-height: auto;
        padding: 80px 0;
    }

    .services-grid--creative {
        gap: 15px;
    }

    .service-card-premium--creative {
        height: 220px;
    }

    .service-card-premium--creative .card-content h3 {
        font-size: 1rem;
    }

    .service-card-premium--creative .card-content {
        padding: 20px;
    }

    .back-nav--creative {
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 600px) {
    .services-grid--creative {
        grid-template-columns: 1fr;
    }
}

/* ==================== DIVISION 03: DRA PICTURES ==================== */
.division--pictures {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--black);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.div-bg-parallax--pictures {
    position: absolute;
    inset: -10% -5%;
    z-index: 0;
    pointer-events: none;
}

.div-bg-parallax--pictures img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.3) contrast(1.1);
    opacity: 0.5;
}

.pictures-flex {
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

/* ---- LEFT: Text Content ---- */
.division-text--pictures {
    flex: 1;
    max-width: 42%;
    order: 2;
    text-align: left;
}

.div-label--pictures {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    color: #d4a853;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
}

.div-name--pictures {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 30px;
    color: var(--white);
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

.div-desc--pictures {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ---- RIGHT: Services Grid ---- */
.services-grid--pictures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 55%;
    order: 1;
}

/* Pictures card overrides on top of base service-card-premium */
.service-card-premium--pictures {
    border-color: rgba(212, 168, 83, 0.15);
}

.service-card-premium--pictures:hover {
    box-shadow: 0 20px 40px rgba(212, 168, 83, 0.12);
    border-color: rgba(212, 168, 83, 0.5);
}

.service-card-premium--pictures .card-bg img {
    filter: brightness(0.7) saturate(0.85);
}

.service-card-premium--pictures:hover .card-bg img {
    filter: brightness(0.9) saturate(1.1);
}

.card-overlay--pictures {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.15) 100%);
    transition: opacity 0.6s ease;
}

.service-card-premium--pictures:hover .card-overlay--pictures {
    opacity: 0.7;
}

.card-number--pictures {
    color: #d4a853 !important;
}

/* ---- Pictures Panel Styles ---- */
.cinematic-panels--pictures {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
}

.panel--pictures {
    position: absolute;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 0 10%;
}

.panel--pictures.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-nav--pictures {
    position: absolute;
    top: 50px;
    left: 50px;
    background: none;
    border: 1px solid var(--border);
    color: var(--white);
    padding: 12px 30px;
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1010;
}

.back-nav--pictures:hover {
    background: #d4a853;
    color: var(--black);
    border-color: #d4a853;
}

/* Amber-themed core boxes */
.core-box--pictures {
    border-color: rgba(212, 168, 83, 0.2);
    background: rgba(212, 168, 83, 0.04);
}

.core-box--pictures:hover {
    border-color: #d4a853;
}

/* ---- Film Catalogue Tabs ---- */
.film-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.film-tab {
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.2);
    color: var(--gray-light);
    padding: 10px 22px;
    font-family: var(--font-head);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.film-tab:hover {
    border-color: #d4a853;
    color: #d4a853;
}

.film-tab.active {
    background: #d4a853;
    border-color: #d4a853;
    color: var(--black);
    font-weight: 700;
}

.film-tab-content {
    display: none;
}

.film-tab-content.active {
    display: block;
}

/* Film Title Grid */
.film-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.film-title-card {
    background: rgba(212, 168, 83, 0.06);
    border: 1px solid rgba(212, 168, 83, 0.15);
    padding: 18px 16px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white);
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.film-title-card:hover {
    border-color: #d4a853;
    background: rgba(212, 168, 83, 0.12);
    color: #d4a853;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 168, 83, 0.1);
}

/* ---- Expertise List ---- */
.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    max-width: 500px;
    margin: 30px auto 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.5;
}

.expertise-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---- Scope Grid ---- */
.scope-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.scope-item {
    background: rgba(212, 168, 83, 0.06);
    border: 1px solid rgba(212, 168, 83, 0.15);
    padding: 16px 14px;
    font-size: 12px;
    font-family: var(--font-head);
    letter-spacing: 0.5px;
    color: var(--gray-light);
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.scope-item:hover {
    border-color: #d4a853;
    color: #d4a853;
}

/* ---- Division 04 Responsive ---- */
@media (max-width: 1100px) {
    .pictures-flex {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .services-grid--pictures {
        max-width: 100%;
    }

    .division-text--pictures {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .division--pictures {
        min-height: auto;
        padding: 80px 0;
    }

    .services-grid--pictures {
        gap: 15px;
    }

    .service-card-premium--pictures {
        height: 220px;
    }

    .service-card-premium--pictures .card-content h3 {
        font-size: 1rem;
    }

    .service-card-premium--pictures .card-content {
        padding: 20px;
    }

    .back-nav--pictures {
        top: 20px;
        left: 20px;
    }

    .film-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

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

@media (max-width: 600px) {
    .services-grid--pictures {
        grid-template-columns: 1fr;
    }

    .film-tabs {
        flex-direction: column;
        align-items: center;
    }

    .film-tab {
        width: 100%;
        max-width: 280px;
    }
}

/* ==================== RESPONSIVE — TABLET ==================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .division {
        min-height: auto;
        padding: 120px 0;
    }

    .division--right .division-inner {
        justify-content: flex-start;
    }

    .division--right .division-text {
        text-align: left;
    }

    .division--right .div-partner {
        border-right: none;
        border-left: 3px solid var(--crimson);
    }

    .division--right .div-services li:hover {
        padding-right: 0;
        padding-left: 10px;
    }

    .port-card {
        width: 350px;
        height: calc(100vh - 240px);
    }
}

/* ==================== RESPONSIVE — MOBILE ==================== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-status {
        display: none;
    }

    .brand-logo {
        font-size: 18px;
    }

    /* Hero Mobile */
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 0;
    }

    .hero-desc {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .hero-tag {
        font-size: 10px;
        letter-spacing: 3px;
    }

    /* About Mobile */
    .about {
        padding: 100px 0 60px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .marquee {
        margin-top: 80px;
    }

    .marquee-inner span {
        font-size: 1rem;
    }

    /* Divisions Mobile */
    .division {
        padding: 80px 0;
    }

    .div-name {
        font-size: 2rem;
    }

    .division-bg::after,
    .division--right .division-bg::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%);
    }

    .division-text {
        max-width: 100%;
    }

    .div-desc {
        font-size: 15px;
    }

    /* Portfolio Mobile */
    .portfolio {
        padding: 80px 0 0;
    }

    .port-track {
        gap: 20px;
        padding: 0 20px 60px;
    }

    .port-card {
        width: 260px;
        height: calc(100vh - 220px);
    }

    .port-info {
        padding: 25px 20px;
    }

    .port-info h3 {
        font-size: 0.85rem;
    }

    /* Future Mobile */
    .future {
        padding: 120px 0;
    }

    .mega-title {
        font-size: 2.5rem;
        -webkit-text-stroke-width: 1px;
    }

    /* Footer Mobile */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        gap: 40px;
    }

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

/* ==================== RESPONSIVE — SMALL PHONES ==================== */
/* ==================== CINEMATIC DIVISION REVAMP ==================== */
.division--cinematic {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--black);
    display: flex;
    align-items: center;
}

.div-bg-parallax {
    position: absolute;
    inset: -10% -5%;
    z-index: 0;
    pointer-events: none;
}

.div-bg-parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(0.4) contrast(1.1);
    opacity: 0.6;
}

.cinematic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.9) 0%,
            transparent 20%,
            transparent 80%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

.cinematic-grain {
    position: absolute;
    inset: 0;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 2;
}

.cinematic-flex {
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
    min-width: 300px;
}

.service-card-premium {
    position: relative;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1), box-shadow 0.6s ease, border-color 0.6s ease;
    border: 1px solid rgba(196, 161, 101, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.service-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(196, 161, 101, 0.15);
    border-color: rgba(196, 161, 101, 0.7);
}

.card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1), filter 0.6s ease;
    filter: brightness(0.85) saturate(1);
}

.service-card-premium:hover .card-bg img {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 45%, transparent 100%);
    transition: opacity 0.6s ease;
}

.service-card-premium:hover .card-overlay {
    opacity: 0.6;
}

.card-content {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.card-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--crimson);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.service-card-premium:hover .card-number {
    opacity: 1;
}

.card-content h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.2, 1), color 0.3s ease;
}

.service-card-premium:hover .card-content h3 {
    transform: translateY(0);
    color: var(--white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 1100px) {
    .cinematic-flex {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Cinematic Panels */
.cinematic-panels {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
}

.panel {
    position: absolute;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 0 10%;
}

.panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-nav {
    position: absolute;
    top: 50px;
    left: 50px;
    background: none;
    border: 1px solid var(--border);
    color: var(--white);
    padding: 12px 30px;
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1010;
}

.back-nav:hover {
    background: var(--white);
    color: var(--black);
}

.panel-content {
    max-width: 900px;
    width: 100%;
}

.panel-content h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 30px;
}

.panel-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-light);
}

/* NEW CINEMATIC PANEL STYLES */
.panel-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.panel-layout--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.panel-visual {
    width: 100%;
    position: relative;
    perspective: 1200px;
}

.pdf-canvas {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
    transform: rotateY(12deg) rotateX(4deg);
    transition: transform 0.6s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pdf-canvas:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.spotlight-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.spotlight-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(196, 161, 101, 0.5) 0%, transparent 60%);
    z-index: 0;
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    from {
        opacity: 0.4;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1.1);
    }
}

.spotlight-logo {
    position: relative;
    z-index: 1;
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px var(--crimson);
}

.panel--scrollable {
    display: block !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 120px 10% 80px !important;
    scrollbar-width: none !important;
    /* Firefox */
}

.panel--scrollable::-webkit-scrollbar {
    display: none !important;
    /* Safari and Chrome */
}

/* Ensure back navigation is fixed in scrollable panels so it remains accessible */
.panel--scrollable .back-nav,
.panel--scrollable .back-nav--creative,
.panel--scrollable .back-nav--pictures {
    position: fixed !important;
    top: 50px !important;
    left: 50px !important;
    z-index: 1010;
}

@media (max-width: 768px) {
    .panel--scrollable {
        padding: 80px 5% 60px !important;
    }

    .panel--scrollable .back-nav,
    .panel--scrollable .back-nav--creative,
    .panel--scrollable .back-nav--pictures {
        top: 20px !important;
        left: 20px !important;
    }
}

/* Helper to lock background page scrolling when fullscreen panels are active */
html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
}

.panel-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

.pdf-canvas-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.2);
}

.panel-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.panel-content--scroll {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 5%;
}

.scroll-space {
    height: 60vh;
}

.panel-content--full {
    max-width: 100%;
    padding: 0 5%;
}

.horizontal-gallery-cinematic {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
    padding: 40px 0;
}

.horizontal-gallery-cinematic:active {
    cursor: grabbing;
}

.horizontal-gallery-cinematic::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: 60px;
    width: max-content;
    padding: 0 5vw;
}

.gallery-item-pdf {
    width: 450px;
    flex-shrink: 0;
    perspective: 1200px;
}

.gallery-item-pdf .pdf-canvas {
    transform: rotateY(0deg);
}

.gallery-item-pdf:hover .pdf-canvas {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .services-nav {
        grid-template-columns: 1fr;
    }

    .back-nav {
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .div-name {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .port-card {
        width: 220px;
        height: calc(100vh - 200px);
    }
}

/* ==================== SERVICES GRID 3-CARD CINEMATIC LAYOUT ==================== */
.services-grid--cinematic .service-card-premium:first-child {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .services-grid--cinematic .service-card-premium:first-child {
        grid-column: span 1;
    }
}

/* ==================== PAST PROJECTS — FEATURED CONCERT CARDS ==================== */
.gallery-item-concert {
    flex-shrink: 0;
    width: 550px;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(196, 161, 101, 0.2);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}

.gallery-item-concert:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 30px 60px rgba(196, 161, 101, 0.2), 0 10px 30px rgba(0, 0, 0, 0.8);
    border-color: rgba(196, 161, 101, 0.5);
}

.gallery-item-concert>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    filter: brightness(0.75) saturate(1.1);
}

.gallery-item-concert:hover>img {
    transform: scale(1.08);
    filter: brightness(0.9) saturate(1.2);
}

.gallery-concert-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.1) 70%,
            transparent 100%);
    transition: opacity 0.5s ease;
}

.gallery-item-concert:hover .gallery-concert-overlay {
    opacity: 0.8;
}

.gallery-concert-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    transform: translateY(4px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item-concert:hover .gallery-concert-info {
    transform: translateY(0);
}

.gallery-concert-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 10px;
    letter-spacing: 3px;
    color: #c4a165;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-concert-title {
    font-family: var(--font-head);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.gallery-concert-venue {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-light);
    letter-spacing: 0.5px;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .gallery-item-concert {
        width: 320px;
        height: 260px;
    }

    .gallery-concert-info {
        padding: 20px;
    }

    .gallery-concert-title {
        font-size: 1.1rem;
    }
}

/* Adjust spacing for panel header to avoid overlap with back button */
.panel-header {
    margin-top: 120px;
    /* increase spacing */
}

/* ==================== PDF GALLERY ITEM STYLING (matches concert cards) ==================== */
.gallery-item-pdf {
    flex-shrink: 0;
    width: 550px;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(196, 161, 101, 0.2);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}

.gallery-item-pdf:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 30px 60px rgba(196, 161, 101, 0.2), 0 10px 30px rgba(0, 0, 0, 0.8);
    border-color: rgba(196, 161, 101, 0.5);
}

.gallery-item-pdf>canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    filter: brightness(0.75) saturate(1.1);
}

.gallery-item-pdf:hover>canvas {
    transform: scale(1.08);
    filter: brightness(0.9) saturate(1.2);
}

@media (max-width: 768px) {
    .gallery-item-pdf {
        width: 320px;
        height: 260px;
    }
}

/* ==================== DIVISION 03: DRA MINDWORKS ==================== */
.division--mindworks {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--black);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.div-bg-parallax--mindworks {
    position: absolute;
    inset: -10% -5%;
    z-index: 0;
    pointer-events: none;
}

.div-bg-parallax--mindworks img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.3) contrast(1.1);
    opacity: 0.55;
}

.mindworks-flex {
    gap: 80px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

/* ---- LEFT: Text Content ---- */
.division-text--mindworks {
    flex: 1;
    max-width: 45%;
    order: 1;
    text-align: left;
}

/* ---- RIGHT: Content ---- */
.mindworks-right {
    flex: 1;
    max-width: 45%;
    order: 2;
    padding-top: 20px;
}

.div-label--mindworks {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--crimson);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
}

.div-name--mindworks {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 30px;
    color: var(--white);
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

.div-desc--mindworks {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ---- Division 03 (Mindworks) Responsive ---- */
@media (max-width: 1100px) {
    .mindworks-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 40px !important;
    }

    .division-text--mindworks {
        max-width: 100%;
    }

    .mindworks-right {
        max-width: 100% !important;
        padding-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .division--mindworks {
        min-height: auto;
        padding: 80px 0;
    }
}

/* ---- Mindworks Custom Brand Logo Styling ---- */
.div-brand-logo--mindworks {
    background: rgba(255, 255, 255, 0.94);
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.division:hover .div-brand-logo--mindworks {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 15px 35px rgba(196, 161, 101, 0.25);
    transform: scale(1.04);
}