@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Inter:wght@400;700;800&family=Playfair+Display:ital,wght@0,800;1,800&display=swap');

:root {
    --bg-dark: #020202;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --accent: #D4FF00; /* Ultra vibrant Neon Lime */
    --accent-glow: rgba(212, 255, 0, 0.5);
    --text-primary: #FFFFFF;
    --text-secondary: #888888;
    
    --font-main: 'Outfit', sans-serif;
    
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Animated Aurora Background */
.aurora-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -2;
    overflow: hidden;
    background: #000;
}

.blob {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.5;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px; height: 600px;
    background: rgba(212, 255, 0, 0.15); /* Accent */
    top: -10%; left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px; height: 500px;
    background: rgba(0, 102, 255, 0.1); /* Deep Blue */
    bottom: -20%; right: -10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px; height: 400px;
    background: rgba(140, 0, 255, 0.08); /* Purple */
    top: 40%; left: 40%;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

/* Grain Overlay for Texture */
.grain {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Utilities */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

.section {
    padding: 6rem 0;
}

.text-gradient {
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-primary);
}

.hover-link {
    position: relative;
    text-decoration: none;
    color: var(--text-primary);
}
.hover-link::after {
    content: '';
    position: absolute;
    width: 0; height: 1px;
    bottom: -2px; left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}
.hover-link:hover::after {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 2rem 0;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(2, 2, 2, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.0rem;
    letter-spacing: 2px;
    text-decoration: none;
    font-family: var(--font-main);
    text-transform: uppercase;
    font-weight: 700;
}

.logo-light {
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 3rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-glass {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glass:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
}
.btn-glass:hover .btn-icon {
    transform: translate(2px, -2px);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
    padding: 0;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-toggle:hover .bar {
    background-color: var(--accent);
}

/* Hamburger morphing to X animation classes */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay Styles */
.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(2, 2, 2, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 150;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 160;
}

.mobile-menu-close:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    transform: scale(1.05);
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
}

.mobile-nav-link {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav-link:hover {
    color: var(--accent);
    transform: scale(1.05);
}

.mobile-nav-link.mobile-connect-btn {
    font-size: 1.1rem;
    color: var(--accent);
    border: 1px solid rgba(212, 255, 0, 0.3);
    background: rgba(212, 255, 0, 0.04);
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    margin-top: 1rem;
}

.mobile-nav-link.mobile-connect-btn:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--bg-dark);
}

body.no-scroll {
    overflow: hidden !important;
}

/* Hero Section Wrapper (Fixed background container) */
.hero-fixed-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    pointer-events: none;
}

/* Hero Section */
.hero {
    flex-grow: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    padding-bottom: 1rem;
    pointer-events: auto;
}

.main-content-wrapper {
    position: relative;
    z-index: 5;
    margin-top: 100vh;
    background: transparent;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.clients,
.services,
.work-slider-section,
.bts-section {
    background-color: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.hero-frame {
    position: relative;
    width: calc(100% - 8rem);
    max-width: 1440px;
    height: 75vh;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(10px);
}

.hero-frame-center {
    text-align: center;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-brand-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.brand-separator {
    width: 1px;
    height: clamp(2.5rem, 6vw, 4.5rem);
    background-color: rgba(255, 255, 255, 0.25);
}

.title-light {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    font-size: clamp(3rem, 7.5vw, 6.5rem);
    color: var(--text-primary);
    line-height: 1.0;
}

.accent-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(3rem, 7.5vw, 6.5rem);
    color: var(--accent);
    line-height: 1.0;
}

.hero-title-second {
    text-align: center;
    margin-top: 0.5rem;
}

.hero-divider-line {
    width: 100%;
    max-width: 550px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 2rem auto;
}

.hero-subtitle {
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
    letter-spacing: 12px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
    text-indent: 12px;
}

.hero-tagline {
    font-size: clamp(0.55rem, 1vw, 0.7rem);
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    text-transform: uppercase;
    max-width: 800px;
    line-height: 1.6;
    text-align: center;
    text-indent: 6px;
}

.hero-frame-bottom {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.hero-footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 8rem);
    max-width: 1440px;
    margin: 0 auto 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.6; box-shadow: 0 0 5px var(--accent-glow); }
    100% { opacity: 1; box-shadow: 0 0 15px var(--accent-glow); }
}

.view-work-link {
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.view-work-link:hover {
    color: var(--accent);
    transform: translateX(3px);
}

/* Marquee */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.star {
    color: var(--accent);
    margin: 0 2rem;
    font-size: 1.5rem;
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* About Section Styles */
.about-section {
    position: relative;
    width: 100%;
    color: #121212; /* Opaque dark body text */
    padding: 8rem 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 100%;
    background: #FAF9F6; /* Premium off-white */
    border-top-left-radius: 50% 264px;
    border-top-right-radius: 50% 264px;
    z-index: -1;
}

.about-section .text-gradient {
    background: linear-gradient(to right, #121212, #555555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section .title-medium {
    color: #121212;
    margin-bottom: 2rem;
}

.about-section .badge-mini {
    background: rgba(18, 18, 18, 0.05);
    border: 1px solid rgba(18, 18, 18, 0.1);
    color: #121212;
}

.about-header {
    max-width: 950px;
    margin-bottom: 5rem;
}

.centered-about-header {
    text-align: center;
    margin: 0 auto 5rem;
    max-width: 950px;
}

.nowrap {
    white-space: nowrap;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #121212;
    margin-bottom: 1rem;
}

.about-title-accent {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-weight: 800;
    color: #121212;
}

.about-title-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 0.4) 50%, rgba(18, 18, 18, 0) 100%);
    margin: 1.5rem auto 2.5rem;
}

.about-lead {
    font-size: 1.4rem;
    color: #333333;
    line-height: 1.6;
    font-weight: 500;
    margin-top: 2rem;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    width: 100%;
}

.about-column {
    display: flex;
    flex-direction: column;
}

.column-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(18, 18, 18, 0.1);
    padding-bottom: 1rem;
}

