:root {
    --bg-dark: #0a0510;
    --bg-darker: #050208;
    --accent-primary: #ff0055;
    /* The signature Crimson Red */
    --accent-secondary: #ffffff;
    --accent-glow: rgba(255, 0, 85, 0.4);
    --text-main: #ffffff;
    --text-dim: #b0a8b9;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-heavy: rgba(10, 5, 16, 0.8);
    --gradient: linear-gradient(135deg, #ff0055, #8800ff);
    --gradient-gold: linear-gradient(135deg, #ffffff, #ff0055);
    --gradient-dark: linear-gradient(180deg, transparent, rgba(10, 5, 16, 0.9));
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 30px var(--accent-glow);
    --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Global Atmosphere Particles */
#global-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

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

html,
body {
    width: 100%;
    overflow-x: hidden;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 17px;
}

section {
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* Cinematic Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-darker);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s cubic-bezier(1, 0, 0, 1), opacity 1s;
}

.preloader-content {
    text-align: center;
    width: 300px;
}

.preloader-logo {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 20px;
    color: var(--text-main);
    text-transform: uppercase;
}

.preloader-logo span {
    color: var(--accent-primary);
    font-weight: 900;
    text-shadow: 0 0 20px var(--accent-glow);
}

.preloader-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--accent-primary);
    transition: width 0.3s;
}

.preloader-percent {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 2px;
}

@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }

    .cursor-dot,
    .cursor-outline {
        display: block;
    }
}

@media (hover: none) or (pointer: coarse) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transition: transform 0.1s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, background 0.3s;
}

.cursor-label {
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s;
}

.cursor-outline.active .cursor-label {
    opacity: 1;
}

::selection {
    background: var(--accent-primary);
    color: white;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}


/* Mission & Vision */
.mission-vision {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mv-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent-primary);
    transition: var(--transition-smooth);
}

.mv-item:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 35px;
}

.mv-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-top: 5px;
}

.mv-text h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
    color: white;
}

.mv-text p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 0;
    line-height: 1.5;
}

.mv-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .section-header {
        padding: 0 6%;
    }

    .section-header h2 {
        font-size: clamp(1.35rem, 4.8vw, 1.85rem);
        line-height: 1.2;
        max-width: 18ch;
        margin: 0 auto 1rem;
        overflow-wrap: normal;
        word-break: normal;
        text-wrap: balance;
    }

    .gallery-section {
        padding: 100px 6%;
    }

    .international-section {
        padding: 100px 0;
    }

    .contact-section {
        padding: 100px 6%;
    }

    .contact-container,
    .contact-form-container,
    .contact-info-side {
        max-width: 100%;
        width: 100%;
    }

    .contact-form-container {
        padding: 30px;
    }

    .map-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .map-container iframe {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 90px 5%;
    }

    .contact-form-container,
    .contact-info-side {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .map-container {
        height: 280px;
        width: 100%;
        max-width: 100%;
    }
}

/* Contact & Map */
#join-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#join-form input,
#join-form select,
#join-form textarea {
    width: 100%;
    padding: 1.2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

#join-form input:focus,
#join-form select:focus,
#join-form textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

#join-form select option {
    background: var(--bg-darker);
    color: var(--text-main);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(10, 5, 16, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
}

.logo-text span {
    color: var(--accent-primary);
    font-weight: 800;
    letter-spacing: 4px;
    background: none;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: initial;
    filter: drop-shadow(0 0 5px rgba(255, 0, 85, 0.3));
}

.logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.cta-btn {
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--accent-primary);
    background: transparent;
    color: var(--text-main);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.cta-btn:hover {
    background: var(--accent-primary);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
}

/* Hero Section with Slider */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 3s cubic-bezier(0.22, 1, 0.36, 1);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    will-change: opacity, transform;
}

.slide.active {
    opacity: 1;
    animation-duration: 22s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
}

@keyframes kenBurnsZoomIn {
    0% {
        transform: scale(1.02) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.08) translate3d(-0.6%, -0.4%, 0);
    }

    100% {
        transform: scale(1.14) translate3d(0.2%, -0.2%, 0);
    }
}

@keyframes kenBurnsZoomOut {
    0% {
        transform: scale(1.14) translate3d(0.2%, -0.2%, 0);
    }

    50% {
        transform: scale(1.08) translate3d(0.6%, 0.4%, 0);
    }

    100% {
        transform: scale(1.02) translate3d(0, 0, 0);
    }
}

