:root {
    /* Default Light Theme */
    --bg-primary: #F8F9FA;
    --bg-secondary: #F1F3F5;
    --bg-card: #ffffff;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(124, 58, 237, 0.4);
    --text-primary: #1E293B;
    --text-secondary: #4A5568;
    --primary: #7C3AED;
    --primary-hover: #6D28D9;
    --primary-glow: rgba(124, 58, 237, 0.15);
    --card-glow: rgba(0, 0, 0, 0.01);
    --navbar-bg: rgba(248, 249, 250, 0.8);
    --wa-green: #25D366;
    --wa-green-hover: #128C7E;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
    --player-bg-hover: rgba(124, 58, 237, 0.06);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

.ecosystem-switcher:hover .ecosystem-menu {
    display: block !important;
}

[data-theme="dark"] {
    --bg-primary: #090909;
    --bg-secondary: #121212;
    --bg-card: #1A1A1A;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(167, 139, 250, 0.4);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --primary: #A78BFA;
    --primary-hover: #C084FC;
    --primary-glow: rgba(167, 139, 250, 0.2);
    --card-glow: rgba(167, 139, 250, 0.02);
    --navbar-bg: rgba(9, 9, 9, 0.8);
    --wa-green: #25D366;
    --wa-green-hover: #128C7E;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.2);
    --shadow-lg: 0 12px 30px rgba(0,0,0,0.4);
    --player-bg-hover: rgba(167, 139, 250, 0.08);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8%;
    background: var(--navbar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.4s, border-color 0.4s;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-box img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-box:hover img {
    transform: scale(1.05);
}

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

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s, opacity 0.3s;
}

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

.btn-main-web {
    border: 1.5px solid var(--primary);
    color: var(--primary) !important;
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease !important;
}

.btn-main-web:hover {
    background: var(--primary);
    color: #fff !important;
    box-shadow: 0 0 15px var(--primary-glow);
}

.wa-nav {
    background: var(--wa-green) !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.wa-nav:hover {
    background: var(--wa-green-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* THEME TOGGLE */
.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.05);
    color: var(--primary);
}

.theme-toggle-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .moon-icon {
    display: none;
}

body:not([data-theme="dark"]) .sun-icon {
    display: none;
}

/* HAMBURGER MENU */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.menu-toggle svg {
    width: 20px;
    height: 20px;
}

/* MOBILE NAV DRAWER */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    box-shadow: var(--shadow-lg);
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: color 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--primary);
}

/* HERO */
.hero {
    padding: 90px 20px 70px;
    text-align: center;
    background: radial-gradient(circle at top, var(--bg-secondary) 0%, var(--bg-primary) 70%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    background: rgba(124, 58, 237, 0.06);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-mono);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(135deg, var(--primary) 30%, #EA580C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
}

.hero p {
    color: var(--text-secondary);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 500;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 100px;
}

/* FILTER BAR */
.filter-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    background: var(--bg-card);
    padding: 16px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.search-wrapper {
    position: relative;
    flex-grow: 1;
    max-width: 450px;
}

.search-wrapper svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    width: 20px;
    height: 20px;
    pointer-events: none;
    transition: color 0.3s;
}

#searchInput {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 20px 14px 48px;
    border-radius: 14px;
    font-size: 0.95rem;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
}

#searchInput::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

#searchInput:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

#searchInput:focus + svg {
    color: var(--primary);
}

.tabs {
    display: flex;
    background: var(--bg-primary);
    padding: 6px;
    border-radius: 14px;
    gap: 4px;
    border: 1px solid var(--border-color);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--bg-card);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* TALENT GRID & CARD */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), var(--card-glow), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), 0 0 20px var(--primary-glow);
}

.image-container {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.talent-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .talent-image {
    transform: scale(1.04);
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    z-index: 2;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.card h3 {
    font-size: 1.35rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tag.male {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.15);
}

.tag.female {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
    border: 1px solid rgba(244, 63, 94, 0.15);
}

.tag.kid {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.category-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* SAMPLES CONTAINER */
.samples-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex-grow: 1;
    z-index: 2;
}

/* CUSTOM AUDIO PLAYER */
.custom-audio-player {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-secondary);
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.custom-audio-player:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--player-bg-hover);
}

.play-pause-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.play-pause-btn:hover {
    transform: scale(1.08);
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.play-pause-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.player-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
    min-width: 0;
}

.sample-title {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.progress-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    overflow: visible;
}

[data-theme="light"] .progress-container {
    background: rgba(0, 0, 0, 0.06);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary);
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.05s linear;
}

.progress-handle {
    width: 10px;
    height: 10px;
    background: var(--text-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
    pointer-events: none;
    box-shadow: var(--shadow-sm);
}

.progress-container:hover .progress-handle {
    transform: translate(-50%, -50%) scale(1);
}

.time-display {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    flex-shrink: 0;
}

/* BOOK BUTTON */
.book-btn {
    background: var(--wa-green);
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.15);
}

.book-btn:hover {
    background: var(--wa-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
}

.book-btn svg {
    width: 16px;
    height: 16px;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.page-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(124, 58, 237, 0.05);
}

.page-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* SKELETON LOADERS */
@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.skeleton {
    animation: pulse 1.5s infinite ease-in-out;
    background: var(--bg-secondary);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
    transform: translateX(-100%);
    animation: loading-shimmer 1.5s infinite;
}

[data-theme="light"] .skeleton::after {
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.03), transparent);
}

@keyframes loading-shimmer {
    100% { transform: translateX(100%); }
}

.skeleton-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.skeleton-image {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.skeleton-title {
    width: 60%;
    height: 20px;
    margin-bottom: 12px;
}

.skeleton-subtitle {
    width: 40%;
    height: 14px;
    margin-bottom: 24px;
}

.skeleton-player {
    width: 100%;
    height: 58px;
    border-radius: 14px;
    margin-bottom: 10px;
}

.skeleton-btn {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    margin-top: 10px;
}

.loading-text {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

/* VIDEO PORTFOLIO CARDS */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 40px;
}

.video-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), 0 0 20px var(--primary-glow);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--border-color) 100%);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.video-thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail-img {
    transform: scale(1.04);
}

.video-thumbnail-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-glow) 0%, var(--bg-secondary) 100%);
    box-sizing: border-box;
}

.video-thumbnail-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.3px;
    word-break: break-word;
}

.video-play-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.video-thumbnail-wrapper:hover .video-play-overlay-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(0, 168, 232, 0.5);
}

.video-play-overlay-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    margin-left: 2px;
}

.video-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    position: relative;
    padding-top: 56.25%;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.video-wrapper iframe, 
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    text-align: left;
    padding: 4px 6px;
}

.video-info h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 700;
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 8% 40px;
    background: var(--bg-card);
    color: var(--text-primary);
    text-align: center;
    position: relative;
}

.footer h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo-container {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 16px;
    position: relative;
    padding: 3px;
    background: linear-gradient(135deg, var(--border-color) 30%, var(--primary) 100%);
    box-shadow: var(--shadow-sm);
}

.team-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-secondary);
}

.team-member h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-member p {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

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

.footer-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-info a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
    .navbar {
        padding: 16px 5%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 70px 20px 50px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 16px;
    }
    
    .search-wrapper {
        max-width: 100%;
    }
    
    .tabs {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        flex: 1;
        text-align: center;
    }
    
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .card {
        padding: 16px;
        border-radius: 20px;
    }
    
    .image-container {
        height: 250px;
    }
}