/* ═══════════════════════════════════════════════════════════
   VIVI MEDIA - MAIN STYLESHEET
   Dark Mode + Red Accents Design System
   ═══════════════════════════════════════════════════════════ */

/* Import design system files */
@import url('variables.css');
@import url('animations.css');

/* ═══════════════════════════════════════════════════════════
   CSS RESET & BASE
   ═══════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--vivi-white);
    background-color: var(--vivi-black);
    overflow-x: hidden;
    /* Custom V Cursor - tilted left like pointer */
    cursor: url('../assets/images/cursors/v-cursor.svg') 2 2, auto;
}

/* Account for fixed header */
body {
    padding-top: var(--header-height-mobile);
}

@media (min-width: 768px) {
    body {
        padding-top: var(--header-height);
    }
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--vivi-white);
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
}

.heading-hero {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.heading-section {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.heading-card {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: var(--space-4);
    color: var(--gray-300);
}

.body-large {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--gray-300);
}

.body-text {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-400);
}

.text-gradient {
    background: linear-gradient(135deg, var(--vivi-red) 0%, var(--vivi-red-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--gray-500);
}

.text-white {
    color: var(--vivi-white);
}

.text-red {
    color: var(--vivi-red);
}

/* ═══════════════════════════════════════════════════════════
   LINKS
   ═══════════════════════════════════════════════════════════ */

a {
    color: var(--vivi-white);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--vivi-red);
}

a:focus-visible {
    outline: 2px solid var(--vivi-red);
    outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════
   IMAGES & MEDIA
   ═══════════════════════════════════════════════════════════ */

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

img {
    object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   LISTS
   ═══════════════════════════════════════════════════════════ */

ul,
ol {
    list-style: none;
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT - CONTAINER
   ═══════════════════════════════════════════════════════════ */

.container {
    width: 100%;
    max-width: var(--container-xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.container--narrow {
    max-width: 800px;
}

.container--wide {
    max-width: var(--container-2xl);
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */

.section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
    position: relative;
}

.section--dark {
    background-color: var(--vivi-black);
}

.section--darker {
    background-color: var(--vivi-black-pure);
}

.section--red {
    background-color: var(--vivi-red);
}

.section--red .heading-section,
.section--red p,
.section--red .body-large,
.section--red .body-text {
    color: var(--vivi-white);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section__tag {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--vivi-red-muted);
    color: var(--vivi-red);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section--red .section__tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--vivi-white);
}

/* ═══════════════════════════════════════════════════════════
   GRID SYSTEM
   ═══════════════════════════════════════════════════════════ */

.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: 1fr;
}

/* ═══════════════════════════════════════════════════════════
   FLEXBOX UTILITIES
   ═══════════════════════════════════════════════════════════ */

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-decoration: none;
}

.btn:focus-visible {
    outline: 2px solid var(--vivi-white);
    outline-offset: 2px;
}

/* Primary Button */
.btn-primary {
    background: var(--vivi-red);
    color: var(--vivi-white);
}

.btn-primary:hover {
    background: var(--vivi-red-hover);
    color: var(--vivi-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(183, 19, 24, 0.3);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: var(--vivi-white);
    border: 2px solid var(--vivi-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--vivi-white);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--vivi-white);
    padding: var(--space-2) 0;
}

.btn-ghost:hover {
    color: var(--vivi-red);
}

.btn-ghost::after {
    content: '→';
    margin-left: var(--space-2);
    transition: transform var(--transition-base);
}

.btn-ghost:hover::after {
    transform: translateX(4px);
}

/* Portal Button (Special) */
.btn-portal {
    background: linear-gradient(135deg, var(--vivi-red) 0%, var(--vivi-red-light) 100%);
    color: var(--vivi-white);
    border-radius: var(--radius-full);
    padding: 12px 28px;
}

.btn-portal:hover {
    color: var(--vivi-white);
    box-shadow: var(--shadow-glow-strong);
}

/* Button Sizes */
.btn-sm {
    padding: 10px 20px;
    font-size: var(--text-xs);
}

.btn-lg {
    padding: 18px 40px;
    font-size: var(--text-base);
}

/* ═══════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════ */

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    backdrop-filter: blur(10px);
    transition: all var(--transition-medium);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--vivi-red);
    box-shadow: var(--shadow-xl);
}

/* Artist Card */
.card-artist {
    position: relative;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
}

.card-artist__image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-artist:hover .card-artist__image {
    transform: scale(1.1);
}

.card-artist__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    background: var(--gradient-overlay);
    z-index: 1;
}

.card-artist__name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.card-artist__genre {
    font-size: var(--text-sm);
    color: var(--gray-400);
}

/* Circular Artist Card - New Design */
.card-artist--circle {
    background: transparent;
    border: none;
    text-align: center;
    padding: 0;
    overflow: visible;
}

.card-artist--circle .card-artist__image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid var(--gray-700);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-artist--circle:hover .card-artist__image {
    border-color: var(--vivi-red);
    box-shadow: 0 0 40px rgba(183, 19, 24, 0.4), 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: scale(1.08);
}

