/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Floating Design Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.float-element {
    position: absolute;
    color: rgba(139, 92, 246, 0.15);
    opacity: 0.6;
}

.pencil {
    top: 15%;
    left: 10%;
    animation: float-1 20s ease-in-out infinite;
}

.ruler {
    top: 60%;
    right: 8%;
    animation: float-2 25s ease-in-out infinite;
}

.palette {
    top: 30%;
    right: 15%;
    animation: float-3 18s ease-in-out infinite;
}

.compass {
    bottom: 20%;
    left: 15%;
    animation: float-4 22s ease-in-out infinite;
}

.brush {
    top: 70%;
    left: 5%;
    animation: float-5 19s ease-in-out infinite;
}

.vector {
    bottom: 30%;
    right: 20%;
    animation: float-6 24s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(5deg); }
    50% { transform: translate(-20px, 40px) rotate(-5deg); }
    75% { transform: translate(20px, 20px) rotate(3deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-40px, 30px) rotate(-8deg); }
    66% { transform: translate(30px, -30px) rotate(8deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -40px) rotate(-10deg); }
}

@keyframes float-4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    40% { transform: translate(40px, -30px) rotate(6deg); }
    80% { transform: translate(-30px, 20px) rotate(-6deg); }
}

@keyframes float-5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(25px, 35px) rotate(7deg); }
}

@keyframes float-6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-25px, -35px) rotate(-9deg); }
    66% { transform: translate(35px, 25px) rotate(9deg); }
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-main {
    color: #ffffff;
}

.logo-accent {
    color: #a78bfa;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-contact {
    display: flex;
    align-items: center;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(139, 92, 246, 0.2);
}

.nav-btn svg {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.08;
    pointer-events: none;
}

.glow-purple {
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: -300px;
    right: -200px;
}

.glow-blue {
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.hero-eyebrow {
    color: #a78bfa;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.4);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a78bfa;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-secondary:hover {
    color: #c4b5fd;
}

.btn-secondary svg {
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: translateX(4px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
}

.trust-label {
    color: #6b7280;
}

.trust-item {
    color: #9ca3af;
}

.trust-dot {
    width: 4px;
    height: 4px;
    background: #374151;
    border-radius: 50%;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: float 6s ease-in-out infinite;
    /* ADD THESE TWO LINES: */
    width: 21vw;
    margin-left: auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.visual-card {
    position: relative;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    overflow: hidden;
}

.visual-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.visual-content {
    position: relative;
    z-index: 10;
}

.visual-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 16px;
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    text-align: center;
}

.placeholder-icon-svg {
    color: #8b5cf6;
    margin-bottom: 16px;
    opacity: 0.5;
}

.placeholder-text-1 {
    height: 12px;
    width: 128px;
    background: #1f2937;
    border-radius: 6px;
    margin: 0 auto 8px;
}

.placeholder-text-2 {
    height: 8px;
    width: 96px;
    background: #111827;
    border-radius: 4px;
    margin: 0 auto;
}

.visual-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.profile-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border-radius: 50%;
}

.profile-info {
    flex: 1;
}

.profile-name {
    height: 12px;
    width: 128px;
    background: #1f2937;
    border-radius: 6px;
    margin-bottom: 8px;
}

.profile-username {
    height: 8px;
    width: 96px;
    background: #111827;
    border-radius: 4px;
}

.visual-description {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.desc-line-1 {
    height: 8px;
    width: 100%;
    background: #111827;
    border-radius: 4px;
}

.desc-line-2 {
    height: 8px;
    width: 80%;
    background: #111827;
    border-radius: 4px;
}

.visual-accent {
    position: absolute;
    border-radius: 16px;
    filter: blur(40px);
}

.visual-accent-1 {
    top: -32px;
    right: -32px;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), transparent);
}

.visual-accent-2 {
    bottom: -32px;
    left: -32px;
    width: 144px;
    height: 144px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), transparent);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-eyebrow {
    color: #a78bfa;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-description {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Booking Section */
.booking-section {
    position: relative;
    padding: 128px 0;
    overflow: hidden;
}

.booking-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.calendly-card {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 48px;
}

.calendly-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.calendly-container iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 16px;
}

/* Services Section */
.services-section {
    padding: 128px 0;
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.service-icon svg {
    color: #a78bfa;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-description {
    color: #9ca3af;
    line-height: 1.7;
}

/* Work Section */
.work-section {
    padding: 128px 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 10;
}

.previous-brands {
    text-align: center;
    margin-bottom: 48px;
}

.brands-label {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.brands-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.brand-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: #a78bfa;
}

.brands-dot {
    width: 4px;
    height: 4px;
    background: #374151;
    border-radius: 50%;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.work-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.work-image {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, transparent 50%, rgba(99, 102, 241, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-overlay-alt {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, transparent 50%, rgba(139, 92, 246, 0.3) 100%);
}

.work-overlay-pink {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, transparent 50%, rgba(236, 72, 153, 0.3) 100%);
}

.work-overlay-cyan {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, transparent 50%, rgba(6, 182, 212, 0.3) 100%);
}

.work-placeholder {
    text-align: center;
    position: relative;
    z-index: 2;
}

.work-content {
    padding: 32px;
}

.work-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.work-description {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.work-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.work-tag {
    color: #a78bfa;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 128px 0;
    z-index: 10;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.cta-description {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 48px;
}

.cta-buttons {
    margin-bottom: 40px;
}

.cta-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #a78bfa;
}

.contact-divider {
    color: #374151;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 64px 0;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #a78bfa;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-text {
    color: #4b5563;
    font-size: 14px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .cta-title {
        font-size: 48px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        display: none;
    }
    
    .float-element {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }
    
    .calendly-container iframe {
        height: 600px;
    }
    
    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .nav-btn {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .cta-contact {
        flex-direction: column;
        gap: 16px;
    }
    
    .contact-divider {
        display: none;
    }
    
    .float-element {
        opacity: 0.3;
    }
}