/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap');

/* === BASE & SCROLLBAR === */
html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0b1117;
}

::-webkit-scrollbar-thumb {
    background: #233345;
    border-radius: 4px;
}

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

/* === UTILITY EFFECTS === */
.bg-grid-pattern {
    background-image: radial-gradient(rgba(255, 84, 0, 0.08) 1px, transparent 0);
    background-size: 24px 24px;
}

.industrial-border {
    position: relative;
}

.industrial-border::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 48px;
    height: 3px;
    background-color: #ff5400;
}

/* === CARD HOVER EFFECT === */
.service-card {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 84, 0, 0.4);
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.7), 0 0 15px -3px rgba(255, 84, 0, 0.15);
}

/* Pulsing call badge */
@keyframes signalPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 84, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(255, 84, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 84, 0, 0);
    }
}

.pulse-signal {
    animation: signalPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

/* Print styles for price list */
@media print {
    header, footer, .no-print, #chat-widget-btn, #chat-window, #bottom-dock-nav, #callback-modal {
        display: none !important;
    }
    body {
        background: #ffffff !important;
        color: #000000 !important;
    }
    .print-only {
        display: block !important;
    }
}