.slide.zoom-in.active {
    animation-name: kenBurnsZoomIn;
}

.slide.zoom-out.active {
    animation-name: kenBurnsZoomOut;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--noise);
    opacity: 0.05;
    z-index: 2;
    pointer-events: none;
}

.hero-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60vmax;
    height: 60vmax;
    background: radial-gradient(circle, rgba(255, 0, 85, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: screen;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 5, 16, 0.18) 0%, rgba(10, 5, 16, 0.4) 50%, rgba(10, 5, 16, 0.85) 100%);
    z-index: -1;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    z-index: 1;
    pointer-events: none;
    letter-spacing: 0.1em;
}

.hero-prism {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 0, 85, 0.05) 0%,
            rgba(0, 136, 255, 0.05) 30%,
            transparent 70%);
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: color-dodge;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    padding: 0 8%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-top: -5vh;
    /* Slightly offset for a more dynamic look */
}

.hero-pre-title {
    font-size: 0.8rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--accent-secondary);
    margin-bottom: 2rem;
}

.hero h1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.text-upper {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.8;
}

.text-main {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.brand-row-top {
    font-size: clamp(3rem, 11vw, 12rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -2px;
}

.brand-row-top .word-black {
    color: var(--text-main);
    font-weight: 300;
}

.brand-row-top .word-lion {
    color: var(--accent-primary);
    position: relative;
    text-shadow: 0 0 30px rgba(255, 0, 85, 0.3);
}

.brand-row-bottom {
    font-size: clamp(1rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 25px;
    color: var(--text-dim);
    margin-top: -1vw;
    text-indent: 10px;
    opacity: 0.8;
}

/* Hero Title Adjustments */
.hero h1 {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    pointer-events: none;
}

.word-top {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 8vw;
    color: var(--text-main);
    margin-left: 5%;
}

.word-bottom {
    font-size: 16vw;
    font-weight: 900;
    line-height: 0.8;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
    margin-top: -2vw;
}

.chromatic-text {
    position: relative;
    display: inline-block;
}

.chromatic-text::before,
.chromatic-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: transform 0.1s ease-out, opacity 0.15s;
}

.chromatic-text::before {
    color: #ff0055;
    mix-blend-mode: screen;
}

.chromatic-text::after {
    color: #0088ff;
    mix-blend-mode: screen;
}

.hero-section:hover .chromatic-text::before {
    opacity: 0.5;
    transform: translate(var(--shift-x), var(--shift-y));
}

.hero-section:hover .chromatic-text::after {
    opacity: 0.5;
    transform: translate(calc(var(--shift-x) * -1), calc(var(--shift-y) * -1));
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.arrow-span span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin: -5px;
    animation: scroll-arrow 2s infinite;
}

.arrow-span span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow-span span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 25px;
    }
}

@keyframes scroll-arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

.hero p {
    max-width: 550px;
    font-size: 1.2rem;
    color: var(--text-dim);
    margin: 3.5rem 0;
    line-height: 1.8;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 40px;
}

.btn-magnetic {
    position: relative;
    padding: 20px 45px;
    background: var(--accent-primary);
    color: white;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 3px;
    border-radius: 2px;
    transition: all 0.4s;
    overflow: hidden;
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.83, 0, 0.17, 1);
    z-index: 1;
}

.btn-magnetic:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: color 0.4s;
}

.btn-magnetic:hover .btn-text {
    color: black;
}

.btn-link {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 4px;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-primary);
    padding-bottom: 5px;
    transition: gap 0.3s;
}

.hero-side-nav {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 20;
}

.side-item {
    writing-mode: vertical-lr;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    transform: rotate(180deg);
}

.side-item:hover {
    color: var(--accent-primary);
    transform: rotate(180deg) translateX(10px);
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(10, 5, 16, 0.35);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
}

.hero-arrow:hover {
    border-color: var(--accent-primary);
    background: rgba(255, 0, 85, 0.25);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
}

@media (max-width: 768px) {
    .hero-controls {
        right: 50%;
        transform: translateX(50%);
        bottom: 12px;
    }
}

