/* ===================================
   Free Game Productions - Luxury CSS
   Cinematic, Dark, Premium Studio Feel
   =================================== */

:root {
    /* Logo Palette Colors */
    --color-cyan: #00D4FF;
    --color-teal: #00FFB9;
    --color-green: #4CAF50;
    --color-blue: #4169E1;
    --color-magenta: #E91E63;
    --color-red: #FF5252;
    --color-orange: #FF9800;
    
    /* Base Colors */
    --color-black: #000000;
    --color-dark: #0A0A0A;
    --color-gray-dark: #1A1A1A;
    --color-gray: #333333;
    --color-gray-light: #666666;
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-headline: 'Bebas Neue', 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;
    
    /* Effects */
    --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.6);
    --glow-magenta: 0 0 20px rgba(233, 30, 99, 0.6);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-3d: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* ===================================
   Global Styles
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(233, 30, 99, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--color-gray-light);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: var(--glow-cyan), 0 4px 20px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-magenta), var(--color-red));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-secondary:hover {
    box-shadow: var(--glow-magenta), 0 4px 20px rgba(233, 30, 99, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-cyan);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--color-cyan);
    color: var(--color-black);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

/* ===================================
   Fancy Splash Intro
   =================================== */

.splash-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.splash-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(233, 30, 99, 0.15) 0%, transparent 50%);
    animation: bgPulse 4s ease-in-out infinite;
}

.splash-intro.active {
    opacity: 1;
    visibility: visible;
}

.splash-content {
    position: relative;
    text-align: center;
    z-index: 2;
    animation: contentFadeIn 1.2s ease-out;
}

.splash-logo-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.splash-logo {
    max-width: 450px;
    width: 70%;
    height: auto;
    animation: logoFloatCombined 5s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.6)) 
            drop-shadow(0 0 80px rgba(233, 30, 99, 0.4));
    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.splash-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle, 
        rgba(0, 212, 255, 0.3) 0%, 
        rgba(233, 30, 99, 0.2) 40%, 
        transparent 70%
    );
    animation: glowRotate 6s linear infinite;
    pointer-events: none;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.splash-text {
    margin-top: 30px;
    animation: textSlideUp 1s ease-out 0.3s both;
}

.splash-founder {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-white), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: textGlow 2s ease-in-out infinite;
}

.splash-tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
}

.splash-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-cyan);
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 25px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    background: rgba(0, 212, 255, 0.05);
    margin-top: 10px;
}

.splash-location i {
    color: var(--color-magenta);
    animation: locationPulse 2s ease-in-out infinite;
}

/* Splash Enter Button - Enhanced Premium Design */
.splash-enter-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    padding: 22px 60px;
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-blue) 50%, var(--color-magenta) 100%);
    background-size: 200% 200%;
    color: var(--color-white);
    font-weight: 800;
    font-size: 1.4rem;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 
        0 15px 50px rgba(0, 212, 255, 0.5),
        0 0 50px rgba(233, 30, 99, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: enterButtonPulse 3s ease-in-out infinite;
    overflow: hidden;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.splash-enter-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateZ(0);
    animation: shimmer 3s linear infinite;
    will-change: transform;
}

.splash-enter-btn::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.2) 0%, 
        rgba(65, 105, 225, 0.2) 50%, 
        rgba(233, 30, 99, 0.2) 100%);
    border-radius: 58px;
    z-index: -1;
}

.splash-enter-btn span {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.splash-enter-btn:hover {
    box-shadow: 
        0 20px 60px rgba(0, 212, 255, 0.7),
        0 0 80px rgba(233, 30, 99, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-6px) scale(1.05) translateZ(0);
    letter-spacing: 4px;
}

.splash-enter-btn:active {
    transform: translateY(-2px) scale(1.02) translateZ(0);
}

.splash-enter-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    will-change: transform;
}

.splash-enter-btn:hover i {
    transform: translateX(5px) scale(1.1) translateZ(0);
}

@keyframes enterButtonPulse {
    0%, 100% { 
        box-shadow: 
            0 15px 50px rgba(0, 212, 255, 0.5),
            0 0 50px rgba(233, 30, 99, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        box-shadow: 
            0 20px 60px rgba(0, 212, 255, 0.7),
            0 0 70px rgba(233, 30, 99, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg) translateZ(0); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg) translateZ(0); }
}

/* Splash Portfolio Link */
.splash-portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 14px 35px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    color: var(--color-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.splash-portfolio-link:hover {
    background: var(--color-cyan);
    color: var(--color-black);
    border-color: var(--color-cyan);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.6);
    transform: translateY(-3px);
    letter-spacing: 2px;
}

.splash-portfolio-link i {
    transition: transform 0.3s ease;
}

.splash-portfolio-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

