/* Custom styles to complement TailwindCSS */

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

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

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

/* Hover effects for cards */
.hover-lift:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Custom gradient backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #1B365D 0%, #334155 50%, #059669 100%);
}

.gradient-teal {
    background: linear-gradient(135deg, #059669 0%, #16A34A 100%);
}

/* Form focus states */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* Button hover animations */
.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.2);
    transition: all 0.3s ease;
}

/* Mobile menu transition */
.mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Loading states */
.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success animations */
@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.checkmark {
    animation: checkmark 0.5s ease-in-out;
}

/* Responsive typography improvements */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-text {
        font-size: 1.125rem;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: #059669;
    border-radius: 4px;
}

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

/* Accessibility improvements */
.focus-visible:focus {
    outline: 2px solid #059669;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .no-print {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

/* Dark mode support (if needed later) */
@media (prefers-color-scheme: dark) {
    .dark-mode-auto {
        background-color: #1a1a1a;
        color: #ffffff;
    }
}