/* Halapir Instalacije — Shared Styles */

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
}

/* Glass Navigation */
.glass-nav {
    background: rgba(246, 250, 254, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Ambient Shadow */
.ambient-shadow {
    box-shadow: 0 8px 32px rgba(23, 28, 31, 0.05);
}

/* Mobile Menu */
#mobile-menu {
    display: none;
}
#mobile-menu.open {
    display: block;
}

/* Form focus states */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(8, 107, 83, 0.2);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Status Pulse */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}
.pulse-dot {
    animation: pulse-dot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Success / Error states on form */
.form-success {
    display: none;
}
.form-success.visible {
    display: block;
}

/* Page transition */
body {
    opacity: 1;
    transition: opacity 0.15s ease;
}
