/* ============================================
   KALAUNCHER PICTURES - PREMIUM LUXURY DESIGN
   Mobile-First with Premium Aesthetics
   ============================================ */

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette */
    --gold-primary: #C9A96E;
    --gold-light: #E4D4B7;
    --gold-dark: #A08649;
    --black-pure: #000000;
    --black-rich: #0D0D0D;
    --black-soft: #1A1A1A;
    --gray-dark: #2A2A2A;
    --gray-medium: #3A3A3A;
    --white-pure: #FFFFFF;
    --white-off: #F8F8F8;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #C9A96E 0%, #E4D4B7 50%, #C9A96E 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #1A1A1A 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, rgba(13, 13, 13, 0.9) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.2);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--black-rich);
    color: var(--white-pure);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
    margin: 0 auto;
}

/* ============================================
   NAVIGATION - PREMIUM MOBILE
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 4px 8px rgba(201, 169, 110, 0.3));
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold-primary);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 3px;
    line-height: 1;
}

.menu-toggle {
    background: none;
    border: 2px solid var(--gold-primary);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: 0.3s;
}

.menu-toggle:active {
    transform: scale(0.95);
    border-color: var(--gold-light);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 85px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    list-style: none;
    padding: 40px 24px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.4s forwards;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.15s; }
.nav-menu li:nth-child(3) { animation-delay: 0.2s; }
.nav-menu li:nth-child(4) { animation-delay: 0.25s; }
.nav-menu li:nth-child(5) { animation-delay: 0.3s; }
.nav-menu li:nth-child(6) { animation-delay: 0.35s; }
.nav-menu li:nth-child(7) { animation-delay: 0.4s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-link {
    color: var(--white-pure);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(201, 169, 110, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s;
    margin-bottom: 12px;
}

.nav-link i {
    font-size: 20px;
    color: var(--gold-primary);
    width: 24px;
}

.nav-link:active {
    background: rgba(201, 169, 110, 0.15);
    border-color: var(--gold-primary);
    transform: translateX(8px);
}

/* ============================================
   HERO SECTION - PREMIUM
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(13, 13, 13, 0.85)),
                url('../assets/img_03.JPG') center/cover fixed;
    position: relative;
    padding: 120px 24px 80px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: brightness(0.9) contrast(1.1) saturate(0.8);
    -webkit-backdrop-filter: brightness(0.9) contrast(1.1) saturate(0.8);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(201, 169, 110, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(201, 169, 110, 0.4), transparent),
        radial-gradient(2px 2px at 50% 50%, rgba(201, 169, 110, 0.4), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(201, 169, 110, 0.4), transparent),
        radial-gradient(3px 3px at 30% 80%, rgba(201, 169, 110, 0.3), transparent);
    background-size: 200% 200%;
    animation: particles 20s ease-in-out infinite;
    z-index: 3;
}

@keyframes particles {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -50px); }
    66% { transform: translate(-20px, 20px); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.hero-badge i {
    font-size: 16px;
    color: var(--gold-primary);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white-pure);
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gold-light);
    margin-bottom: 48px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.stat-item {
    padding: 24px 16px;
    background: rgba(201, 169, 110, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.stat-item:active {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.stat-icon {
    font-size: 24px;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 6px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 15px;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.cta-button.primary {
    background: var(--gradient-gold);
    color: var(--black-pure);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.cta-button.primary:active {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 169, 110, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.cta-button.secondary:active {
    background: rgba(201, 169, 110, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 24px;
    color: var(--gold-primary);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTION HEADERS - PREMIUM
   ============================================ */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.section-badge i {
    color: var(--gold-primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white-pure);
    letter-spacing: -1px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto;
    border-radius: 3px;
}