.card-artist--circle .card-artist__name {
    margin-top: var(--space-5);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--vivi-white);
    transition: color 0.3s ease;
}

.card-artist--circle:hover .card-artist__name {
    color: var(--vivi-red);
}

/* Artists Grid for Circular Cards */
.artists-grid--circle {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

/* Service Card */
.card-service {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    text-align: center;
    padding: var(--space-8);
}

.card-service__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-6);
    background: var(--vivi-red-muted);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vivi-red);
}

.card-service__icon svg {
    width: 32px;
    height: 32px;
}

.card-service__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
}

.card-service__description {
    color: var(--gray-400);
    font-size: var(--text-sm);
}

.card-service:hover {
    border-color: var(--vivi-red);
    box-shadow: var(--shadow-glow);
}

/* For red background section - white cards */
.section--red .card-service {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.section--red .card-service__icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--vivi-white);
}

.section--red .card-service__description {
    color: rgba(255, 255, 255, 0.8);
}

.section--red .card-service:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--vivi-white);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION - LIGHT THEME (New Design)
   ═══════════════════════════════════════════════════════════ */

.services-section--light {
    background: #f8f9fa;
}

.section__header--dark {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section__tag--dark {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--vivi-red);
    margin-bottom: var(--space-4);
}

.heading-section--dark {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--vivi-black);
    line-height: 1.2;
}

.services-grid--3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

@media (max-width: 1024px) {
    .services-grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid--3col {
        grid-template-columns: 1fr;
    }
}

/* Service Card - Light Style */
.card-service--light {
    background: var(--vivi-white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: left;
    transition: all 0.3s ease;
}

.card-service--light:hover {
    border-color: var(--vivi-red);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.card-service--light__icon {
    width: 48px;
    height: 48px;
    color: var(--vivi-red);
    margin-bottom: var(--space-5);
}

.card-service--light__icon svg {
    width: 100%;
    height: 100%;
}

.card-service--light__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--vivi-black);
    margin-bottom: var(--space-4);
}

.card-service--light__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-service--light__list li {
    color: #6b7280;
    font-size: var(--text-sm);
    padding: var(--space-2) 0;
    padding-left: var(--space-5);
    position: relative;
    line-height: 1.6;
}

.card-service--light__list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--vivi-red);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════ */

.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-2);
    color: var(--vivi-white);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--vivi-white);
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--vivi-red);
    box-shadow: 0 0 0 3px var(--vivi-red-muted);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-500);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Input States */
.form-input.error,
.form-textarea.error {
    border-color: var(--error);
}

.form-error {
    color: var(--error);
    font-size: var(--text-sm);
    margin-top: var(--space-2);
}

.form-success {
    color: var(--success);
    font-size: var(--text-sm);
    margin-top: var(--space-2);
}

/* ═══════════════════════════════════════════════════════════
   TICKER / LOGO SLIDER
   ═══════════════════════════════════════════════════════════ */

.ticker {
    overflow: hidden;
    padding: var(--space-6) 0;
}

.ticker__track {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker:hover .ticker__track {
    animation-play-state: paused;
}

.ticker__item {
    flex-shrink: 0;
    padding: 0 var(--space-8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker__item img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(2);
    opacity: 0.6;
    transition: all var(--transition-medium);
}

.ticker__item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

@media (min-width: 1024px) {
    .hero {
        min-height: 100vh;
    }
}

.hero__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(35, 31, 32, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero__container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-20) 0;
}

.hero__content {
    max-width: 900px;
    margin: 0 auto;
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: var(--gray-300);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: var(--text-xl);
    }
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

@media (min-width: 768px) {
    .hero__buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.hero__scroll:hover {
    opacity: 1;
}

.hero__scroll-text {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--vivi-white);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--vivi-white), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        height: 40px;
        opacity: 0.6;
    }

    50% {
        height: 60px;
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════
   TICKER SECTION (Logo Scroll Animation)
   ═══════════════════════════════════════════════════════════ */

.ticker-section {
    background: var(--vivi-black-pure);
    padding: var(--space-6) 0;
    overflow: hidden;
}

.ticker {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.ticker__track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 40s linear infinite;
    will-change: transform;
}

.ticker__track:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-10);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.ticker__item:hover {
    opacity: 1;
}

.ticker__item img {
    height: 32px;
    width: auto;
    filter: grayscale(100%) brightness(1.5);
    transition: filter 0.3s ease;
}

.ticker__item:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Slower variant */
.ticker-track--slow .ticker__track,
.ticker__track.ticker-track--slow {
    animation-duration: 60s;
}

/* ═══════════════════════════════════════════════════════════
   VISION & MISSION SECTION
   ═══════════════════════════════════════════════════════════ */

.vm-section {
    background: var(--vivi-black-pure);
}

.vm__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .vm__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-10);
    }
}

.vm__card {
    text-align: center;
    padding: var(--space-10);
}

