/*
 * PackersAndMoversHub NCR - Premium Enterprise Design System & Glassmorphism Styling
 */

@layer base {
    body {
        font-feature-settings: "cv02", "cv03", "cv04", "cv11";
        -webkit-font-smoothing: antialiased;
    }
}

/* Background Grid & Ambient Glows */
.bg-grid-pattern {
    background-size: 32px 32px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

.hero-radial-glow {
    background: radial-gradient(circle at 50% 15%, rgba(245, 158, 11, 0.18) 0%, rgba(15, 23, 42, 0) 65%);
}

.ambient-glow-amber {
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.22) 0%, transparent 70%);
}

.ambient-glow-indigo {
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.18) 0%, transparent 70%);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.glass-card-hover {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-hover:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 25px 45px -12px rgba(245, 158, 11, 0.15), 0 0 0 1px rgba(245, 158, 11, 0.2);
}

/* Shimmer Tag Effect */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-shimmer {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0.35) 50%, rgba(245, 158, 11, 0.12) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

/* FAQ Accordion Transitions */
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

::-webkit-scrollbar-track {
    background: #05070d;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 9999px;
    border: 2px solid #05070d;
}

::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

/* Pulse Glow */
@keyframes pulse-subtle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.03); }
}

.animate-pulse-subtle {
    animation: pulse-subtle 3s infinite ease-in-out;
}
