/* Blue Fox Studios Inspired Theme */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&family=Source+Sans+Pro:wght@300;400;600&display=swap');

:root {
    --bg-color: #0e1822;
    /* Deep dark blue/black */
    --text-color: #f0f4f8;
    --accent-color: #d62828;
    /* Keeping the red accent from previous theme/logo */
    --secondary-bg: #101c28;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Source Sans+Pro', sans-serif;
    --border-color: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    padding: 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    z-index: 101;
}

.logo img {
    height: 40px;
    /* mix-blend-mode removed to ensure visibility */
}

/* Hamburger Menu */
.menu-toggle {
    cursor: pointer;
    z-index: 101;
    width: 30px;
    height: 20px;
    position: relative;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.lang-switcher-btn {
    min-width: 42px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.lang-switcher-btn:hover {
    color: #fff;
    border-color: rgba(214, 40, 40, 0.55);
    background: rgba(214, 40, 40, 0.12);
}

.lang-switcher-btn.active {
    color: #fff;
    border-color: var(--accent-color);
    background: rgba(214, 40, 40, 0.22);
    box-shadow: 0 0 0 1px rgba(214, 40, 40, 0.18);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    transition: var(--transition);
}

.menu-toggle span:first-child {
    top: 0;
}

.menu-toggle span:last-child {
    bottom: 0;
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg);
    bottom: 9px;
}

/* Overlay Navigation */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.overlay-menu.active {
    opacity: 1;
    pointer-events: all;
}

.nav-links {
    text-align: center;
}

.nav-links li {
    margin: 20px 0;
    overflow: hidden;
}

.nav-links a {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    transform: translateY(100%);
    transition: transform 0.5s ease, color 0.3s ease;
}

.overlay-menu.active .nav-links a {
    transform: translateY(0);
}

.nav-links a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
    opacity: 0;
    animation: fadeInVideo 2s ease forwards;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 24, 34, 0.4);
    z-index: 1;
}

/* Animations */
@keyframes fadeInVideo {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    color: #e81639;
    -webkit-text-stroke: 0;
    position: relative;
    display: inline-block;
    animation: fadeIn 1.5s ease forwards;
}

.hero-title span {
    display: block;
    color: #fff;
    -webkit-text-stroke: 0;
}

.hero-subtitle {
    margin-top: 20px;
    font-size: 1.2rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0;
    animation: slideUp 1s ease 0.5s forwards;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: #fff;
}

/* Intro Section */
.intro {
    padding: 100px 0;
    text-align: center;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.intro-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Showcase / Video Grid */
.showcase {
    padding: 50px 0 100px;
}

.section-header {
    margin-bottom: 60px;
    padding-left: 5%;
}

.section-title {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    /* very subtle watermark style */
    position: absolute;
    transform: translateY(-50%);
    z-index: 0;
}

.section-subtitle {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    padding-left: 20px;
    border-left: 3px solid var(--accent-color);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    position: relative;
    group: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
}

.card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover .card-thumb img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
    margin-left: 4px;
}

.card:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.card-info {
    padding: 20px 0;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services */
.services-section {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-item {
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
}

.service-item:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-item p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.service-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background-color: var(--accent-color);
}

/* Footer */
footer {
    background-color: #050a0f;
    padding: 80px 0 40px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(10px);
    }

    60% {
        transform: translateX(-50%) translateY(5px);
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    position: relative;
}

.about-content {
    margin-top: 60px;
}

.about-hero-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.about-headline {
    font-size: 2.2rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    padding: 40px 35px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.4s ease;
}

.about-card:hover::before {
    height: 100%;
}

.about-card:hover {
    border-color: rgba(214, 40, 40, 0.3);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
}

.about-card-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.about-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 15px;
}

.about-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-closing {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

/* Artists Section - Redesigned */
.artists-section {
    padding: 120px 0;
    background-color: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.artists-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(214, 40, 40, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(214, 40, 40, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.artists-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.artist-showcase-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.artist-showcase-card:hover {
    transform: translateY(-12px);
    border-color: rgba(214, 40, 40, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(214, 40, 40, 0.08);
}

.artist-showcase-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.artist-showcase-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(14, 24, 34, 0.95) 0%, rgba(14, 24, 34, 0.4) 40%, transparent 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.artist-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
    filter: grayscale(20%) brightness(0.9);
}

.artist-showcase-card:hover .artist-showcase-img img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}

.artist-showcase-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.artist-showcase-card:hover .artist-showcase-info {
    transform: translateY(0);
}

.artist-showcase-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-color);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 20px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.artist-showcase-card:hover .artist-showcase-tag {
    opacity: 1;
    transform: translateY(0);
}

.artist-showcase-info h3 {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.artist-showcase-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin: 0;
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg) 50%, var(--bg-color) 100%);
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(214, 40, 40, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.demo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px;
    border: 1px solid rgba(214, 40, 40, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    position: relative;
}

.demo-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.demo-text h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--accent-color);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.4s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.demo-btn:hover {
    background: #b81e1e;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(214, 40, 40, 0.3);
}

.demo-btn svg {
    transition: transform 0.3s ease;
}

.demo-btn:hover svg {
    transform: translateX(4px);
}

/* Demo Modal */
.demo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.demo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.demo-modal {
    background: linear-gradient(145deg, #131f2e, #0e1822);
    border: 1px solid rgba(214, 40, 40, 0.2);
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(214, 40, 40, 0.08);
}

.demo-modal-overlay.active .demo-modal {
    transform: translateY(0) scale(1);
}

.demo-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 20px 20px 0 0;
}

.demo-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 8px;
}

