/* --------------------------------------------------------------------------
   BIHI Entertainment Landing Page Style Rules
   -------------------------------------------------------------------------- */

/* Design Tokens & Theme Variables */
:root {
    --bg-dark-900: #070709;
    --bg-dark-800: #0c0c0f;
    --bg-dark-700: #121217;
    --bg-dark-600: #1c1c24;
    
    --accent-gold-light: #fbeed0;
    --accent-gold: #d4af37;
    --accent-gold-dark: #aa851e;
    
    --text-white: #ffffff;
    --text-gold-light: #e5cda1;
    --text-gray-200: #f1f5f9;
    --text-gray-300: #cbd5e1;
    --text-gray-400: #94a3b8;
    --text-gray-500: #64748b;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-cursive: 'Alex Brush', cursive;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.15);
    --glow-gold-hover: 0 0 30px rgba(212, 175, 55, 0.3);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark-900);
}

body {
    font-family: var(--font-primary);
    color: var(--text-gray-300);
    background-color: var(--bg-dark-900);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    line-height: 1.2;
    text-wrap: balance; /* Modern Web Guidance best practice */
}

p {
    text-wrap: pretty; /* Modern Web Guidance best practice */
}

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

ul {
    list-style: none;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark-900);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-dark-600);
    border-radius: 4px;
    border: 2px solid var(--bg-dark-900);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--bg-dark-900);
    box-shadow: var(--glow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold-hover);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.05);
    box-shadow: var(--glow-gold);
    transform: translateY(-2px);
}

/* Common Layout Components */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
}

.section-action-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(7, 7, 9, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.main-header.scrolled {
    background: rgba(12, 12, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-fast);
    flex-shrink: 0;
    white-space: nowrap;
}

.logo-area:hover {
    transform: scale(1.03);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
    transition: var(--transition-fast);
}

.logo-area:hover .logo-img {
    filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.6));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: 2px;
    color: var(--text-white);
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.6rem;
    letter-spacing: 5px;
    color: var(--accent-gold);
}

.nav-menu {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    height: 100%;
    flex-wrap: nowrap;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 8px 12px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.8px;
    color: var(--text-gray-300);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 10px 18px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    flex-shrink: 0;
    white-space: nowrap;
}

.header-cta-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark-900);
    box-shadow: var(--glow-gold);
}

/* Mobile Navigation Hamburger */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: var(--header-height);
    background: linear-gradient(180deg, rgba(7, 7, 9, 0.4) 0%, rgba(7, 7, 9, 0.95) 100%), url('assets/hero_bg.png') no-repeat center center / cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(7, 7, 9, 0.7) 100%);
    z-index: 1;
}

.hero-content-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 20px;
    width: 100%;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 14px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-title-italic {
    font-family: var(--font-cursive);
    color: var(--text-gold-light);
    font-size: 2rem;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
    display: block;
    margin-top: 6px;
}

.hero-desc {
    max-width: 550px;
    font-size: 0.98rem;
    color: var(--text-gray-300);
    margin-bottom: 28px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Stats Section (Floating inside initial screen fold) */
.stats-section {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-top: 35px;
    padding: 15px 24px 40px;
    background: transparent;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: rgba(12, 12, 16, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--glow-gold);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.stat-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.1;
}

.stat-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-top: 2px;
}

.stat-sub {
    font-size: 0.7rem;
    color: var(--text-gray-400);
}

/* Featured Artists Section */
.artists-section {
    padding: 100px 0;
    background-color: var(--bg-dark-900);
    position: relative;
}

.carousel-outer-wrapper {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 60px;
}

.artists-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide standard Firefox scrollbar */
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.artists-carousel::-webkit-scrollbar {
    display: none; /* Hide Chrome scrollbar */
}

.artist-card {
    flex: 0 0 calc(20% - 20px); /* 5 columns on desktop */
    min-width: 220px;
    scroll-snap-align: start;
    background-color: var(--bg-dark-800);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.artist-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--glow-gold);
}

.artist-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 125%; /* 4:5 aspect ratio */
    overflow: hidden;
    background-color: var(--bg-dark-900);
}

.artist-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-card:hover .artist-img {
    transform: scale(1.05);
}

.artist-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 7, 9, 0.95) 100%);
    pointer-events: none;
    z-index: 1;
}

.artist-details {
    padding: 20px;
    position: relative;
    z-index: 2;
    background-color: var(--bg-dark-800);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.artist-name {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.artist-role {
    font-size: 0.75rem;
    color: var(--text-gray-400);
    margin-bottom: 16px;
}

.artist-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-top: auto;
}

.artist-link svg {
    transition: transform 0.3s ease;
}

.artist-link:hover svg {
    transform: translateX(4px);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(12, 12, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.carousel-control:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark-900);
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

/* Services Section */
.services-section {
    padding: 100px 24px;
    background-color: var(--bg-dark-800);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-dark-700);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent-gold);
    transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-dark-600);
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: var(--glow-gold);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-container {
    background: var(--accent-gold);
    color: var(--bg-dark-900);
    transform: scale(1.05);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-gray-400);
    line-height: 1.6;
}

/* News Section */
.news-section {
    padding: 100px 24px;
    background-color: var(--bg-dark-900);
}

.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.news-card {
    background-color: var(--bg-dark-800);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: var(--glow-gold);
}

.news-img-container {
    position: relative;
    width: 100%;
    padding-top: 60%; /* 5:3 aspect ratio */
    overflow: hidden;
    background-color: var(--bg-dark-900);
}

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

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.news-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-white);
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-top: auto;
}

.news-readmore svg {
    transition: transform 0.3s ease;
}