.subsection-title {
    font-size: 24px;
    font-weight: 700;
    margin: 60px 0 32px;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.subsection-title i {
    font-size: 24px;
}

/* ============================================
   ABOUT SECTION - PREMIUM
   ============================================ */
.about {
    background: var(--gradient-dark);
}

.about-intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: var(--white-off);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.specializations {
    display: grid;
    gap: 20px;
    margin-bottom: 60px;
}

.spec-card {
    background: var(--black-soft);
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

.spec-card:active::before {
    opacity: 0.05;
}

.spec-card:active {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.spec-card > * {
    position: relative;
    z-index: 1;
}

.spec-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(201, 169, 110, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.spec-icon-wrapper i {
    font-size: 28px;
    color: var(--gold-primary);
}

.spec-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--white-pure);
    font-weight: 700;
}

.spec-card p {
    color: var(--gold-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.spec-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}

.spec-arrow i {
    color: var(--gold-primary);
    font-size: 14px;
}

.spec-card:active .spec-arrow {
    background: var(--gold-primary);
}

.spec-card:active .spec-arrow i {
    color: var(--black-pure);
    transform: translateX(4px);
}

.features-grid {
    display: grid;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 20px;
    background: rgba(201, 169, 110, 0.03);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: 0.3s;
}

.feature:active {
    background: rgba(201, 169, 110, 0.08);
    border-color: var(--gold-primary);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper i {
    font-size: 20px;
    color: var(--black-pure);
}

.feature-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--gold-primary);
    font-weight: 700;
}

.feature-content p {
    font-size: 14px;
    color: var(--gold-light);
    line-height: 1.6;
}

/* ============================================
   PORTFOLIO SECTION - PREMIUM
   ============================================ */
.portfolio {
    background: var(--black-pure);
}

.featured-project {
    position: relative;
    margin-bottom: 60px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--black-soft);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.project-badge-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 20;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: var(--black-pure);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
}

.featured-image-wrapper {
    position: relative;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.featured-project:active .image-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 64px;
    color: var(--gold-primary);
}

.project-info {
    padding: 32px 24px;
}

.project-info h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--white-pure);
    font-weight: 700;
}

.project-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gold-light);
}

.meta-item i {
    color: var(--gold-primary);
    font-size: 14px;
}

.project-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.stat-badge.premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid var(--gold-primary);
    border-radius: 50px;
    font-size: 12px;
    color: var(--gold-primary);
    font-weight: 600;
}

.project-card.premium {
    display: flex;
    flex-direction: column;
    background: var(--black-soft);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: 0.3s;
}

.project-card.premium:active {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.project-thumb-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--black-pure);
    border-bottom: 2px solid rgba(201, 169, 110, 0.2);
}

.project-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
}

.project-card.premium:active .project-thumb {
    transform: scale(1.05);
}

.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(201, 169, 110, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumb-overlay i {
    color: var(--gold-primary);
    font-size: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.project-card.premium:active .thumb-overlay i {
    transform: scale(1);
}

.project-card.premium:active .thumb-overlay {
    opacity: 1;
}

.project-details {
    padding: 24px;
    flex: 1;
}

.project-details h4 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--white-pure);
    font-weight: 700;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.detail-row i {
    color: var(--gold-primary);
    font-size: 16px;
    width: 18px;
}

.project-views {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.project-views span {
    font-size: 12px;
    color: var(--gold-primary);
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 8px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.project-views span i {
    font-size: 14px;
}

.project-grid {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.project-mini.premium {
    background: var(--black-soft);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: 0.3s;
}

.project-mini.premium:active {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
}

.project-mini-icon {
    font-size: 32px;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.project-mini.premium h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--white-pure);
    font-weight: 700;
}

.project-mini.premium p {
    font-size: 13px;
    color: var(--gold-light);
}

.upcoming-grid {
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.upcoming-card.premium {
    background: var(--black-soft);
    padding: 32px 24px;
    border-radius: 20px;
    position: relative;
    border: 2px dashed rgba(201, 169, 110, 0.3);
    text-align: center;
    transition: 0.3s;
}

.upcoming-card.premium:active {
    border-color: var(--gold-primary);
    transform: scale(0.98);
}

.upcoming-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black-pure);
    color: var(--gold-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.upcoming-icon {
    width: 64px;
    height: 64px;
    background: rgba(201, 169, 110, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.upcoming-icon i {
    font-size: 28px;
    color: var(--gold-primary);
}

.upcoming-card.premium h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--white-pure);
    font-weight: 700;
}

.upcoming-card.premium p {
    font-size: 14px;
    color: var(--gold-light);
}

/* Recent releases grid wrapper */
.recent-releases-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
        max-width: 720px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 48px;
    }

    .specializations {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

    .hero-cta-group {
        flex-direction: row;
        gap: 24px;
        justify-content: center;
    }

    .cta-button {
        min-width: 220px;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 60px;
    }

    /* Desktop Navigation */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 60px;
    }

    .menu-toggle {
        display: none;
    }

    .nav-container {
        padding: 20px 0;
        width: auto;
    }

    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        height: auto;
        background: transparent;
        padding: 0;
        gap: 4px;
        width: auto;
        left: auto;
    }

    .nav-menu li {
        margin-bottom: 0;
        opacity: 1;
        transform: none;
        animation: none;
    }

    .nav-link {
        font-size: 14px;
        padding: 10px 18px;
        background: transparent;
        border: 1px solid transparent;
        margin-bottom: 0;
    }

    .nav-link i {
        display: none;
    }

    .nav-link:hover {
        background: rgba(201, 169, 110, 0.1);
        border-color: var(--gold-primary);
        /* transform: translateY(-1px); */
    }

    .hero-title {
        font-size: 72px;
    }

    .section-title {
        font-size: 56px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 200px);
        justify-content: center;
        gap: 24px;
    }

    .hero-cta-group {
        gap: 32px;
        max-width: 600px;
        margin: 0 auto;
    }

    .stat-item:hover {
        transform: translateY(-4px);
        border-color: var(--gold-primary);
        box-shadow: var(--shadow-gold);
    }

    .cta-button:hover {
        transform: translateY(-2px);
    }

    .cta-button.primary:hover {
        box-shadow: 0 12px 32px rgba(201, 169, 110, 0.4);
    }

    .spec-card:hover {
        transform: translateY(-8px);
        border-color: var(--gold-primary);
        box-shadow: var(--shadow-gold);
    }

    .spec-card:hover::before {
        opacity: 0.05;
    }

    .feature:hover {
        background: rgba(201, 169, 110, 0.08);
        border-color: var(--gold-primary);
    }

    .project-card.premium:hover {
        transform: translateY(-4px);
        border-color: var(--gold-primary);
        box-shadow: var(--shadow-gold);
    }

    .project-card.premium:hover .project-thumb {
        transform: scale(1.05);
    }

    .project-card.premium:hover .thumb-overlay {
        opacity: 1;
    }

    .project-card.premium:hover .thumb-overlay i {
        transform: scale(1);
    }

    .project-mini.premium:hover {
        transform: translateY(-4px);
        border-color: var(--gold-primary);
    }

    .upcoming-card.premium:hover {
        border-color: var(--gold-primary);
    }

    .upcoming-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .recent-releases-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    section {
        padding: 120px 0;
    }
}

