/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4F46E5;
}

.contact-btn {
    background: #4F46E5;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #3730A3;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.hero-arrow {
    position: absolute;
    top: 100px;
    right: 50px;
    width: 80px;
    height: 80px;
    opacity: 0.6;
    z-index: 10;
}

.hero-arrow svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.hero-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
    position: relative;
    padding-left: 40px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: #666;
}

.hero-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.cta-btn {
    background: #4F46E5;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.cta-btn:hover {
    background: #3730A3;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4F46E5;
    color: white;
    transform: translateY(-2px);
}

.hero-video {
    position: relative;
    width: 100%;
}

.hero-video video {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fafc;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #4F46E5;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-logos {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.partner-logo, .clutch-logo {
    height: 40px;
    opacity: 0.7;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #f59e0b;
    font-weight: 600;
}

.about-content {
    text-align: left;
}

.about-text {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.6;
    color: #9ca3af;
    font-weight: 400;
}

.about-text .highlight {
    color: #1a1a1a;
    font-weight: 600;
}

/* Recent Work Section */
.recent-work {
    padding: 6rem 0;
    background: white;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.work-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

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

.work-item-link:hover .work-item {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.work-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.work-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.image-overlay, .status-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-tag {
    background: #f1f5f9;
    color: #1a1a1a;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.status-tag.active {
    background: #dcfce7;
    color: #166534;
}

.status-tag.research {
    background: #ede9fe;
    color: #7c3aed;
}

.status-tag.coming-soon {
    background: #fed7aa;
    color: #c2410c;
}

.work-info {
    padding: 1.5rem;
}

.work-info h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.work-info p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.work-year {
    color: #4F46E5;
    font-weight: 600;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #1a1a1a;
    color: white;
}

.services .section-title {
    color: #4F46E5;
    margin-bottom: 3rem;
}

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

.service-card {
    padding: 2.5rem;
    border: 1px solid #333;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #4F46E5;
    transform: translateY(-5px);
    background: rgba(79, 70, 229, 0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: #4F46E5;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid #333;
}

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

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

.contact-section h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ccc;
}

.email-link {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #4F46E5;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-item p {
    color: #ccc;
    line-height: 1.5;
}

.social-links-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.social-links-footer a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links-footer a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-brand h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-copyright p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .about-logos {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-text {
        font-size: 1.2rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .email-link {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text > * {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero-text > *:nth-child(4) { animation-delay: 0.4s; }