/* MNCApp Custom Styles */

/* Base Styles */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FF6B35;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E55A2B;
}

/* Selection color */
::selection {
    background-color: #FF6B35;
    color: white;
}

::-moz-selection {
    background-color: #FF6B35;
    color: white;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Custom gradient background */
.gradient-bg {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
}

/* Service cards hover effect */
.service-card {
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

/* Button hover effects */
button {
    cursor: pointer;
}

button:hover {
    transform: translateY(-1px);
}

/* Form focus states */
input:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Loading animation for form submission */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading .submit-text::after {
    content: '...';
    animation: pulse 1s infinite;
}

/* Success message styling */
#successMessage {
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

#successMessage.show {
    transform: translateY(0);
}

/* Responsive design improvements */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 640px) {
    .grid.lg\\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Accessibility improvements */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}

/* Smooth transitions for interactive elements */
a, button {
    transition: all 0.3s ease;
}

/* Custom utility classes */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Print styles */
@media print {
    .sticky {
        position: static;
    }
    
    button {
        display: none;
    }
    
    .shadow-lg,
    .shadow-xl {
        box-shadow: none;
        border: 1px solid #e5e5e5;
    }
}