.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    -webkit-transition: all 0.8s ease !important;
    -moz-transition: all 0.8s ease !important;
    transition: all 0.8s ease !important;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: transform 1s ease !important;
    -moz-transition: transform 1s ease !important;
    transition: transform 1s ease !important;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: var(--accent-renk);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
}

.project-content {
    padding: 24px;
}

.project-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--yazi-renk);
    margin-bottom: 8px;
}

.project-title a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: color 0.3s ease !important;
    -moz-transition: color 0.3s ease !important;
    transition: color 0.3s ease !important;
}

.project-title a:hover {
    color: var(--accent-renk);
}

.project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--acik-yazi);
    margin-bottom: 16px;
}

.project-location i {
    color: var(--accent-renk);
}

.project-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--acik-yazi);
    margin-bottom: 20px;
}

.project-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 20px;
}

.project-info-item {
    text-align: center;
}

.project-info-item span {
    display: block;
    font-size: 12px;
    color: var(--acik-yazi);
    margin-bottom: 4px;
}

.project-info-item strong {
    font-size: 16px;
    color: var(--yazi-renk);
}

.project-price {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--acik-yazi);
    margin-bottom: 4px;
}

.project-price strong {
    font-size: 22px;
    color: var(--accent-renk);
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--ana-renk);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    -webkit-transition: all 0.4s ease !important;
    -moz-transition: all 0.4s ease !important;
    transition: all 0.4s ease !important;
}

.project-btn:hover {
    background: var(--accent-renk);
    color: #fff;
}

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 220px;
    }
}