/* IT Solution Specific Styles */

/* IT Hero Section */
.it-solution-hero {
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.9) 0%, rgba(21, 67, 96, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?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;
}

/* IT Service Cards */
.it-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;
}

.it-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top-color: var(--secondary-color);
}

.it-service-icon {
    color: var(--secondary-color);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hardware Cards */
.hardware-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.hardware-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hardware-badge {
    position: absolute;
    top: 15px;
    left: 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;
}

.hardware-image {
    height: 180px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.hardware-image img {
    max-height: 140px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.hardware-card:hover .hardware-image img {
    transform: scale(1.05);
}

.hardware-info h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.hardware-specs {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
}

.hardware-specs i {
    width: 20px;
    color: var(--secondary-color);
    margin-right: 5px;
}

.hardware-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.inquiry-btn {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.inquiry-btn:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}

/* Business Solution Cards */
.business-solution-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;
}

.business-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-left-color: var(--secondary-color);
}

.business-solution-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.business-solution-card ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.business-solution-card li {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.business-solution-card li:last-child {
    margin-bottom: 0;
}

/* Process Steps */
.process-step {
    position: relative;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3);
}

.step-icon {
    color: var(--secondary-color);
    width: 60px;
    height: 60px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* IT Consultation Form */
.it-consultation-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.it-consultation-form .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Brand Logos */
.brand-logo {
    height: 60px;
    object-fit: contain;
    padding: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Service Highlights (Reuse) */
.service-highlights {
    background-color: rgba(230, 57, 70, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

/* Why Choose Cards (Reuse) */
.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;
}

/* Contact Form (Reuse) */
.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);
}

/* CTA Section (Reuse) */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c0392b 100%);
    padding: 4rem 0;
    color: white;
}

/* Badge Styles */
.badge {
    font-weight: 600;
    padding: 0.5em 1em;
}

.badge.bg-info {
    background-color: #17a2b8 !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes stepAppear {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-step {
    animation: stepAppear 0.6s ease forwards;
}

/* Hardware Card Animation */
.hardware-card {
    animation: fadeIn 0.5s ease forwards;
}

.hardware-card:nth-child(1) { animation-delay: 0.1s; }
.hardware-card:nth-child(2) { animation-delay: 0.2s; }
.hardware-card:nth-child(3) { animation-delay: 0.3s; }
.hardware-card:nth-child(4) { animation-delay: 0.4s; }

/* Process Step Animation */
.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .it-consultation-form {
        padding: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .it-solution-hero {
        padding-top: 100px;
        text-align: center;
    }
    
    .it-solution-hero h1 {
        font-size: 2.5rem;
    }
    
    .it-service-card,
    .hardware-card,
    .business-solution-card {
        margin-bottom: 20px;
    }
    
    .brand-logo {
        height: 50px;
    }
    
    .hardware-image {
        height: 150px;
    }
    
    .hardware-info h5 {
        font-size: 1rem;
    }
    
    .hardware-specs {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .it-solution-hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .it-consultation-form {
        padding: 1.5rem;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .cta-section .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* 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);
}