/* ==================== */
/* RESET & BASE STYLES */
/* ==================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0e1a;
    --secondary-color: #f5f5f5;
    --accent-color: #00a8ff;
    --accent-dark: #0066cc;
    --text-primary: #ffffff;
    --text-secondary: #b0c4de;
    --text-dark: #0a0e1a;
    --border-color: #1e3a5f;
    --card-bg: #0f1827;
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    --gradient-secondary: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    --program-red: #ff3333;
    --preview-green: #00ff66;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-color);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* ==================== */
/* VISION MIXER LOADER */
/* ==================== */

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

.vision-mixer {
    position: relative;
    width: 600px;
    max-width: 90%;
}

.loader-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 3rem;
    color: var(--text-primary);
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.loader-title.fade-in {
    opacity: 1;
}

.mixer-panel {
    background: linear-gradient(145deg, #1a1f2e, #0f1420);
    border: 2px solid #2a3f5f;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.9),
        inset 0 2px 4px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

/* Button Banks Container */
.mixer-buttons-container {
    flex: 1;
}

.button-bank {
    margin-bottom: 2rem;
}

.button-bank:last-of-type {
    margin-bottom: 0;
}

.bank-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    color: #6a7a8f;
    text-transform: uppercase;
    text-align: left;
    padding-left: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.program-bank,
.preview-bank {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
}

/* Vision Mixer Buttons - Enhanced Glow Style */
.mixer-button {
    width: 58px;
    height: 42px;
    border-radius: 6px;
    background: #1e2332;
    border: 2px solid #2a3244;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.7),
        inset 0 1px 1px rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.mixer-button::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 4px;
    background: linear-gradient(180deg, #252a3a 0%, #1a1f2e 100%);
    transition: all 0.3s ease;
}

/* Program Button Active (Red) - Strong Glow */
.mixer-button.active-program {
    border-color: #ff4444;
    box-shadow: 
        0 0 20px rgba(255, 51, 51, 0.8),
        0 0 40px rgba(255, 51, 51, 0.5),
        0 0 60px rgba(255, 51, 51, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.mixer-button.active-program::after {
    background: linear-gradient(180deg, #ff5555 0%, #ee3333 100%);
    box-shadow: 
        0 0 25px rgba(255, 51, 51, 0.9),
        inset 0 2px 4px rgba(255, 255, 255, 0.25),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

/* Preview Button Active (Green) - Strong Glow */
.mixer-button.active-preview {
    border-color: #44ff66;
    box-shadow: 
        0 0 20px rgba(0, 255, 102, 0.8),
        0 0 40px rgba(0, 255, 102, 0.5),
        0 0 60px rgba(0, 255, 102, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.mixer-button.active-preview::after {
    background: linear-gradient(180deg, #55ff77 0%, #33ee55 100%);
    box-shadow: 
        0 0 25px rgba(0, 255, 102, 0.9),
        inset 0 2px 4px rgba(255, 255, 255, 0.25),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

/* Button Numbers */
.mixer-button span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
    font-weight: 700;
    color: #4a5a6f;
    z-index: 3;
    transition: all 0.3s ease;
}

.mixer-button.active-program span,
.mixer-button.active-preview span {
    color: #ffffff;
    text-shadow: 
        0 0 8px rgba(0, 0, 0, 0.9),
        0 1px 2px rgba(0, 0, 0, 0.8);
}

/* T-Bar Section - Vertical Slider Style */
.tbar-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.tbar-track {
    position: relative;
    width: 55px;
    height: 170px;
    background: linear-gradient(180deg, #0d1118 0%, #1a1f2e 50%, #0d1118 100%);
    border: 2px solid #1a1f2e;
    border-radius: 28px;
    box-shadow: 
        inset 0 4px 12px rgba(0, 0, 0, 0.9),
        inset 0 -4px 12px rgba(0, 0, 0, 0.7),
        0 2px 6px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.tbar-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 85%;
    background: linear-gradient(180deg, #2a2f3e 0%, #1a1f2e 50%, #2a2f3e 100%);
    border-radius: 1px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}

.tbar-handle {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 55px;
    background: linear-gradient(180deg, #3a4254 0%, #2a3244 100%);
    border: 2px solid #4a5a6f;
    border-radius: 10px;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(74, 90, 111, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.5);
    transition: bottom 2s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 2;
}

/* Slider grip detail */
.tbar-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #6a7a8f 50%, transparent 100%);
    border-radius: 2px;
}

.tbar-handle.animate {
    bottom: calc(100% - 65px);
    border-color: var(--accent-color);
    box-shadow: 
        0 6px 12px rgba(0, 168, 255, 0.6),
        0 0 20px rgba(0, 168, 255, 0.5),
        0 0 35px rgba(0, 168, 255, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.5);
}

.tbar-labels {
    display: none;
}

/* Animations */
@keyframes buttonActivate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ==================== */
/* NAVIGATION */
/* ==================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.98);
    box-shadow: 0 2px 20px rgba(0, 102, 204, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.nav-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

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

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ==================== */
/* HERO SECTION */
/* ==================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(26, 35, 50, 0.88) 100%),
        url('images/21 October 2023/BBL - Surrey Scorchers v Manchester Giants - 21st October 2023 30.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(0, 168, 255, 0.08) 0%, transparent 50%);
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(26, 26, 26, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-social {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-social a {
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    border: 2px solid rgba(0, 168, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 168, 255, 0.05);
}

.hero-social a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: rgba(0, 168, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.3);
}

.hero-social svg {
    width: 28px;
    height: 28px;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { opacity: 0; top: 5px; }
    50% { opacity: 1; top: 15px; }
}

/* ==================== */
/* BUTTONS */
/* ==================== */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 168, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ==================== */
/* SECTIONS */
/* ==================== */

section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== */
/* ABOUT SECTION */
/* ==================== */

.about {
    background: linear-gradient(180deg, #0a0e1a 0%, #0f1827 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.3);
    transform: translateY(-5px);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.stat-card {
    background: var(--card-bg);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    padding: 1rem;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin: 0;
}

/* ==================== */
/* SERVICES SECTION */
/* ==================== */

.services {
    background: #0a0e1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 168, 255, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-details {
    list-style: none;
    margin-top: 1.5rem;
}

.service-details li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-details li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ==================== */
/* CREDITS SECTION */
/* ==================== */

.credits {
    background: linear-gradient(180deg, #0f1827 0%, #0a0e1a 100%);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-color: transparent;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.show-more-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-show-more {
    padding: 1rem 2.5rem;
    background: var(--card-bg);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-show-more:hover {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 168, 255, 0.4);
}

.credit-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

.credit-card.hidden {
    display: none;
}

.credit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.credit-header {
    margin-bottom: 1.5rem;
}

.credit-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.credit-role {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.credit-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.credit-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.credit-meta-item span:first-child {
    opacity: 0.7;
}

.credit-notes {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.credit-time {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 168, 255, 0.15);
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

/* ==================== */
/* CLIENTS SECTION */
/* ==================== */

.clients {
    background: #0a0e1a;
    padding: 4rem 2rem;
}

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

.client-card {
    background: var(--card-bg);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.client-card:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.3);
}

/* ==================== */
/* CONTACT SECTION */
/* ==================== */

.contact {
    background: linear-gradient(180deg, #0a0e1a 0%, #0f1827 100%);
}

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

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-dark);
}

.contact-form-container {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.1);
}

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

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

/* ==================== */
/* FOOTER */
/* ==================== */

.footer {
    background: #0d0d0d;
    padding: 3rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==================== */
/* RESPONSIVE DESIGN */
/* ==================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-bottom: 1px solid var(--border-color);
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    /* Vision Mixer Mobile Layout */
    .loader-title {
        font-size: 2rem;
        letter-spacing: 6px;
        margin-bottom: 2.5rem;
    }

    .mixer-panel {
        flex-direction: row;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }

    .mixer-buttons-container {
        flex: 1;
        min-width: 0;
    }

    .mixer-button {
        width: 52px;
        height: 38px;
    }

    .program-bank,
    .preview-bank {
        gap: 0.45rem;
    }

    .tbar-track {
        width: 50px;
        height: 140px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        gap: 1rem;
        justify-content: center;
    }

    .stat-card {
        width: 120px;
        height: 120px;
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }

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

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

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

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .client-card {
        font-size: 0.9rem;
        padding: 1.5rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    /* Loading Screen Mobile Optimizations */
    .vision-mixer {
        max-width: 95%;
    }

    .loader-title {
        font-size: 1.8rem;
        letter-spacing: 4px;
        margin-bottom: 2rem;
    }

    .mixer-panel {
        flex-direction: row;
        padding: 1.5rem 1rem;
        gap: 0.75rem;
    }

    .mixer-buttons-container {
        flex: 1;
        min-width: 0;
    }

    .bank-label {
        font-size: 0.55rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .mixer-button {
        width: 42px;
        height: 32px;
    }

    .mixer-button span {
        font-size: 0.75rem;
    }

    .program-bank,
    .preview-bank {
        gap: 0.35rem;
    }

    .button-bank {
        margin-bottom: 1.5rem;
    }

    .button-bank:last-of-type {
        margin-bottom: 0;
    }

    .tbar-track {
        width: 40px;
        height: 110px;
    }

    .tbar-handle {
        width: 36px;
        height: 42px;
    }

    section {
        padding: 4rem 1rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-card {
        font-size: 0.85rem;
    }
}

