/* ==========================================
   ICON DESTYLE BRAND DESIGN SYSTEM & STYLES
   ========================================== */

/* 1. Global Reset & Variables */
:root {
    --bg-base: #070709;
    --bg-surface: rgba(16, 16, 20, 0.7);
    --bg-surface-solid: #111114;
    --bg-card: rgba(22, 22, 28, 0.4);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(212, 175, 55, 0.15);
    
    /* Typography Colors */
    --text-primary: #f5f5f7;
    --text-secondary: #9ea0a6;
    --text-muted: #64666c;
    
    /* Luxury Palette Accents */
    --color-gold: #d4af37;
    --color-gold-hover: #f3e5ab;
    --color-champagne: #e5d3b3;
    
    /* Segment Theme Accents */
    --color-lifestyle: #10b981;      /* Emerald */
    --bg-lifestyle-glow: rgba(16, 185, 129, 0.1);
    
    --color-entertainment: #8b5cf6;  /* Royal Purple */
    --color-ent-teal: #06b6d4;       /* Neon Teal */
    --bg-entertainment-glow: rgba(139, 92, 246, 0.1);
    
    /* Core Timing & Spacers */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --max-width: 1200px;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: #222226;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
}

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

/* ==========================================
   2. Layout & Reusable Grid Components
   ========================================== */
.section-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 8rem 2rem;
}

.bg-dark-alt {
    background-color: #0b0b0d;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.section-tag {
    font-family: 'Outfit', sans-serif;
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.w-full {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, #b2942c 100%);
    color: #000000;
    border: none;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-hover) 0%, var(--color-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}
.btn-outline:hover {
    background: rgba(212, 175, 55, 0.08);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================
   3. Header Navigation (Glassmorphism)
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 7, 9, 0.6);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(7, 7, 9, 0.9);
    padding: 0.5rem 0;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo-link {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.15em;
}

.logo-subtext {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.4em;
    margin-top: -0.2rem;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-item {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-item:hover, .nav-item.active {
    color: #ffffff;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle .arrow {
    font-size: 0.7rem;
    margin-left: 0.2rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-surface-solid);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    padding: 0.8rem 0;
    min-width: 220px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column !important;
    gap: 0 !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    color: var(--color-gold);
    background: rgba(255, 255, 255, 0.03);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-fast);
}

/* ==========================================
   4. SPA Views Animation System
   ========================================== */
.views-wrapper {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 200px);
    margin-top: 75px; /* Offset for fixed header */
}

.view-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.view-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   5. HOME VIEW: Sections & Highlights
   ========================================== */
/* Hero Section */
.hero-container {
    height: calc(100vh - 75px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.05);
    animation: zoomHero 20s infinite alternate;
}

@keyframes zoomHero {
    to { transform: scale(1); }
}

