/* Upcoming Projects Home Section Styling */
.upcoming-projects-home {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f4f7f6 100%);
    overflow: hidden;
}

.upcoming-projects-home .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.upcoming-projects-home .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.upcoming-projects-home .section-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.upcoming-projects-home .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #c5a059;
    /* Gold color */
}

.upcoming-projects-home .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 0;
}

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

.project-home-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.project-home-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

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

.project-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(197, 160, 89, 0.9);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.project-home-content {
    padding: 25px;
    flex-grow: 1;
}

.project-home-content h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.project-home-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-location {
    display: flex;
    align-items: center;
    color: #c5a059;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.project-location i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .projects-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .upcoming-projects-home .section-header h2 {
        font-size: 2rem;
    }

    .projects-home-grid {
        grid-template-columns: 1fr;
    }

    .project-home-image {
        height: 200px;
    }
}