.column-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(18, 18, 18, 0.2);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1;
}

.column-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #121212;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

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

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pillar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #121212; /* Dark dot on light background */
    margin-top: 0.55rem;
    flex-shrink: 0;
}

.pillar-item p {
    color: #555555;
    font-size: 1.05rem;
    line-height: 1.5;
}

.pillar-item p strong {
    color: #121212;
    font-weight: 700;
}

.about-parallax-text {
    position: absolute;
    left: -5%;
    bottom: -5%;
    font-size: 24vw;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(18, 18, 18, 0.03); /* Subtle dark stroke */
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    user-select: none;
}

/* Bento Grid Services */
.section-title {
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    letter-spacing: -2px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(400px, auto);
    gap: 2rem;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    border-color: rgba(212, 255, 0, 0.3);
}

.bento-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.bento-medium {
    grid-column: span 1;
}

@media (max-width: 1024px) {
    .bento-large { grid-column: span 1; grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr; }
}

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

.bento-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 1rem;
}

.bento-item h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.bento-body p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Abstract Visuals for Bento Cards */
/* Bento Grid Visuals */
.marketing-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100% !important;
    min-height: 240px;
    position: relative;
    padding: 1rem;
    margin-top: 0 !important;
}
.dashboard-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}
.dashboard-widget::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 255, 0, 0.3), transparent);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
}
.campaign-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.pulse-dot {
    width: 6px;
    height: 6px;
    background: #00ff66;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff66;
    animation: status-pulse 2s infinite;
}
@keyframes status-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}
.status-text {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.budget-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.widget-stats {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

.widget-chart-container {
    height: 80px;
    position: relative;
    margin: 0.2rem 0;
}
.widget-chart {
    width: 100%;
    height: 100%;
}
.chart-line-draw {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: draw-chart 3s cubic-bezier(0.4, 0, 0.2, 1) forwards infinite;
}
@keyframes draw-chart {
    0% { stroke-dashoffset: 400; }
    60%, 100% { stroke-dashoffset: 0; }
}
.chart-point {
    transform-box: fill-box;
    transform-origin: center;
    animation: point-glow 2s infinite;
}
@keyframes point-glow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

.widget-channels {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
}
.channel-row {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}
.channel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 0.6rem;
}
.channel-dot.meta { background: #1877f2; box-shadow: 0 0 6px #1877f2; }
.channel-dot.google { background: #ea4335; box-shadow: 0 0 6px #ea4335; }
.channel-dot.tiktok { background: #00f2fe; box-shadow: 0 0 6px #00f2fe; }

.channel-name {
    flex-grow: 1;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}
.channel-value {
    font-family: monospace;
    font-weight: 600;
    color: var(--accent);
}

.marketing-reach-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    margin-top: auto;
    padding: 0.5rem;
}

.reach-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 250px;
    height: 140px;
    position: relative;
}

.reach-emitter {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 255, 0, 0.08);
    border: 1px solid var(--accent);
    box-shadow: 0 0 12px rgba(212, 255, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    position: relative;
    z-index: 5;
    animation: emitter-pulse 2s infinite ease-in-out;
}

@keyframes emitter-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 12px rgba(212, 255, 0, 0.25); }
    50% { transform: scale(1.06); box-shadow: 0 0 20px rgba(212, 255, 0, 0.45); }
}

