.projects-hero {
    background: linear-gradient(135deg, #0f172a 0%, #111827 55%, #1f2937 100%);
    padding: 84px 0 72px;
}

.projects-hero-content {
    max-width: 780px;
}

.projects-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fca5a5;
    border: 1px solid rgba(252, 165, 165, 0.35);
    background: rgba(239, 68, 68, 0.08);
    padding: 7px 12px;
    border-radius: 9999px;
    margin-bottom: 16px;
}

.projects-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 16px;
}

.projects-subtitle {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.65;
    color: #cbd5e1;
}

.projects-section {
    background: #f4f6f8;
    padding: 72px 0 96px;
}

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

.project-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0px 8px 20px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: 0px 14px 28px rgba(15, 23, 42, 0.12);
}

.project-image {
    width: 100%;
    height: 206px;
    object-fit: cover;
    display: block;
    background: #dbeafe;
}

.project-body {
    padding: 20px 20px 22px;
}

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

.project-city {
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.3px;
}

.project-status {
    font-size: 12px;
    font-weight: 700;
    color: #166534;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    border-radius: 9999px;
    padding: 4px 10px;
}

.project-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.project-description {
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
}

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .projects-hero {
        padding: 68px 0 56px;
    }

    .projects-title {
        font-size: 34px;
    }

    .projects-subtitle {
        font-size: 16px;
    }
}