/* ============================================
   TALENT SECTION - PREMIUM
   ============================================ */
.talent {
    background: var(--gradient-dark);
}

.talent-card {
    background: var(--black-soft);
    padding: 32px 24px;
    border-radius: 24px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Diagonal slash background design */
.talent-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(201, 169, 110, 0.03) 50%, rgba(201, 169, 110, 0.08) 100%);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
    z-index: 1;
    transition: all 0.6s ease;
}

/* Background image styling - matches diagonal shape */
.talent-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0 !important;
    transition: all 0.6s ease;
    filter: grayscale(30%) brightness(0.9) contrast(1.15);
}

/* Hover and active states */
.talent-card:hover::before,
.talent-card:active::before {
    background: linear-gradient(135deg, transparent 0%, rgba(201, 169, 110, 0.05) 50%, rgba(201, 169, 110, 0.12) 100%);
    width: 65%;
}

.talent-card:hover .talent-bg-image,
.talent-card:active .talent-bg-image {
    opacity: 0.4;
    filter: grayscale(0%) brightness(1) contrast(1.2);
    transform: scale(1.02);
}

.talent-card:active,
.talent-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-primary);
}

/* Ensure content is above background */
.talent-card > *:not(.talent-bg-image) {
    position: relative;
    z-index: 2;
}

.talent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.talent-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.talent-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white-pure);
}

.talent-subtitle {
    font-size: 14px;
    color: var(--gold-primary);
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.talent-bio {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.talent-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.talent-highlights .highlight {
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 12px;
    color: var(--gold-light);
    font-weight: 600;
}

.talent-projects {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.talent-projects span {
    background: var(--gradient-gold);
    color: var(--black-pure);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.social-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.social-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.social-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold-primary);
    font-family: var(--font-display);
    line-height: 1;
}

.social-label {
    font-size: 12px;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============================================
   OPPORTUNITIES SECTION - PREMIUM
   ============================================ */
.opportunities {
    background: var(--black-pure);
}

.section-intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: var(--gold-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.opportunity-cards {
    display: grid;
    gap: 24px;
    margin-bottom: 60px;
}

.opp-card {
    background: var(--black-soft);
    padding: 40px 32px;
    border-radius: 24px;
    border: 2px solid rgba(201, 169, 110, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.opp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.opp-card:active::before {
    transform: scaleX(1);
}

.opp-card:active {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.opp-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.opp-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gold-primary);
}

.opp-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gold-light);
}

.application-cta {
    background: var(--gradient-gold);
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.application-cta h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black-pure);
}

.application-cta p {
    font-size: 16px;
    color: var(--black-soft);
    margin-bottom: 32px;
}

.application-cta .cta-button {
    background: var(--black-pure);
    color: var(--gold-primary);
    border: 2px solid var(--black-pure);
}

.application-cta .cta-button:active {
    background: var(--black-soft);
    transform: translateY(-2px);
}



/* ============================================
   PARTNERSHIP SECTION - PREMIUM
   ============================================ */
.partnership {
    background: var(--gradient-dark);
}

.partnership-intro {
    text-align: center;
    margin-bottom: 60px;
}

.partnership-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gold-light);
    max-width: 700px;
    margin: 0 auto;
}

