/* ==========================================================================
   SG CREATIVE SOLUTIONS | ULTRA-PREMIUM STYLES (v2)
   ========================================================================== */

/* --- CSS Variables (Gold/Silver Theme) --- */
:root {
    --matte-black: #0B0B0B;
    --deep-charcoal: #121212;
    --metallic-gold: #D4AF37;
    --gold-light: #F3E5AB;
    --metallic-silver: #C0C0C0;
    --soft-gray: #A0A0A0;
    --white: #FFFFFF;
    
    --glass-bg: rgba(25, 25, 25, 0.6);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-border-hover: rgba(212, 175, 55, 0.5);
    
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

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

body.loading {
    overflow: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--matte-black); }
::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--metallic-gold); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-main); font-weight: 700; line-height: 1.2; }
.gold-gradient {
    background: linear-gradient(135deg, var(--metallic-gold), var(--gold-light), var(--metallic-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.silver-text { color: var(--metallic-silver); }
.gold-text { color: var(--metallic-gold); }

/* --- Utility Classes --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}
.section-padding { padding: 120px 0; position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; margin-bottom: 15px; font-weight: 600; letter-spacing: -1px; }
.section-header p { color: var(--soft-gray); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }
.gold-line {
    width: 60px; height: 3px; background: var(--metallic-gold);
    margin: 0 auto 20px; border-radius: 2px;
}
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
}

/* --- Loader --- */
/* --- Cinematic Intro Preloader --- */
#intro-preloader { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 9999; display: flex; justify-content: center; align-items: center; background: #000; overflow: hidden; perspective: 1000px; }
.intro-bg { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(30,30,30,1) 0%, #000 100%); opacity: 0; }
.intro-particles { position: absolute; inset: 0; z-index: 1; }
.intro-geometric-lines { position: absolute; inset: 0; z-index: 2; opacity: 0; }
.intro-line { position: absolute; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.8), transparent); height: 1px; width: 100%; opacity: 0; }
.intro-line.line-1 { top: 30%; transform: rotate(15deg) scaleX(0); }
.intro-line.line-2 { bottom: 30%; transform: rotate(-15deg) scaleX(0); }
.intro-content { position: relative; z-index: 3; text-align: center; display: flex; flex-direction: column; align-items: center; }
.intro-logo-wrapper { position: relative; width: 280px; height: 280px; display: flex; justify-content: center; align-items: center; opacity: 0; transform: scale(1.2) translateZ(50px); filter: drop-shadow(0 0 30px rgba(212,175,55,0.5)); }
.intro-gold-ring { position: absolute; inset: -20px; border: 1px solid rgba(212,175,55,0.3); border-radius: 50%; opacity: 0; transform: scale(0.8); }
.intro-logo { width: 220px; aspect-ratio: 1/1; object-fit: cover; border-radius: 50%; }
.intro-tagline { margin-top: 30px; font-size: 1.5rem; color: var(--metallic-silver); font-weight: 300; letter-spacing: 2px; opacity: 0; transform: translateY(20px); text-shadow: 0 0 10px rgba(255,255,255,0.1); }
.intro-light-sweep { position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent); transform: skewX(-20deg); z-index: 4; }

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

/* --- Background Elements --- */
/* --- Background Elements --- */
.bg-elements { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 0; overflow: hidden; background: var(--matte-black); pointer-events: none; perspective: 1000px; }
.animated-grid { position: absolute; width: 200%; height: 200%; top: -50%; left: -50%; background-image: linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px); background-size: 50px 50px; transform: rotateX(60deg) translateY(0); animation: gridMove 20s linear infinite; z-index: 0; }
@keyframes gridMove { 0% { transform: rotateX(60deg) translateY(0); } 100% { transform: rotateX(60deg) translateY(50px); } }
.lens-flare { position: absolute; width: 20vw; height: 20vw; background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 60%); top: 10%; right: 15%; filter: blur(40px); z-index: 2; animation: flarePulse 8s infinite alternate; }
@keyframes flarePulse { 0% { opacity: 0.5; transform: scale(1); } 100% { opacity: 1; transform: scale(1.5); } }
.abstract-ring { position: absolute; border: 1px solid rgba(192,192,192,0.1); border-radius: 50%; z-index: 1; }
.ring-1 { width: 60vw; height: 60vw; top: 50%; left: 50%; transform: translate(-50%, -50%) rotateX(70deg); animation: ringRotate 40s linear infinite; }
.ring-2 { width: 80vw; height: 80vw; top: 50%; left: 50%; transform: translate(-50%, -50%) rotateX(60deg) rotateY(20deg); animation: ringRotate 60s linear infinite reverse; }
@keyframes ringRotate { 0% { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg); } 100% { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg); } }
#particles-js { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.bg-shape { position: absolute; border-radius: 50%; filter: blur(150px); opacity: 0.2; z-index: 0; }
.shape-1 { width: 80vw; height: 80vh; background: radial-gradient(circle, var(--metallic-gold) 0%, transparent 60%); top: -20%; left: -10%; animation: floatLight 25s infinite alternate ease-in-out; }
.shape-2 { width: 70vw; height: 70vh; background: radial-gradient(circle, var(--metallic-silver) 0%, transparent 60%); bottom: -20%; right: -10%; animation: floatLight 30s infinite alternate-reverse ease-in-out; }
.shape-3 { width: 60vw; height: 60vh; background: radial-gradient(circle, var(--gold-light) 0%, transparent 60%); top: 30%; left: 30%; animation: floatLight 35s infinite alternate ease-in-out; opacity: 0.1; }
@keyframes floatLight { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(3vw, 5vh) scale(1.1); } 100% { transform: translate(-2vw, -3vh) scale(0.95); } }