.vm__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: var(--vivi-red-muted);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vivi-red);
}

.vm__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--vivi-white);
}

.vm__text {
    color: var(--gray-400);
    line-height: 1.8;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   LABELS SECTION
   ═══════════════════════════════════════════════════════════ */

.labels-section {
    text-align: center;
}

.labels__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-12);
}

.labels__item {
    display: block;
    padding: var(--space-6);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
}

.labels__item:hover {
    border-color: var(--vivi-red);
}

.labels__item img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.labels__item:hover img {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   HEADER STYLES (from component)
   ═══════════════════════════════════════════════════════════ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-4) 0;
    background: rgba(35, 31, 32, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-medium);
}

.header.scrolled {
    padding: var(--space-3) 0;
    background: var(--vivi-black);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

.header__logo {
    flex-shrink: 0;
}

.header__logo img {
    height: 36px;
    width: auto;
}

@media (min-width: 768px) {
    .header__logo img {
        height: 40px;
    }
}

.header__nav {
    display: none;
    align-items: center;
    gap: var(--space-8);
}

@media (min-width: 1024px) {
    .header__nav {
        display: flex;
    }
}

.header__menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__link {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--vivi-white);
    padding: var(--space-2) 0;
    position: relative;
    transition: color var(--transition-base);
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vivi-red);
    transition: width var(--transition-medium);
}

.header__link:hover,
.header__link.active {
    color: var(--vivi-red);
}

.header__link:hover::after,
.header__link.active::after {
    width: 100%;
}

.header__portal {
    margin-left: var(--space-4);
}

/* Header Item with Dropdown */
.header__item {
    position: relative;
}

.header__link {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.header__arrow {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

/* Desktop hover only (not on touch devices) */
@media (min-width: 1024px) {

    .header__item--dropdown:hover .header__arrow,
    .header__item--mega:hover .header__arrow {
        transform: rotate(180deg);
    }
}

/* Simple Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: var(--vivi-black);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-3) 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: var(--z-dropdown);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Desktop hover only */
@media (min-width: 1024px) {
    .header__item--dropdown:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown__link {
    display: block;
    padding: var(--space-3) var(--space-5);
    color: var(--gray-300);
    font-size: var(--text-sm);
    transition: all 0.2s ease;
}

.dropdown__link:hover {
    color: var(--vivi-white);
    background: rgba(183, 19, 24, 0.1);
    padding-left: var(--space-6);
}

/* Mega Dropdown (3 columns) */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    background: var(--vivi-black);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: var(--z-dropdown);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Desktop hover only */
@media (min-width: 1024px) {
    .header__item--mega:hover .mega-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.mega-dropdown__column {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mega-dropdown__title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--vivi-red);
    margin-bottom: var(--space-2);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--glass-border);
}

.mega-dropdown__link {
    color: var(--gray-300);
    font-size: var(--text-sm);
    padding: var(--space-2) 0;
    transition: all 0.2s ease;
    position: relative;
    padding-left: var(--space-4);
}

.mega-dropdown__link::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--vivi-red);
    font-weight: 600;
}

.mega-dropdown__link:hover {
    color: var(--vivi-white);
    padding-left: var(--space-5);
}

.header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: calc(var(--z-fixed) + 1);
}

@media (min-width: 1024px) {
    .header__toggle {
        display: none;
    }
}

