/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #000;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background: #000;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

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

.btn-secondary {
    background: transparent;
    color: #000;
    padding: 0.5rem 1.5rem;
    border: 1px solid #000;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}

/* Navigation Buttons - More Visible */
.btn-primary-nav {
    background: #000;
    color: #fff !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
    font-weight: 600;
}

.btn-primary-nav:hover {
    background: #333;
    color: #fff !important;
}

.btn-secondary-nav {
    background: #f5f5f5;
    color: #000 !important;
    padding: 0.5rem 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    font-weight: 600;
}

.btn-secondary-nav:hover {
    background: #e5e5e5;
    border-color: #ccc;
}

.btn-primary-large {
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary-large:hover {
    background: #333;
}

.btn-outline {
    background: transparent;
    color: #000;
    padding: 1rem 2rem;
    border: 2px solid #000;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Background Images */
.bg-images {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f1419 50%, #1a0f2e 100%);
    z-index: -1;
}

/* Studio Elements Container */
.studio-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Recording Studio Booth */
.studio-booth {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 150px;
    height: 180px;
    background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5),
                0 10px 40px rgba(0, 0, 0, 0.6);
    opacity: 0.7;
}

/* Mixing Console */
.mixing-console {
    position: absolute;
    bottom: 15%;
    left: 8%;
    display: flex;
    gap: 12px;
    opacity: 0.6;
}

.console-fader {
    width: 15px;
    height: 80px;
    background: linear-gradient(to right, #2a2a3e, #3a3a4e);
    border-radius: 8px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8),
                0 0 10px rgba(255, 0, 80, 0.3);
    position: relative;
}

.console-fader::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 25px;
    background: linear-gradient(to bottom, #ff0050, #cc0040);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(255, 0, 80, 0.6);
}

/* Monitor Speakers */
.monitor-speaker {
    position: absolute;
    width: 100px;
    height: 120px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8),
                inset 0 0 20px rgba(255, 255, 255, 0.05);
    opacity: 0.5;
}

.monitor-speaker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #333 0%, #111 70%);
    border-radius: 50%;
    border: 3px solid #222;
}

.speaker-left {
    bottom: 25%;
    left: 15%;
}

.speaker-right {
    bottom: 25%;
    right: 15%;
}

/* Vinyl Records */
.vinyl-stack {
    position: absolute;
    bottom: 30%;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: -10px;
}

.vinyl-record {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #1a1a1a 20%, #000 20%, #000 35%, #1a1a1a 35%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    opacity: 0.6;
    margin-top: -40px;
}

.vinyl-record:first-child {
    margin-top: 0;
}

/* Microphone Stand */
.mic-stand {
    position: absolute;
    left: 20%;
    bottom: 20%;
    opacity: 0.5;
}