.partnership-benefits {
    margin-bottom: 60px;
}

.benefit-card {
    display: flex;
    gap: 24px;
    background: var(--black-soft);
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    margin-bottom: 24px;
    transition: all 0.3s;
}

.benefit-card:active {
    transform: translateX(8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.benefit-icon {
    font-size: 48px;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gold-primary);
}

.benefit-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gold-light);
}

.partnership-cta {
    background: var(--black-pure);
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center;
    border: 2px solid var(--gold-primary);
}

.partnership-cta h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--white-pure);
}

/* ============================================
   CONTACT SECTION - PREMIUM
   ============================================ */
.contact {
    background: var(--black-pure);
}

.contact-info {
    display: grid;
    gap: 20px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--black-soft);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s;
}

.contact-item:active {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.contact-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    background: rgba(201, 169, 110, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details a,
.contact-details p {
    font-size: 16px;
    color: var(--white-pure);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--gold-primary);
}

.contact-form {
    background: var(--black-soft);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--gold-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--black-pure);
    border: 2px solid rgba(201, 169, 110, 0.2);
    border-radius: 12px;
    color: var(--white-pure);
    font-size: 15px;
    font-family: var(--font-primary);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-medium);
}

.contact-form select {
    cursor: pointer;
}

.contact-form button {
    width: 100%;
}

.contact-form .cta-button {
 background: var(--gold-primary);
    color: var(--black-soft);
    border: 2px solid var(--black-pure);
}

.contact-form .cta-button:active {
    background: var(--black-soft);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER - PREMIUM
   ============================================ */
.footer {
    background: var(--black-pure);
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-primary);
}

.footer-logo-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 4px 8px rgba(201, 169, 110, 0.3));
}

.footer-tagline {
    font-size: 14px;
    color: var(--gold-light);
    margin-bottom: 32px;
    font-style: italic;
}

.footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.social-link {
    color: var(--gold-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50px;
    transition: all 0.3s;
}

.social-link:active {
    background: rgba(201, 169, 110, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.footer-copyright {
    font-size: 12px;
    color: var(--gray-medium);
    padding-top: 24px;
    border-top: 1px solid rgba(201, 169, 110, 0.05);
}

/* ============================================
   RESPONSIVE - TABLET (SECTIONS)
   ============================================ */
@media (min-width: 768px) {
    .opportunity-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-social {
        gap: 24px;
    }

    /* Adjust diagonal image on tablet */
    .talent-bg-image {
        width: 60%;
        opacity: 0.3;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP (SECTIONS)
   ============================================ */
@media (min-width: 1024px) {
    .opportunity-cards {
        grid-template-columns: repeat(4, 1fr);
    }

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

    /* Talent section - 2 column grid layout on desktop */
    .talent .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .talent .section-header {
        grid-column: 1 / -1;
        margin-bottom: 24px;
    }

    .talent-card {
        padding: 40px 32px;
        margin-bottom: 0;
    }

    .talent-card h3 {
        font-size: 32px;
    }

    .talent-subtitle {
        font-size: 15px;
    }

    .talent-bio {
        font-size: 15px;
        line-height: 1.8;
    }

    /* Extra large diagonal image on desktop */
    .talent-bg-image {
        width: 60%;
        opacity: 0.35;
    }

    .talent-card:hover .talent-bg-image,
    .talent-card:active .talent-bg-image {
        opacity: 0.5;
    }

    .talent-card::before {
        width: 60%;
    }

    .talent-card:hover::before,
    .talent-card:active::before {
        width: 62%;
    }

    .contact-item:hover {
        transform: translateY(-4px);
        border-color: var(--gold-primary);
        box-shadow: var(--shadow-gold);
    }

    .benefit-card:hover {
        transform: translateX(8px);
        border-color: var(--gold-primary);
        box-shadow: var(--shadow-gold);
    }

    .opp-card:hover {
        transform: translateY(-8px);
        border-color: var(--gold-primary);
        box-shadow: var(--shadow-gold);
    }

    .opp-card:hover::before {
        transform: scaleX(1);
    }


    .social-link:hover {
        background: rgba(201, 169, 110, 0.1);
        border-color: var(--gold-primary);
        color: var(--gold-primary);
        transform: translateY(-2px);
    }
}