/* --- Navigation Bar --- */
nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    padding: 25px 0; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, background 0.4s ease;
    background: transparent;
}
nav.scrolled {
    padding: 15px 0;
    background: rgba(11, 11, 11, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 2; }

/* Logo */
.logo { display: flex; align-items: center; cursor: pointer; perspective: 500px; }
.nav-logo-img { 
    width: 50px; border-radius: 50%; margin-right: 15px; 
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    animation: slowRotateLogo 10s linear infinite;
}
@keyframes slowRotateLogo { 0% { transform: rotateY(0deg); } 50% { transform: rotateY(15deg); } 100% { transform: rotateY(0deg); } }

.brand-title { font-size: 1.5rem; font-weight: 800; }
.silver-text { color: var(--metallic-silver); }
.gold-text { color: var(--metallic-gold); }

/* Nav Links */
.nav-links { display: flex; gap: 40px; }
.nav-links li { opacity: 0; transform: translateY(-10px); } /* Initial state for GSAP */
.nav-links a { 
    color: var(--metallic-silver); font-weight: 500; font-size: 0.95rem; 
    position: relative; overflow: hidden; display: inline-block; padding: 5px 0;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: 0; left: 0; background: var(--metallic-gold); 
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
.nav-links a:hover::after { width: 100%; }

/* Buttons */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 30px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition); text-align: center;
}
.btn-gold {
    background: linear-gradient(45deg, var(--metallic-gold), #e8c96b); color: #000; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); border: 1px solid transparent;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5); }
.btn-outline {
    background: transparent; border: 1px solid var(--metallic-silver); color: var(--white);
}

/* Quote Button Effects */
.btn-quote {
    position: relative; overflow: hidden;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2)); 
    color: var(--metallic-gold); 
    border: 1px solid var(--metallic-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    animation: breatheGlow 4s infinite alternate;
}
.btn-quote:hover {
    background: linear-gradient(45deg, var(--metallic-gold), #e8c96b); 
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}
@keyframes breatheGlow { 0% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); } 100% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.4); } }
.shine-sweep::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg); transition: 0.5s;
}
.shine-sweep:hover::before { left: 150%; transition: left 0.7s ease; }
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-3px); }

.hamburger { display: none; cursor: pointer; z-index: 101; }
.hamburger .bar { width: 25px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--matte-black); z-index: 99;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.active { right: 0; }
.mobile-links { text-align: center; }
.mobile-links li { margin: 20px 0; }
.mobile-links a { font-size: 2rem; font-weight: 700; color: var(--white); }
.mobile-menu-close { position: absolute; top: 30px; right: 30px; font-size: 2rem; cursor: pointer; }

/* --- Hero Section --- */
/* --- Hero Section --- */
.hero-section {
    height: 100vh; display: flex; align-items: center; position: relative; z-index: 2; padding-top: 80px;
}
.hero-container {
    max-width: 1400px; margin: 0 auto; padding: 0 5%; width: 100%;
    display: flex; align-items: center; justify-content: space-between;
}
.hero-content { flex: 1; max-width: 700px; }
.hero-headline { margin-bottom: 20px; }
.hero-title { font-size: 4.5rem; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
.word-mask { display: inline-block; overflow: hidden; vertical-align: top; }
.word { display: inline-block; transform: translateY(100%); opacity: 0; }
.gold-glow { color: var(--metallic-gold); text-shadow: 0 0 20px rgba(212,175,55,0.4); }
.hero-subtitle-wrap { overflow: hidden; margin-bottom: 40px; }
.hero-subtitle { font-size: 1.25rem; color: var(--soft-gray); font-weight: 300; letter-spacing: 1px; }
.hero-actions { display: flex; gap: 20px; position: relative; }
.ripple-btn { position: relative; overflow: hidden; }
.shine-sweep::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg); animation: buttonShine 4s infinite; z-index: 1;
}
@keyframes buttonShine { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }

.hero-creative-cluster {
    flex: 1; display: flex; justify-content: center; align-items: center; position: relative; perspective: 1200px;
    height: 100%; min-height: 400px;
}

.cluster-glow { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; }
.glow-1 { width: 300px; height: 300px; background: rgba(212,175,55,0.15); top: 10%; right: 10%; animation: floatGlow 10s infinite alternate; }
.glow-2 { width: 250px; height: 250px; background: rgba(255,255,255,0.05); bottom: 10%; left: 10%; animation: floatGlow 8s infinite alternate-reverse; }
@keyframes floatGlow { 0% { transform: translate(0, 0); } 100% { transform: translate(-30px, 30px); } }

.center-logo-container { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }
.cluster-center-logo {
    width: 280px; height: 280px; object-fit: cover; border-radius: 50%;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8)) drop-shadow(0 0 25px rgba(212,175,55,0.3));
    animation: floatMockup 6s infinite cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212,175,55,0.2);
}
@keyframes floatMockup { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.rotating-ring {
    position: absolute; width: 340px; height: 340px; border-radius: 50%;
    border: 1px dashed rgba(212,175,55,0.3); border-left: 1px solid var(--metallic-gold);
    animation: rotateRing 20s linear infinite; z-index: -1;
}
@keyframes rotateRing { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.floating-badge {
    position: absolute; z-index: 3; padding: 12px 20px; border-radius: 50px;
    display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9rem;
    color: var(--white); white-space: nowrap; box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1); background: rgba(20,20,20,0.6); backdrop-filter: blur(10px);
}
.floating-badge i { color: var(--metallic-gold); font-size: 1.2rem; }
.badge-top-left { top: 10%; left: -5%; animation: floatBadge 5s infinite ease-in-out; }
.badge-top-right { top: 10%; right: -5%; animation: floatBadge 7s infinite ease-in-out 1s; }
.badge-bottom-left { bottom: 15%; left: 0%; animation: floatBadge 6s infinite ease-in-out 2s; }
.badge-bottom-right { bottom: 15%; right: 0%; animation: floatBadge 5s infinite ease-in-out 3s; }
.badge-middle-left { top: 50%; left: -15%; transform: translateY(-50%); animation: floatBadgeMiddle 6.5s infinite ease-in-out; }
.badge-middle-right { top: 50%; right: -15%; transform: translateY(-50%); animation: floatBadgeMiddle 5.5s infinite ease-in-out 1.5s; }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatBadgeMiddle { 0%, 100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 10px)); } }


/* Scroll Indicator */
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; opacity: 0; animation: fadeIn 2s forwards 2s; z-index: 10; }
.mouse { width: 26px; height: 40px; border: 2px solid var(--metallic-silver); border-radius: 15px; position: relative; margin-bottom: 10px; box-shadow: 0 0 15px rgba(192,192,192,0.2); }
.wheel { width: 4px; height: 8px; background: var(--metallic-gold); border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollWheel 2s infinite ease-in-out; box-shadow: 0 0 10px var(--metallic-gold); }
.scroll-text { font-size: 0.75rem; color: var(--soft-gray); text-transform: uppercase; letter-spacing: 2px; }
@keyframes scrollWheel { 0% { top: 6px; opacity: 1; } 100% { top: 20px; opacity: 0; } }

/* --- Services Grid --- */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px;
}
.service-card {
    padding: 50px 40px; position: relative; overflow: hidden; cursor: pointer; text-align: center;
}
/* --- Cinematic 3D Icons --- */
.cinematic-icon-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 30px;
    perspective: 1000px;
    transform-style: preserve-3d;
    border-radius: 20px;
    overflow: hidden;
}
.cinematic-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.6)) drop-shadow(0 0 20px rgba(212,175,55,0.1));
    animation: float3D 6s infinite cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
