/* Services Page Placeholder Styles */

.service-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-teal), #5A8A8A);
    border-radius: 12px;
    padding: 60px 40px;
    min-height: 300px;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.05) 20px,
        rgba(255, 255, 255, 0.05) 40px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.service-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.placeholder-icon {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
}

.service-placeholder:hover .placeholder-icon {
    transform: scale(1.1);
}

.service-placeholder p {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Ensure consistent sizing with actual images */
.service-visual {
    min-height: 300px;
    display: flex;
    align-items: center;
}

.service-image {
    border-radius: 12px;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-placeholder {
        padding: 40px 20px;
        min-height: 250px;
    }

    .placeholder-icon svg {
        width: 60px;
        height: 60px;
    }

    .service-placeholder p {
        font-size: 1.1rem;
    }
}