
/* Reviews Carousel Styles */
.reviews-carousel {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-slide {
    min-width: 100%;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .review-slide {
        min-width: 33.333%;
    }
}
/* Header scroll styles */
.header-scrolled {
    background-color: var(--primary-blue) !important;
}

.header-scrolled .text-slate-gray {
    color: white !important;
}

.header-scrolled .hover\:text-primary-blue:hover {
    color: white !important;
}

/* Additional styles not covered by Tailwind */
/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* Focus states for keyboard navigation */
.focus-visible:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Loading animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading {
    animation: spin 1s linear infinite;
}

/* Success message animation */
@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

/* Error message styling */
.error {
    border-color: #ef4444 !important;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(135deg, rgba(29, 78, 216, 0.65) 0%, rgba(30, 58, 138, 0.7) 100%);
    }
}
/* Smooth transitions for all interactive elements */
a, button, input, select, textarea {
    transition: all 0.2s ease;
}
/* Navigation hover effects */
header nav a {
    transition: font-weight 0.3s ease, transform 0.3s ease;
}

header nav a:hover {
    font-weight: 600 !important;
    transform: translateY(-1px);
}

/* Smooth font weight transition with intermediate steps */
@keyframes bolden {
    0% { font-weight: 400; }
    50% { font-weight: 500; }
    100% { font-weight: 600; }
}

header nav a:hover {
    animation: bolden 0.3s ease forwards;
}
/* Print styles */
@media print {
    header, footer, #chatToggle, #chatWindow {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}