.reach-waves {
    flex-grow: 1;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.reach-wave {
    position: absolute;
    left: 0;
    height: 60px;
    width: 60px;
    border-right: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
}

.reach-wave.wave-1 {
    animation: wave-spread 3.6s infinite 0s linear;
    border-right-color: rgba(255, 255, 255, 0.12);
}
.reach-wave.wave-2 {
    animation: wave-spread 3.6s infinite 1.2s;
    border-right-color: rgba(255, 255, 255, 0.25);
}
.reach-wave.wave-3 {
    animation: wave-spread 3.6s infinite 2.4s;
    border-right-color: var(--accent);
    box-shadow: 4px 0 10px rgba(212, 255, 0, 0.15);
}

.wave-tag {
    position: absolute;
    transform: rotate(45deg);
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 0.2rem 0.5rem;
    background: rgba(10, 10, 10, 0.85);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
}

.wave-1 .wave-tag {
    right: -25px;
    top: -20px;
    color: rgba(255, 255, 255, 0.5);
}
.wave-2 .wave-tag {
    right: -30px;
    top: -25px;
    color: rgba(255, 255, 255, 0.85);
}
.wave-3 .wave-tag {
    right: -35px;
    top: -30px;
    color: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(212, 255, 0, 0.2);
}

@keyframes wave-spread {
    0% {
        transform: rotate(-45deg) scale(0.4);
        left: -10px;
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    85% {
        opacity: 0.8;
    }
    100% {
        transform: rotate(-45deg) scale(1.6);
        left: 70px;
        opacity: 0;
    }
}

.video-editing-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    margin-top: auto;
    padding: 0.5rem;
    perspective: 800px;
}

.video-stack-3d {
    width: 160px;
    height: 110px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(55deg) rotateY(0deg) rotateZ(-30deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.stack-layer {
    position: absolute;
    width: 140px;
    height: 80px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
}

.layer-title {
    position: absolute;
    top: 8px;
    left: 10px;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
    pointer-events: none;
}

.layer-vfx .layer-title {
    color: var(--accent);
    text-shadow: 0 0 4px var(--accent-glow);
}

.layer-footage .layer-title {
    color: #ffffff;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}

.layer-audio .layer-title {
    color: #00f0ff;
    text-shadow: 0 0 4px rgba(0, 240, 255, 0.4);
}

/* Layer 1: VFX & Color Grading (Top) */
.layer-vfx {
    background: rgba(212, 255, 0, 0.04);
    border-color: rgba(212, 255, 0, 0.15);
    animation: layer-hover-vfx 4.8s infinite ease-in-out;
    z-index: 3;
}

.layer-glow-frame {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1.5px solid rgba(212, 255, 0, 0.4);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(212, 255, 0, 0.1);
    opacity: 0.8;
}

.sparkles-3d {
    font-size: 1.1rem;
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent-glow);
    animation: sparkle-spin 3s linear infinite;
    margin-top: 10px;
}

@keyframes sparkle-spin {
    0% { transform: translateZ(10px) rotate(0deg); }
    100% { transform: translateZ(10px) rotate(360deg); }
}

/* Layer 2: Footage & Cuts (Middle) */
.layer-footage {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    animation: layer-hover-footage 4.8s infinite ease-in-out;
    z-index: 2;
}

.play-indicator-3d {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.65rem;
    color: #ffffff;
    margin-top: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.footage-grid-3d {
    position: absolute;
    bottom: 6px;
    left: 8px;
    right: 8px;
    height: 6px;
    display: flex;
    gap: 4px;
}
.footage-grid-3d::before,
.footage-grid-3d::after {
    content: '';
    flex-grow: 1;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* Layer 3: Audio Sync (Bottom) */
.layer-audio {
    background: rgba(0, 240, 255, 0.04);
    border-color: rgba(0, 240, 255, 0.15);
    animation: layer-hover-audio 4.8s infinite ease-in-out;
    z-index: 1;
}

.audio-wave-3d {
    width: 80%;
    height: 24px;
    margin-top: 12px;
}

.audio-wave-3d path {
    stroke: #00f0ff;
    filter: drop-shadow(0px 0px 4px rgba(0, 240, 255, 0.6));
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: wave-draw 4s linear infinite;
}

@keyframes wave-draw {
    0% { stroke-dashoffset: 200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -200; }
}

/* Floating Separated vs Merged States Keyframes */
@keyframes layer-hover-vfx {
    0%, 100% {
        transform: translateZ(35px);
        opacity: 0.85;
        border-color: rgba(212, 255, 0, 0.35);
        box-shadow: 0 12px 30px rgba(212, 255, 0, 0.15);
    }
    50% {
        transform: translateZ(5px);
        opacity: 0.95;
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }
}

@keyframes layer-hover-footage {
    0%, 100% {
        transform: translateZ(0px);
        opacity: 0.75;
    }
    50% {
        transform: translateZ(0px);
        opacity: 0.95;
    }
}

@keyframes layer-hover-audio {
    0%, 100% {
        transform: translateZ(-35px);
        opacity: 0.55;
        border-color: rgba(0, 240, 255, 0.35);
        box-shadow: 0 -12px 30px rgba(0, 240, 255, 0.1);
    }
    50% {
        transform: translateZ(-5px);
        opacity: 0.95;
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }
}

.venn-diagram-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    margin-top: auto;
    padding: 0.5rem;
}

.venn-container {
    position: relative;
    width: 220px;
    height: 160px;
}

.venn-circle {
    position: absolute;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    animation: venn-pulse 4s ease-in-out infinite alternate;
}

.vc-voxpop {
    top: 5px;
    left: 62px;
    border-color: rgba(255, 100, 100, 0.25);
    animation-delay: 0s;
}
.vc-voxpop::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 100, 100, 0.05) 0%, transparent 70%);
}

.vc-ugc {
    top: 58px;
    left: 16px;
    border-color: rgba(0, 200, 255, 0.25);
    animation-delay: 1.3s;
}
.vc-ugc::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.05) 0%, transparent 70%);
}