.header__toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--vivi-white);
    border-radius: 2px;
    transition: all var(--transition-medium);
    transform-origin: center;
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: calc(var(--z-fixed) - 1);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.header__overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 1023px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--vivi-black);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--header-height-mobile) + var(--space-8)) var(--space-6) var(--space-8);
        gap: var(--space-6);
        border-left: 1px solid var(--glass-border);
        transition: right var(--transition-smooth);
        z-index: var(--z-fixed);
    }

    .header__nav.active {
        display: flex;
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
        width: 100%;
    }

    .header__link {
        font-size: var(--text-lg);
        padding: var(--space-3) 0;
        width: 100%;
        border-bottom: 1px solid var(--gray-800);
    }

    .header__portal {
        margin-left: 0;
        margin-top: var(--space-4);
        width: 100%;
        text-align: center;
    }

    /* Mobile Dropdown Accordion */
    .header__item {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .header__link {
        justify-content: space-between;
        width: 100%;
    }

    .dropdown,
    .mega-dropdown {
        position: static;
        transform: none !important;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        padding: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .header__item.active .dropdown,
    .header__item.active .mega-dropdown {
        max-height: 500px;
        padding: var(--space-4);
    }

    .header__item.active .header__arrow {
        transform: rotate(180deg);
    }

    .mega-dropdown {
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
    }

    .mega-dropdown__column {
        padding-bottom: var(--space-4);
        border-bottom: 1px solid var(--glass-border);
    }

    .mega-dropdown__column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER STYLES (from component)
   ═══════════════════════════════════════════════════════════ */

.footer {
    background-color: var(--vivi-black);
    background-image: url('../assets/images/background/footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid var(--glass-border);
    padding: var(--space-16) 0 var(--space-8);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.footer>.container {
    position: relative;
    z-index: 1;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: var(--space-12);
    }
}

.footer__logo {
    display: inline-block;
    margin-bottom: var(--space-4);
}

.footer__logo img {
    height: 48px;
    width: auto;
}

.footer__description {
    color: var(--gray-400);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    max-width: 400px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.footer__icon {
    flex-shrink: 0;
    color: var(--vivi-red);
    margin-top: 2px;
}

.footer__address {
    font-style: normal;
    font-size: var(--text-sm);
    color: var(--gray-400);
    line-height: 1.6;
}

.footer__address strong {
    color: var(--vivi-white);
}

.footer__hotline {
    font-size: var(--text-sm);
    color: var(--gray-400);
    transition: color var(--transition-base);
}

.footer__hotline:hover {
    color: var(--vivi-red);
}

.footer__hotline strong {
    color: var(--vivi-white);
}

.footer__title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--vivi-white);
    margin-bottom: var(--space-6);
}

.footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__menu li {
    margin-bottom: var(--space-3);
}

.footer__menu a {
    font-size: var(--text-sm);
    color: var(--gray-400);
    transition: color var(--transition-base);
}

.footer__menu a:hover {
    color: var(--vivi-red);
}

.footer__portal-link {
    color: var(--vivi-red) !important;
}

.footer__social {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    color: var(--vivi-white);
    transition: all var(--transition-medium);
}

.footer__social-link:hover {
    background: var(--vivi-red);
    color: var(--vivi-white);
    transform: translateY(-2px);
}

.footer__legal {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer__legal a {
    font-size: var(--text-sm);
    color: var(--gray-500);
    transition: color var(--transition-base);
}

.footer__legal a:hover {
    color: var(--vivi-white);
}

.footer__bottom {
    margin-top: var(--space-12);
    padding-top: var(--space-6);
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer__copyright {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════ */

/* Text Alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Spacing */
.mt-4 {
    margin-top: var(--space-4);
}

.mt-6 {
    margin-top: var(--space-6);
}

.mt-8 {
    margin-top: var(--space-8);
}

.mt-12 {
    margin-top: var(--space-12);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.mb-12 {
    margin-bottom: var(--space-12);
}

.py-4 {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.py-8 {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
}

.py-12 {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
}

.px-4 {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.px-6 {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

/* Width */
.w-full {
    width: 100%;
}

/* Visibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (Inner Pages)
   ═══════════════════════════════════════════════════════════ */

.page-hero {
    padding-top: calc(var(--header-height) + var(--space-16));
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.page-hero__content {
    max-width: 700px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM WRAPPER
   ═══════════════════════════════════════════════════════════ */

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-10);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ═══════════════════════════════════════════════════════════
   CTA BOX
   ═══════════════════════════════════════════════════════════ */

.cta-box {
    padding: var(--space-12);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════════════════ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--vivi-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__inner {
    text-align: center;
}

.preloader__logo {
    margin-bottom: var(--space-8);
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader__logo img {
    max-width: 150px;
    height: auto;
}

.preloader__spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    border: 3px solid var(--gray-800);
    border-top-color: var(--vivi-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

/* ═══════════════════════════════════════════════════════════
   HOVER EFFECTS UTILITY
   ═══════════════════════════════════════════════════════════ */

.hover-lift {
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.hover-glow {
    transition: box-shadow var(--transition-medium);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
}

/* ═══════════════════════════════════════════════════════════
   FULLPAGE SCROLL SECTIONS
   ═══════════════════════════════════════════════════════════ */

.section--fullpage {
    min-height: 100vh;
    min-height: 100dvh;
    /* Dynamic viewport height for mobile */
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Footer - smooth transition, no snap */
.footer {
    scroll-snap-align: end;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION DOTS (Section Indicator)
   ═══════════════════════════════════════════════════════════ */

.section-nav {
    position: fixed;
    right: var(--space-6);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    z-index: var(--z-fixed);
}

.section-nav__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.section-nav__dot::before {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: var(--text-xs);
    color: var(--vivi-white);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.section-nav__dot:hover::before {
    opacity: 1;
}

.section-nav__dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.section-nav__dot.active {
    background: var(--vivi-red);
    border-color: var(--vivi-white);
    transform: scale(1.3);
}

/* Hide dots on mobile */
@media (max-width: 768px) {
    .section-nav {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   BACK TO TOP BUTTON
   ═══════════════════════════════════════════════════════════ */

.back-to-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 48px;
    height: 48px;
    background: var(--vivi-red);
    border: none;
    border-radius: 50%;
    color: var(--vivi-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: var(--z-fixed);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(183, 19, 24, 0.4);
}

.back-to-top:hover {
    background: var(--vivi-red-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(183, 19, 24, 0.6);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ═══════════════════════════════════════════════════════════
   CURSOR OVERRIDES FOR CLICKABLE ELEMENTS
   ═══════════════════════════════════════════════════════════ */

a,
button,
[role="button"],
input[type="submit"],
.btn,
.header__toggle,
.section-nav__dot,
.back-to-top {
    cursor: url('../assets/images/cursors/v-cursor.svg') 2 2, pointer;
}

/* ═══════════════════════════════════════════════════════════
   V-MAP INTERACTIVE VISION & MISSION SECTION
   ═══════════════════════════════════════════════════════════ */

.vm-map {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg,
            var(--vivi-black) 0%,
            #0a0a0a 50%,
            #1a0808 100%);
}

/* Background Glows */
.vm-map__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.vm-map__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.vm-map__glow--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(183, 19, 24, 0.4) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation: floatGlow 8s ease-in-out infinite;
}

.vm-map__glow--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(183, 19, 24, 0.3) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -20px);
    }
}

/* Header */
.vm-map__header {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--space-6) var(--space-4);
    padding-top: var(--space-10);
}

/* ═══════ SLIDES CONTAINER ═══════ */
.vm-slides {
    position: relative;
    flex: 1;
    display: flex;
    overflow: hidden;
    z-index: 1;
}

.vm-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.vm-slide.prev {
    transform: translateX(-100%);
}

/* ═══════ SLIDE 1: VISION (EYE) ═══════ */
.vm-vision {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-8);
    max-width: 800px;
}

/* Animated Eye */
.vm-eye {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.vm-eye:hover {
    transform: scale(1.05);
}

.vm-eye:focus {
    outline: 2px solid var(--vivi-red);
    outline-offset: 8px;
    border-radius: 50%;
}

/* Eye Pulse Rings */
.vm-eye__pulse {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(183, 19, 24, 0.5);
    border-radius: 50%;
    animation: eyePulse 2s ease-out infinite;
}

.vm-eye__pulse--2 {
    animation-delay: 1s;
}

@keyframes eyePulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Eye Icon */
.vm-eye__icon {
    position: relative;
    color: var(--vivi-white);
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(183, 19, 24, 0.5));
}

.vm-eye__outline {
    animation: eyeShine 3s ease-in-out infinite;
}

@keyframes eyeShine {

    0%,
    100% {
        stroke-opacity: 0.8;
    }

    50% {
        stroke-opacity: 1;
    }
}

/* Eyelid Blink Animation */
.vm-eye__lid {
    transform-origin: center;
    animation: eyeBlink 4s ease-in-out infinite;
}

@keyframes eyeBlink {

    0%,
    45%,
    55%,
    100% {
        transform: scaleY(0);
    }

    48%,
    52% {
        transform: scaleY(1);
    }
}

/* Eye Text */
.vm-eye__text {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--gray-400);
    animation: textPulse 2s ease-in-out infinite;
}

.vm-eye__text-icon {
    animation: bounce 1s ease-in-out infinite;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Vision Content */
.vm-vision__content {
    text-align: center;
    max-width: 600px;
}

.vm-vision__title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--vivi-white);
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, var(--vivi-white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vm-vision__text {
    font-size: var(--text-lg);
    color: var(--gray-400);
    line-height: 1.8;
}

.vm-vision__text strong {
    color: var(--vivi-red);
    font-weight: 600;
}

/* ═══════ SLIDE 2: MISSION MAP ═══════ */
.vm-mission-map {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-4);
}

/* V-Path SVG */
.vm-path {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vm-path__line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s ease-in-out;
    filter: drop-shadow(0 0 10px rgba(183, 19, 24, 0.5));
}

.vm-mission-map.animated .vm-path__line {
    stroke-dashoffset: 0;
}

/* Mission Points Container */
.vm-points {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* Mission Point */
.vm-point {
    position: absolute;
    left: var(--point-x);
    top: var(--point-y);
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: pointAppear 0.6s ease forwards;
    animation-play-state: paused;
}

.vm-mission-map.animated .vm-point {
    animation-play-state: running;
}

.vm-point[data-point="1"] {
    animation-delay: 0.8s;
}

.vm-point[data-point="2"] {
    animation-delay: 1.4s;
}

.vm-point[data-point="3"] {
    animation-delay: 2s;
}

.vm-point[data-point="4"] {
    animation-delay: 2.6s;
}

@keyframes pointAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    70% {
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Point Marker (V) */
.vm-point__marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--vivi-red) 0%, #ff3333 100%);
    border: 3px solid var(--vivi-white);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--vivi-white);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 0 20px rgba(183, 19, 24, 0.5),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.vm-point__marker--large {
    width: 56px;
    height: 56px;
    font-size: var(--text-2xl);
}

.vm-point__marker:hover {
    transform: scale(1.2);
    box-shadow:
        0 0 40px rgba(183, 19, 24, 0.8),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Point Pulse */
.vm-point__pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--vivi-red);
    border-radius: 50%;
    animation: pointPulse 2s ease-out infinite;
    z-index: 1;
}

.vm-point--center .vm-point__pulse {
    width: 56px;
    height: 56px;
}

@keyframes pointPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Point Content */
.vm-point__content {
    position: absolute;
    top: calc(100% + var(--space-3));
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    padding: var(--space-3);
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(183, 19, 24, 0.3);
    border-radius: var(--radius-lg);
    text-align: center;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.vm-point:hover .vm-point__content {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.vm-point__content--top {
    top: auto;
    bottom: calc(100% + var(--space-3));
}

.vm-point__content--left {
    left: auto;
    right: calc(100% + var(--space-3));
    top: 50%;
    transform: translateY(-50%);
}

.vm-point:hover .vm-point__content--left {
    transform: translateY(-50%) translateX(5px);
}

.vm-point__title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--vivi-red);
    margin-bottom: var(--space-1);
}

.vm-point__text {
    font-size: var(--text-xs);
    color: var(--gray-400);
    line-height: 1.5;
}

/* Legend */
.vm-legend {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
    z-index: 10;
}

.vm-legend__item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.vm-legend__marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--vivi-red);
    border: 2px solid var(--vivi-white);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 800;
    color: var(--vivi-white);
}

.vm-legend__text {
    font-size: var(--text-xs);
    color: var(--gray-500);
}

/* ═══════ NAVIGATION ═══════ */
.vm-nav {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    padding: var(--space-6);
}

.vm-nav__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(183, 19, 24, 0.2);
    border: 2px solid rgba(183, 19, 24, 0.5);
    border-radius: 50%;
    color: var(--vivi-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vm-nav__arrow:hover:not(:disabled) {
    background: var(--vivi-red);
    border-color: var(--vivi-red);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(183, 19, 24, 0.5);
}

.vm-nav__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.vm-nav__dots {
    display: flex;
    gap: var(--space-4);
}

.vm-nav__dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vm-nav__dot:hover {
    border-color: var(--vivi-red);
    color: var(--vivi-red);
}

.vm-nav__dot.active {
    background: var(--vivi-red);
    border-color: var(--vivi-red);
    color: var(--vivi-white);
    transform: scale(1.1);
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 768px) {
    .vm-eye__icon {
        width: 80px;
        height: 80px;
    }

    .vm-eye__pulse {
        width: 100px;
        height: 100px;
    }

    .vm-vision__title {
        font-size: var(--text-2xl);
    }

    .vm-vision__text {
        font-size: var(--text-base);
    }

    .vm-point__marker {
        width: 32px;
        height: 32px;
        font-size: var(--text-sm);
    }

    .vm-point__marker--large {
        width: 44px;
        height: 44px;
        font-size: var(--text-lg);
    }

    .vm-point__content {
        width: 140px;
        padding: var(--space-2);
    }

    .vm-nav__arrow {
        width: 40px;
        height: 40px;
    }

    .vm-nav__dot {
        width: 32px;
        height: 32px;
    }
}

/* ═══════════════════════════════════════════════════════════
   VINYL ALBUM ARTISTS SECTION
   ═══════════════════════════════════════════════════════════ */

.artists-vinyl {
    background: linear-gradient(180deg,
            var(--vivi-black) 0%,
            #0a0808 50%,
            #1a0a0a 100%);
}

/* Main Album Container */
.vinyl-album {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-10);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-8) 0;
}

@media (max-width: 768px) {
    .vinyl-album {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* Album Case */
.vinyl-album__case {
    display: flex;
    background: linear-gradient(135deg,
            #2a2a2a 0%,
            #1a1a1a 50%,
            #0a0a0a 100%);
    border: 2px solid rgba(183, 19, 24, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
}

/* Album Spine */
.vinyl-album__spine {
    width: 40px;
    background: linear-gradient(180deg,
            var(--vivi-red) 0%,
            #8a0f12 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) 0;
}

.vinyl-album__spine-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--vivi-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Disc Slots Container */
.vinyl-album__slots {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: var(--space-4);
    gap: var(--space-3);
}

/* Individual Disc Slot */
.vinyl-disc-slot {
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--space-3);
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.vinyl-disc-slot:hover,
.vinyl-disc-slot.active {
    background: rgba(183, 19, 24, 0.15);
    box-shadow: 0 0 20px rgba(183, 19, 24, 0.3);
}

/* Disc inside slot - shows 2/3 */
.vinyl-disc-slot__disc {
    position: relative;
    width: 80px;
    height: 80px;
    margin-right: var(--space-4);
    transform: translateX(-50%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    /* Disc below album case edge */
}

.vinyl-disc-slot:hover .vinyl-disc-slot__disc,
.vinyl-disc-slot.active .vinyl-disc-slot__disc {
    transform: translateX(0);
    z-index: 1;
    /* Bring to front when active */
}

/* Artist name in slot */
.vinyl-disc-slot__name {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-300);
    transition: color 0.3s ease;
}

.vinyl-disc-slot:hover .vinyl-disc-slot__name,
.vinyl-disc-slot.active .vinyl-disc-slot__name {
    color: var(--vivi-white);
}

/* ═══════ VINYL DISC ═══════ */
.vinyl-disc {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.8);
}

/* Vinyl Grooves */
.vinyl-disc__grooves {
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    background: repeating-radial-gradient(circle at center,
            #1a1a1a 0px,
            #1a1a1a 1px,
            #252525 1px,
            #252525 3px);
    opacity: 0.5;
}

/* Center Label with Artist Photo */
.vinyl-disc__label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45%;
    height: 45%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vivi-red) 0%, #8a0f12 100%);
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.vinyl-disc__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Center Hole */
.vinyl-disc__hole {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10%;
    height: 10%;
    border-radius: 50%;
    background: var(--vivi-black);
    border: 2px solid #333;
    z-index: 2;
}

/* Large Disc (in player) */
.vinyl-disc--large {
    width: 280px;
    height: 280px;
}

@media (max-width: 768px) {
    .vinyl-disc--large {
        width: 200px;
        height: 200px;
    }
}

/* ═══════ VINYL PLAYER (Right side) ═══════ */
.vinyl-album__player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.vinyl-player__disc-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spinning Disc */
.vinyl-player__disc {
    position: relative;
}

.vinyl-player__disc.spinning .vinyl-disc {
    animation: discSpin 3s linear infinite;
}

@keyframes discSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Tonearm */
.vinyl-player__tonearm {
    position: absolute;
    top: 10%;
    right: -20px;
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, #555 0%, #333 100%);
    border-radius: 4px;
    transform-origin: right center;
    transform: rotate(-25deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.vinyl-player__tonearm::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #444;
    border-radius: 50%;
    border: 3px solid #333;
}

.vinyl-player__tonearm::after {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 12px;
    background: #666;
    border-radius: 2px;
}

/* Artist Info */
.vinyl-player__info {
    text-align: center;
}

.vinyl-player__name {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--vivi-white);
    margin-bottom: var(--space-2);
}

.vinyl-player__label {
    font-size: var(--text-sm);
    color: var(--vivi-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ═══════ VIEW TOGGLE ═══════ */
.vinyl-view-toggle {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-8);
}

.vinyl-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vinyl-toggle-btn:hover {
    border-color: var(--vivi-red);
    color: var(--vivi-red);
}

.vinyl-toggle-btn.active {
    background: var(--vivi-red);
    border-color: var(--vivi-red);
    color: var(--vivi-white);
}

/* Grid View (toggle) */
.artists-grid-view {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.artists-grid-view.hidden {
    display: none;
}

.vinyl-album.hidden {
    display: none;
}

/* ═══════════════════════════════════════════════════════════
   LABELS COMPARISON SLIDER
   ═══════════════════════════════════════════════════════════ */

.labels-section {
    position: relative;
    overflow: hidden;
}

.labels-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: ew-resize;
    z-index: 1;
}

/* Header Overlay */
.labels-section__header {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
}

.labels-section__header .section__tag,
.artists-section .section__header .section__tag {
    display: inline-block;
    padding: var(--space-1) var(--space-4);
    background: rgba(183, 19, 24, 0.2);
    border: 1px solid var(--vivi-red);
    border-radius: var(--radius-full);
    color: var(--vivi-red);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}

/* Artists section header fix */
.artists-vinyl .section__header {
    position: relative;
    z-index: 20;
    text-align: center;
    padding-top: var(--space-8);
}

/* Mobile Responsive - Labels Slider */
@media (max-width: 768px) {
    .labels-section__header {
        top: 80px;
    }

    .labels-slider__content {
        padding: var(--space-4);
    }

    .labels-slider__logo {
        width: 100px;
        margin-bottom: var(--space-4);
    }

    .labels-slider__name {
        font-size: var(--text-xl);
    }

    .labels-slider__desc {
        font-size: var(--text-sm);
        max-width: 250px;
    }

    /* Labels: Vertical swipe on mobile */
    .labels-slider {
        cursor: ns-resize;
    }

    .labels-slider__panel--right {
        clip-path: inset(50% 0 0 0);
    }

    .labels-slider__handle {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
    }

    .labels-slider__handle-bar {
        display: none;
    }

    .labels-slider__handle-grip {
        width: 56px;
        height: 56px;
        flex-direction: row;
        background: var(--vivi-red);
        border: 3px solid var(--vivi-white);
        box-shadow: 0 4px 20px rgba(183, 19, 24, 0.5);
    }

    .labels-slider__handle-grip span {
        width: 2px;
        height: 16px;
    }

    .labels-slider__indicators {
        bottom: var(--space-4);
        flex-direction: column;
        gap: var(--space-2);
    }

    .labels-indicator__text {
        font-size: var(--text-xs);
    }
}

/* Mobile - Artists Vinyl Section */
@media (max-width: 1024px) {
    .artists-vinyl {
        /* min-height: auto;
        height: auto; */
        padding: var(--space-8) 0;
    }

    .artists-vinyl .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-6);
    }

    .vinyl-album {
        flex-direction: column;
        gap: var(--space-6);
        width: 100%;
    }

    /* Hide spine on mobile */
    .vinyl-album__spine {
        display: none;
    }

    /* Horizontal scroll for disc slots */
    .vinyl-album__case {
        width: 100%;
        max-width: 100%;
        margin: 0;
        background: transparent;
        border: none;
        padding: 0 var(--space-4);
    }

    .vinyl-album__slots {
        flex-direction: row;
        overflow-x: auto;
        gap: var(--space-3);
        padding-bottom: var(--space-2);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .vinyl-album__slots::-webkit-scrollbar {
        display: none;
    }

    .vinyl-disc-slot {
        flex: 0 0 auto;
        width: 140px;
        padding: var(--space-3);
        background: rgba(183, 19, 24, 0.15);
        border: 1px solid rgba(183, 19, 24, 0.4);
        border-radius: var(--radius-lg);
        flex-direction: column;
        text-align: center;
    }

    .vinyl-disc {
        width: 100%;
        height: 100%;
        margin-bottom: var(--space-2);
    }

    .vinyl-disc-slot__name {
        font-size: var(--text-xs);
    }

    /* Player centered below - larger to match web */
    .vinyl-player {
        width: 100%;
        max-width: 280px;
        margin: var(--space-6) auto 0;
    }

    .vinyl-player__disc {
        width: 200px;
        height: 200px;
    }

    .vinyl-player__tonearm {
        width: 70px;
        right: -35px;
    }
}

@media (max-width: 768px) {
    .artists-vinyl .section__header {
        padding-top: var(--space-4);
        margin-bottom: var(--space-4);
    }

    .vinyl-album {
        gap: var(--space-6);
    }

    .vinyl-album__case {
        max-width: 100%;
        padding: 0 var(--space-4);
    }

    .vinyl-album__spine {
        display: none;
    }

    .vinyl-album__slots {
        gap: var(--space-2);
    }

    .vinyl-disc-slot {
        padding: var(--space-3);
        border-radius: var(--radius-lg);
    }

    .vinyl-disc {
        width: 100%;
        height: 100%;
    }

    .vinyl-disc-slot__name {
        font-size: var(--text-sm);
    }

    .vinyl-player {
        max-width: 220px;
    }

    .vinyl-player__disc {
        width: 150px;
        height: 150px;
    }

    .vinyl-player__tonearm {
        width: 60px;
        right: -30px;
    }

    .vinyl-player__name {
        font-size: var(--text-lg);
    }

    .vinyl-player__label {
        font-size: var(--text-xs);
    }
}

/* Panels */
.labels-slider__panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.labels-slider__panel--left {
    background: linear-gradient(135deg, #1a0508 0%, #2a0a0e 50%, #1a0508 100%);
    z-index: 1;
}

.labels-slider__panel--right {
    background: linear-gradient(135deg, #0a0a1a 0%, #0e0a2a 50%, #0a0a1a 100%);
    z-index: 2;
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.1s ease-out;
}

/* Panel Content */
.labels-slider__content {
    text-align: center;
    padding: var(--space-8);
}

.labels-slider__logo {
    width: 180px;
    height: auto;
    margin-bottom: var(--space-6);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.labels-slider__panel:hover .labels-slider__logo {
    transform: scale(1.05);
}

.labels-slider__name {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--vivi-white);
    margin-bottom: var(--space-3);
}

.labels-slider__desc {
    font-size: var(--text-base);
    color: var(--gray-400);
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Drag Handle */
.labels-slider__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
}

.labels-slider__handle-bar {
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 0%,
            var(--vivi-red) 20%,
            var(--vivi-red) 80%,
            transparent 100%);
    border-radius: 3px;
    position: relative;
}

.labels-slider__handle-grip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--vivi-red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow:
        0 4px 20px rgba(183, 19, 24, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.labels-slider__handle:hover .labels-slider__handle-grip {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow:
        0 6px 30px rgba(183, 19, 24, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.labels-slider__handle-grip span {
    width: 16px;
    height: 2px;
    background: var(--vivi-white);
    border-radius: 1px;
}

/* Progress Bar */
.labels-slider__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 11;
}

.labels-slider__progress-bar {
    height: 100%;
    width: 0;
    background: var(--vivi-red);
    transition: width 0.1s linear;
}

/* Indicators */
.labels-slider__indicators {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    z-index: 20;
}

.labels-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.3s ease;
}

.labels-indicator:hover {
    color: var(--gray-300);
}

.labels-indicator.active {
    background: rgba(183, 19, 24, 0.15);
    border-color: var(--vivi-red);
    color: var(--vivi-white);
}

.labels-indicator__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    transition: background 0.3s ease;
}

.labels-indicator.active .labels-indicator__dot {
    background: var(--vivi-red);
}

.labels-indicator__text {
    font-size: var(--text-sm);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    /* .labels-slider {
        height: 350px;
    } */

    .labels-slider__logo {
        width: 120px;
    }

    .labels-slider__name {
        font-size: var(--text-2xl);
    }

    .labels-slider__indicators {
        flex-direction: column;
        gap: var(--space-2);
    }
}

/* Import responsive styles at the end */
@import url('responsive.css');