.mic-head {
    width: 40px;
    height: 50px;
    background: linear-gradient(145deg, #666, #333);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8),
                inset 0 2px 10px rgba(255, 255, 255, 0.2);
    position: relative;
}

.mic-body {
    width: 20px;
    height: 80px;
    background: linear-gradient(to bottom, #444, #222);
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.mic-base {
    width: 80px;
    height: 8px;
    background: linear-gradient(to bottom, #333, #111);
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

/* Headphones on Stand */
.headphone-stand {
    position: absolute;
    right: 25%;
    bottom: 25%;
    opacity: 0.5;
}

.headphone-arc {
    width: 60px;
    height: 40px;
    border: 5px solid #333;
    border-bottom: none;
    border-radius: 50px 50px 0 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.headphone-cup {
    width: 25px;
    height: 35px;
    background: linear-gradient(145deg, #444, #222);
    border-radius: 8px;
    position: absolute;
    bottom: -5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.headphone-cup.left {
    left: -5px;
}

.headphone-cup.right {
    right: -5px;
}

/* Neon Signs */
.neon-sign {
    position: absolute;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-shadow: 0 0 10px currentColor,
                 0 0 20px currentColor,
                 0 0 30px currentColor;
    animation: neon-flicker 3s infinite alternate;
}

.neon-sign.recording {
    top: 15%;
    left: 10%;
    color: #ff0040;
    border: 2px solid #ff0040;
    background: rgba(255, 0, 64, 0.1);
}

.neon-sign.studio {
    top: 15%;
    right: 25%;
    color: #00ff88;
    border: 2px solid #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Studio Lights */
.studio-light {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    pointer-events: none;
    animation: light-sweep 8s ease-in-out infinite;
}

.light-1 {
    top: 10%;
    left: 30%;
    background: radial-gradient(circle, rgba(255, 100, 0, 0.3) 0%, transparent 70%);
    animation-delay: 0s;
}

.light-2 {
    top: 20%;
    right: 20%;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.3) 0%, transparent 70%);
    animation-delay: 2.7s;
}

.light-3 {
    bottom: 30%;
    left: 40%;
    background: radial-gradient(circle, rgba(255, 0, 150, 0.3) 0%, transparent 70%);
    animation-delay: 5.4s;
}

@keyframes light-sweep {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.3); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

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

/* Hero button outline variant (white for video background) */
.hero .btn-outline {
    color: #fff;
    border-color: #fff;
    background: transparent;
}

.hero .btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Typewriter Animation */
.typewriter-text {
    overflow: hidden;
    border-right: 3px solid #fff;
    white-space: nowrap;
    letter-spacing: 0.05em;
    animation: typing 3s steps(50, end), blink-caret 0.75s step-end infinite;
    animation-fill-mode: forwards;
    display: inline-block;
    max-width: 100%;
}

.typewriter-text.typing-complete {
    border-right: none;
    animation: none;
    width: 100%;
}

@keyframes typing {
    from {
        width: 0;
        opacity: 1;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: currentColor;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

.hero .typewriter-text {
    border-right-color: #fff;
}

.hero h2.typewriter-text {
    animation-name: fadeInUp, typing, blink-caret, textGlow;
    animation-duration: 0.6s, 2.5s, 0.75s, 4s;
    animation-delay: 0s, 0.3s, 0.3s, 3s;
    animation-timing-function: ease-out, steps(50, end), step-end, ease-in-out;
    animation-iteration-count: 1, 1, infinite, infinite;
    animation-fill-mode: forwards, forwards, forwards, forwards;
    width: 0;
}

.hero p.typewriter-text {
    animation-name: fadeInUp, typing, blink-caret;
    animation-duration: 0.6s, 2s, 0.75s;
    animation-delay: 2.5s, 3s, 3s;
    animation-timing-function: ease-out, steps(50, end), step-end;
    animation-iteration-count: 1, 1, infinite;
    animation-fill-mode: forwards, forwards, forwards;
    width: 0;
    border-right-color: #f0f0f0;
}

/* Scroll Animation Styles */
.scroll-animate {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate .typewriter-text {
    border-right-color: #000;
    width: 0;
}

.scroll-animate.animate-in .typewriter-text {
    animation: typing 1.5s steps(50, end) forwards, blink-caret 0.75s step-end 5;
}

.scroll-animate.animate-in .typewriter-text:nth-of-type(2) {
    animation-delay: 0.5s;
}

.scroll-animate-section .column:nth-child(1) .typewriter-text {
    animation-delay: 0s;
}

.scroll-animate-section .column:nth-child(2) .typewriter-text {
    animation-delay: 0.3s;
}

.scroll-animate-section .column:nth-child(3) .typewriter-text {
    animation-delay: 0.6s;
}

.scroll-animate-section .column:nth-child(4) .typewriter-text {
    animation-delay: 0.9s;
}

/* Modern Slider */
.benefits-slider {
    padding: 4rem 0;
    background: #fff;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.slider-track {
    position: relative;
    height: 280px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-content {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e5e5;
}

.slide-number {
    font-size: 0.875rem;
    color: #999;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.slide-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.slide-stats span {
    background: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    border: 1px solid #e5e5e5;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    background: #000;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

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

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active {
    background: #000;
}

.dot:hover {
    background: #666;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #f9f9f9;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: #666;
}

.service-card li:before {
    content: "✓ ";
    color: #000;
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-list {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.service-list h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.column h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.column p {
    color: #666;
}

/* Management Cards */
.management-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.management-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #000;
}

.management-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.management-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #000;
}

.management-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.learn-more {
    display: inline-block;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.management-card:hover .learn-more {
    transform: translateX(5px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content {
    background-color: #fff;
    margin: 2rem auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #666;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
}

.modal-close:hover {
    color: #000;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 2.5rem 2rem 1.5rem;
    border-bottom: 2px solid #f5f5f5;
}

.modal-header .modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
    color: #000;
}

.modal-body {
    padding: 2rem;
}

.modal-intro {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-body h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000;
}

.modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.modal-body li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.modal-body li:last-child {
    border-bottom: none;
}

.modal-body li strong {
    color: #000;
    font-weight: 600;
}

.modal-cta {
    text-align: center;
    padding: 1.5rem 0 0.5rem;
    border-top: 2px solid #f5f5f5;
}

.modal-cta .btn-primary {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-top: 0.5rem;
}

.modal-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #666;
}

/* Subscription Packages */
.subscription-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.subscription-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.subscription-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.subscription-card.featured {
    border-color: #000;
    transform: scale(1.05);
}

.subscription-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.subscription-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.subscription-card .price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.subscription-card ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.subscription-card li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.subscription-card li:last-child {
    border-bottom: none;
}

.subscription-card li:before {
    content: "✓ ";
    color: #000;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Membership Benefits */
.membership-benefits {
    margin-top: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Beats Section */
.beats {
    padding: 4rem 0;
    background: #fff;
}

.beats h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.beats > .container > p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.beats-player {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: #fff;
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonials-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    min-height: 350px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.testimonial-content {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #e5e5e5;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
    font-size: 1.25rem;
    text-align: right;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-btn {
    background: #000;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

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

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.t-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.t-dot.active {
    background: #000;
}

.t-dot:hover {
    background: #666;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #f9f9f9;
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.social {
    margin-top: 2rem;
}

.social h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social a {
    color: #000;
    text-decoration: none;
    margin: 0 0.5rem;
}

.social a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000;
}

.contact-form button {
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Signup/Login Pages */
.signup-section,
.login-section {
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
    background: #f9f9f9;
}

.signup-wrapper,
.login-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.signup-header,
.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.signup-header h1,
.login-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.signup-header p,
.login-header p {
    color: #666;
}

.signup-form,
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

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

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.form-group small {
    font-size: 0.75rem;
    color: #999;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c00;
}

.signup-footer,
.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.signup-footer a,
.login-footer a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.signup-footer a:hover,
.login-footer a:hover {
    text-decoration: underline;
}

/* Dashboard Pages */
.dashboard-section {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
    background: #f9f9f9;
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: #666;
}

.dashboard-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e5e5;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: #000;
}

.tab-btn.active {
    border-bottom-color: #000;
}

.tab-content {
    display: none;
}

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

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.dashboard-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.dashboard-card h2,
.dashboard-card h3 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.profile-avatar {
    text-align: center;
    margin-bottom: 1rem;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #666;
}

.avatar-upload-btn {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    color: #666;
    font-size: 0.875rem;
}

.stat-value {
    font-weight: 700;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    padding: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
    font-weight: 600;
}

.action-btn:hover {
    background: #e5e5e5;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.empty-state p {
    margin-bottom: 1rem;
}

.user-greeting {
    color: #666;
    font-size: 0.875rem;
}

/* Community Chat */
.chat-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    height: 700px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
    overflow: hidden;
}

.chat-sidebar {
    background: #f9f9f9;
    border-right: 2px solid #e5e5e5;
    display: flex;
    flex-direction: column;
}

.chat-sidebar-header {
    padding: 1.5rem 1rem;
    border-bottom: 2px solid #e5e5e5;
}

.chat-sidebar-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
}

.chat-channels {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.channel-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.channel-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.channel-btn.active {
    background: #fff;
    border-left-color: #000;
    font-weight: 600;
}

.channel-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.channel-name {
    flex: 1;
    text-align: left;
    color: #333;
}

.channel-count {
    font-size: 0.75rem;
    color: #999;
}

.chat-main {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.chat-header {
    padding: 1.5rem;
    border-bottom: 2px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info h2 {
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.chat-header-info p {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

.chat-header-actions {
    display: flex;
    gap: 0.5rem;
}

.chat-action-btn {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.chat-action-btn:hover {
    background: #e5e5e5;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chat-message {
    display: flex;
    gap: 1rem;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
    min-width: 0;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}

.message-author {
    font-weight: 700;
    font-size: 0.95rem;
    color: #000;
}

.message-badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.message-badge.artist {
    background: #e3f2fd;
    color: #1976d2;
}

.message-badge.producer {
    background: #f3e5f5;
    color: #7b1fa2;
}

.message-badge.label {
    background: #fff3e0;
    color: #f57c00;
}

.message-time {
    font-size: 0.75rem;
    color: #999;
}

.message-text {
    color: #333;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-input-container {
    border-top: 2px solid #e5e5e5;
    padding: 1rem 1.5rem;
    background: #f9f9f9;
}

.chat-input-form {
    display: flex;
    gap: 0.75rem;
}

.chat-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    font-size: 0.95rem;
    background: #fff;
    transition: border-color 0.2s;
}

.chat-input:focus {
    outline: none;
    border-color: #000;
}

.chat-send-btn {
    padding: 0.75rem 1.5rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-send-btn:hover {
    background: #333;
}

.chat-input-hint {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #999;
    text-align: center;
}

/* Legal Pages */
.legal-section {
    padding: 4rem 0;
    background: #fff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.last-updated {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e5e5;
}

.legal-block {
    margin-bottom: 2.5rem;
}

.legal-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 700;
}

.legal-block h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: #000;
    font-weight: 600;
}

.legal-block h4 {
    font-size: 1rem;
    margin: 1rem 0 0.5rem;
    color: #000;
    font-weight: 600;
}

.legal-block p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #333;
}

.legal-block ul {
    margin: 1rem 0 1rem 1.5rem;
    line-height: 1.8;
}

.legal-block li {
    margin-bottom: 0.5rem;
    color: #333;
}

.legal-block strong {
    font-weight: 600;
    color: #000;
}

.legal-block a {
    color: #000;
    text-decoration: underline;
}

.legal-block a:hover {
    text-decoration: none;
}

.legal-block.acceptance {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #000;
    margin-top: 3rem;
}

.legal-block.acceptance p {
    margin: 0;
    font-weight: 600;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #e5e5e5;
        padding: 1rem;
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Adjust typewriter for mobile */
    .typewriter-text {
        white-space: normal;
    }

    .hero h2.typewriter-text,
    .hero p.typewriter-text {
        animation-duration: 2s;
    }

    .scroll-animate .typewriter-text {
        white-space: normal;
    }

    /* Simplify studio elements on mobile */
    .mixing-console,
    .vinyl-stack,
    .headphone-stand,
    .studio-booth {
        display: none;
    }

    .monitor-speaker {
        width: 60px;
        height: 80px;
    }

    .mic-stand {
        transform: scale(0.7);
    }

    .neon-sign {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .studio-light {
        width: 100px;
        height: 100px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    footer .container {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-row-group {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-tabs {
        overflow-x: auto;
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .subscription-cards {
        grid-template-columns: 1fr;
    }

    .subscription-card.featured {
        transform: scale(1);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-content {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .management-cards {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 1rem auto;
        max-height: 90vh;
    }

    /* Slider mobile adjustments */
    .slider-track {
        height: auto;
        min-height: 400px;
    }

    .slide-content {
        padding: 2rem 1.5rem;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .slide-stats {
        gap: 1rem;
    }

    .slide-stats span {
        font-size: 0.813rem;
        padding: 0.5rem 1rem;
    }

    .modal-header {
        padding: 2rem 1.5rem 1rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-intro {
        font-size: 1rem;
    }

    .modal-body h3 {
        font-size: 1.1rem;
    }

    .chat-container {
        grid-template-columns: 1fr;
        height: 600px;
    }

    .chat-sidebar {
        display: none;
    }

    .chat-header-info h2 {
        font-size: 1.25rem;
    }

    .chat-header-info p {
        display: none;
    }

    .chat-messages {
        padding: 1rem;
        gap: 1rem;
    }

    .message-header {
        font-size: 0.85rem;
    }
}

/* Team Section Styles */
.team {
    padding: 3rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.team-title {
    text-align: center;
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
    font-weight: 600;
    color: #000;
}

.team-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.team-member {
    padding: 1rem;
}

.team-member h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    transition: opacity 0.3s ease;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.team-member:hover h3 {
    opacity: 0.6;
}

/* Team Section Responsive */
@media (max-width: 768px) {
    .team {
        padding: 2.5rem 0;
    }

    .team-title {
        font-size: 1.5rem;
    }

    .team-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .team {
        padding: 2rem 0;
    }

    .team-title {
        font-size: 1.35rem;
    }

    .team-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-member h3 {
        font-size: 1.15rem;
    }

    .team-member p {
        font-size: 0.85rem;
    }
}

/* Contact Icons Styles */
.contact-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Service Cards Icons & Animations */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon svg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #333;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.service-card:hover .service-icon svg {
    color: #fff;
    transform: rotate(5deg) scale(1.1);
}

/* Service Card Entrance Animation */
.service-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-animate[data-delay="0"] {
    animation-delay: 0.1s;
}

.service-animate[data-delay="150"] {
    animation-delay: 0.25s;
}

.service-animate[data-delay="300"] {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Service Card Hover */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.service-card h3 {
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #000;
}

.service-card ul li {
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover ul li {
    transform: translateX(5px);
    color: #000;
}

/* Service Card Color Themes */

/* For Artists - White (default) */
.service-card-artists {
    background: #fff;
    color: #333;
}

.service-card-artists h3 {
    color: #000;
}

.service-card-artists ul li {
    color: #666;
}

.service-card-artists .service-icon {
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
}

.service-card-artists .service-icon svg {
    color: #333;
}

.service-card-artists:hover .service-icon {
    background: linear-gradient(135deg, #000 0%, #333 100%);
}

.service-card-artists:hover .service-icon svg {
    color: #fff;
}

/* For Producers - Grey */
.service-card-producers {
    background: #f5f5f5;
    color: #333;
}

.service-card-producers h3 {
    color: #000;
}

.service-card-producers ul li {
    color: #555;
}

.service-card-producers .service-icon {
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
}

.service-card-producers .service-icon svg {
    color: #333;
}

.service-card-producers:hover .service-icon {
    background: linear-gradient(135deg, #000 0%, #333 100%);
}

.service-card-producers:hover .service-icon svg {
    color: #fff;
}

.service-card-producers:hover ul li {
    color: #000;
}

/* For Labels - Black */
.service-card-labels {
    background: #000;
    color: #fff;
}

.service-card-labels h3 {
    color: #fff;
}

.service-card-labels ul li {
    color: #ccc;
}

.service-card-labels li:before {
    color: #fff !important;
}

.service-card-labels .service-icon {
    background: linear-gradient(135deg, #333 0%, #444 100%);
}

.service-card-labels .service-icon svg {
    color: #fff;
}

.service-card-labels:hover .service-icon {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
}

.service-card-labels:hover .service-icon svg {
    color: #000;
}

.service-card-labels:hover h3 {
    color: #fff;
}

.service-card-labels:hover ul li {
    color: #fff;
}

/* Production Services Color Themes */

/* Column 1 - White */
.column-white {
    background: #fff;
    color: #333;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.column-white h4 {
    color: #000;
}

.column-white p {
    color: #666;
}

.column-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Column 2 - Light Grey */
.column-light-grey {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.column-light-grey h4 {
    color: #000;
}

.column-light-grey p {
    color: #555;
}

.column-light-grey:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

/* Column 3 - Dark Grey */
.column-dark-grey {
    background: #666;
    color: #fff;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.column-dark-grey h4 {
    color: #fff;
}

.column-dark-grey p {
    color: #ddd;
}

.column-dark-grey:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    background: #777;
}

/* Column 4 - Black */
.column-black {
    background: #000;
    color: #fff;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.column-black h4 {
    color: #fff;
}

.column-black p {
    color: #ccc;
}

.column-black:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    background: #111;
}

/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid #000;
}

#cookie-consent-banner.show {
    bottom: 0;
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-content {
    flex: 1;
}

.cookie-consent-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #000;
}

.cookie-consent-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-content a {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-consent-content a:hover {
    text-decoration: none;
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

#accept-cookies {
    background: #000;
    color: #fff;
}

#accept-cookies:hover {
    background: #333;
}

#decline-cookies {
    background: transparent;
    color: #666;
    border: 1px solid #e5e5e5;
}

#decline-cookies:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Cookie Banner Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.25rem 15px;
    }

    .cookie-consent-content h3 {
        font-size: 1rem;
    }

    .cookie-consent-content p {
        font-size: 0.85rem;
    }

    .cookie-consent-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-consent-btn {
        width: 100%;
        text-align: center;
    }
}
