/* Custom styles to complement Tailwind CSS */

/* Section divider */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 2rem 0;
}

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

/* Custom blue color variations */
:root {
    --blue-primary: #2563eb;
    --blue-secondary: #1d4ed8;
    --blue-light: #dbeafe;
}

/* Enhanced focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--blue-primary);
    outline-offset: 2px;
}

/* Custom hover effects for cards */
.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Gradient backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
}

/* Enhanced typography */
.prose {
    color: #374151;
    line-height: 1.75;
}

.prose p {
    margin-bottom: 1.25em;
}

/* Animation for FAQ toggles */
.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Partner toggle buttons */
.partner-toggle:hover {
    background-color: rgba(37, 99, 235, 0.05);
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Testimonial quote styling */
blockquote {
    position: relative;
}

blockquote::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: var(--blue-light);
    border-radius: 50%;
    z-index: -1;
}

/* Enhanced button styles */
.btn-primary {
    background: var(--blue-primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--blue-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

/* Responsive typography */
@media (max-width: 768px) {
    .prose {
        font-size: 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .bg-blue-600,
    .bg-blue-800 {
        background: #333 !important;
        color: white !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .text-gray-600 {
        color: #000 !important;
    }
    
    .text-blue-600 {
        color: #0000ff !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