.vc-influencer {
    top: 58px;
    left: 108px;
    border-color: rgba(255, 200, 60, 0.25);
    animation-delay: 2.6s;
}
.vc-influencer::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 200, 60, 0.05) 0%, transparent 70%);
}

.venn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.venn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
}

.venn-icon svg {
    width: 20px;
    height: 20px;
}

.vc-voxpop .venn-icon {
    color: #ff6464;
    filter: drop-shadow(0 0 3px rgba(255, 100, 100, 0.6));
}

.vc-ugc .venn-icon {
    color: #00c8ff;
    filter: drop-shadow(0 0 3px rgba(0, 200, 255, 0.6));
}

.vc-influencer .venn-icon {
    color: #ffc83c;
    filter: drop-shadow(0 0 3px rgba(255, 200, 60, 0.6));
}

.venn-title {
    font-size: 0.52rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.venn-desc {
    font-size: 0.42rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.venn-intersection {
    position: absolute;
    top: 68px;
    left: 95px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, var(--accent) 50%, transparent 100%);
    box-shadow: 0 0 15px var(--accent-glow);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    animation: core-glow 2s ease-in-out infinite alternate;
}

.vi-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    filter: drop-shadow(0 0 4px #ffffff);
}

.vi-icon svg {
    width: 14px;
    height: 14px;
}

@keyframes venn-pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
}

@keyframes core-glow {
    0% { transform: scale(0.95); box-shadow: 0 0 8px var(--accent-glow); }
    100% { transform: scale(1.1); box-shadow: 0 0 20px var(--accent-glow); }
}


/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.contact-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.glass-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
}

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

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

.glass-form input,
.glass-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.glass-form input:focus,
.glass-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(212, 255, 0, 0.05);
}

.glass-form textarea {
    resize: vertical;
}

.w-100 {
    width: 100%;
    justify-content: center;
}

/* Footer Mega */
.footer-mega {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 8rem;
}

.footer-cta h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 2rem;
    line-height: 1;
}

.mega-link {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
}

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

