/* Image placeholder styles */
.commitment-placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border: 2px dashed #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 600;
    position: relative;
    height: 200px;
    border-radius: 0.5rem;
}

.hero-placeholder {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px dashed #64748b;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.hero-placeholder::before {
    content: "🏗️ Hero Background Image - Upload in Admin Panel";
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.cta-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px dashed #94a3b8;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

/* Show hero placeholder when no background image */
#hero-home:not([style*="background-image"]),
#about-hero:not([style*="background-image"]),
#services-hero:not([style*="background-image"]),
#contact-hero:not([style*="background-image"]) {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
}

#hero-home:not([style*="background-image"])::before,
#about-hero:not([style*="background-image"])::before,
#services-hero:not([style*="background-image"])::before,
#contact-hero:not([style*="background-image"])::before {
    content: "🏗️ Hero Background Image";
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fbbf24;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: 2px dashed #64748b;
}