/* ================================
   WorkWith - Creative Agency
   Modern Single Page Website
   ================================ */

/* CSS Variables */
:root {
    /* Colors - Deep luxurious palette */
    --color-bg: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-bg-tertiary: #1a1a25;
    --color-text: #ffffff;
    --color-text-muted: #9898a6;
    --color-text-dim: #5a5a6e;

    /* Accent Colors */
    --color-accent: #c9a962;
    --color-accent-light: #e4d4a5;
    --color-accent-dark: #a08642;
    --color-gradient-1: #c9a962;
    --color-gradient-2: #8b6914;
    --color-gradient-3: #614c0e;

    /* Secondary accent */
    --color-secondary: #6366f1;
    --color-secondary-light: #818cf8;

    /* Functional */
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(255, 255, 255, 0.15);

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: clamp(80px, 12vw, 160px);
    --container-max: 1400px;
    --container-padding: clamp(20px, 5vw, 80px);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background: var(--color-accent);
    color: var(--color-bg);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-dark);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 15px 0;
}

.nav {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

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

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

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

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

.nav-link--cta {
    background: var(--color-accent);
    color: var(--color-bg) !important;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-base);
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    z-index: 999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-base);
}

.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.15s;
}

.mobile-menu.active .mobile-nav-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-link:nth-child(4) {
    transition-delay: 0.25s;
}

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

/* ================================
   HERO SECTION
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px var(--container-padding) 100px;
}

@media (max-height: 800px) {
    .hero {
        padding: 100px var(--container-padding) 60px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.gradient-orb--1 {
    width: 600px;
    height: 600px;
    background: var(--color-gradient-1);
    top: -200px;
    right: -100px;
}

.gradient-orb--2 {
    width: 500px;
    height: 500px;
    background: var(--color-secondary);
    bottom: -150px;
    left: -100px;
}

.gradient-orb--3 {
    width: 400px;
    height: 400px;
    background: var(--color-gradient-2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.5s;
}

.title-line--accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 50%, var(--color-accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease forwards, shimmer 3s ease-in-out infinite;
    animation-delay: 0.4s, 0s;
    padding-bottom: 0.1em;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
    margin-bottom: 80px;
}

@media (max-height: 800px) {
    .hero-cta {
        margin-bottom: 40px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-bg);
}

.btn--primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.35);
}

.btn--primary svg {
    transition: var(--transition-base);
}

.btn--primary:hover svg {
    transform: translateX(5px);
}

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

.btn--secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-3px);
}

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

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
    text-align: center;
}

@media (max-height: 800px) {
    .hero-scroll {
        display: none;
    }
}

.hero-scroll span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-dim);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-border-hover);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: 0.3;
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   SECTION COMMON STYLES
   ================================ */
.section-header {
    margin-bottom: 60px;
}

.section-header--center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--color-accent);
}

.section-header--center .section-label::before {
    display: none;
}

.section-header--center .section-label {
    padding-left: 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title em {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    color: var(--color-accent);
}

/* ================================
   CLIENTS MARQUEE
   ================================ */
.clients-marquee {
    background: var(--color-bg);
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg), transparent);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg), transparent);
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dim);
    margin: 0 40px;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.marquee-content span:hover {
    color: var(--color-text);
    opacity: 1;
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* ================================
   ABOUT SECTION
   ================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.6) 100%);
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 20px 60px rgba(201, 169, 98, 0.3);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.8;
}

.about-content {
    padding-left: 20px;
}

.about-text {
    color: var(--color-text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-text--large {
    font-size: 1.25rem;
    color: var(--color-text);
    font-weight: 500;
}

.stats-row {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--color-border);
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
    padding: var(--section-padding) 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

/* Featured Service Card (AI Automation) */
.service-card--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, var(--color-bg-secondary) 40%, rgba(99, 102, 241, 0.05) 100%);
    border-color: rgba(201, 169, 98, 0.2);
    position: relative;
}

.service-card--featured::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light), var(--color-secondary));
}

.service-card--featured::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    border: 1px solid rgba(201, 169, 98, 0.25);
    background: rgba(201, 169, 98, 0.1);
    margin-bottom: 24px;
}

/* Footer featured link */
.footer-link--featured {
    display: block;
    color: var(--color-accent) !important;
    text-decoration: none;
    padding: 7px 0;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    color: var(--color-accent);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.service-desc {
    color: var(--color-text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.service-link svg {
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--color-accent-light);
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ================================
   PROCESS SECTION
   ================================ */
.process {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    position: relative;
    padding-top: 40px;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-border);
}

.process-step:hover::before {
    background: var(--color-accent);
    transition: background 0.3s ease;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-bg-tertiary);
    -webkit-text-stroke: 1px var(--color-text-dim);
    margin-bottom: 20px;
    font-family: var(--font-accent);
    transition: var(--transition-base);
}

.process-step:hover .step-number {
    color: var(--color-accent);
    -webkit-text-stroke: 0;
    transform: translateY(-5px);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text);
}

.step-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ================================
   WORK / PORTFOLIO SECTION
   ================================ */
.work {
    padding: var(--section-padding) 0 40px;
    background: var(--color-bg);
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-top: 12px;
}

.work-item {
    margin-bottom: 24px;
}

.work-item-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.4s ease, background 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.work-item-link:hover {
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.work-item-visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: rgba(0, 0, 0, 0.4);
}

.work-item-img {
    width: 100%;
    height: 100%;
}

.work-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), brightness 0.4s ease;
    filter: brightness(0.65);
}

