/**
 * Mecreative - Enhanced Stylesheet
 * Premium Dance & Movement Casting Agency
 * Design: Black/White Dominant, Minimal, Editorial, Enriched
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    /* Colors - Black/White Dominant with Accents */
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;
    
    /* Accent Colors */
    --accent: #6366f1;
    --accent-light: #818cf8;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-xl: 12px;
    --radius-2xl: 14px;
    --radius-full: 9999px;
    
    /* Layout */
    --container-max: 1400px;
    --container-narrow: 900px;
    --header-height: 80px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: var(--text-6xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

.text-muted { color: var(--gray-500); }
.text-center { text-align: center; }

/* ========================================
   Layout & Container
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section {
    padding: var(--space-24) 0;
}

.section-lg {
    padding: var(--space-32) 0;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.header .container {
    height: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--black);
    display: flex;
    align-items: center;
}

.logo span {
    font-weight: 300;
    color: var(--gray-400);
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    padding: 8px 0;
    transition: color 0.2s ease;
}

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

.nav-link.active {
    color: var(--black);
}

.nav-cta {
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    margin-left: 16px;
    transition: background 0.2s ease;
}

.nav-cta:hover {
    background: #333;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
}

.menu-toggle:hover {
    background: var(--gray-100);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--black);
    display: block;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: var(--space-6);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--gray-200);
}

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

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.mobile-nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.2s ease;
}

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

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 0 var(--space-6);
    max-width: 950px;
}

.hero-subtitle {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: var(--space-8);
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(var(--text-4xl), 7vw, var(--text-7xl));
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: var(--space-8);
    letter-spacing: -0.03em;
}

.hero-title strong {
    font-weight: 600;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-lg);
    font-weight: 300;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto var(--space-12);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-primary:hover {
    background: var(--gray-100);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-dark:hover {
    background: #333;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
    background: var(--black);
    padding: var(--space-16) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.stat-item {
    padding: var(--space-6);
}

.stat-number {
    display: block;
    font-size: var(--text-5xl);
    font-weight: 200;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-3);
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.about-title {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-400);
    margin-bottom: var(--space-8);
}

.about-text {
    font-size: var(--text-2xl);
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-700);
}

/* ========================================
   Services Grid
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.service-card {
    padding: var(--space-8);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.2s ease;
    text-align: left;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    background: var(--gray-100);
    border-radius: 10px;
    margin-bottom: var(--space-5);
}

.service-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.service-text {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   Steps / How It Works
   ======================================== */
.steps-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    counter-reset: step;
}

.step-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
    counter-increment: step;
    transition: all 0.2s ease;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
}

.step-card::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-6);
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--white);
    background: var(--black);
    border-radius: 10px;
}

.step-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.step-text {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   Brands / Collaborations
   ======================================== */
.brands-section {
    background: var(--gray-50);
    padding: var(--space-20) 0;
    border-radius: var(--radius-2xl);
    margin: 0 var(--space-6);
}

.brands-title {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-400);
    text-align: center;
    margin-bottom: var(--space-12);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-8);
    align-items: center;
    justify-items: center;
}

.brand-logo {
    opacity: 0.4;
    filter: grayscale(100%);
    transition: var(--transition-base);
    max-width: 100px;
}

.brand-logo:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

/* ========================================
   Talent Grid
   ======================================== */
.talent-section {
    background: var(--white);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-12);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--gray-200);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 300;
}

.talent-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
    margin-bottom: var(--space-6);
    width: 100%;
}

.filter-btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    background: var(--white);
    transition: all 0.2s ease;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

/* Talent Slider */
.talent-slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.talentSwiper {
    width: 100%;
    padding: var(--space-2) var(--space-6);
}

.talentSwiper .swiper-slide {
    height: auto;
}

.talentSwiper .talent-card {
    width: 100%;
    display: block;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.talent-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--gray-100);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.talent-card:hover {
    box-shadow: var(--shadow-lg);
}

.talent-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.talent-card:hover .talent-card-image {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.talent-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--gray-400);
}

.talent-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-8) var(--space-6);
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-base);
}

.talent-card:hover .talent-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.talent-card-name {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.talent-card-style {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: var(--black);
    color: var(--white);
    text-align: center;
    border-radius: 14px;
    margin: 0 var(--space-6);
}

.cta-title {
    font-size: var(--text-4xl);
    font-weight: 300;
    margin-bottom: var(--space-4);
}

.cta-text {
    font-size: var(--text-lg);
    opacity: 0.7;
    margin-bottom: var(--space-10);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-20) 0 var(--space-8);
    margin-top: var(--space-24);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-5);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--gray-400);
    line-height: 1.8;
}

.footer-title {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-6);
    color: var(--gray-400);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-link {
    font-size: var(--text-sm);
    color: var(--gray-400);
    transition: var(--transition-base);
}

.footer-link:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-800);
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-full);
    color: var(--gray-400);
    transition: var(--transition-base);
}

.social-link:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

/* ========================================
   Forms
   ======================================== */