.detail-block h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.detail-block p {
    font-size: 1.2rem;
    font-weight: 600;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 255, 0, 0.1);
    color: var(--accent) !important;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem !important;
}

.status .dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.giant-logo {
    font-size: 18vw;
    line-height: 0.8;
    text-align: center;
    color: rgba(255,255,255,0.03);
    letter-spacing: -5px;
}

.copyright {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.designer-credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.designer-credit a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.designer-credit a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Clients Section */
.section-header-center {
    text-align: center;
    margin-bottom: 3.5rem;
}

.badge-mini {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.title-medium {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px; /* Uniform height for cropping/scaling */
    width: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Keeps original aspect ratio while fitting the box */
    filter: none; /* Keep original colors */
}

/* Selected Work Slider */
.work-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.work-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    font-weight: 900;
}

.work-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 450px;
    margin-bottom: 3rem;
}

.work-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: none;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
}

.nav-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

/* Stack Card Animation */
.work-visual {
    position: relative;
    height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-container-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 5;
    width: 100%;
}

.swipe-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    user-select: none;
}

.swipe-btn span {
    transition: transform 0.2s ease;
}

/* Skip Button Specifics */
.skip-btn {
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
}
.skip-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}
.skip-btn:active {
    transform: scale(0.95);
}

/* Love Button Specifics */
.love-btn {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(212, 255, 0, 0.03);
}
.love-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    transform: scale(1.12);
    box-shadow: 0 0 20px var(--accent-glow);
}
.love-btn:active {
    transform: scale(0.95);
}

/* Indicators (Dots) styling */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: width 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
}

.carousel-dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--accent);
}


.card-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-content img,
.card-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
}

.card-name {
    font-size: 2rem;
    font-weight: 800;
}

.stack-container {
    position: relative;
    width: 400px;
    height: 550px;
}

.stack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: all 0.6s ease;
    will-change: transform, opacity;
    z-index: calc(10 - var(--index));
    transform-origin: center bottom;
    
    /* Base Transform for background cards */
    transform: 
        translateY(calc(var(--index) * 20px)) 
        scale(calc(1 - var(--index) * 0.05));
    
    opacity: calc(1 - var(--index) * 0.3);
}

.stack-card.active {
    opacity: 1 !important;
    z-index: 20;
    transform: translate(0, 0) scale(1);
}

/* Specific Initial Animation with Holds */
.initial-animate {
    animation: pendulum-hold 4s ease-in-out infinite !important;
}

@keyframes pendulum-hold {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    10% { transform: translate(15px, 0) scale(1) rotate(6deg); }
    20% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(0, 0) scale(1) rotate(0deg); } /* 1s Hold approx */
    60% { transform: translate(-15px, 0) scale(1) rotate(-6deg); }
    70% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(0, 0) scale(1) rotate(0deg); } /* 1s Hold approx */
}

.stack-card.prev {
    transform: translateX(-120%) !important;
    opacity: 0 !important;
}

.stack-card.loved {
    transform: translateX(120%) rotate(10deg) !important;
    opacity: 0 !important;
}

/* Cinematic Lighting Highlight */
.stack-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
    z-index: 2;
}

/* BTS Specific Adjustments */
.bts-section {
    background: var(--bg-dark);
}

.bts-info {
    padding-left: 4rem;
}

@media (max-width: 768px) {
    .bts-info { padding-left: 0; text-align: center; order: -1; }
}

/* Global Volume Toggle */
.volume-toggle {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    cursor: none;
}

.volume-toggle:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    transform: scale(1.1);
}

.volume-toggle svg {
    width: 24px;
    height: 24px;
}

