/* Work Page Styles */

/* Hero Section */
.work-hero {
    padding: 60px 0 30px;
    background: var(--bg-light);
    text-align: center;
}

.curated-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.curated-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.work-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #0b1120;
}

.work-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Intro Text Section */
.work-intro {
    padding: 40px 0 20px;
    text-align: center;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 2.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-main);
}

.intro-text span {
    color: var(--accent);
}

/* Filter Section */
.work-filter {
    padding: 0 0 32px;
    display: flex;
    justify-content: center;
}

.filter-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Project Grid */
.work-grid-section {
    display: none;
    padding: 0 0 60px;
    background: var(--bg-light);
}

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

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid transparent;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.project-image {
    width: 100%;
    height: 240px;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

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

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

.project-content {
    padding: 30px;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.project-title {
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #0b1120;
}

.project-badge {
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-badge.ecommerce { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.project-badge.corporate { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.project-badge.service { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }

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

/* Global Delivery Section */
.global-delivery {
    padding: 50px 0;
    text-align: center;
    background: white;
}

.globe-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.global-delivery h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #0b1120;
}

.global-delivery p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.country-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.country-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* Final CTA */
.final-cta {
    background: #0f172a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary.btn-large {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-outline-light {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    background: transparent;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .work-hero h1 {
        font-size: 3.5rem;
    }
    .intro-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .work-hero h1 {
        font-size: 2.5rem;
    }
    .intro-text {
        font-size: 1.5rem;
    }
    .cta-btns {
        flex-direction: column;
    }
}