.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--gray-700);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    font-size: var(--text-base);
    font-family: inherit;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    padding-top: calc(var(--header-height) + var(--space-16));
    padding-bottom: var(--space-16);
    text-align: center;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.page-title {
    font-size: var(--text-5xl);
    font-weight: 300;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   Talent Detail Page
   ======================================== */
.talent-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    background: var(--black);
}

.talent-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.talent-hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    padding: var(--space-16) 0;
    width: 100%;
}

.talent-name {
    font-size: var(--text-5xl);
    font-weight: 200;
    margin-bottom: var(--space-3);
}

.talent-category {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

.talent-profile {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-16);
    padding: var(--space-16) 0;
}

.talent-showreel {
    aspect-ratio: 16/9;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-8);
}

.talent-showreel iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.talent-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

.talent-gallery-image {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
}

.talent-gallery-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.talent-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-8));
}

.talent-info-block {
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--gray-200);
}

.talent-info-title {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: var(--space-3);
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 2px solid;
}

.availability-badge.available {
    color: var(--success);
    border-color: var(--success);
    background: rgba(34, 197, 94, 0.1);
}

.availability-badge.limited {
    color: var(--warning);
    border-color: var(--warning);
    background: rgba(245, 158, 11, 0.1);
}

.availability-badge.unavailable {
    color: var(--danger);
    border-color: var(--danger);
    background: rgba(239, 68, 68, 0.1);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .talent-profile {
        grid-template-columns: 1fr;
    }
    
    .talent-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section {
        padding: var(--space-16) 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .stat-number {
        font-size: var(--text-4xl);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .talent-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .talent-filters {
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
    
    .talent-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-section,
    .cta-section {
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }
    
    .talent-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Utilities
   ======================================== */
.mt-4 { margin-top: var(--space-4); }
.mb-4 { margin-bottom: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-8 { margin-bottom: var(--space-8); }

/* ========================================
   Enhanced Homepage Sections
   ======================================== */

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.section-badge-light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.section-header-center {
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-500);
    margin-top: var(--space-2);
    max-width: 600px;
}

/* Hero Enhancements */
.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
}

.hero-title-light {
    font-weight: 200;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Stats Section Enhanced */
.stats-section {
    background: var(--black);
    padding: var(--space-12) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.stat-item {
    padding: var(--space-6);
    color: var(--white);
}

.stat-number {
    display: inline;
    font-size: 56px;
    font-weight: 200;
    letter-spacing: -0.02em;
}

.stat-plus {
    font-size: 32px;
    font-weight: 300;
    opacity: 0.5;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-2);
}

/* About Home Section */
.about-home-section {
    background: var(--white);
}

.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-home-title {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--space-6);
}

.about-home-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--space-8);
}

.about-home-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 14px;
    font-weight: 500;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 10px;
    color: var(--black);
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-4);
    height: 500px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.about-img:hover {
    filter: grayscale(0%);
}

.about-img-1 {
    grid-row: span 2;
}

/* Video Showcase Section */
.video-showcase-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-showcase-bg {
    position: absolute;
    inset: 0;
}

.video-showcase-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.video-showcase-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 600px;
}

.video-showcase-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.video-showcase-text {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

/* Services Section Enhanced */
.services-section {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.service-card {
    padding: var(--space-8);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.2s ease;
    text-align: left;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 10px;
    margin-bottom: var(--space-5);
    color: var(--black);
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.service-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: var(--space-8);
    height: 100%;
}

.testimonial-quote {
    font-size: 64px;
    font-family: Georgia, serif;
    color: var(--gray-300);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-6);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-info strong {
    font-size: 14px;
}

.testimonial-info span {
    font-size: 12px;
    color: var(--gray-500);
}

.testimonialsSwiper .swiper-pagination {
    position: relative;
    margin-top: var(--space-8);
}

.testimonialsSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--gray-300);
    opacity: 1;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
    background: var(--black);
    width: 24px;
    border-radius: 4px;
}

/* Process Section */
.process-section {
    background: var(--white);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-6);
}

.process-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
}

.process-number {
    font-size: 48px;
    font-weight: 200;
    color: var(--gray-300);
    margin-bottom: var(--space-4);
}

.process-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.process-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

.process-connector {
    width: 60px;
    height: 1px;
    background: var(--gray-300);
    margin-top: 36px;
}

/* Dual CTA Section */
.dual-cta-section {
    background: var(--gray-50);
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.cta-card {
    display: flex;
    border-radius: 14px;
    overflow: hidden;
    min-height: 320px;
}

.cta-card-dark {
    background: var(--black);
    color: var(--white);
}

.cta-card-light {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.cta-card-content {
    flex: 1;
    padding: var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-card-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: var(--space-4);
}

.cta-card-text {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.cta-card-image {
    width: 45%;
    position: relative;
}

.cta-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.cta-card:hover .cta-card-image img {
    filter: grayscale(0%);
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-home-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .about-image-grid {
        height: 400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        flex-wrap: wrap;
    }
    
    .process-connector {
        display: none;
    }
    
    .dual-cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 40px;
    }
    
    .about-home-title,
    .video-showcase-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        flex-direction: column;
    }
    
    .cta-card-image {
        width: 100%;
        height: 200px;
    }
}