/* Golden light sweep effect */
.cinematic-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    transform: skewX(-25deg);
    animation: goldSweep 5s infinite;
    z-index: 2;
    pointer-events: none;
}
@keyframes float3D {
    0% { transform: translateY(0) rotateX(0deg) rotateY(-5deg) scale(1); filter: drop-shadow(0 15px 15px rgba(0,0,0,0.6)) drop-shadow(0 0 10px rgba(212,175,55,0.1)); }
    50% { transform: translateY(-12px) rotateX(5deg) rotateY(5deg) scale(1.05); filter: drop-shadow(0 25px 20px rgba(0,0,0,0.4)) drop-shadow(0 0 25px rgba(212,175,55,0.4)); }
    100% { transform: translateY(0) rotateX(0deg) rotateY(-5deg) scale(1); filter: drop-shadow(0 15px 15px rgba(0,0,0,0.6)) drop-shadow(0 0 10px rgba(212,175,55,0.1)); }
}
@keyframes goldSweep {
    0% { left: -100%; opacity: 0; }
    20% { opacity: 1; }
    40% { left: 200%; opacity: 0; }
    100% { left: 200%; opacity: 0; }
}
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.service-card p { color: var(--soft-gray); font-size: 1rem; }
.card-glow {
    position: absolute; width: 150px; height: 150px; background: var(--metallic-gold);
    border-radius: 50%; filter: blur(80px); opacity: 0; top: 50%; left: 50%;
    transform: translate(-50%, -50%); transition: var(--transition); pointer-events: none;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--glass-border-hover); }
.service-card:hover .card-glow { opacity: 0.15; }
.service-card:hover .cinematic-icon { animation-duration: 3s; filter: drop-shadow(0 20px 20px rgba(212,175,55,0.4)); }



/* --- Process Timeline --- */
.timeline-container { position: relative; max-width: 800px; margin: 0 auto; }
.timeline-line {
    position: absolute; left: 30px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.1);
}
.timeline-progress {
    position: absolute; left: 0; top: 0; width: 100%; height: 0; background: var(--metallic-gold);
    box-shadow: 0 0 15px var(--metallic-gold);
}
.timeline-step { display: flex; align-items: flex-start; margin-bottom: 50px; position: relative; }
.timeline-step:last-child { margin-bottom: 0; }
.step-dot {
    width: 20px; height: 20px; border-radius: 50%; background: var(--matte-black); border: 2px solid var(--metallic-silver);
    margin-left: 21px; margin-right: 40px; margin-top: 25px; z-index: 2; transition: var(--transition);
}
.timeline-step.active .step-dot { background: var(--metallic-gold); border-color: var(--metallic-gold); box-shadow: 0 0 15px var(--metallic-gold); }
.step-content { flex: 1; padding: 30px; }
.step-content h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--metallic-gold); }
.step-content p { color: var(--soft-gray); }

/* --- Featured Work Section --- */
.featured-work-section {
    position: relative; overflow: hidden; z-index: 2;
}
.fw-bg-elements { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.fw-particles { position: absolute; inset: 0; }
.fw-light-streak { position: absolute; width: 2px; height: 100%; background: linear-gradient(to bottom, transparent, var(--metallic-silver), transparent); left: 15%; top: -100%; opacity: 0.3; animation: streakFall 8s infinite; }
@keyframes streakFall { 0% { top: -100%; opacity: 0; } 50% { opacity: 0.5; } 100% { top: 150%; opacity: 0; } }
.fw-gradient-blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.15; }
.fw-gradient-blob.blob-1 { width: 50vw; height: 50vw; background: var(--metallic-gold); top: -20%; right: -10%; animation: floatLight 20s infinite alternate; }
.fw-gradient-blob.blob-2 { width: 40vw; height: 40vw; background: var(--metallic-silver); bottom: -10%; left: -10%; animation: floatLight 25s infinite alternate-reverse; }

.fw-container { position: relative; z-index: 1; }
.fw-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 10px; background: linear-gradient(90deg, #fff, var(--metallic-gold)); -webkit-background-clip: text; color: transparent; animation: textShine 4s linear infinite; }
.fw-subtitle { font-size: 1.2rem; color: var(--soft-gray); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 40px; }

/* Filter Buttons */
.portfolio-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 50px; }
.filter-btn { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); color: var(--soft-gray); padding: 10px 25px; border-radius: 30px; font-size: 0.9rem; cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; backdrop-filter: blur(10px); }
.filter-btn::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--metallic-gold); transition: 0.3s; }
.filter-btn:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.filter-btn.active { color: var(--metallic-gold); border-color: rgba(212,175,55,0.3); box-shadow: 0 0 15px rgba(212,175,55,0.15); }
.filter-btn.active::after { width: 50%; }