.hero-content {
    max-width: 900px;
    z-index: 10;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    background: linear-gradient(to right, #ffffff 0%, var(--color-champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    font-family: 'Outfit', sans-serif;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ecosystem {
    font-family: 'Outfit', sans-serif;
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
}

.hero-ecosystem span {
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Animations for Load */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mouse-icon {
    width: 20px;
    height: 35px;
    border: 2px solid var(--text-muted);
    border-radius: 10px;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* About Intro Card */
.about-text-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.about-text-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-visual-card {
    display: flex;
    justify-content: center;
}

.glow-box {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 8px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.glow-box::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.stat-large {
    font-size: 6rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.stat-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.card-divider {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 1.5rem 0;
}

.stat-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Subsidiary Brand Grid (Pillars) */
.pillar-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.pillar-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid currentColor;
}

.lifestyle-color {
    color: var(--color-lifestyle);
}

.entertainment-color {
    color: var(--color-entertainment);
}

.brand-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.brand-card {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.brand-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.05);
}

.brand-img-wrap {
    width: 180px;
    min-height: 140px;
    position: relative;
    overflow: hidden;
}

.brand-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 50%, rgba(7, 7, 9, 0.9) 100%);
}

.brand-info {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.brand-tag {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.brand-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Philosophy Section */
.philosophy-section {
    border-top: 1px solid var(--border-color);
}

.philosophy-card {
    background: var(--bg-surface);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 3.5rem 2.5rem;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition-smooth);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.icon-holder {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
}

.philosophy-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.philosophy-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Group Impact Numbers */
.impact-section {
    padding: 5rem 2rem;
}

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

.metric-card .counter {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-gold);
    display: block;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.metric-card p {
    font-family: 'Outfit', sans-serif;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.text-group {
    display: inline-flex;
    justify-content: center;
    align-items: baseline;
}

/* Highlight Items */
.highlight-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.12);
}

.hl-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.hl-content {
    padding: 2rem;
}

.hl-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.8rem;
}

.hl-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.hl-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================
   6. ABOUT US VIEW: Timeline & Profiles
   ========================================== */
.section-title-banner {
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.banner-content h1 {
    font-size: 3rem;
    margin-top: 0.5rem;
}

.vision-mission-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.vision-card h3, .mission-card h3 {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vision-card p, .mission-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.value-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 6px;
}

.value-item h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Timeline Components */
.timeline-section {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.timeline-wrapper {
    position: relative;
    margin-top: 5rem;
    padding-bottom: 2rem;
}

.timeline-progress {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.timeline-nodes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    z-index: 2;
}

.timeline-node {
    text-align: center;
    padding: 0 1rem;
}

.timeline-node::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--bg-base);
    border: 3px solid var(--border-color);
    border-radius: 50%;
    display: block;
    margin: 22px auto 1.5rem;
    transition: var(--transition-smooth);
}

.timeline-node.active::before {
    border-color: var(--color-gold);
    background: var(--color-gold);
    box-shadow: 0 0 15px var(--color-gold);
}

.node-year {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    text-transform: uppercase;
}

.node-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.node-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Team Card profiles */
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 3rem 2rem;
    text-align: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.team-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================
   7. BUSINESSES VIEW: Full details
   ========================================== */
.full-brand-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.full-brand-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.full-brand-row.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.full-brand-row.reverse .row-img {
    grid-column: 2;
}

.full-brand-row.reverse .row-text {
    grid-column: 1;
    grid-row: 1;
}

.row-img {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    height: 380px;
}

.row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row-category {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.row-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.row-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.row-bullets {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.2rem 1.8rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.row-bullets strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.4rem;
}

.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
}

/* ==========================================
   8. HUB VIEWS (Entertainment & Lifestyle)
   ========================================== */
.hub-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    max-width: var(--max-width);
    margin: 3rem auto 0;
    padding: 0 2rem;
    gap: 2rem;
}

.tab-btn {
    background: transparent;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 1rem 1.5rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
    color: #ffffff;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.tab-btn.active::after {
    width: 100%;
}

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

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

/* Media Cards for Film Tab */
.media-large-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.media-visual {
    height: 320px;
    background-size: cover;
    background-position: center;
    padding: 2rem;
    display: flex;
    align-items: flex-end;
}

.media-status-tag {
    background: var(--color-gold);
    color: #000000;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 2px;
}

.media-body {
    padding: 2.5rem;
}

.media-body h3 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.media-type {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 1.2rem;
}

.media-body p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Media List right side */
.media-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.media-list-item {
    display: flex;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.media-thumb {
    width: 160px;
    min-height: 140px;
    background-size: cover;
    background-position: center;
}

.media-details {
    padding: 1.5rem 2rem;
    flex-grow: 1;
}

.media-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.media-details span {
    font-size: 0.8rem;
    color: var(--color-gold);
    font-weight: 500;
    display: block;
    margin-bottom: 0.8rem;
}

.media-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Music Players Cards */
.track-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.track-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px; /* Offset alignment for triangle play */
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--color-gold);
    color: #000000;
}

.track-info {
    padding: 1.5rem 2rem;
}

