/* Graphic Designer - Bold & Colorful */
:root {
    --pink: #FF006E;
    --cyan: #00F5FF;
    --yellow: #FFBE0B;
    --purple: #8338EC;
    --dark: #1A1A1A;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--pink);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 30px;
    background: rgba(255,255,255,0.95);
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-item {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--pink);
    transition: width 0.3s ease;
}

.nav-item.active::after,
.nav-item:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

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

.shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    opacity: 0.1;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--yellow) 100%);
    opacity: 0.1;
    bottom: 20%;
    left: 10%;
    animation-delay: -2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--pink) 100%);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    animation-delay: -4s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.glitch {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 20px;
    position: relative;
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #666;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.badge {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.badge.pink { background: var(--pink); }
.badge.cyan { background: var(--cyan); color: var(--dark); }
.badge.yellow { background: var(--yellow); color: var(--dark); }

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--dark);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-button.large {
    padding: 22px 60px;
    font-size: 1.3rem;
}

/* Services */
.services {
    padding: 100px 0;
    background: #FAFAFA;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

.asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--white);
}

.service-card.pink { background: var(--pink); }
.service-card.cyan { background: var(--cyan); color: var(--dark); }
.service-card.yellow { background: var(--yellow); color: var(--dark); }
.service-card.purple { background: var(--purple); }

.service-card:hover {
    transform: rotate(-2deg) scale(1.05);
}

.card-number {
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.service-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.card-icon {
    font-size: 3rem;
}

/* Featured Work */
.featured-work {
    padding: 100px 0;
}

.work-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1/1;
}

.work-item.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.work-item.wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.work-item:hover .work-overlay {
    transform: translateY(0);
    opacity: 1;
}

.work-category {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.work-category.pink { background: var(--pink); }
.work-category.cyan { background: var(--cyan); color: var(--dark); }
.work-category.yellow { background: var(--yellow); color: var(--dark); }
.work-category.purple { background: var(--purple); }

.work-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.center-btn {
    text-align: center;
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    border: 3px solid var(--dark);
    color: var(--dark);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* About */
.about {
    padding: 100px 0;
    background: #FAFAFA;
}

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

.about-image {
    position: relative;
}

.image-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    transform: rotate(5deg);
    z-index: 0;
}

.image-frame.pink { background: var(--pink); }

.about-image img {
    position: relative;
    z-index: 1;
    border-radius: 30px;
    width: 100%;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 900;
}

.big-text {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--pink);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.stats-row {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-number.pink { color: var(--pink); }
.stat-number.cyan { color: var(--cyan); }
.stat-number.yellow { color: var(--yellow); }

.stat-label {
    font-size: 0.9rem;
    color: #999;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    background: #FAFAFA;
    border-radius: 20px;
    position: relative;
}

.quote-mark {
    font-size: 6rem;
    color: var(--pink);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #666;
}

.author strong {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

.author span {
    color: #999;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.cta-box {
    text-align: center;
    position: relative;
    padding: 60px;
}

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

.cta-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-shape.pink {
    background: var(--pink);
    top: 0;
    left: 10%;
}

.cta-shape.cyan {
    background: var(--cyan);
    bottom: 0;
    right: 10%;
}

.cta-shape.yellow {
    background: var(--yellow);
    top: 50%;
    left: 50%;
}

.cta-box h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-box .cta-button {
    background: var(--white);
    color: var(--dark);
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.footer-brand p {
    color: #999;
}

.footer-links,
.footer-social {
    display: flex;
    gap: 30px;
}

.footer-links a,
.footer-social a {
    color: #999;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--pink);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #999;
}

.footer-bottom a {
    color: #999;
}

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

/* Responsive */
@media (max-width: 968px) {
    .floating-nav {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        justify-content: center;
    }

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

    .work-item.large,
    .work-item.wide {
        grid-column: auto;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .asymmetric-grid {
        grid-template-columns: 1fr;
    }

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

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