/* --- 1. Global & Smooth Scroll --- */
html {
    scroll-behavior: smooth; /* Ensures links to #reviews and #faq glide smoothly */
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #f8fafc; /* bg-slate-50 */
    color: #0f172a; /* text-slate-900 */
}

/* --- 2. Hero & Backgrounds --- */
.hero-section {
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    position: relative;
    overflow: hidden;
}

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 10px;
}

/* --- 3. License Plate Styling --- */
/* Matches the single-line high-end professional look */
#kenteken-input {
    font-family: 'Segoe UI', 'Arial Black', sans-serif;
    letter-spacing: 0.05em;
}

.nl-plate-container {
    background: #FFD700;
    border: 2px solid #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nl-plate-blue {
    background: #003399;
    height: 100%;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

/* --- 4. Tab & Menu Animations --- */
.tab-btn.active {
    color: #3b82f6;
    border-bottom: 3px solid #3b82f6;
}

#mobile-menu {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 5. Review Section & Marquee --- */
.trust-section {
    background-color: #0f172a;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    scroll-margin-top: 80px; /* Offset for sticky header */
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-wrapper {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 10px 0;
}

.track-1 { animation: scroll-left 70s linear infinite; }
.track-2 { animation: scroll-right 80s linear infinite; }

.marquee-container:hover .marquee-wrapper {
    animation-play-state: paused;
}

/* Elite Review Cards */
.elite-card {
    width: 360px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
    .elite-card {
        width: 260px;
        padding: 20px;
        border-radius: 20px;
    }
}

.elite-stars { color: #fbbf24; font-size: 9px; display: flex; gap: 2px; }
.elite-time { font-size: 8px; color: #3b82f6; font-weight: 900; text-transform: uppercase; font-style: italic; }
.elite-quote { font-size: 13px; color: #94a3b8; line-height: 1.5; margin: 12px 0; font-style: italic; }
.elite-user { font-size: 10px; font-weight: 900; color: #f8fafc; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.user-dot { width: 5px; height: 5px; background: #3b82f6; border-radius: 50%; box-shadow: 0 0 8px #3b82f6; }

/* --- 6. FAQ Auto-Close Styling --- */
.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* High enough to fit content */
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: #3b82f6;
}

/* --- 7. Professional Components --- */
.premium-trust-bar {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

.status-dot {
    height: 5px;
    width: 5px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #22c55e;
    animation: simple-pulse 2s infinite;
}

@keyframes simple-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Report Feature Items */
.report-feature-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.report-feature-item:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    background: #fafcfd;
}