/* ============================================
   PROJECTS PAGE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00aeef;
    background: rgba(0, 174, 239, 0.08);
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-header h2.light {
    color: #ffffff;
}

.section-subtitle {
    font-size: 18px;
    color: #475569;
    max-width: 700px;
    margin: 16px auto 0;
    line-height: 1.6;
}

/* ========== HERO SECTION ========== */
.projects-hero {
    position: relative;
    background: linear-gradient(135deg, #0a1a2f 0%, #0c1e35 100%);
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.projects-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('../images/about-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
    mask-image: linear-gradient(to left, black 60%, transparent 100%);
}

.projects-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(10 26 47 / 100%) 0%, rgb(10 26 47 / 95%) 30%, rgb(10 26 47 / 0%) 60%, rgb(10 26 47 / 0%) 100%);
    z-index: 1;
}

.projects-hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 24px;
    z-index: 2;
    width: 100%;
}

.projects-hero-content {
    max-width: 700px;
}

.projects-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, #00aeef 0%, #00a79d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.projects-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
}

.projects-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-projects {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00aeef;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-projects:hover {
    background: #0095cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
}

.btn-secondary-projects {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary-projects:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: white;
}

/* ========== FEATURED PROJECTS SECTION ========== */
.featured-projects-section {
    padding: 80px 0;
    background: #ffffff;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background: #f8fafc;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.project-item.reverse {
    flex-direction: row-reverse;
}

.project-image {
    flex: 1;
    min-width: 280px;
}

.project-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.project-content {
    flex: 1;
    padding: 40px;
}

.project-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.project-description {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-features h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.project-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    margin-bottom: 25px;
}

.project-features ul li {
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-features ul li i {
    color: #00aeef;
    font-size: 14px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00aeef;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    gap: 12px;
    color: #0082b3;
}

/* ========== PROCESS SECTION ========== */
.process-section {
    padding: 80px 0;
    background: #f8fafc;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(0, 174, 239, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 800;
    color: #00aeef;
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* ========== TESTIMONIAL SECTION ========== */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00aeef, #00a79d);
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 48px;
    color: #00aeef;
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.5;
    color: #0f172a;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-image i {
    font-size: 60px;
    color: #cbd5e1;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #475569;
}

/* ========== CATEGORIES SECTION ========== */
.categories-section {
    padding: 80px 0;
    background: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.category-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.category-card i {
    font-size: 40px;
    color: #00aeef;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

/* ========== IMPACT SECTION ========== */
.impact-section {
    padding: 80px 0;
    background: #0a1a2f;
}

.impact-wrapper {
    text-align: center;
}

.impact-content {
    margin-bottom: 50px;
}

.impact-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.impact-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #00aeef;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== CTA SECTION ========== */
.projects-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #00aeef, #00a79d);
    text-align: center;
}

.projects-cta .cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.projects-cta .cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #00aeef;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
    .projects-title {
        font-size: 48px;
    }
    
    .projects-subtitle {
        font-size: 28px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-hero::before {
        width: 100%;
        opacity: 0.2;
    }
    
    .projects-title {
        font-size: 36px;
    }
    
    .projects-subtitle {
        font-size: 24px;
    }
    
    .projects-description {
        font-size: 16px;
    }
    
    .projects-hero-content {
        text-align: center;
    }
    
    .projects-hero-buttons {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .project-item {
        flex-direction: column;
        margin-bottom: 50px;
    }
    
    .project-item.reverse {
        flex-direction: column;
    }
    
    .project-image {
        width: 100%;
    }
    
    .project-img {
        height: 250px;
    }
    
    .project-content {
        padding: 30px;
    }
    
    .project-features ul {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .projects-cta .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .projects-title {
        font-size: 28px;
    }
    
    .projects-subtitle {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .project-content h3 {
        font-size: 24px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .projects-cta .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}