.hidden {
    display: none;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nav-container { padding: 0 2rem; }
    .container { padding: 0 2.5rem; }
    .clients-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem; }
    .work-flex { grid-template-columns: 1fr; gap: 4rem; }
    .stack-container { width: 320px; height: 440px; margin: 0 auto; }
    
    .about-pillars-grid { gap: 4rem; }
    .about-lead { font-size: 1.3rem; }

    .hero-frame {
        width: calc(100% - 4rem);
        padding: 2.5rem;
        height: auto;
        min-height: 60vh;
    }
    
    .hero-footer-info {
        width: calc(100% - 4rem);
    }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .nav-container { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .mobile-menu-toggle { display: flex !important; }
    .btn-glass { 
        display: flex !important; 
        padding: 0.5rem 1rem !important; 
        font-size: 0.75rem !important; 
        height: auto !important;
        border-radius: 4px !important;
    }
    
    .marquee-wrapper {
        padding: 1rem 0 !important;
    }
    .marquee {
        font-size: 1.1rem !important;
        letter-spacing: 1px !important;
    }
    .star {
        margin: 0 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .about-pillars-grid { grid-template-columns: 1fr !important; gap: 3.5rem !important; }
    .about-lead { font-size: 1.15rem !important; margin-bottom: 1.5rem !important; }
    .about-section {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
    }
    .about-section::before {
        width: 140% !important;
        border-top-left-radius: 50% 72px !important;
        border-top-right-radius: 50% 72px !important;
    }
    .column-header { margin-bottom: 1.5rem !important; }
    .column-header h3 { font-size: 1.35rem !important; }
    .column-num { font-size: 1.8rem !important; }
    .pillar-item p { font-size: 0.95rem !important; }
    
    .section {
        padding: 4rem 0 !important;
    }
    .section-title {
        margin-bottom: 2rem !important;
    }
    .section-header-center {
        margin-bottom: 2rem !important;
    }
    
    .title-light, .accent-serif {
        font-size: clamp(1.8rem, 8vw, 3.5rem) !important;
    }
    .hero-title-second .title-light {
        font-size: clamp(1.8rem, 8vw, 3.5rem) !important;
    }
    .hero-subtitle {
        letter-spacing: 6px !important;
        text-indent: 6px !important;
    }
    
    .bento-item {
        padding: 1.5rem !important;
    }
    .bento-item h3 {
        font-size: 1.8rem !important;
    }
    .bento-body p {
        font-size: 0.95rem !important;
    }
    
    .footer-grid, .footer-details, .contact-container, .input-row { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1.5rem !important; }
    .client-logo { height: 75px !important; }
    .glass-form { padding: 1.5rem; }
    
    .hero-frame {
        width: calc(100% - 1.5rem);
        padding: 1.5rem;
        height: auto;
        min-height: 55vh;
    }
    
    .hero-footer-info {
        width: calc(100% - 1.5rem);
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero-brand-group {
        flex-direction: row;
        gap: 0.5rem;
    }

    .brand-separator {
        display: block;
        height: 2.5rem;
    }

    .hero-divider-line {
        margin: 1.5rem auto;
        max-width: 80%;
    }

    .work-flex {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Stack Carousel Responsive Layout (Buttons hidden on mobile, swiping active) */
    .carousel-container-wrapper {
        display: block !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .stack-container {
        width: 280px !important;
        height: 385px !important;
        margin: 0 auto !important;
    }

    .swipe-btn {
        display: none !important;
    }

    .work-visual {
        height: auto !important;
        min-height: 480px !important;
        padding: 1rem 0 !important;
    }

    .carousel-dots {
        margin-top: 1.5rem !important;
    }
}

/* Footer Left Layout */

.footer-left-layout {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.footer-cta-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 14vw, 8rem);
    font-weight: 800;
    line-height: 1.15;
    font-style: italic;
    margin-bottom: 10px;
    padding: 0.1em 0.2em 0.1em 0;
    white-space: nowrap;
}

/* Multi-Color Shimmer Gradient Animation */
.shimmer-text {
    background: linear-gradient(
        to right,
        var(--accent) 0%,
        #00F2FF 25%,
        #FF00D4 50%,
        #FFD400 75%,
        var(--accent) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.footer-contact-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.glassy-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 20px 30px;
    border-radius: 20px;
    width: fit-content;
    transition: all 0.4s ease;
    margin-bottom: 10px;
}

.glassy-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateX(10px);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item .label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
    font-weight: 800;
}

.contact-item .value {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-item .value.giant-phone {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    font-weight: 800;
}

.contact-item .value:hover {
    opacity: 0.8;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-action-main {
    background: var(--accent);
    color: var(--bg-dark);
    height: 60px; /* Fixed height to match circle button */
    padding: 0 35px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-action-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 255, 0, 0.3);
}

.btn-action-circle {
    width: 60px;
    height: 60px; /* Matching height */
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.btn-action-circle svg {
    width: 28px;
    height: 28px;
}

.whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .footer-left-layout { gap: 30px; }
    .contact-item .value.giant-phone { font-size: 2.2rem; }
    .footer-actions { flex-wrap: wrap; }
}