/* Masonry Grid */
.portfolio-masonry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 50px; }
.portfolio-card { border-radius: 20px; overflow: hidden; cursor: pointer; perspective: 1000px; transform-style: preserve-3d; opacity: 1; }
.portfolio-card.hidden { display: none; }
.card-inner { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease; border: 1px solid rgba(255,255,255,0.05); }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.card-glass-reflection { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%); opacity: 0; transition: 0.5s; z-index: 1; pointer-events: none; }
.card-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%); z-index: 2; transform: translateY(20px); opacity: 0; transition: all 0.4s ease; }
.card-title { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.card-category { font-size: 0.9rem; color: var(--metallic-gold); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

/* Hover Effects */
.portfolio-card:hover .card-inner { transform: translateZ(30px) translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(212,175,55,0.2); border-color: rgba(212,175,55,0.3); }
.portfolio-card:hover .card-img { transform: scale(1.1); filter: brightness(0.8); }
.portfolio-card:hover .card-glass-reflection { opacity: 1; transform: translateX(100%); transition: 1s ease; }
.portfolio-card:hover .card-content { transform: translateY(0); opacity: 1; }

/* CTA Button */
.fw-cta-wrap { margin-top: 20px; }
.fw-cta { padding: 16px 40px; font-size: 1.1rem; }

/* Fullscreen Cinematic Modal */
.project-modal { position: fixed; inset: 0; z-index: 1000; display: flex; justify-content: center; align-items: center; pointer-events: none; opacity: 0; transition: opacity 0.5s ease; }
.project-modal.active { pointer-events: all; opacity: 1; }
.modal-bg-blur { position: absolute; inset: 0; background: rgba(10,10,10,0.8); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); z-index: 0; }
.modal-close { position: absolute; top: 40px; right: 40px; font-size: 2rem; color: var(--white); background: transparent; border: none; cursor: pointer; z-index: 3; transition: 0.3s; text-shadow: 0 0 10px rgba(212,175,55,0.5); }
.modal-close:hover { color: var(--metallic-gold); transform: rotate(90deg) scale(1.1); }
.modal-content { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 40px rgba(212,175,55,0.2); border: 1px solid rgba(255,255,255,0.1); transform: scale(0.9); transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.project-modal.active .modal-content { transform: scale(1); }
.modal-img { width: 100%; max-height: 75vh; object-fit: contain; background: #000; }
.modal-info { padding: 25px; text-align: center; border-radius: 0 0 20px 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.modal-title { font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.modal-category { font-size: 1rem; color: var(--metallic-gold); text-transform: uppercase; letter-spacing: 2px; }

/* --- Testimonials --- */
.testimonial-slider-container { padding: 60px; overflow: hidden; position: relative; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { min-width: 100%; padding: 0 20px; opacity: 0.4; transition: var(--transition); transform: scale(0.9); }
.testimonial-slide.active { opacity: 1; transform: scale(1); }
.stars { color: var(--metallic-gold); margin-bottom: 20px; font-size: 1.2rem; }
.quote { font-size: 1.4rem; font-style: italic; margin-bottom: 30px; line-height: 1.6; }
.client-meta h4 { font-size: 1.2rem; color: var(--metallic-gold); }
.client-meta span { font-size: 0.9rem; color: var(--soft-gray); }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--glass-border); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--metallic-gold); box-shadow: 0 0 10px var(--metallic-gold); }

/* --- FAQ --- */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; overflow: hidden; }
.faq-question {
    width: 100%; background: none; border: none; padding: 25px 30px; text-align: left;
    color: var(--white); font-size: 1.2rem; font-family: var(--font-main); font-weight: 500;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-question i { color: var(--metallic-gold); transition: transform 0.3s ease; }
.faq-answer { padding: 0 30px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 25px; color: var(--soft-gray); }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active { border-color: var(--glass-border-hover); }

/* --- Cinematic Contact Section --- */
.cinematic-contact-section { position: relative; overflow: hidden; z-index: 2; }
.contact-container { position: relative; z-index: 1; }
.contact-title { font-size: 3rem; font-weight: 800; background: linear-gradient(90deg, #fff, var(--metallic-gold)); -webkit-background-clip: text; color: transparent; animation: textShine 4s linear infinite; }
.contact-subtitle { font-size: 1.2rem; color: var(--soft-gray); max-width: 600px; margin: 0 auto 50px; }
.contact-network-lines { position: absolute; inset: 0; background-image: radial-gradient(rgba(212,175,55,0.15) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.3; animation: networkMove 20s linear infinite; }
@keyframes networkMove { 0% { background-position: 0 0; } 100% { background-position: 40px 40px; } }

.cinematic-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-cards-column { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.premium-contact-card { position: relative; padding: 30px 20px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); background: rgba(10,10,10,0.4); backdrop-filter: blur(10px); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 15px; overflow: hidden; transition: 0.4s ease; text-decoration: none; transform-style: preserve-3d; perspective: 1000px; }
.premium-contact-card:hover { transform: translateY(-5px) scale(1.02); border-color: rgba(212,175,55,0.4); box-shadow: 0 15px 30px rgba(0,0,0,0.8), 0 0 20px rgba(212,175,55,0.15); }
.card-icon { font-size: 2.5rem; color: var(--metallic-gold); transition: 0.4s; }
.premium-contact-card:hover .card-icon { transform: translateZ(20px) scale(1.1); filter: drop-shadow(0 0 10px rgba(212,175,55,0.5)); }
.card-info h4 { font-size: 1.2rem; color: var(--white); margin-bottom: 5px; }
.card-info p { font-size: 0.9rem; color: var(--soft-gray); }

.contact-form-column { background: rgba(10,10,10,0.5); padding: 40px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(20px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.ultra-premium-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.floating-label-group { position: relative; margin-bottom: 30px; }
.floating-input { width: 100%; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 18px 20px; color: var(--white); font-size: 1rem; font-family: var(--font-main); transition: 0.3s; }
.floating-input:focus { background: rgba(255,255,255,0.05); border-color: transparent; outline: none; }
.floating-label { position: absolute; left: 20px; top: 18px; color: var(--soft-gray); transition: 0.3s ease; pointer-events: none; font-size: 1rem; }
.floating-input:focus ~ .floating-label, .floating-input:not(:placeholder-shown) ~ .floating-label { top: -10px; left: 15px; font-size: 0.8rem; color: var(--metallic-gold); background: var(--matte-black); padding: 0 5px; border-radius: 4px; }
select.floating-input option { background: var(--matte-black); color: var(--white); }
.golden-border { position: absolute; inset: 0; border-radius: 12px; border: 2px solid var(--metallic-gold); opacity: 0; pointer-events: none; transition: 0.3s; transform: scale(1.02); }
.floating-input:focus ~ .golden-border { opacity: 1; transform: scale(1); box-shadow: 0 0 15px rgba(212,175,55,0.2); }
.submit-btn { width: 100%; padding: 18px; font-size: 1.1rem; border-radius: 12px; font-weight: 600; margin-top: 10px; }

@media (max-width: 992px) {
    .cinematic-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .ultra-premium-form .form-row { grid-template-columns: 1fr; }
    .contact-cards-column { grid-template-columns: 1fr; }
}

/* --- Cinematic Footer --- */
.cinematic-footer { position: relative; overflow: hidden; background: var(--matte-black); color: var(--white); padding: 80px 0 0; z-index: 2; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bg-elements { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.footer-smoke { position: absolute; inset: 0; background: radial-gradient(circle at 50% 100%, rgba(212,175,55,0.05) 0%, transparent 60%); }
.footer-light-streak { position: absolute; bottom: 0; left: -100%; width: 50%; height: 2px; background: linear-gradient(90deg, transparent, var(--metallic-gold), transparent); animation: streakMove 8s infinite linear; opacity: 0.3; }
.footer-gradient-glow { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.8), transparent); }
.footer-container { position: relative; z-index: 1; padding-bottom: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 60px; }

.footer-logo-wrapper { margin-bottom: 25px; animation: floatLogo 6s ease-in-out infinite; transform-style: preserve-3d; perspective: 1000px; }
@keyframes floatLogo { 0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); } 50% { transform: translateY(-10px) rotateX(5deg) rotateY(5deg); } }
.footer-logo-3d { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; filter: drop-shadow(0 0 10px rgba(212,175,55,0.2)); transition: 0.4s; }
.footer-logo-3d:hover { filter: drop-shadow(0 0 20px rgba(212,175,55,0.6)); }
.footer-description { color: var(--soft-gray); font-size: 1.1rem; line-height: 1.6; margin-bottom: 30px; max-width: 300px; }

.footer-socials { display: flex; gap: 15px; }
.social-icon-btn { display: flex; justify-content: center; align-items: center; width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--white); font-size: 1.2rem; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-decoration: none; position: relative; overflow: hidden; }
.social-icon-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent); transition: 0.5s; }
.social-icon-btn:hover::before { left: 100%; }
.social-icon-btn:hover { background: rgba(212,175,55,0.1); color: var(--metallic-gold); border-color: var(--metallic-gold); transform: translateY(-5px) rotate(5deg); box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 15px rgba(212,175,55,0.3); }

.footer-heading { font-size: 1.3rem; color: var(--white); margin-bottom: 25px; font-weight: 600; text-shadow: 0 0 10px rgba(255,255,255,0.1); }
.footer-nav { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 15px; }
.footer-link { color: var(--soft-gray); text-decoration: none; font-size: 1.05rem; transition: 0.3s; position: relative; display: inline-block; }
.footer-link::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--metallic-gold); transition: 0.3s ease; }
.footer-link:hover { color: var(--metallic-gold); text-shadow: 0 0 10px rgba(212,175,55,0.3); }
.footer-link:hover::after { width: 100%; }

.footer-contact-list { list-style: none; padding: 0; margin-bottom: 30px; }
.footer-contact-list li { color: var(--soft-gray); margin-bottom: 15px; font-size: 1.05rem; display: flex; align-items: center; gap: 12px; }
.footer-contact-list i { color: var(--metallic-gold); font-size: 1.1rem; }

.newsletter-form { position: relative; }
.newsletter-input-group { display: flex; align-items: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 5px; transition: 0.3s; }
.newsletter-input-group:focus-within { border-color: var(--metallic-gold); box-shadow: 0 0 15px rgba(212,175,55,0.2); background: rgba(255,255,255,0.05); }
.glass-input { flex: 1; background: transparent; border: none; padding: 12px 20px; color: var(--white); font-size: 1rem; outline: none; }
.newsletter-btn { background: var(--metallic-gold); color: var(--matte-black); border: none; border-radius: 50px; padding: 12px 25px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.newsletter-btn:hover { box-shadow: 0 0 15px var(--metallic-gold); transform: scale(1.05); }

.footer-bottom-bar { position: relative; background: rgba(0,0,0,0.5); padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.golden-line-sweep { position: absolute; top: -1px; left: -100%; width: 50%; height: 1px; background: linear-gradient(90deg, transparent, var(--metallic-gold), transparent); animation: sweepLine 6s ease-in-out infinite; }
@keyframes sweepLine { 0% { left: -100%; } 100% { left: 200%; } }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.5); font-size: 0.95rem; }

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .contact-wrapper { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stat-item { border-right: none; }
}

@media (max-width: 768px) {
    .nav-links, .nav-container .btn { display: none; }
    .hamburger { display: block; }
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .hero-visuals { display: none; }
    .timeline-line { left: 10px; }
    .step-dot { margin-left: 1px; margin-right: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .section-padding { padding: 80px 0; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* --- About Cinematic Section --- */
.about-cinematic-section { position: relative; z-index: 2; overflow: hidden; }
.cinematic-about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about-title { font-size: 3rem; font-weight: 700; margin-bottom: 15px; }
.gold-sweep-text { background: linear-gradient(90deg, #fff, var(--metallic-gold), #fff); background-size: 200% auto; color: transparent; -webkit-background-clip: text; background-clip: text; animation: textShine 6s linear infinite; }
@keyframes textShine { to { background-position: 200% center; } }
.about-subtitle { font-size: 1.3rem; color: var(--metallic-silver); margin-bottom: 30px; }

.about-paragraphs p { font-size: 1.1rem; color: var(--soft-gray); line-height: 1.7; margin-bottom: 20px; }
.gold-glow-text { color: var(--metallic-gold); text-shadow: 0 0 10px rgba(212,175,55,0.4); font-weight: 500; }
.about-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 40px 0; }
.about-feature-card { padding: 20px; display: flex; align-items: center; gap: 15px; cursor: pointer; transition: all 0.4s ease; border: 1px solid rgba(255,255,255,0.05); }
.about-feature-card i { color: var(--metallic-gold); font-size: 1.5rem; transition: transform 0.4s ease; }
.about-feature-card span { font-weight: 500; font-size: 1.1rem; }
.about-feature-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.4); box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 15px rgba(212,175,55,0.15); }
.about-feature-card:hover i { transform: rotate(15deg) scale(1.1); }
.about-stats-flex { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; margin-bottom: 40px; }
.mini-stat h4, .mini-stat span.plus { display: inline-block; font-size: 2.2rem; color: var(--metallic-gold); font-weight: 700; margin-bottom: 5px; text-shadow: 0 0 15px rgba(212,175,55,0.3); }
.mini-stat p { font-size: 0.85rem; color: var(--soft-gray); text-transform: uppercase; letter-spacing: 1px; }
.about-visual-wrapper { position: relative; perspective: 1200px; display: flex; justify-content: center; align-items: center; }
.css-macbook { width: 100%; max-width: 650px; position: relative; perspective: 1200px; z-index: 2; animation: floatAbout 8s infinite cubic-bezier(0.4, 0, 0.2, 1); transform-style: preserve-3d; filter: drop-shadow(0 40px 50px rgba(0,0,0,0.8)); margin: 0 auto; cursor: pointer; transition: all 0.3s ease; }
.css-macbook:active { animation-play-state: paused; transform: translateY(15px) scale(0.96) rotateX(10deg) !important; filter: drop-shadow(0 20px 25px rgba(0,0,0,0.9)); }
.macbook-screen { background: #050505; border: 14px solid #1a1a1a; border-radius: 20px 20px 0 0; position: relative; overflow: hidden; padding-top: 60%; /* Aspect ratio */ box-shadow: inset 0 0 20px rgba(0,0,0,0.8); }
.macbook-camera { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; background: #333; border-radius: 50%; box-shadow: inset 0 1px 3px rgba(0,0,0,0.8); }
.macbook-img-inner { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.macbook-base { position: relative; height: 22px; width: 115%; left: -7.5%; background: linear-gradient(to bottom, #3a3a3a, #151515); border-radius: 0 0 25px 25px; border-top: 2px solid #555; display: flex; justify-content: center; z-index: 3; }
.macbook-base::before { content: ''; display: block; width: 120px; height: 8px; background: #1a1a1a; border-radius: 0 0 10px 10px; box-shadow: inset 0 2px 5px rgba(0,0,0,0.5); }
.css-mobile { position: absolute; right: -30px; bottom: -20px; width: 140px; height: 280px; background: #050505; border: 8px solid #1a1a1a; border-radius: 24px; box-shadow: -10px 10px 30px rgba(0,0,0,0.8), inset 0 0 10px rgba(255,255,255,0.1); z-index: 4; overflow: hidden; animation: floatMobile 6s infinite ease-in-out; cursor: pointer; transition: all 0.3s ease; }
.css-mobile:active { animation-play-state: paused; transform: translateY(10px) scale(0.92) rotate(-8deg) !important; box-shadow: -5px 5px 15px rgba(0,0,0,0.9), inset 0 0 10px rgba(255,255,255,0.1); z-index: 5; }
.mobile-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 15px; background: #1a1a1a; border-radius: 0 0 10px 10px; z-index: 2; }
.mobile-img-inner { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center left; }
@keyframes floatMobile { 0%, 100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-15px) rotate(-2deg); } }
.about-glow-pulse { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70%; height: 70%; background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%); filter: blur(40px); animation: pulseGlow 8s infinite; z-index: 1; }
@keyframes floatAbout { 0% { transform: translateY(0) rotateX(5deg) rotateY(-5deg); } 50% { transform: translateY(-15px) rotateX(8deg) rotateY(5deg); } 100% { transform: translateY(0) rotateX(5deg) rotateY(-5deg); } }
@keyframes pulseGlow { 0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); } 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); } }
@media (max-width: 992px) { .cinematic-about-grid { grid-template-columns: 1fr; } .about-stats-flex { flex-wrap: wrap; gap: 20px; } .mini-stat { width: 45%; } }
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 60px;
        align-items: flex-start;
        overflow-x: hidden;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        margin-bottom: 30px;
        z-index: 5;
    }
    .hero-creative-cluster {
        transform: scale(0.85);
        margin-top: 20px;
        width: 100%;
        min-height: 380px;
    }
    .hero-actions {
        align-items: center;
        justify-content: center;
    }
    .badge-top-left { left: -5%; }
    .badge-top-right { right: -5%; }
    .badge-middle-left { left: -15%; }
    .badge-middle-right { right: -15%; }
}
@media (max-width: 480px) {
    .hero-section {
        padding-top: 100px;
    }
    .hero-creative-cluster {
        transform: scale(0.75);
        margin-top: -10px;
        min-height: 350px;
    }
    .badge-middle-left { left: -10%; }
    .badge-middle-right { right: -10%; }
    .badge-top-left { left: -5%; }
    .badge-top-right { right: -5%; }
}
