/* Digital Printing Specific Styles */

/* Digital Service Cards */
.digital-service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.digital-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top-color: var(--secondary-color);
}

.digital-service-icon {
    color: var(--secondary-color);
}

/* Why Choose Cards */
.why-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-icon {
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Calculator Card */
.calculator-card {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Portfolio Items */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-item img {
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Service Highlights */
.service-highlights {
    background-color: rgba(230, 57, 70, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

/* Hero Buttons for Digital Printing */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

/* File Upload */
#fileUpload {
    animation: fadeIn 0.3s ease;
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
}

.accordion-button:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(230, 57, 70, 0.25);
}

/* Price Calculator Result Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .calculator-card {
        padding: 20px !important;
    }
}

@media (max-width: 576px) {
    .portfolio-item {
        margin-bottom: 15px;
    }
    
    .cta-section .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}