.splash-loading {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-magenta));
    width: 0;
    animation: loadingProgress 1.5s ease-in-out forwards;
    box-shadow: 0 0 20px var(--color-cyan);
}

.skip-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: transparent;
    border: 2px solid var(--color-cyan);
    color: var(--color-cyan);
    padding: 14px 35px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    z-index: 3;
    animation: skipButtonPulse 2s ease-in-out infinite;
}

.skip-btn:hover {
    background: var(--color-cyan);
    color: var(--color-black);
    box-shadow: 0 0 30px var(--color-cyan);
    transform: translateY(-2px);
}

.skip-btn i {
    font-size: 0.9rem;
}

/* Splash Animations */
@keyframes bgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes contentFadeIn {
    from { 
        opacity: 0; 
        transform: scale(0.8); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

@keyframes logoFloatCombined {
    0% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% {
        transform: translateY(-20px) rotate(-2deg) scale(1.03);
    }
    50% { 
        transform: translateY(-25px) rotate(0deg) scale(1.05); 
    }
    75% {
        transform: translateY(-20px) rotate(2deg) scale(1.03);
    }
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
}

@keyframes glowRotate {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1); 
        opacity: 0.4;
    }
    50% { 
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1); 
        opacity: 0.6;
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg) scale(1); 
        opacity: 0.4;
    }
}

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

@keyframes textGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5)); 
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(233, 30, 99, 0.7)); 
    }
}

@keyframes locationPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1;
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.7;
    }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes skipButtonPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); 
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); 
    }
}

@keyframes splashPulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

/* ===================================
   Header
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
}

.nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-magenta));
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--color-cyan);
}

.nav a:hover::after {
    width: 100%;
}

.cta-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-cyan);
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section with 3D Portrait
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px) brightness(0.3);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-portrait-3d {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.hero-portrait {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-3d), 
                0 0 60px rgba(233, 30, 99, 0.4),
                0 0 100px rgba(0, 212, 255, 0.2);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(50px);
    border: 2px solid rgba(233, 30, 99, 0.3);
    will-change: transform;
    backface-visibility: hidden;
}

.hero-portrait:hover {
    transform: translateZ(50px) scale(1.02) rotateY(2deg) translateZ(0);
}

.hero-text {
    max-width: 650px;
}

.hero-bio {
    font-size: 1.1rem;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-founder-badge {
    margin-bottom: 30px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(233, 30, 99, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    display: inline-block;
}

.founder-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-cyan);
    font-weight: 600;
    margin-bottom: 8px;
}

.founder-name {
    font-family: var(--font-headline);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-white);
    margin: 0;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--color-white), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-white), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subhead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-gray-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===================================
   Services Section
   =================================== */

.services {
    padding: var(--section-padding);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, var(--color-gray-dark) 0%, var(--color-dark) 100%);
    padding: 50px 40px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-magenta));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card), 0 0 30px rgba(0, 212, 255, 0.2);
    border-color: var(--color-cyan);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.service-card p {
    color: var(--color-gray-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    color: var(--color-cyan);
    font-weight: 500;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-magenta);
}

/* ===================================
   Credits Section
   =================================== */

.credits {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.03) 50%, transparent 100%);
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.credit-chip {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 20px 25px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    color: var(--color-white);
    transition: all 0.3s ease;
    cursor: default;
}

.credit-chip:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: scale(1.05);
}

/* ===================================
   Portfolio Section
   =================================== */

.portfolio {
    padding: var(--section-padding);
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--color-gray);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    border-color: var(--color-cyan);
    box-shadow: var(--glow-cyan);
}

