@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* Main CSS Variables (Dynamic Light Accent Tokens) */
:root {
    --brand-accent: #6366f1;
    --brand-accent-rgb: 99, 102, 241;
}

/* Base resets & light background gradients to match live site exactly */
body {
    background: radial-gradient(circle at center, #F5F9FD 0%, #D4E3F3 100%) !important;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    box-shadow: inset 0 0 120px rgba(59, 130, 246, 0.08) !important;
    margin: 0;
    padding: 0;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: #0f172a;
}

p {
    color: #475569;
}

/* Premium Light Glassmorphism Panel styles */
.glass-panel {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(16px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(120%) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05),
                0 1px 1px rgba(0, 0, 0, 0.02) !important;
}

.glass-panel-light {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.03) !important;
}

/* Custom inputs for light mode */
.custom-input {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
    transition: all 0.3s ease;
}

.custom-input::placeholder {
    color: #94a3b8 !important;
}

.custom-input:focus {
    outline: none !important;
    border-color: var(--brand-accent) !important;
    box-shadow: 0 0 0 4px rgba(var(--brand-accent-rgb), 0.15) !important;
}

/* Pulse glow effect overlay mapping */
.pulse-glow-effect {
    animation: slowPulse 6s ease-in-out infinite alternate;
}

@keyframes slowPulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.08); opacity: 0.5; }
}

/* Micro-animations */
.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--brand-accent);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Lead modal animation configurations */
.modal-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* Custom Scrollbar for list items */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Multi-brand Card custom hover effects matching live site exactly */
.brand-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 255, 255, 0.85) !important;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08) !important;
    background: #ffffff !important;
}

.brand-card-hp:hover {
    border-color: #0096D6 !important;
}

.brand-card-canon:hover {
    border-color: #D4001A !important;
}

.brand-card-epson:hover {
    border-color: #003399 !important;
}

.brand-card-brother:hover {
    border-color: #0057A8 !important;
}

/* Force 2 columns on mobile and 4 columns on desktop */
.brand-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

@media (min-width: 1024px) {
    .brand-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 32px !important;
    }
}

/* Footer Heading overrides to ensure bright white legibility */
footer h4 {
    color: #ffffff !important;
}

