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

:root {
    --coop-blue: #2563eb;
    --coop-orange: #f97316;
    --coop-yellow: #fbbf24;
    --coop-white: #ffffff;
    --dark-blue: #1e40af;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #1e293b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--coop-white);
    padding: 1rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-decoration: none;
}

.logo-icon{
    width: 36px;
    height: 36px;
    /* background: linear-gradient(135deg, var(--coop-blue), var(--coop-orange)); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
}

.logo-icon img {
    width: 80px;
    border-radius: 8px;
    font-weight: 800;
    margin-right: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    background-color: var(--coop-orange);
    border-radius: 5px;
    padding: 10px 10px;
}

.nav-links a.active {
    background-color: var(--coop-orange);
    border-radius: 5px;
    padding: 10px 10px;
    color: white;
}

.nav-cta {
    background: var(--coop-blue);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--dark-blue);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu span {
    width: 24px;
    height: 2px;
    background: var(--dark-gray);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 8rem 5% 5rem;
    background: var(--dark-blue);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--coop-yellow);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--coop-white);
    margin: 1.5rem 0;
    line-height: 1.8;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-top: 1rem;
}

/* Stats Section */
.stats {
    padding: 4rem 5%;
    background: var(--coop-white);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--coop-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--medium-gray);
}

/* Filter Section */
.filter-section {
    padding: 2rem 5%;
    background: var(--light-gray);
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: var(--coop-white);
    border: 2px solid var(--coop-white);
    border-radius: 50px;
    color: var(--dark-gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--coop-orange);
    color: white;
}

    /* Portfolio Grid */
.portfolio {
    padding: 6rem 5%;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
}

.portfolio-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.project-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #ed8936);
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
}

.project-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: rgba(255,255,255,0.3);
}

.project-tags {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255,255,255,0.95);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

.project-info {
    padding: 2.5rem;
}

.project-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.project-client {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-description {
    color: #718096;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tech-badge {
    background: var(--light-bg);
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.project-link:hover {
    gap: 1rem;
}
/* Featured Project */
.featured-project {
    padding: 5rem 5%;
    background: var(--light-gray);
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--coop-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-container1 {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--coop-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 25px;
}


.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-visual {
    background: var(--dark-blue);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


.featured-mockup {
    width: 100%;
    height: 300px;
    background: var(--coop-white);
    border-radius: 8px;
    overflow: hidden;
}

.featured-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-details {
    padding: 3rem;
}

.featured-badge {
    display: inline-block;
    background: var(--coop-orange);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-details h2 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.featured-details .client {
    color: var(--coop-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-details p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-results {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.featured-results h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

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

.result-item {
    text-align: center;
}

.result-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--coop-orange);
    margin-bottom: 0.3rem;
}

.result-label {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: var(--coop-orange);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn:hover {
    background: rgba(223, 177, 91, 0.925);
}

/* Testimonials */
.testimonials {
    padding: 5rem 5%;
    background: var(--coop-white);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.testimonial-text {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coop-blue), var(--coop-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-info h4 {
    color: var(--dark-gray);
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 5rem 5%;
    background: var(--dark-blue);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--coop-yellow);
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin: 1.5rem 0 2.5rem;
    opacity: 0.9;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--dark-gray);
}

.btn-white:hover {
    background: var(--light-gray);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--dark-gray);
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: white;
    padding: 3rem 5% 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    margin-bottom: 1rem;
    color: var(--coop-yellow);
}

.footer-brand p {
    color: var(--coop-white);
    line-height: 1.7;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--coop-yellow);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--coop-white);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--coop-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: var(--coop-white);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .featured-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero {
        text-align: center;
        padding-top: 7rem;
    }
    
    .portfolio-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-container {
        gap: 0.5rem;
    }
    
    .featured-content {
        text-align: center;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
