/* Projects Coming Soon Page Styles */
.coming-soon {
    padding: 4rem 0;
    text-align: center;
}

.coming-soon-content {
    max-width: 900px;
    margin: 0 auto;
}

.construction-icon {
    margin-bottom: 2rem;
}

.construction-icon svg {
    width: 80px;
    height: 80px;
    fill: var(--primary-color);
}

.coming-soon h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.reassurance {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.coming-soon-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.detail-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-icon {
    margin-bottom: 1rem;
}

.detail-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--primary-color);
}

.detail-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.detail-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.cta-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .coming-soon h2 {
        font-size: 1.8rem;
    }
    
    .reassurance {
        font-size: 1.1rem;
    }
    
    .coming-soon-details {
        grid-template-columns: 1fr;
    }
}