/* ============================================
   BADE KARGIN — Portfolio
   Modern · Minimal · Animated
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --bg-light: #111111;
    --text: #ffffff;
    --text-muted: #888888;
    --accent: #c9f31d;
    --accent-alt: #667eea;
    --border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg);
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

button, input, textarea {
    cursor: none;
}

::selection {
    background: var(--accent);
    color: var(--bg);
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

/* ---------- Custom Cursor ---------- */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s var(--ease);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.3s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}

.cursor.active {
    transform: scale(0.5);
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
    background: rgba(201, 243, 29, 0.05);
}

/* ---------- Loader ---------- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.2s var(--ease);
}

.loader.done {
    transform: translateY(-100%);
}

.loader-inner {
    text-align: center;
    position: relative;
}

.loader-line {
    width: 200px;
    height: 1px;
    background: var(--border);
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: loaderLine 2s var(--ease) forwards;
}

@keyframes loaderLine {
    to { left: 0; }
}

.loader-text {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: 0.3em;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.loader-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: loaderLetter 0.6s var(--ease) forwards;
}

.loader-text span:nth-child(1) { animation-delay: 0.1s; }
.loader-text span:nth-child(2) { animation-delay: 0.15s; }
.loader-text span:nth-child(3) { animation-delay: 0.2s; }
.loader-text span:nth-child(4) { animation-delay: 0.25s; }
.loader-text span:nth-child(5) { animation-delay: 0.3s; }
.loader-text span:nth-child(6) { animation-delay: 0.35s; }
.loader-text span:nth-child(7) { animation-delay: 0.4s; }
.loader-text span:nth-child(8) { animation-delay: 0.45s; }
.loader-text span:nth-child(9) { animation-delay: 0.5s; }
.loader-text span:nth-child(10) { animation-delay: 0.55s; }
.loader-text span:nth-child(11) { animation-delay: 0.6s; }

@keyframes loaderLetter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-counter {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 30px;
    letter-spacing: 0.2em;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px clamp(20px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    mix-blend-mode: difference;
    transition: padding 0.4s var(--ease);
}

.nav.scrolled {
    padding: 16px clamp(20px, 5vw, 80px);
}

.nav-logo a {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.dot {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: none;
    z-index: 200;
    padding: 10px;
}

.nav-hamburger span {
    width: 28px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.4s var(--ease);
    transform-origin: center;
}

.nav-hamburger.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav-hamburger.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.6s var(--ease);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: clamp(32px, 8vw, 56px);
    font-weight: 700;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s var(--ease);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.45s; }

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(120px, 20vw, 350px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 0.05em;
    user-select: none;
}

.hero-content {
    padding: 0 clamp(20px, 5vw, 80px);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-tag .line {
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 12vw, 160px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.title-line {
    overflow: hidden;
}

.outline-text {
    color: var(--accent);
    font-size: 1.2em;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 48px;
    font-weight: 300;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease);
    border-radius: 50px;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary:hover svg {
    transform: translate(4px, -4px);
    transition: transform 0.3s var(--ease);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: clamp(20px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollDown 2s var(--ease) infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

.hero-scroll-indicator span {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
}

/* Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-200px) scale(1); }
}

/* ---------- Marquee ---------- */
.marquee-section {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    gap: 40px;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-inner span {
    font-family: var(--font-display);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.marquee-dot {
    color: var(--accent) !important;
    font-size: 10px !important;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Section Shared ---------- */
.section-header {
    margin-bottom: 80px;
    position: relative;
}

.section-number {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* ---------- About Section ---------- */
.about {
    padding: 160px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light) 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder span {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 0.1em;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transform: scaleY(1);
    transform-origin: top;
    transition: transform 1.2s var(--ease);
}

.about-image.revealed .image-overlay {
    transform: scaleY(0);
    transform-origin: bottom;
}

.about-text {
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.about-text strong {
    color: var(--text);
    font-weight: 600;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 8px;
    text-transform: uppercase;
}

/* ---------- Services Section ---------- */
.services {
    padding: 160px 0;
    background: var(--bg-light);
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.5s var(--ease);
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.8s var(--ease);
}

.service-item:hover::before {
    width: 100%;
}

.service-item:first-child {
    border-top: 1px solid var(--border);
}

.service-number {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.service-item:hover .service-content h3 {
    color: var(--accent);
}

.service-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 500px;
    font-weight: 300;
}

.service-arrow {
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.4s var(--ease);
    color: var(--accent);
}

.service-item:hover .service-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ---------- Works Section ---------- */
.works {
    padding: 160px 0 80px;
    overflow: hidden;
}

.works-scroll-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Work Rows */
.work-row {
    display: grid;
    gap: 32px;
}

.work-row--full {
    grid-template-columns: 1fr;
}

.work-row--duo {
    grid-template-columns: 1fr 1fr;
}

.work-row--offset {
    grid-template-columns: 1.4fr 0.6fr;
    align-items: end;
}

.work-row--offset-rev {
    grid-template-columns: 0.6fr 1.4fr;
    align-items: end;
}

.work-row--trio {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Work Items */
.work-item {
    position: relative;
    will-change: transform, opacity;
}

/* GSAP handles visibility */
.work-gsap {
    will-change: transform, opacity;
}

/* Work Image */
.work-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
}

.work-image--hero {
    aspect-ratio: 16/7;
}

.work-image--tall {
    aspect-ratio: 3/4;
}

.work-image img,
.work-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.work-item:hover .work-image img,
.work-item:hover .work-image video {
    transform: scale(1.05);
}

/* Reveal clip mask */
.work-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 2;
    transform-origin: top;
    transition: transform 1s var(--ease);
}

.work-item.is-visible .work-image::before {
    transform: scaleY(0);
    transform-origin: bottom;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    backdrop-filter: blur(4px);
    z-index: 3;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-view {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    transform: translateY(20px);
    transition: all 0.5s var(--ease);
}

.work-item:hover .work-view {
    transform: translateY(0);
}

/* Work Info */
.work-info {
    padding: 20px 4px;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.work-number {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.work-info h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-right: auto;
}

.work-category {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

/* Responsive works */
@media (max-width: 768px) {
    .work-row--duo,
    .work-row--offset,
    .work-row--offset-rev,
    .work-row--trio {
        grid-template-columns: 1fr;
    }
    
    .work-image--hero {
        aspect-ratio: 16/9;
    }
    
    .work-image--tall {
        aspect-ratio: 4/3;
    }
    
    .works-scroll-container {
        gap: 40px;
    }
    
    .work-info {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* ---------- Contact Section ---------- */
.contact {
    padding: 160px 0;
    background: var(--bg-light);
}

.contact-content--centered {
    display: flex;
    justify-content: center;
}

.contact-center {
    max-width: 700px;
    text-align: center;
}

.contact-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtext {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 48px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s var(--ease);
    background: rgba(255, 255, 255, 0.02);
}

.contact-card:hover {
    border-color: var(--accent);
    background: rgba(201, 243, 29, 0.03);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 243, 29, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-card-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-card-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s;
}

.contact-card:hover .contact-card-value {
    color: var(--accent);
}

.contact-socials {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-link {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease);
}

.social-link:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-4px);
}

/* ---------- Footer ---------- */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
}

.footer-left p {
    font-size: 13px;
    color: var(--text-muted);
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
}

.back-to-top:hover {
    color: var(--accent);
}

.back-to-top:hover svg {
    transform: translateY(-4px);
    transition: transform 0.3s var(--ease);
}

/* ---------- Reveal Animations ---------- */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s var(--ease);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.section-header .reveal-up:nth-child(1) { transition-delay: 0s; }
.section-header .reveal-up:nth-child(2) { transition-delay: 0.1s; }

.hero-content .reveal-up:nth-child(1) { transition-delay: 0.2s; }
.hero-content .reveal-up:nth-child(2) { transition-delay: 0.4s; }
.hero-content .reveal-up:nth-child(3) { transition-delay: 0.5s; }
.hero-content .reveal-up:nth-child(4) { transition-delay: 0.6s; }
.hero-content .reveal-up:nth-child(5) { transition-delay: 0.7s; }

/* ---------- Magnetic Button Effect ---------- */
.magnetic {
    transition: transform 0.3s var(--ease);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image {
        max-width: 400px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cursor, .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    a, button, input, textarea {
        cursor: auto;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .about-stats {
        gap: 24px;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-number {
        margin-bottom: -8px;
    }
    
    .service-arrow {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 12px;
    }
    
    .about {
        padding: 100px 0;
    }
    
    .services {
        padding: 100px 0;
    }
    
    .works {
        padding: 100px 0;
    }
    
    .contact {
        padding: 100px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .contact-form {
        gap: 28px;
    }
}

/* ---------- Smooth Gradient Background Animation ---------- */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ---------- Noise Texture Overlay ---------- */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
    opacity: 0.4;
}
