/* Custom Navy Colors */
.text-navy-50 { color: #f8fafc; }
.text-navy-100 { color: #f1f5f9; }
.text-navy-200 { color: #e2e8f0; }
.text-navy-300 { color: #cbd5e1; }
.text-navy-400 { color: #94a3b8; }
.text-navy-500 { color: #64748b; }
.text-navy-600 { color: #475569; }
.text-navy-700 { color: #334155; }
.text-navy-800 { color: #1e293b; }
.text-navy-900 { color: #0f172a; }

.bg-navy-50 { background-color: #f8fafc; }
.bg-navy-100 { background-color: #f1f5f9; }
.bg-navy-200 { background-color: #e2e8f0; }
.bg-navy-300 { background-color: #cbd5e1; }
.bg-navy-400 { background-color: #94a3b8; }
.bg-navy-500 { background-color: #64748b; }
.bg-navy-600 { background-color: #475569; }
.bg-navy-700 { background-color: #334155; }
.bg-navy-800 { background-color: #1e293b; }
.bg-navy-900 { background-color: #0f172a; }

.hover\:bg-navy-800:hover { background-color: #1e293b; }
.hover\:text-navy-900:hover { color: #0f172a; }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

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

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

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

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

/* Gradient backgrounds */
.bg-gradient-navy {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
}

/* Floating button styles */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.3);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(15, 23, 42, 0.4);
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Badge styles */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.badge-success {
    background-color: #10b981;
    color: white;
}

.badge-success:hover {
    background-color: #059669;
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #0f172a;
    color: white;
}

.btn-primary:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #f97316;
    border: 2px solid #f97316;
}

.btn-secondary:hover {
    background-color: #f97316;
    color: white;
}

/* Star rating */
.star {
    color: #fbbf24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-btn i {
        font-size: 1rem;
    }
}

/* Focus states for accessibility */
.btn:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #0f172a;
    outline-offset: 2px;
}

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

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0f172a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