/* About Section - Editorial Legacy Upgrade */
.about-section {
    padding: 150px 0;
    position: relative;
    background: var(--bg-darker);
    overflow: hidden;
}

.about-background-text {
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 1;
    letter-spacing: 20px;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-visuals {
    position: relative;
    display: flex;
    align-items: center;
}

.about-img-main-wrapper {
    width: 80%;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    /* Softer professional look */
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-img-main {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-img-sub-wrapper {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 50%;
    z-index: 3;
    border: 10px solid var(--bg-darker);
    border-radius: 20px;
    /* Matching border radius */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-img-sub {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    /* Explicit inner radius to match outer */
}

.about-experience-badge {
    position: absolute;
    top: 40px;
    left: -20px;
    /* Moved in slightly to avoid being hidden */
    background: var(--accent-primary);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4;
    border-radius: 4px;
    /* Slight radius for the badge too */
}

.about-experience-badge .num {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.about-experience-badge .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 5px;
}

.about-tag {
    color: var(--accent-primary);
    font-weight: 800;
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Redefined Stats */
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-box {
    padding-left: 20px;
    border-left: 1px solid var(--glass-border);
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
}

.stat-box p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 0;
}

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

.section-header h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--accent-primary);
}

.section-header p {
    color: var(--text-dim);
    font-size: 1.2rem;
}

.gallery-section {
    padding: 140px 10%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s;
}

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

.item-info h3 {
    font-size: 1.7rem;
    margin-bottom: 5px;
}

.item-info p {
    font-size: 1rem;
    color: var(--text-dim);
}

/* International Stages */
.international-section {
    padding: 120px 0;
    position: relative;
}

.international-section .section-header {
    padding: 0 6%;
}

.stage-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 0 0 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    width: 100%;
    scroll-padding: 0 6%;
}

.stage-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    min-width: 0;
    flex: 0 0 calc((100% - 60px) / 3);
    scroll-snap-align: start;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: scale(0.96);
}

.stage-card.stage-active {
    transform: scale(1.06);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.stage-grid::-webkit-scrollbar {
    height: 8px;
}

.stage-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
}

.stage-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 85, 0.6);
    border-radius: 999px;
}

.stage-scroll {
    position: relative;
    width: 100%;
    padding: 0 6%;
}

.stage-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(10, 5, 16, 0.45);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.stage-arrow.prev {
    left: 24px;
}

.stage-arrow.next {
    right: 24px;
}

.stage-arrow:hover {
    border-color: var(--accent-primary);
    background: rgba(255, 0, 85, 0.25);
    box-shadow: 0 0 18px rgba(255, 0, 85, 0.3);
}

.stage-hint {
    margin-top: 16px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.stage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s;
}

.stage-card:hover img {
    transform: scale(1.1);
}

.stage-card .location {
    font-size: 0.8rem;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.stage-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.stage-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Team Gallery */
.team-gallery {
    columns: 3 300px;
    gap: 20px;
    padding: 40px 0;
}

.team-gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.team-gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.team-gallery-item:hover img {
    transform: scale(1.03);
}

.contact-section {
    padding: 120px 10%;
    overflow-x: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

.contact-form-container {
    background: var(--glass);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

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

.contact-form input,
.contact-form textarea {
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.07);
}

.contact-form button.btn.primary {
    background: var(--accent-primary);
    padding: 20px;
    border-radius: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.4s;
}

.contact-form button.btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 85, 0.3);
    filter: brightness(1.1);
}

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