.track-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.track-artist {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.track-genre {
    font-size: 0.75rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Audio Player Bottom Floating Bar */
.player-bar-mock {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: rgba(16, 16, 20, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem 2rem;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
}

.player-bar-mock.visible {
    bottom: 2rem;
}

.pb-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: 25%;
}

.pb-thumb {
    width: 50px;
    height: 50px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.pb-info h5 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.pb-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.pb-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 50%;
}

.pb-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pb-ctrl-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pb-ctrl-btn:hover {
    color: #ffffff;
}

.pb-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    color: #000000;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.pb-play-btn:hover {
    transform: scale(1.08);
    background: var(--color-gold);
}

.pb-progress-wrap {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.pb-progress-bar {
    flex-grow: 1;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.pb-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--color-gold);
    border-radius: 2px;
}

.pb-right {
    width: 25%;
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Events schedules */
.events-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-row-card {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2rem 3rem;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    padding: 1rem;
    min-width: 90px;
    background: rgba(212,175,55,0.03);
}

.e-day {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.e-month {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.event-details {
    flex-grow: 1;
}

.event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.event-loc {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.event-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Editorial Layout for Fashion / Escapes Tab */
.editorial-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.editorial-layout.reverse {
    grid-template-columns: 1.1fr 1fr;
}

.editorial-layout.reverse .editorial-right {
    grid-column: 1;
}

.editorial-layout.reverse .editorial-left {
    grid-column: 2;
    grid-row: 1;
}

.ed-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
    display: block;
}

.editorial-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.editorial-left p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.ed-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 480px;
}

.ed-grid-img {
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.ed-solo-img {
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Service Boxes inside Wellness Tab */
.service-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4rem 3rem;
}

.service-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.benefit-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefit-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

/* ==========================================
   9. INVESTOR & PARTNERS & CONTACT: Forms
   ========================================== */
.partner-perks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.perk-item h5 {
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.perk-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Sleek Glassmorphic Form Boxes */
.glass-form-box {
    background: rgba(18, 18, 22, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3.5rem 3rem;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.glass-form-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-subtext {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

form label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

form input, form select, form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 1.2rem;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

form input:focus, form select:focus, form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

form select option {
    background-color: var(--bg-surface-solid);
    color: #ffffff;
}

form textarea {
    resize: none;
}

/* Contact Info specific */
.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-way h5 {
    font-size: 1rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.contact-way p {
    color: var(--text-primary);
    font-size: 1.05rem;
}

.pathways-showcase {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.5rem 2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 3.5rem;
}

.pathways-showcase strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

/* ==========================================
   10. NEWSROOM: Filter Cards
   ========================================== */
.news-grid {
    margin-top: 4rem;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.12);
}

.news-cat {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.news-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.news-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================
   11. CAREERS VIEW: List Openings
   ========================================== */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.job-item {
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.job-item:hover {
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
}

.job-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.job-title-row h5 {
    font-size: 1.2rem;
    color: #ffffff;
}

.job-loc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
}

.job-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================
   12. BRAND DETAIL MODAL (POPUP)
   ========================================== */
.brand-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 2rem;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
}

.modal-card {
    position: relative;
    background: var(--bg-surface-solid);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-modal.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--color-gold);
    color: #000000;
}

.modal-hero-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.modal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-surface-solid) 0%, transparent 100%);
}

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

.modal-sector-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.4rem;
}

.modal-hero-title h2 {
    font-size: 3rem;
}

.modal-body-content {
    padding: 3rem;
}

.modal-tag {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.modal-desc-p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.modal-extra-details {
    margin-bottom: 3rem;
}

.detail-block h5 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-bullets-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.modal-bullets-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.modal-bullets-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.modal-cta-row {
    display: flex;
    justify-content: flex-end;
}

/* ==========================================
   13. TOAST NOTIFICATIONS & FOOTER
   ========================================== */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(16, 185, 129, 0.95); /* Emerald Green */
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 4px;
    z-index: 3000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.2rem;
}

/* Footer Section */
.main-footer {
    background-color: #050506;
    border-top: 1px solid var(--border-color);
    padding: 6rem 2rem 3rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
}

.brand-column h3 {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.2rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 320px;
}

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

.footer-socials a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

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

.footer-column h4 {
    font-size: 1.1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

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

.footer-column ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom p {
    margin-bottom: 0.3rem;
}

/* ==========================================
   14. RESPONSIVE DESIGN (Media Queries)
   ========================================== */
@media (max-width: 1024px) {
    .section-container {
        padding: 6rem 2rem;
    }
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .pillar-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 4rem 1.5rem;
    }
    
    .grid-2, .editorial-layout, .editorial-layout.reverse {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }
    
    .full-brand-row, .full-brand-row.reverse {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .full-brand-row.reverse .row-img {
        grid-column: 1;
    }
    
    .editorial-right {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
    
    /* Hero responsiveness */
    .hero-container {
        min-height: calc(100vh - 75px);
        height: auto;
        padding: 6rem 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 0.1em;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Shrink navigation on scroll */
    .main-header.scrolled .header-container {
        padding: 0.6rem 2rem;
    }
    
    /* Navigation responsive mobile menu */
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: var(--bg-surface-solid);
        padding: 3rem 2rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .nav-item {
        font-size: 1.1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.02);
        margin-top: 1rem;
        padding-left: 1.5rem;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Event card stack */
    .event-row-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }
    
    .event-date {
        width: 80px;
        height: 80px;
    }
    
    /* Responsive Audio Player bottom bar */
    .player-bar-mock {
        width: 95%;
        padding: 0.9rem 1.2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .pb-left {
        display: flex;
        width: auto;
        flex-grow: 1;
    }
    
    .pb-thumb {
        width: 40px;
        height: 40px;
    }
    
    .pb-info h5 {
        font-size: 0.9rem;
    }
    
    .pb-info p {
        font-size: 0.75rem;
    }
    
    .pb-center {
        width: auto;
        flex-grow: 0;
    }
    
    .pb-controls {
        gap: 0.8rem;
    }
    
    .pb-ctrl-btn {
        display: none; /* Hide prev/next */
    }
    
    .pb-progress-wrap {
        display: none; /* Hide timeline progress bar on mobile */
    }
    
    .pb-right {
        display: none; /* Hide volume */
    }
    
    /* Modals & brand popups */
    .modal-card {
        padding: 0;
    }
    
    .modal-body-content {
        padding: 2rem 1.5rem;
    }
    
    .modal-hero-img {
        height: 200px;
        padding: 1.5rem;
    }
    
    .modal-hero-title h2 {
        font-size: 2.2rem;
    }
    
    .modal-bullets-list {
        grid-template-columns: 1fr;
    }
    
    /* Heights for subpages */
    .row-img {
        height: 280px;
    }
    
    .ed-grid-2 {
        height: 300px;
    }
    
    .ed-solo-img {
        height: 280px;
    }
    
    /* Vertical Journey Timeline for Mobile */
    .timeline-progress {
        display: none;
    }
    
    .timeline-nodes {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        position: relative;
    }
    
    .timeline-nodes::before {
        content: '';
        position: absolute;
        top: 0;
        left: 20px;
        width: 2px;
        height: 100%;
        background: var(--border-color);
        z-index: -1;
    }
    
    .timeline-node {
        text-align: left;
        padding-left: 3.5rem;
        padding-right: 0;
        position: relative;
    }
    
    .timeline-node::before {
        position: absolute;
        top: 4px;
        left: 13px;
        margin: 0;
    }
}

@media (max-width: 600px) {
    /* Stack brand cards vertically for better mobile space usage */
    .brand-card {
        flex-direction: column;
    }
    .brand-img-wrap {
        width: 100%;
        height: 200px;
    }
    .brand-overlay {
        background: linear-gradient(to top, rgba(7, 7, 9, 0.9) 0%, transparent 100%);
    }
}

@media (max-width: 480px) {
    .grid-3, .grid-5 {
        grid-template-columns: 1fr !important;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stat-large {
        font-size: 4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}
