/* ATK Page Specific Styles */

/* ATK Hero Section */
.atk-hero {
    background: linear-gradient(135deg, rgba(25, 130, 196, 0.9) 0%, rgba(12, 83, 138, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding-top: 120px;
}

/* ATK Category Cards */
.atk-category-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;
}

.atk-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top-color: var(--secondary-color);
}

.atk-category-icon {
    color: var(--secondary-color);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ATK Product Cards */
.atk-product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.atk-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.atk-product-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.atk-product-card:hover .card-img-top {
    transform: scale(1.05);
}

.atk-product-card .card-body {
    padding: 1.5rem;
}

.atk-product-card .card-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.atk-product-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.atk-product-card .btn-outline-danger {
    border-width: 2px;
    padding: 0.375rem 0.75rem;
    transition: all 0.2s ease;
}

.atk-product-card .btn-outline-danger:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

/* Product Badge */
.atk-product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* Why Choose Us Cards (Reuse from digital-printing) */
.why-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.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;
    margin-bottom: 1rem;
}

/* Corporate Service Cards */
.corporate-service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid transparent;
}

.corporate-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-left-color: var(--secondary-color);
}

.corporate-service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.corporate-service-card ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.corporate-service-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

.corporate-service-card li:last-child {
    margin-bottom: 0;
}

/* Service Highlights (Reuse from digital-printing) */
.service-highlights {
    background-color: rgba(230, 57, 70, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

/* Contact Form */
.service-contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(230, 57, 70, 0.25);
}

/* 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);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c0392b 100%);
    padding: 4rem 0;
    color: white;
}

.cta-section .btn-light {
    background-color: white;
    color: var(--secondary-color);
    font-weight: 600;
}

.cta-section .btn-outline-light {
    border-width: 2px;
}

.cta-section .btn-outline-light:hover {
    background-color: white;
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer .social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Product Catalog Animation */
.atk-product-card {
    animation: fadeIn 0.5s ease forwards;
}

.atk-product-card:nth-child(1) { animation-delay: 0.1s; }
.atk-product-card:nth-child(2) { animation-delay: 0.2s; }
.atk-product-card:nth-child(3) { animation-delay: 0.3s; }
.atk-product-card:nth-child(4) { animation-delay: 0.4s; }

/* Category Cards Animation */
.atk-category-card {
    animation: fadeIn 0.6s ease forwards;
}

.atk-category-card:nth-child(1) { animation-delay: 0.1s; }
.atk-category-card:nth-child(2) { animation-delay: 0.2s; }
.atk-category-card:nth-child(3) { animation-delay: 0.3s; }
.atk-category-card:nth-child(4) { animation-delay: 0.4s; }
.atk-category-card:nth-child(5) { animation-delay: 0.5s; }
.atk-category-card:nth-child(6) { animation-delay: 0.6s; }
.atk-category-card:nth-child(7) { animation-delay: 0.7s; }
.atk-product-card:nth-child(8) { animation-delay: 0.8s; }

/* Badge Styles */
.badge {
    font-weight: 600;
    padding: 0.5em 1em;
}

.badge.bg-success {
    background-color: #28a745 !important;
}

.badge.bg-danger {
    background-color: var(--secondary-color) !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-contact-form {
        padding: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .atk-hero {
        padding-top: 100px;
        text-align: center;
    }
    
    .atk-hero h1 {
        font-size: 2.5rem;
    }
    
    .atk-category-card,
    .atk-product-card {
        margin-bottom: 20px;
    }
    
    .service-contact-form {
        padding: 1.5rem;
    }
    
    .corporate-service-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .atk-hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer .social-icons {
        justify-content: center;
    }
    
    .cta-section .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cta-section .row {
        text-align: center;
    }
}

/* Hover Effects Enhancement */
.atk-category-card:hover .atk-category-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
    background-color: var(--secondary-color);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}

/* Form Checkbox Customization */
.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.form-check-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(230, 57, 70, 0.25);
}

/* Section Spacing */
.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}