.map-container {
    width: 100%;
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.address-info {
    text-align: left;
}

.address-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.address-item i {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.address-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.address-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

/* Footer Section */
footer {
    background: var(--bg-darker);
    padding: 100px 10% 40px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-decoration: none;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-logo span {
    color: var(--text-main);
    font-weight: 300;
}

.footer-logo span span {
    color: var(--accent-primary);
    font-weight: 800;
}

.footer-logo-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
}

.footer-desc {
    color: var(--text-dim);
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: var(--text-dim);
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.newsletter h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
    flex: 1;
    min-width: 0;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    background: var(--accent-primary);
    border: none;
    color: white;
    cursor: pointer;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-dim);
    font-size: 0.9rem;
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    color: white;
    text-decoration: none;
    width: 40px;
    height: 40px;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.socials a:hover {
    transform: translateY(-5px);
}

/* International Stages */
.international-section {
    padding: 150px 10%;
    background-image: linear-gradient(rgba(5, 2, 8, 0.8), rgba(5, 2, 8, 0.8)), url('assets/global/IMG_3022.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.tour-section {
    padding: 110px 8% 80px;
    background: var(--bg-dark);
}

.manifesto-section {
    padding: 140px 10%;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

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

.manifesto-label {
    color: var(--accent-primary);
    letter-spacing: 6px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.manifesto-content h2 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.manifesto-content h2 span {
    color: var(--accent-primary);
}

.manifesto-content p {
    font-size: 1.25rem;
    color: var(--text-dim);
    line-height: 1.9;
    margin-bottom: 40px;
}

.manifesto-signature {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.manifesto-signature span {
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.signature-section {
    padding: 140px 10%;
    background: var(--bg-dark);
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.signature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-smooth);
}

.signature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.signature-title {
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.signature-card p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.7;
}

.signature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.signature-tags span {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
}

.tour-highlight {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin: 60px 0;
    align-items: center;
}

.tour-map {
    background: var(--glass-heavy);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.map-title {
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-dim);
}

.map-shell {
    position: relative;
    height: 280px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 0, 85, 0.2), transparent 35%),
        radial-gradient(circle at 70% 60%, rgba(136, 0, 255, 0.2), transparent 35%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.world-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.22;
    fill: rgba(255, 255, 255, 0.2);
}

.world-map path {
    stroke: rgba(255, 255, 255, 0.25);
    stroke-width: 1.5;
}

.map-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.7);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.map-dot::after {
    content: attr(data-label);
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 5, 16, 0.9);
    border: 1px solid var(--glass-border);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.map-dot:hover::after {
    opacity: 1;
}

.map-legend {
    margin-top: 15px;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.tour-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.country-chip {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    transition: var(--transition-smooth);
}

.country-chip:hover {
    color: white;
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.2);
}

.tour-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tour-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.tour-card:hover .tour-img {
    transform: scale(1.08);
}

.tour-info {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.tour-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.tour-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Tour Map Dot Positions */
.d-usa {
    left: 22%;
    top: 40%;
}

.d-canada {
    left: 22%;
    top: 25%;
}

.d-england {
    left: 48%;
    top: 30%;
}

.d-france {
    left: 50%;
    top: 40%;
}

.d-spain {
    left: 47%;
    top: 50%;
}

.d-italy {
    left: 53%;
    top: 50%;
}

.d-germany {
    left: 52%;
    top: 38%;
}

.d-hungary {
    left: 56%;
    top: 42%;
}

.d-turkey {
    left: 60%;
    top: 50%;
}

.d-uae {
    left: 66%;
    top: 62%;
}

.d-china {
    left: 76%;
    top: 45%;
}

.d-brazil {
    left: 33%;
    top: 70%;
}

.d-monaco {
    left: 51%;
    top: 44%;
}

.tour-section {
    padding: 120px 10%;
    background: var(--bg-dark);
}

.tour-container {
    max-width: 1000px;
    margin: 60px auto;
    background: var(--glass-heavy);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.tour-row {
    display: grid;
    grid-template-columns: 120px 1fr 120px 180px;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.3s;
}

.tour-row:last-child {
    border-bottom: none;
}

.tour-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.tour-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.tour-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.tour-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.tour-status {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
    text-align: center;
    width: fit-content;
}

.tour-status.sold-out {
    background: rgba(255, 50, 50, 0.1);
    color: #ff3232;
    border: 1px solid rgba(255, 50, 50, 0.2);
}

.tour-status.available {
    background: rgba(50, 255, 50, 0.1);
    color: #32ff32;
    border: 1px solid rgba(50, 255, 50, 0.2);
}

.tour-btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    color: white;
    transition: 0.3s;
}

.tour-btn.primary {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.tour-btn:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

/* Brand Ticker */
.brand-ticker {
    margin-top: 100px;
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-track {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

.ticker-track span {
    font-size: 2rem;
    font-weight: 900;
    margin: 0 50px;
    color: rgba(255, 255, 255, 0.5);
    /* Increased visibility */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    /* Stronger outline */
    letter-spacing: 5px;
    transition: 0.3s;
}

.ticker-track span:hover {
    color: var(--accent-primary);
    -webkit-text-stroke: 0;
    text-shadow: 0 0 20px var(--accent-primary);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* Visual Strip (Infinite Image Marquee) */
.visual-strip {
    position: relative;
    width: 100%;
    height: 300px;
    background: var(--bg-darker);
    overflow: hidden;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin: 80px 0;
}

.strip-track {
    display: flex;
    gap: 0;
    /* No gap for seamless feel */
    width: max-content;
    animation: stripScroll 40s linear infinite;
}

.strip-item {
    height: 300px;
    width: 450px;
    /* Fixed width for uniformity */
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.5s;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.strip-item:hover {
    filter: grayscale(0%) brightness(1.1);
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.strip-item:hover img {
    transform: scale(1.1);
}

.visual-strip:hover .strip-track {
    animation-play-state: paused;
}

@keyframes stripScroll {
    0% {
        transform: translateX(0);
    }

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

    /* Shift by half */
}

/* Vignette Overlay */
.strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-darker) 0%, transparent 15%, transparent 85%, var(--bg-darker) 100%);
    pointer-events: none;
    z-index: 5;
}

/* Visionaries Section */
.visionaries-section {
    padding: 120px 10%;
    background-image: linear-gradient(rgba(5, 2, 8, 0.9), rgba(5, 2, 8, 0.9)), url('assets/hero/DSC06673.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.visionaries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.visionary-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
    background: rgba(10, 5, 16, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.visionary-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 0, 85, 0.18), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.visionary-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.visionary-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
    animation: float 4s ease-in-out infinite;
}

.visionary-card:nth-child(2) .visionary-img {
    animation-delay: 2s;
}

@keyframes float {

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

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

.visionary-card:hover .visionary-aura {
    background: radial-gradient(circle at center, rgba(255, 0, 85, 0.4) 0%, transparent 70%);
    height: 90%;
}

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

.visionary-info h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.visionary-info .role {
    color: var(--accent-primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.visionary-subtitle {
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 14px;
}

.visionary-meta {
    margin-bottom: 15px;
}

.visionary-bio {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.visionary-experience {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.visionary-experience span {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
}

@media (max-width: 1024px) {
    .visionary-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .visionary-media {
        min-height: 320px;
    }
}

/* Vision & Mission */
.vision-section {
    padding: 150px 10%;
    background: var(--bg-darker);
    position: relative;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.vision-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    min-height: 420px;
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vision-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-dim);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.vision-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.vision-label {
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.vision-block h3 {
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.vision-block p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
}

.vision-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-dim);
}

.vision-list li {
    position: relative;
    padding-left: 24px;
    line-height: 1.7;
}

.vision-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-primary);
    font-size: 1.1rem;
}

.vision-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vision-pill-row span {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
}

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

    .vision-content {
        text-align: center;
        align-items: center;
    }

    .vision-list {
        align-items: center;
    }

    .vision-list li {
        padding-left: 0;
    }

    .vision-list li::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 100px 8%;
    }

    .vision-block h3 {
        font-size: 2rem;
    }
}

/* Partners */
.partners-section {
    padding: 140px 10%;
    background: var(--bg-dark);
}

.partners-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.partners-intro {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px;
}

.partners-label {
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.partners-intro p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.partners-intro p:last-child {
    margin-bottom: 0;
}

.partners-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    padding: 26px 28px;
    transition: var(--transition-smooth);
}

.partner-card h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.partner-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

.partner-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

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

@media (max-width: 768px) {
    .partners-section {
        padding: 110px 8%;
    }
}

/* Philosophy Section - Masterclass Editorial Upgrade */
.philosophy-section {
    padding: 180px 5%;
    background-image: linear-gradient(rgba(5, 2, 8, 0.8), rgba(5, 2, 8, 0.8)), url('assets/showroom/IMG_2980.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* The "Fixed" magic */
    position: relative;
    overflow: hidden;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 60px 45px;
    border-radius: 2px;
    /* Sharp editorial look */
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 400px;
}

/* Background Number Index */
.philosophy-item::after {
    content: attr(data-index);
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.philosophy-item:hover::after {
    color: rgba(255, 0, 85, 0.05);
    transform: translateY(10px);
}

.philosophy-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-primary);
    transform: translateY(-10px);
}

.philosophy-item .ph-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: auto;
    /* Push content to bottom */
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.philosophy-item:hover .ph-icon {
    color: var(--accent-primary);
    transform: scale(1.1) rotate(-5deg);
    opacity: 1;
}

.philosophy-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.philosophy-item p {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
    max-width: 90%;
}

/* Bottom Progress Line */
.philosophy-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.83, 0, 0.17, 1);
}

.philosophy-item:hover::before {
    transform: scaleX(1);
}

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

    .philosophy-item {
        min-height: auto;
    }
}

/* Mobile */
/* Mobile Navigation */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    /* Above nav-links overlay */
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Media Queries */
@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 1fr;
    }

    .stage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-highlight {
        grid-template-columns: 1fr;
    }

    .tour-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stage-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: 0px;
        top: 0px;
        height: 100vh;
        background: rgba(10, 5, 16, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 1000;
        backdrop-filter: blur(15px);
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        opacity: 0;
        /* Animated in with JS */
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero-bg-text {
        font-size: 40vw;
        opacity: 0.02;
    }

    .hero-side-nav {
        display: none;
    }

    .slide {
        background-position: center center;
        background-size: cover;
    }

    @keyframes kenBurns {
        from {
            transform: scale(1.05);
        }

        to {
            transform: scale(1.15);
        }
    }

    .hero-content {
        padding: 0 8%;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-pre-title {
        font-size: 0.7rem;
        letter-spacing: 5px;
        margin-bottom: 2rem;
    }

    .text-upper {
        font-size: 0.8rem;
        letter-spacing: 8px;
        margin-bottom: 15px;
        display: block;
    }

    .text-main {
        font-size: 12vw;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1rem;
        margin: 2.5rem 0;
        text-align: center;
        max-width: 100%;
        line-height: 1.6;
    }

    .hero-btns {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: center;
    }

    .btn-magnetic {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 20px;
        font-size: 0.8rem;
    }

    .btn-link {
        font-size: 0.75rem;
        letter-spacing: 3px;
        margin-top: 10px;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 80px 5%;
    }

    .about-background-text {
        display: none;
    }

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

    .about-visuals {
        justify-content: center;
    }

    .about-img-main-wrapper {
        width: 100%;
    }

    .about-img-main {
        height: 450px;
    }

    .about-img-sub-wrapper {
        display: none;
        /* Hide sub-image on mobile for clarity */
    }

    .about-experience-badge {
        top: -20px;
        left: 20px;
        padding: 15px 20px;
    }

    .about-experience-badge .num {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-box {
        padding-left: 15px;
        padding-bottom: 10px;
        border-left: 2px solid var(--accent-primary);
    }

    /* Mobile Visual Strip */
    .visual-strip {
        height: 200px;
        margin: 40px 0;
    }

    .strip-item {
        height: 200px;
        width: 300px;
        filter: grayscale(0%);
    }

    /* Fix Gallery Images on Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 300px;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .manifesto-content h2 {
        font-size: 2.5rem;
    }

    .manifesto-content p {
        font-size: 1.05rem;
    }

    /* Academy Grid on Mobile */
    .academy-grid {
        grid-template-columns: 1fr;
    }

    /* Team Gallery on Mobile */
    .team-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .team-gallery {
        columns: 2;
        padding: 0 12px 20px;
    }

    /* Tour Section Mobile */
    .tour-row {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
        padding: 40px 20px;
    }

    .tour-status {
        margin: 0 auto;
    }

    .tour-btn {
        width: 100%;
    }

    .tour-gallery {
        grid-template-columns: 1fr;
    }

    .stage-card {
        flex: 0 0 100%;
    }

    .stage-scroll {
        width: 100%;
        padding: 0 6px;
    }

    .stage-grid {
        scroll-padding: 0 6px;
    }
}

@media (max-width: 480px) {
    .team-gallery {
        columns: 1;
        padding: 0 12px 20px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 2, 8, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 99999;
    padding: 40px;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-image {
    max-width: 85vw;
    max-height: 75vh;
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--text-dim);
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: clamp(3rem, 9vw, 3.9rem);
        line-height: 1.2;
        max-width: 24ch;
        margin: 0 auto 1rem;
        word-break: normal;
        text-wrap: balance;
    }

    .section-header p {
        font-size: 1rem;
    }
}