.news-readmore:hover svg {
    transform: translateX(4px);
}

/* Partners Section */
.partners-section {
    padding: 60px 0 80px;
    background-color: var(--bg-dark-800);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.partners-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 35px;
}

.partners-ticker-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.partners-ticker {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 80px;
    animation: scrollTicker 20s linear infinite;
}

/* Manual Navigation of ticker */
.ticker-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: var(--text-gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 5;
}

.ticker-arrow:hover {
    color: var(--accent-gold);
}

.ticker-arrow.prev {
    left: 0;
}

.ticker-arrow.next {
    right: 0;
}

.partner-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray-500);
    opacity: 0.4;
    white-space: nowrap;
    transition: var(--transition-fast);
    user-select: none;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Aligning scroll exactly to half distance because slides are cloned */
        transform: translateX(calc(-50% - 40px));
    }
}

.partners-ticker:hover .ticker-track {
    animation-play-state: paused;
}

/* Contact & Form Section */
.contact-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--bg-dark-900) 0%, var(--bg-dark-800) 100%);
    position: relative;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.contact-pitch {
    display: flex;
    flex-direction: column;
}

.pitch-tag {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.pitch-heading {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.pitch-cta-btn-wrapper {
    margin-top: 10px;
}

.contact-info-container {
    background-color: var(--bg-dark-800);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 6px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.contact-info-subtitle {
    font-size: 0.88rem;
    color: var(--text-gray-400);
    margin-bottom: 24px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-direct-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--bg-dark-900);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 18px 24px;
    transition: var(--transition-smooth);
}

.contact-direct-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
    transform: translateX(6px);
    background-color: var(--bg-dark-700);
}

.contact-direct-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.contact-direct-card:hover .contact-direct-icon {
    background: var(--accent-gold);
    color: var(--bg-dark-900);
}

.contact-direct-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.contact-direct-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-gray-400);
}

.contact-direct-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-direct-card:hover .contact-direct-value {
    color: var(--accent-gold-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    width: 100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background-color: var(--bg-dark-900);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 14px 18px;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

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

/* Custom select dropdown styling */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-30%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--text-gray-400);
    border-bottom: 2px solid var(--text-gray-400);
    pointer-events: none;
    transition: var(--transition-fast);
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.select-wrapper select:focus + label + ::after {
    border-color: var(--accent-gold);
}

.contact-form select option {
    background-color: var(--bg-dark-800);
    color: var(--text-white);
}

/* Submit button customization */
.btn-submit {
    background-color: var(--accent-gold);
    color: var(--bg-dark-900);
    font-weight: 700;
    width: 100%;
    padding: 16px;
    margin-top: 10px;
}

.btn-submit:hover {
    box-shadow: var(--glow-gold-hover);
    transform: translateY(-2px);
    background-color: var(--accent-gold-light);
}

/* Footer Section */
.main-footer {
    background-color: var(--bg-dark-900);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 80px 24px 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: fit-content;
}

.footer-logo .logo-img {
    height: 32px;
}

.footer-desc {
    font-size: 0.82rem;
    color: var(--text-gray-400);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-dark-800);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray-300);
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-white);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--text-gray-400);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--text-gray-400);
    line-height: 1.5;
}

.footer-contact-list li svg {
    flex-shrink: 0;
    color: var(--accent-gold);
    margin-top: 2px;
}

.footer-contact-list a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-gray-500);
}

/* Floating Actions */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 99;
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark-900);
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-4px);
}

/* Success Modal Popover */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: var(--bg-dark-800);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: var(--glow-gold), var(--card-shadow);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: pulseGlow 2s infinite;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-message {
    font-size: 0.9rem;
    color: var(--text-gray-400);
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-close-btn {
    width: 150px;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* --------------------------------------------------------------------------
   Scroll-Driven Animations & Reveal Framework
   -------------------------------------------------------------------------- */

/* Default reveal classes used as state markers for IntersectionObserver fallback */
.reveal-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Modern CSS Scroll-Driven Animations using View Timeline */
@media (prefers-reduced-motion: no-preference) {
    @supports ((animation-timeline: view()) and (animation-range: entry)) {
        
        @keyframes revealUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            animation: revealUp auto cubic-bezier(0.16, 1, 0.3, 1) both;
            animation-timeline: view();
            animation-range: entry 10% cover 30%;
        }
        
        /* Disable transition-based properties when native view() works */
        .reveal-init {
            opacity: 1;
            transform: none;
            transition: none;
        }
    }
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* Large Tablets & Small Laptops (1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artist-card {
        flex: 0 0 calc(33.333% - 16px);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-contact {
        grid-column: span 3;
        margin-top: 20px;
    }
}

/* Tablets & Medium Screens (1080px) */
@media (max-width: 1080px) {
    :root {
        --header-height: 70px;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-dark-800);
        border-left: 1px solid rgba(212, 175, 55, 0.1);
        padding: 100px 30px;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1.05rem;
        padding: 5px 0;
    }
    
    .nav-link::after {
        left: 0;
        right: 0;
    }
    
    /* Active hamburger animation */
    .mobile-nav-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header-cta-btn {
        display: none; /* Hide header booking button on tablet, scroll actions suffice */
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-title-italic {
        font-size: 1.8rem;
    }
    
    .artist-card {
        flex: 0 0 calc(50% - 12px);
    }
    
    .carousel-outer-wrapper {
        padding: 0 45px;
    }
}

/* Mobile Phones (480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-card {
        flex: 0 0 100%;
    }
    
    .carousel-outer-wrapper {
        padding: 0 35px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-contact {
        grid-column: span 1;
    }
    
    .pitch-heading {
        font-size: 1.8rem;
    }
}

