/* ===================================
   SERVICES LIGHTBOX STYLES
   =================================== */

/* Service View Button */
.service-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    opacity: 0;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
}

.service-card:hover .service-view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.service-view-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.6);
}

/* Service Image Hover Enhancement */
.service-image {
    cursor: pointer;
}

.service-card:hover .service-image-overlay {
    background: linear-gradient(
        180deg, 
        rgba(201, 169, 97, 0.1) 0%,
        rgba(201, 169, 97, 0.3) 60%,
        rgba(201, 169, 97, 0.5) 100%
    );
}

/* Services Lightbox Modal - Reuse Catalog Lightbox Structure */
.services-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-lightbox.active {
    display: flex;
    opacity: 1;
}

/* Reuse same lightbox structure as catalog */
.services-lightbox .lightbox-container,
.services-lightbox .lightbox-close,
.services-lightbox .lightbox-nav,
.services-lightbox .lightbox-content,
.services-lightbox .lightbox-viewer,
.services-lightbox .lightbox-info {
    /* Inherit styles from catalog lightbox */
}

/* Services specific info styling */
.services-lightbox .service-features {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}

.services-lightbox .service-features h4 {
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-lightbox .service-features ul {
    list-style: none;
    padding: 0;
}

.services-lightbox .service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.services-lightbox .service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--color-primary);
    font-size: 0.875rem;
}

/* Service Benefits Section in Lightbox */
.service-benefits {
    background: rgba(201, 169, 97, 0.1);
    border-left: 3px solid var(--color-primary);
    padding: 20px;
    margin-top: 20px;
    border-radius: 0 8px 8px 0;
}

.service-benefits h4 {
    color: var(--color-primary);
    font-size: 0.9375rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-benefits p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .service-view-btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    
    .service-card:hover .service-view-btn {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .service-view-btn {
        padding: 10px 20px;
        font-size: 0.8125rem;
        gap: 6px;
    }
}
