/* Contact Page Enhancement Styles */

/* Contact highlight cards */
.contact-highlight {
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.contact-highlight:hover .icon-circle {
    transform: scale(1.1);
}

/* Contact form enhancements */
.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form {
    border: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}

.contact-form .form-control {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
}

.contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.1);
    background: rgba(255,255,255,1);
}

.contact-form .form-select {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
}

.contact-form .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.1);
}

/* Contact info cards */
.contact-info-card {
    border: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.icon-circle-sm {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

/* Quick services styling */
.quick-services-card .service-links a {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-services-card .service-links a:hover {
    background: #f8f9fa !important;
    border-color: #e9ecef;
    transform: translateX(5px);
}

/* Emergency support card */
.emergency-support-card {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    box-shadow: 0 5px 15px rgba(220,53,69,0.3);
}

.emergency-support-card .btn {
    transition: all 0.3s ease;
}

.emergency-support-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Feature cards in why choose section */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.icon-circle-lg {
    transition: all 0.3s ease;
}

.feature-card:hover .icon-circle-lg {
    transform: scale(1.1);
}

/* Badge styling */
.badge {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Custom hover effects */
.hover-bg-light:hover {
    background-color: #f8f9fa !important;
}

/* Section padding consistency */
.section-padding {
    padding: 80px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .contact-highlight {
        margin-bottom: 2rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}

/* Animation classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Form validation styling */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,0.1);
}

.form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40,167,69,0.1);
}

/* Button enhancements */
.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Contact page specific about cards */
.about-card {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.05);
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: rgba(255,255,255,1);
}

/* IT Documentation page specific styles */

/* Step process styles */
.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: rgba(255,255,255,1);
}


.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.step-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}
.step-success {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
}
.step-info {
    background: linear-gradient(135deg, #17a2b8 0%, #117a8b 100%);
}
.step-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #333;
}

.step-item:hover .step-number {
    transform: scale(1.1);
}

.step-content {
    flex: 1;
}

.step-content h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Feature highlight styles */
.feature-highlight {
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: rgba(255,255,255,1);
}

.feature-highlight .icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.feature-highlight:hover .icon-circle {
    transform: scale(1.1);
}

/* Service card enhancements */
.service-card.style-1 {
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card.style-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: rgba(255,255,255,1);
}

.service-card.style-1 .icon {
    transition: transform 0.3s ease;
}

.service-card.style-1:hover .icon {
    transform: scale(1.1);
}

/* Choose card enhancements */
.choose-card {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.choose-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: rgba(255,255,255,1);
}

.choose-card .icon {
    transition: transform 0.3s ease;
}

.choose-card:hover .icon {
    transform: scale(1.1) translateX(5px);
}

/* Hero badge styling */
.hero-badge .badge {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Button enhancements */
.btn.rounded-pill {
    transition: all 0.3s ease;
}

.btn.rounded-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-outline-primary.rounded-pill:hover {
    background: #007bff;
    border-color: #007bff;
    color: white;
}
