
/* Base styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
body {
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s ease;
    background-color: #f8fafc;
    padding-top: 0;
}
/* Smooth transitions for dark mode toggle */
.dark-transition * {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

::-webkit-scrollbar-thumb {
    background: #6366f1;
    border-radius: 4px;
}
.dark ::-webkit-scrollbar-track {
    background: #111827;
}

.dark ::-webkit-scrollbar-thumb {
    background: #6366f1;
    border: 1px solid #4f46e5;
}
/* Custom focus styles */
:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

/* Help card hover effect */
help-card {
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

help-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.3);
    border-color: #c7d2fe;
}
/* Details animation */
details[open] summary ~ * {
    animation: sweep 0.3s ease-in-out;
}

@keyframes sweep {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Live Chat Widget Styles */
.live-chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #6366f1;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4), 0 0 0 2px white, 0 0 0 4px rgba(99, 102, 241, 0.2);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}
.live-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.live-chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Chat widget animations */
@keyframes chatPulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7), 0 0 0 2px white, 0 0 0 4px rgba(99, 102, 241, 0.2); }
    70% { box-shadow: 0 0 0 12px rgba(99, 102, 241, 0), 0 0 0 2px white, 0 0 0 4px rgba(99, 102, 241, 0.2); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0), 0 0 0 2px white, 0 0 0 4px rgba(99, 102, 241, 0.2); }
}

/* Card visibility */
.support-card {
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.dark .support-card {
    border-color: #374151;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.2);
}

/* Form inputs */
input, textarea, select {
    border: 1px solid #e2e8f0 !important;
    background-color: white !important;
    padding: 0.75rem 1rem !important;
}

.dark input, .dark textarea, .dark select {
    border-color: #374151 !important;
    background-color: #1f2937 !important;
}

/* Buttons */
button:not(.live-chat-button), .btn {
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    border: 1px solid transparent;
}

button:not(.live-chat-button):hover, .btn:hover {
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

/* Dark mode adjustments */
.dark body {
    background-color: #111827;
}

.dark .bg-white {
    background-color: #1f2937 !important;
}

.dark .bg-gray-100 {
    background-color: #1f2937 !important;
}
.live-chat-button.pulse {
    animation: chatPulse 1.5s infinite;
}
/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-text {
        font-size: 2.5rem;
    }
}