.work-item-link:hover .work-item-img img {
    filter: brightness(0.8);
}

.work-item-link:hover .work-item-img img {
    transform: scale(1.04);
}

.work-item-phone {
    position: absolute;
    right: 32px;
    bottom: -20px;
    width: 160px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: translateY(10px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-item-link:hover .work-item-phone {
    transform: translateY(-6px);
}

.work-item-phone img {
    width: 100%;
    height: auto;
    display: block;
}

.work-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

.work-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.work-item-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    border: 1px solid rgba(196, 167, 103, 0.25);
    background: rgba(196, 167, 103, 0.08);
}

.work-item-year {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-left: auto;
    font-weight: 500;
}

.work-item-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.work-item-link:hover .work-item-title {
    color: var(--color-accent);
}

.work-item-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.work-item-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.work-item-link:hover .work-item-cta {
    opacity: 1;
    transform: translateX(0);
}

.work-item-cta svg {
    transition: transform 0.3s ease;
}

.work-item-link:hover .work-item-cta svg {
    transform: translate(3px, -3px);
}

/* Duo layout */
.work-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.work-item--half {
    margin-bottom: 0;
}

.work-item--half .work-item-link {
    grid-template-columns: 1fr;
    height: 100%;
}

.work-item--half .work-item-visual {
    aspect-ratio: 16 / 9;
}

.work-item--half .work-item-info {
    padding: 28px 32px 32px;
}

.work-item--half .work-item-title {
    font-size: 1.5rem;
}

.work-item--half .work-item-desc {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Teaser */
.work-teaser {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 50px;
}

.work-teaser-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.work-teaser-content {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

.work-teaser-dots {
    display: flex;
    gap: 6px;
}

.work-teaser-dots span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.3;
}

.work-teaser-dots span:nth-child(2) {
    opacity: 0.6;
}

.work-teaser-dots span:nth-child(3) {
    opacity: 1;
}

.work-teaser-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.work-teaser-content em {
    color: var(--color-text);
    font-style: normal;
    font-weight: 700;
}

.work-teaser-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: var(--color-text);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.work-teaser-cta:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(196, 167, 103, 0.06);
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials {
    padding: 40px 0 var(--section-padding);
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
}

.testimonial-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    width: 60px;
    height: 60px;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-family: var(--font-accent);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-accent);
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-title {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    padding: var(--section-padding) 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 25px;
}

.contact-text {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.contact-link svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.contact-link:hover {
    color: var(--color-accent);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-muted);
    transition: var(--transition-base);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.2);
}

/* Contact Form */
.contact-form {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group--full {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 18px;
    color: var(--color-text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-fast);
    background: var(--color-bg-tertiary);
    padding: 0 5px;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:valid+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--color-accent);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239898a6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

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

.contact-form .btn {
    grid-column: span 2;
    margin-top: 10px;
}

/* ================================
   FOOTER CTA BANNER
   ================================ */
.footer-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.06) 0%, rgba(10, 10, 15, 0.95) 50%, rgba(99, 102, 241, 0.05) 100%);
}

.footer-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: ctaFloat 8s ease-in-out infinite;
}

.footer-cta-orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.footer-cta-orb--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    bottom: -100px;
    right: -50px;
    animation-delay: -4s;
}

@keyframes ctaFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

.footer-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.footer-cta-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-text);
}

.footer-cta-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-accent);
    font-weight: 600;
}

.footer-cta-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.btn--lg {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--color-bg-secondary);
    padding: 80px 0 0;
    border-top: 1px solid var(--color-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(201, 169, 98, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.15);
}

/* Footer Links Grid */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    border-radius: 2px;
}

.footer-col a {
    display: block;
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 7px 0;
    font-size: 0.92rem;
    transition: all 0.25s ease;
    position: relative;
}

.footer-col a:hover {
    color: var(--color-accent);
    padding-left: 8px;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-dim);
    font-size: 0.88rem;
    margin-top: 8px;
}

.footer-location svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), rgba(201, 169, 98, 0.15), var(--color-border), transparent);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.footer-bottom p {
    color: var(--color-text-dim);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-links a {
    color: var(--color-text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}

.footer-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--color-text-dim);
}

.footer-made {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-heart {
    color: var(--color-accent);
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
    font-size: 1rem;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.2);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.15);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(26, 26, 37, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(201, 169, 98, 0.12);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.15);
}

/* ================================
   SCROLL ANIMATIONS
   ================================ */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image {
        order: -1;
    }

    .experience-badge {
        right: 20px;
        bottom: -20px;
    }

    .about-content {
        padding-left: 0;
    }

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

    .service-card--featured {
        grid-column: span 1;
    }

    .work-item-link {
        grid-template-columns: 1fr;
    }

    .work-duo {
        grid-template-columns: 1fr;
    }

    .work-item-info {
        padding: 32px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-cta {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat {
        flex: 1;
        min-width: 120px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .form-group--full {
        grid-column: span 1;
    }

    .contact-form .btn {
        grid-column: span 1;
    }

    .work-item-phone {
        width: 120px;
        right: 16px;
    }

    .work-item-info {
        padding: 24px;
    }

    .work-item-title {
        font-size: 1.5rem;
    }

    .work-teaser {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .work-teaser-line {
        display: none;
    }

    .work-teaser-content {
        flex-wrap: wrap;
        justify-content: center;
        white-space: normal;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-cta-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

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

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

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

    .image-wrapper img {
        height: 350px;
    }
}