.demo-modal-close:hover {
    color: var(--accent-color);
    background: rgba(214, 40, 40, 0.1);
}

.demo-modal-header {
    margin-bottom: 30px;
}

.demo-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-modal-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin: 0;
}

.demo-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.demo-form-group {
    margin-bottom: 16px;
}

.demo-form-grid .demo-form-group {
    margin-bottom: 0;
}

.demo-form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.demo-form-group input,
.demo-form-group select,
.demo-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.demo-form-group input::placeholder,
.demo-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.demo-form-group input:focus,
.demo-form-group select:focus,
.demo-form-group textarea:focus {
    border-color: rgba(214, 40, 40, 0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.1);
}

.demo-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.demo-form-group select option {
    background: #1a2a3a;
    color: var(--text-color);
}

.demo-form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.demo-file-upload {
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.demo-file-upload:hover {
    border-color: rgba(214, 40, 40, 0.4);
    background: rgba(214, 40, 40, 0.03);
}

.demo-file-upload.has-file {
    border-color: rgba(214, 40, 40, 0.4);
    border-style: solid;
    background: rgba(214, 40, 40, 0.05);
}

.demo-file-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.demo-file-label:hover {
    color: rgba(255, 255, 255, 0.6);
}

.demo-file-upload.has-file .demo-file-label {
    color: var(--accent-color);
}

.demo-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: var(--accent-color);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 8px;
}

.demo-submit-btn:hover {
    background: #b81e1e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.35);
}

.demo-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.demo-modal-status {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
}

.demo-modal-status.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.demo-modal-status.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Demo Modal scrollbar */
.demo-modal::-webkit-scrollbar {
    width: 4px;
}

.demo-modal::-webkit-scrollbar-track {
    background: transparent;
}

.demo-modal::-webkit-scrollbar-thumb {
    background: rgba(214, 40, 40, 0.3);
    border-radius: 4px;
}

/* Demo Modal Responsive */
@media (max-width: 600px) {
    .demo-modal {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .demo-form-grid {
        grid-template-columns: 1fr;
    }

    .demo-modal-header h2 {
        font-size: 1.4rem;
    }
}

/* Footer Redesigned */
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    height: 35px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 60px;
}

/* Team Page Styles */
.team-section {
    padding: 140px 0 100px;
    min-height: 100vh;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 40, 40, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-card-img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2a3a 0%, #0e1822 100%);
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: grayscale(20%);
}

.team-card:hover .team-card-img img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.team-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #1a2a3a 0%, #0e1822 100%);
    position: relative;
}

.team-card-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(214, 40, 40, 0.08) 0%, transparent 60%);
}

.team-card-body {
    padding: 24px;
}

.team-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.team-card-body span {
    font-size: 0.78rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Back to Home Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent-color);
}

/* ========== SERVICE DETAIL PAGES ========== */

/* Service Hero */
.service-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(214, 40, 40, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb .sep {
    color: rgba(255, 255, 255, 0.2);
}

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    line-height: 1.8;
    margin: 0;
}

.service-hero-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: var(--accent-color);
}

/* Service Overview */
.service-overview {
    padding: 100px 0;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-overview-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-overview-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Sub-services Cards */
.sub-services {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.sub-service-card {
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s ease;
    display: block;
    position: relative;
    overflow: hidden;
}

.sub-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.4s ease;
}

.sub-service-card:hover::before {
    height: 100%;
}

.sub-service-card:hover {
    border-color: rgba(214, 40, 40, 0.3);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.sub-service-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

.sub-service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.sub-service-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    transition: gap 0.3s ease;
}

.sub-service-card:hover .card-arrow {
    gap: 14px;
}

/* Service Detail Content */
.service-detail {
    padding: 100px 0;
}

.service-detail-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.service-detail-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-detail-intro p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Features Grid */
.features-section {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    padding: 35px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(214, 40, 40, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(214, 40, 40, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Process Steps */
.process-section {
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    counter-reset: step;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 55px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--border-color);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* Service CTA */
.service-cta {
    padding: 100px 0;
    text-align: center;
}

.service-cta.alt-bg {
    background: var(--secondary-bg);
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent-color);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.cta-btn:hover {
    background: #b81e1e;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(214, 40, 40, 0.3);
}

/* Related Services */
.related-services {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.related-card {
    display: block;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.related-card:hover {
    border-color: rgba(214, 40, 40, 0.3);
    transform: translateY(-4px);
}

.related-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.related-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Detail content blocks */
.detail-block {
    margin-bottom: 60px;
}

.detail-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.detail-block p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 800px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.detail-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 1024px) {
    .sub-services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-overview-grid {
        grid-template-columns: 1fr;
    }
    .artists-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-content {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .lang-switcher {
        gap: 6px;
    }

    .lang-switcher-btn {
        min-width: 38px;
        padding: 7px 9px;
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-subtitle {
        font-size: 2rem;
    }

    .nav-links a {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-headline {
        font-size: 1.6rem;
    }

    .artists-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .artist-showcase-info h3 {
        font-size: 1rem;
    }

    .demo-text h2 {
        font-size: 1.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .service-overview-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .artists-showcase {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}