.tab-btn:hover:not(.active) {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.portfolio-content {
    text-align: center;
    padding: 40px 0;
}

.tab-description {
    color: var(--color-gray-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.embed-placeholder {
    background: var(--color-gray-dark);
    border: 2px dashed var(--color-gray);
    padding: 100px 40px;
    margin: 30px 0;
    border-radius: 8px;
}

.embed-placeholder i {
    font-size: 4rem;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.embed-placeholder p {
    color: var(--color-gray-light);
    font-size: 1.1rem;
}

.instagram-btn {
    margin-bottom: 30px;
}

/* Portfolio Slider */
.portfolio-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    border: none;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-info {
    text-align: center;
}

.slider-counter {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-cyan);
    font-family: var(--font-headline);
    letter-spacing: 1px;
}

.portfolio-slider {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
}

.slider-slide {
    min-width: 100%;
    opacity: 0;
    transform: scale(0.95) translateZ(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: opacity, transform;
}

.slider-slide.active {
    opacity: 1;
    transform: scale(1) translateZ(0);
}

.portfolio-frame {
    background: var(--color-gray-dark);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.frame-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(233, 30, 99, 0.1));
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.frame-header i {
    color: var(--color-cyan);
    font-size: 1.3rem;
}

.frame-header span {
    flex: 1;
    font-weight: 600;
    color: var(--color-white);
    font-size: 1.1rem;
}

.frame-link {
    color: var(--color-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border: 1px solid var(--color-cyan);
    border-radius: 20px;
}

.frame-link:hover {
    background: var(--color-cyan);
    color: var(--color-black);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.portfolio-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
    background: var(--color-black);
}

.portfolio-preview {
    padding: 80px 40px;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.portfolio-clickable {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-clickable:hover {
    background: rgba(0, 212, 255, 0.05);
}

.portfolio-clickable:hover .portfolio-cta-btn {
    background: var(--color-cyan);
    color: var(--color-black);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    transform: translateY(-3px);
}

.portfolio-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--color-cyan);
    color: var(--color-cyan);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-preview h3 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 20px;
    font-family: var(--font-headline);
}

.portfolio-preview p {
    font-size: 1.2rem;
    color: var(--color-gray-light);
    max-width: 600px;
    line-height: 1.8;
}

/* Splash Portfolio Button */
.splash-portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid var(--color-cyan);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: portfolioButtonFloat 3s ease-in-out infinite;
}

.splash-portfolio-btn:hover {
    background: transparent;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    transform: translateY(-3px);
}

@keyframes portfolioButtonFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===================================
   Booking Section
   =================================== */

.booking {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(233, 30, 99, 0.03) 50%, transparent 100%);
}

.booking-embed {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.booking-embed iframe {
    display: block;
    background: white;
}

/* Custom Acuity Scheduler Styling */
.booking-embed {
    position: relative;
}

.booking-embed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-magenta));
    z-index: 10;
}

/* Acuity custom colors via iframe CSS injection */
#acuity-frame {
    border-radius: 8px;
}

/* ===================================
   Submission Form
   =================================== */

.submission {
    padding: var(--section-padding);
}

.submission-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-gray-dark);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

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

.form-group label {
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    background: var(--color-dark);
    border: 1px solid var(--color-gray);
    color: var(--color-white);
    font-size: 1rem;
    font-family: var(--font-body);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

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

.btn-submit {
    width: 100%;
    margin-top: 20px;
    padding: 18px;
    font-size: 1.1rem;
}

.form-message {
    margin-top: 30px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid var(--color-green);
    color: var(--color-green);
}

.form-message.error {
    display: block;
    background: rgba(255, 82, 82, 0.2);
    border: 1px solid var(--color-red);
    color: var(--color-red);
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--color-dark);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--color-gray-light);
    font-size: 0.95rem;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-cyan);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-headline);
}

.footer-links a,
.footer-contact a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-cyan);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--color-gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--color-cyan);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--color-cyan);
    border-radius: 50%;
    color: var(--color-cyan);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-cyan);
    color: var(--color-black);
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray-light);
    font-size: 0.9rem;
}

/* ===================================
   Animations
   =================================== */

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

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 968px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
        text-align: center;
    }
    
    .nav.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .cta-btn {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-founder-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-portrait {
        max-width: 400px;
    }
    
    .hero-bio {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .credits-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .submission-form {
        padding: 30px 20px;
    }
    
    .splash-logo {
        max-width: 350px;
    }
    
    .splash-founder {
        font-size: 2rem;
    }
    
    .splash-loading {
        width: 250px;
    }
    
    .portfolio-iframe {
        height: 500px;
    }
    
    .portfolio-preview {
        padding: 60px 30px;
        min-height: 500px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .founder-name {
        font-size: 1.3rem;
    }
    
    .hero-founder-badge {
        padding: 15px 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .portfolio-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .splash-logo {
        max-width: 280px;
    }
    
    .splash-founder {
        font-size: 1.5rem;
    }
    
    .splash-tagline {
        font-size: 0.9rem;
    }
    
    .hero-portrait {
        max-width: 280px;
    }
    
    .hero-bio {
        font-size: 0.95rem;
    }
    
    .splash-enter-btn {
        padding: 18px 45px;
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .splash-portfolio-link {
        font-size: 0.9rem;
        padding: 12px 28px;
    }
    
    .splash-loading {
        width: 200px;
        bottom: 120px;
    }
    
    .skip-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .portfolio-iframe {
        height: 400px;
    }
    
    .portfolio-preview {
        padding: 40px 20px;
        min-height: 400px;
    }
    
    .portfolio-preview h3 {
        font-size: 1.8rem;
    }
    
    .portfolio-preview p {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .portfolio-slider-controls {
        gap: 15px;
    }
    
    .frame-header {
        flex-wrap: wrap;
        padding: 15px 20px;
        gap: 10px;
    }
    
    .frame-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .splash-portfolio-btn {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
}
