@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Components/AutocompleteInput.razor.rz.scp.css */
.autocomplete-container[b-l5o2v5ksyf] {
    position: relative;
    width: 100%;
}

.autocomplete-dropdown[b-l5o2v5ksyf] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg-light);
    border-radius: 1rem;
    box-shadow:
        6px 6px 18px var(--color-shadow-dark),
        -6px -6px 18px var(--color-shadow-light);
    margin-top: 8px;
    max-height: 320px;
    overflow: hidden;
    animation: dropdownFadeIn-b-l5o2v5ksyf 0.2s ease-out;
}

.autocomplete-dropdown.scrollable[b-l5o2v5ksyf] {
    overflow-y: auto;
}

.autocomplete-item[b-l5o2v5ksyf] {
    padding: 1rem;
    color: var(--color-primary-dark);
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
    border-bottom: 1px solid rgba(214, 209, 204, 0.3);
    user-select: none;
    text-align: left;
}

.autocomplete-item:last-child[b-l5o2v5ksyf] {
    border-bottom: none;
}

.autocomplete-item:hover[b-l5o2v5ksyf] {
    background: linear-gradient(145deg, #f0ebe6, #ffffff);
    transform: translateX(2px);
}
    
.autocomplete-item.selected[b-l5o2v5ksyf] {
    background: linear-gradient(145deg, #e8e3de, #f5f0eb);
    transform: translateX(2px);
    box-shadow:
        inset 3px 3px 8px var(--color-shadow-dark-inset),
        inset -3px -3px 8px var(--color-shadow-light-inset);
    border-left: 3px solid var(--color-primary-dark);
}

.autocomplete-item:active[b-l5o2v5ksyf] {
    transform: translateX(1px);
    box-shadow:
        inset 4px 4px 10px var(--color-shadow-dark-inset),
        inset -4px -4px 10px var(--color-shadow-light-inset);
}

.autocomplete-dropdown.scrollable[b-l5o2v5ksyf]::-webkit-scrollbar {
    width: 8px;
}

.autocomplete-dropdown.scrollable[b-l5o2v5ksyf]::-webkit-scrollbar-track {
    background: #f0ebe6;
    border-radius: 4px;
    margin: 8px 0;
}

.autocomplete-dropdown.scrollable[b-l5o2v5ksyf]::-webkit-scrollbar-thumb {
    background: #d6d1cc;
    border-radius: 4px;
    box-shadow:
        inset 2px 2px 4px #c4bfba,
        inset -2px -2px 4px #e8e3de;
}

.autocomplete-dropdown.scrollable[b-l5o2v5ksyf]::-webkit-scrollbar-thumb:hover {
    background: #c4bfba;
}

@keyframes dropdownFadeIn-b-l5o2v5ksyf {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.field[b-l5o2v5ksyf] {
    flex: 1;
    min-width: 250px;
}

.field.half[b-l5o2v5ksyf] {
    flex: 1;
    min-width: 250px;
}

.form-input[b-l5o2v5ksyf] {
    width: 100%;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--color-bg-light);
    box-shadow:
        6px 6px 18px var(--color-shadow-dark),
        -6px -6px 18px var(--color-shadow-light);
    font-size: 1rem;
    color: var(--color-primary-dark);
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    transition: transform 180ms ease, box-shadow 180ms ease;
    will-change: transform, box-shadow;
    outline: none;
}

.form-input[b-l5o2v5ksyf]::placeholder {
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-input:hover[b-l5o2v5ksyf] {
    transform: translateY(-1px);
}

.form-input:focus[b-l5o2v5ksyf] {
    outline-color: var(--color-bg-light);
    background: var(--color-bg-light);
    transform: translateY(0);
    box-shadow:
        inset 6px 6px 12px var(--color-shadow-dark-inset),
        inset -6px -6px 12px var(--color-shadow-light-inset);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.form-input.validation-error[b-l5o2v5ksyf] {
    box-shadow:
        6px 6px 18px var(--color-shadow-dark),
        -6px -6px 18px var(--color-shadow-light),
        0 0 0 1px var(--color-accent-golden),
        0 0 12px rgba(242, 205, 136, 0.4);
}

.form-input.validation-error:hover[b-l5o2v5ksyf] {
    transform: translateY(-1px);
}

.form-input.validation-error:focus[b-l5o2v5ksyf] {
    outline-color: var(--color-bg-light);
    background: var(--color-bg-light);
    transform: translateY(0);
    box-shadow:
        inset 6px 6px 12px var(--color-shadow-dark-inset),
        inset -6px -6px 12px var(--color-shadow-light-inset);
    transition: transform 180ms ease, box-shadow 180ms ease;
}
/* /Components/Button.razor.rz.scp.css */
.neumorphism-btn[b-tt1s78qx9v] {
    padding: 12px 28px;
    border: none;
    border-radius: 28px;
    background: var(--color-bg-light);
    color: var(--color-primary-dark);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
    will-change: transform, box-shadow;
    box-shadow:
        6px 6px 18px var(--color-shadow-dark),
        -6px -6px 18px var(--color-shadow-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

.neumorphism-btn:hover[b-tt1s78qx9v] {
    transform: translateY(-1px);
    color: var(--color-accent-golden);
    box-shadow:
        8px 8px 20px var(--color-shadow-dark-hover),
        -8px -8px 20px var(--color-shadow-light-hover);
    text-decoration: none;
}

.neumorphism-btn:active[b-tt1s78qx9v] {
    transform: translateY(0);
    box-shadow:
        inset 6px 6px 12px var(--color-shadow-dark-inset),
        inset -6px -6px 12px var(--color-shadow-light-inset);
}

.neumorphism-btn:visited[b-tt1s78qx9v] {
    color: var(--color-primary-dark);
    text-decoration: none;
}

.neumorphism-btn:visited:hover[b-tt1s78qx9v] {
    color: var(--color-accent-golden);
    text-decoration: none;
}

.neumorphism-btn.disabled[b-tt1s78qx9v] {
    background: #e6e1dc;
    color: #999;
    cursor: not-allowed;
    transform: none !important;
    box-shadow:
        inset 4px 4px 10px #d0cbc6,
        inset -4px -4px 10px #fcf7f2;
}

.neumorphism-btn.disabled:hover[b-tt1s78qx9v] {
    transform: none !important;
    color: #999;
    box-shadow:
        inset 4px 4px 10px #d0cbc6,
        inset -4px -4px 10px #fcf7f2;
}

.neumorphism-btn.darkgreen[b-tt1s78qx9v] {
    background: var(--color-primary-dark);
    color: #ffffff;
}

.neumorphism-btn.darkgreen:hover[b-tt1s78qx9v] {
    background: var(--color-bg-light);
    color: var(--color-accent-golden);
    box-shadow:
        8px 8px 20px var(--color-shadow-dark-hover),
        -8px -8px 20px var(--color-shadow-light-hover);
}

.neumorphism-btn.darkgreen:visited[b-tt1s78qx9v] {
    color: #ffffff;
}

.neumorphism-btn.darkgreen:visited:hover[b-tt1s78qx9v] {
    color: var(--color-accent-golden);
}
/* /Components/CookieConsent.razor.rz.scp.css */
.cookie-banner[b-sl0jbspkur] {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1050;
}

.cookie-content[b-sl0jbspkur] {
    background: var(--color-bg-light);
    color: var(--color-primary-dark);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    max-width: 980px;
    width: calc(100% - 2rem);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-text[b-sl0jbspkur] {
    flex: 1 1 auto;
}

.cookie-text p[b-sl0jbspkur] {
    margin: 0.25rem 0 0 0;
    color: var(--color-primary-dark);
}

.cookie-actions[b-sl0jbspkur] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-accept[b-sl0jbspkur],
.btn-decline[b-sl0jbspkur] {
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-accept[b-sl0jbspkur] {
    background: var(--color-primary-dark);
    color: white;
}

.btn-decline[b-sl0jbspkur] {
    background: transparent;
    color: var(--color-primary-dark);
    border: 1px solid rgba(22,83,67,0.12);
}

@media (max-width: 600px) {
    .cookie-content[b-sl0jbspkur] {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .cookie-actions[b-sl0jbspkur] {
        justify-content: flex-end;
    }
}

/* /Components/FormInput.razor.rz.scp.css */
.field[b-xf9vhj0r68] {
    flex: 1;
    min-width: 250px;
}

.field.half[b-xf9vhj0r68] {
    flex: 1;
    min-width: 250px;
}

.form-input[b-xf9vhj0r68],
.form-textarea[b-xf9vhj0r68] {
    width: 100%;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--color-bg-light);
    box-shadow:
        6px 6px 18px var(--color-shadow-dark),
        -6px -6px 18px var(--color-shadow-light);
    font-size: 1rem;
    color: var(--color-primary-dark);
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    transition: transform 180ms ease, box-shadow 180ms ease;
    will-change: transform, box-shadow;
    outline: none;
}

.input-wrapper[b-xf9vhj0r68] {
    position: relative;
}

.form-input[b-xf9vhj0r68],
.form-textarea[b-xf9vhj0r68] {
    padding-right: 2.6rem;
    /* space for required star */
}

.form-input[b-xf9vhj0r68]::placeholder,
.form-textarea[b-xf9vhj0r68]::placeholder {
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-input:hover[b-xf9vhj0r68],
.form-textarea:hover[b-xf9vhj0r68] {
    transform: translateY(-1px);
}

.form-input:focus[b-xf9vhj0r68],
.form-textarea:focus[b-xf9vhj0r68] {
    outline-color: var(--color-bg-light);
    background: var(--color-bg-light);
    transform: translateY(0);
    box-shadow:
        inset 6px 6px 12px var(--color-shadow-dark-inset),
        inset -6px -6px 12px var(--color-shadow-light-inset);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.form-textarea[b-xf9vhj0r68] {
    resize: none;
    min-height: 240px;
}

.form-input.validation-error[b-xf9vhj0r68],
.form-textarea.validation-error[b-xf9vhj0r68] {
    border: 2px solid var(--color-accent-golden);
    box-shadow:
        6px 6px 18px var(--color-shadow-dark),
        -6px -6px 18px var(--color-shadow-light);
}

.form-input.validation-error:hover[b-xf9vhj0r68],
.form-textarea.validation-error:hover[b-xf9vhj0r68] {
    transform: translateY(-1px);
    border: 2px solid var(--color-accent-golden);
}

.form-input.validation-error:focus[b-xf9vhj0r68],
.form-textarea.validation-error:focus[b-xf9vhj0r68] {
    outline-color: var(--color-bg-light);
    background: var(--color-bg-light);
    transform: translateY(0);
    box-shadow:
        inset 6px 6px 12px var(--color-shadow-dark-inset),
        inset -6px -6px 12px var(--color-shadow-light-inset);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.field-validation-message[b-xf9vhj0r68] {
    color: var(--color-accent-golden);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
}

.inline-message[b-xf9vhj0r68] {
    font-size: 0.9rem;
    margin-top: 6px;
    color: #6b6b6b;
    text-align: left;
}

.inline-message.hint[b-xf9vhj0r68] {
    color: #6b6b6b;
    text-align: left;
}

.inline-message.error[b-xf9vhj0r68] {
    color: #b94a4a;
    text-align: left;
}

.required-star[b-xf9vhj0r68] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent-golden);
    font-weight: 700;
    pointer-events: none;
}
/* /Components/MenuToggle.razor.rz.scp.css */
.menu-toggle[b-joo4kc9hrj] {
    --button-color: var(--color-primary-dark);
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle .hamburger[b-joo4kc9hrj] {
    transition: translate 1s, rotate 1s;
    display: block;
    transform-origin: center;
    transform-box: fill-box;
}

.menu-toggle[aria-expanded="true"] .hamburger[b-joo4kc9hrj] {
    translate: 0 0;
    rotate: 0.125turn;
}

.menu-toggle .line[b-joo4kc9hrj] {
    transition: 1s;
    stroke-dasharray: 60 31 60 300;
}

.menu-toggle[aria-expanded="true"] .line[b-joo4kc9hrj] {
    stroke-dasharray: 60 105 60 300;
    stroke-dashoffset: -90;
}

.menu-toggle .hamburger[b-joo4kc9hrj] {
    width: 44px;
    height: 44px;
}

.menu-toggle.icons-mobile[b-joo4kc9hrj] {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none; 
    width: auto;
    height: auto;
}

@media (max-width: 950px) {
    .menu-toggle.icons-mobile[b-joo4kc9hrj] { display: inline-flex; }
}
/* /Components/SectionCard.razor.rz.scp.css */
.section-card[b-zrqysbxhk5] {
    background: var(--color-bg-light);
    border-radius: 25px;
    padding: 40px;
    box-shadow:
        6px 6px 18px var(--color-shadow-dark),
        -6px -6px 18px var(--color-shadow-light);
    transition: none;
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}
.section-card:hover[b-zrqysbxhk5] { transform: none; }

.section-card.highlight[b-zrqysbxhk5] {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, #f8f4ef 100%);
}

.section-card.highlight-left[b-zrqysbxhk5] { border-left: 5px solid var(--color-accent-golden); }
.section-card.highlight-right[b-zrqysbxhk5] { border-right: 5px solid var(--color-accent-golden); }

.section-card.highlight-darkgreen.highlight-left[b-zrqysbxhk5] { border-left-color: var(--color-primary-dark); }
.section-card.highlight-darkgreen.highlight-right[b-zrqysbxhk5] { border-right-color: var(--color-primary-dark); }

.section-card h2[b-zrqysbxhk5] {
    color: var(--color-primary-dark);
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-card p[b-zrqysbxhk5] {
    color: var(--color-primary-dark);
    line-height: 1.75;
    margin-bottom: 16px;
}
.section-card p:last-child[b-zrqysbxhk5] { margin-bottom: 0; }
/* /Components/SocialButton.razor.rz.scp.css */
.social-button-item[b-idldvmn0p9] {
    margin: 0;
}

.social-button[b-idldvmn0p9] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg-light);
    color: var(--color-primary-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
    will-change: transform, box-shadow;
    box-shadow:
        6px 6px 18px var(--color-shadow-dark);
}

.social-button:hover[b-idldvmn0p9] {
    transform: translateY(-1px);
    color: var(--color-accent-golden);
    box-shadow:
        8px 8px 20px var(--color-shadow-dark-hover);
}

.social-button:active[b-idldvmn0p9] {
    transform: translateY(0);
    box-shadow:
        inset 6px 6px 12px var(--color-shadow-dark-inset),
        inset -6px -6px 12px var(--color-shadow-light-inset);
}

.social-button .label[b-idldvmn0p9] {
    display: none;
}

.social-button .social-icon[b-idldvmn0p9] {
    width: 30px;
    height: 30px;
    display: inline-block;
}

:global(.social-icons.large) .social-button .social-icon[b-idldvmn0p9] {
    width: 30px;
    height: 30px;
}

@media (max-width: 500px) {
    .social-button .social-icon[b-idldvmn0p9] {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .social-button[b-idldvmn0p9] {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }

    :global(.social-icons.large) .social-button[b-idldvmn0p9] {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}

:global(.social-icons.large) .social-button[b-idldvmn0p9] {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    box-shadow:
        6px 6px 18px var(--color-shadow-dark),
        -6px -6px 18px var(--color-shadow-light);
}

:global(.social-icons.large) .social-button:hover[b-idldvmn0p9] {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow:
        8px 8px 20px var(--color-shadow-dark-hover),
        -8px -8px 20px var(--color-shadow-light-hover);
}

:global(.social-icons.large) .social-button:active[b-idldvmn0p9] {
    box-shadow:
        inset 6px 6px 12px var(--color-shadow-dark-inset),
        inset -6px -6px 12px var(--color-shadow-light-inset);
}
/* /Pages/About.razor.rz.scp.css */
.about-container[b-5ewwmnsc1z] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header[b-5ewwmnsc1z] {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 20px;
}

.about-header h1[b-5ewwmnsc1z] {
    color: var(--color-primary-dark);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-text[b-5ewwmnsc1z] {
    color: var(--color-primary-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    opacity: 0.8;
}

.about-content[b-5ewwmnsc1z] {
    display: flex;
    flex-direction: column;
    }

.about-section[b-5ewwmnsc1z] {
    background: var(--color-bg-light);
    border-radius: 25px;
    padding: 40px;
    box-shadow:
        6px 6px 18px var(--color-shadow-dark),
        -6px -6px 18px var(--color-shadow-light);
    transition: none;
}

.about-section:hover[b-5ewwmnsc1z],
.about-section.highlight:hover[b-5ewwmnsc1z] {
    transform: none !important;
}

.about-section.highlight[b-5ewwmnsc1z] {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, #f8f4ef 100%);
    border-left: 5px solid var(--color-accent-golden);
}

.about-section h2[b-5ewwmnsc1z] {
    color: var(--color-primary-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section h3[b-5ewwmnsc1z] {
    color: var(--color-primary-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section p[b-5ewwmnsc1z] {
    color: var(--color-primary-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-section p:last-child[b-5ewwmnsc1z] {
    margin-bottom: 0;
}

.about-section strong[b-5ewwmnsc1z] {
    color: var(--color-accent-golden);
    font-weight: 700;
}

.plans-title[b-5ewwmnsc1z] {
    color: var(--color-primary-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.plans-grid[b-5ewwmnsc1z] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

.plan-item[b-5ewwmnsc1z] {
    background: var(--color-bg-light);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 140px;
    transition: all 0.3s ease;
}

.plan-item:hover[b-5ewwmnsc1z] {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.plan-item-golden[b-5ewwmnsc1z] {
    background: var(--color-accent-golden);
    box-shadow: none;
}

.plan-item.plan-item-golden h3[b-5ewwmnsc1z],
.plan-item.plan-item-golden p[b-5ewwmnsc1z] {
    color: #ffffff !important;
}

.plan-item-golden:hover[b-5ewwmnsc1z] {
    box-shadow: none;
}

.plan-item.plan-item-green[b-5ewwmnsc1z] {
    background: var(--color-primary-dark);
    box-shadow: none;
}

.plan-item.plan-item-green:hover[b-5ewwmnsc1z] {
    box-shadow: none;
}

.plan-item.plan-item-green h3[b-5ewwmnsc1z],
.plan-item.plan-item-green p[b-5ewwmnsc1z] {
    color: var(--color-bg-light) !important;
}

.plan-item h3[b-5ewwmnsc1z] {
    color: var(--color-primary-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.plan-item p[b-5ewwmnsc1z] {
    font-size: 1rem;
    margin: 0;
}

.social-section[b-5ewwmnsc1z] {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;

    background: linear-gradient(135deg, #8db5a6 0%, #a3c4b7 100%);
    text-align: center;
    padding: 60px 40px;
    margin-top: 25px;
    margin-bottom: 0;

    border-radius: 0;
    box-shadow: none;
}

.social-section:hover[b-5ewwmnsc1z] {
    transform: none;
}

.social-section h2[b-5ewwmnsc1z] {
    margin-bottom: 15px;
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 600;
}

.social-section p[b-5ewwmnsc1z] {
    margin-bottom: 30px;
    color: #ffffff !important;
}

.social-section h3[b-5ewwmnsc1z] {
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-section .social-icons[b-5ewwmnsc1z] {
    gap: 20px;
}

.social-section .social-icons.large[b-5ewwmnsc1z] {
    gap: 20px;
}

.social-icons[b-5ewwmnsc1z] {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.social-icons li[b-5ewwmnsc1z] {
    margin: 0;
}

.social-icons a[b-5ewwmnsc1z] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-bg-light);
    color: var(--color-primary-dark);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover[b-5ewwmnsc1z] {
    transform: translateY(-2px);
    color: var(--color-accent-golden);
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-icons a:active[b-5ewwmnsc1z] {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-icons .label[b-5ewwmnsc1z] {
    display: none;
}

@media (max-width: 768px) {
    .about-header h1[b-5ewwmnsc1z] {
        font-size: 2.2rem;
    }

    .intro-text[b-5ewwmnsc1z] {
        font-size: 1.2rem;
    }

    .about-section[b-5ewwmnsc1z] {
        padding: 25px;
    }

    .about-section h2[b-5ewwmnsc1z] {
        font-size: 1.5rem;
    }

    .plans-grid[b-5ewwmnsc1z] {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-section[b-5ewwmnsc1z] {
        padding: 40px 30px;
    }

    .social-icons[b-5ewwmnsc1z] {
        gap: 15px;
        justify-content: center;
    }

    .social-icons a[b-5ewwmnsc1z] {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-container[b-5ewwmnsc1z] {
        padding: 0 15px;
    }

    .about-header h1[b-5ewwmnsc1z] {
        font-size: 1.8rem;
    }

    .intro-text[b-5ewwmnsc1z] {
        font-size: 1.1rem;
    }

    .about-section[b-5ewwmnsc1z] {
        padding: 20px;
    }

    .plan-item[b-5ewwmnsc1z] {
        padding: 20px;
    }

    .social-section[b-5ewwmnsc1z] {
        padding: 30px 20px;
    }
}

[b-5ewwmnsc1z] main {
    padding-bottom: 0;
}

.social-section[b-5ewwmnsc1z] {
    margin-bottom: 0;
}
/* /Pages/Ansatte.razor.rz.scp.css */
.ansatte-container[b-1j0twl3kkr] {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    min-height: 70vh;
    overflow-x: hidden;
}

.ansatte-header[b-1j0twl3kkr] {
    text-align: center;
    margin-top: 20px;
    padding: 0;
    margin-left: -3rem;
    margin-right: -3rem;
    width: calc(100% + 6rem);
    padding-left: 3rem;
    padding-right: 3rem;
}

.intro-text[b-1j0twl3kkr] {
    color: var(--color-primary-dark);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.carousel-wrapper[b-1j0twl3kkr] {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    touch-action: pan-y;
}

.carousel-nav[b-1j0twl3kkr] {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    background: var(--color-bg-light);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        6px 6px 18px var(--color-shadow-dark),
        -6px -6px 18px var(--color-shadow-light);
    color: var(--color-primary-dark, #1a1a1a);
}

.carousel-nav:hover[b-1j0twl3kkr] {
    background: var(--color-bg-light);
    box-shadow: 
        8px 8px 20px var(--color-shadow-dark-hover),
        -8px -8px 20px var(--color-shadow-light-hover);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active[b-1j0twl3kkr] {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-left[b-1j0twl3kkr] {
    left: 7rem;
}

.carousel-nav-right[b-1j0twl3kkr] {
    right: 7rem;
}

.carousel-nav svg[b-1j0twl3kkr] {
    width: 24px;
    height: 24px;
}

.carousel-indicators[b-1j0twl3kkr] {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.carousel-indicator[b-1j0twl3kkr] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(197, 165, 114, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator:hover[b-1j0twl3kkr] {
    background: rgba(197, 165, 114, 0.5);
    transform: scale(1.2);
}

.carousel-indicator.active[b-1j0twl3kkr] {
    background: rgba(255, 255, 255, 0.95);
    width: 12px;
    height: 12px;
    border-color: rgba(197, 165, 114, 0.9);
}

.carousel-container[b-1j0twl3kkr] {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track[b-1j0twl3kkr] {
    display: flex;
    gap: 30px;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 20px 0;
}


.employee-card[b-1j0twl3kkr] {
    flex: 0 0 auto;
    width: 380px;
    height: 600px;
    position: relative;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    transform: scale(0.94) translateY(0);
    opacity: 0.8;
    overflow: hidden;
}

.employee-card:hover[b-1j0twl3kkr],
.employee-card.center[b-1j0twl3kkr] {
    transform: scale(1) translateY(-8px);
    opacity: 1;
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.16),
        0 8px 20px rgba(0, 0, 0, 0.12);
}

.employee-card.center[b-1j0twl3kkr] {
    z-index: 10;
}

.employee-card:hover[b-1j0twl3kkr] {
    z-index: 5;
}

.card-image-container[b-1j0twl3kkr] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image[b-1j0twl3kkr] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.4s ease;
}

.employee-card:hover .card-image[b-1j0twl3kkr] {
    transform: scale(1.08);
}

.card-info[b-1j0twl3kkr] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 24px 14px;
    z-index: 2;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 20%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 20%);
    transition: all 0.6s ease;
    background: rgba(0, 0, 0, 0.06);
}

.employee-card .info-icon[b-1j0twl3kkr] {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    pointer-events: none;
    z-index: 8;
}

.employee-card .info-icon svg[b-1j0twl3kkr] {
    width: 22px;
    height: 22px;
}

.card-info .info-icon[b-1j0twl3kkr] {
    position: relative;
    top: auto;
    right: auto;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    color: #ffffff;
    z-index: 5;
    pointer-events: none;
    transition: transform 0.15s ease;
}

.card-info .info-icon svg[b-1j0twl3kkr] {
    width: 20px;
    height: 20px;
}

.employee-card:hover .card-info .info-icon[b-1j0twl3kkr],
.card-info.auto-expanded .info-icon[b-1j0twl3kkr] {
    transform: scale(1.05);
}

.employee-expanded .info-icon.expanded[b-1j0twl3kkr] {
    position: absolute;
    top: 20px;
    right: 64px;
    width: 22px;
    height: 22px;
    pointer-events: none;
    color: var(--color-primary-dark);
    z-index: 40;
}

.employee-expanded .info-icon.expanded svg[b-1j0twl3kkr] {
    width: 22px;
    height: 22px;
}

@media (max-width: 1024px) {
    .employee-expanded .info-icon.expanded[b-1j0twl3kkr] {
        right: 56px;
        top: 40px;
    }
}

@media (max-width: 768px) {
    .employee-expanded .info-icon.expanded[b-1j0twl3kkr] {
        right: 56px;
        top: 30px;
    }

    .card-info .info-icon[b-1j0twl3kkr] {
        top: 20px;
        right: 20px;
        width: 20px;
        height: 20px;
    }

    .card-info .info-icon svg[b-1j0twl3kkr] {
        width: 18px;
        height: 18px;
    }

    .employee-card .info-icon[b-1j0twl3kkr] {
        top: 10px;
        right: 10px;
        width: 18px;
        height: 18px;
    }

    .employee-card .info-icon svg[b-1j0twl3kkr] {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .card-info .info-icon[b-1j0twl3kkr] {
        top: 18px;
        right: 18px;
        width: 18px;
        height: 18px;
    }

    .card-info .info-icon svg[b-1j0twl3kkr] {
        width: 16px;
        height: 16px;
    }

    .employee-card .info-icon[b-1j0twl3kkr] {
        top: 16px;
        right: 16px;
        width: 16px;
        height: 16px;
    }

    .employee-card .info-icon svg[b-1j0twl3kkr] {
        width: 16px;
        height: 16px;
    }
}

.employee-name[b-1j0twl3kkr] {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.employee-position[b-1j0twl3kkr] {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.card-contact-info[b-1j0twl3kkr] {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s ease;
    margin-top: 8px;
}

.employee-card:hover .card-contact-info[b-1j0twl3kkr],
.card-info.auto-expanded .card-contact-info[b-1j0twl3kkr] {
    opacity: 1;
    max-height: 100px;
}

.employee-email[b-1j0twl3kkr],
.employee-phone[b-1j0twl3kkr] {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.employee-expanded[b-1j0twl3kkr] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--color-bg-light);
    border-radius: 30px;
    padding: 50px;
    animation: expandIn-b-1j0twl3kkr 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: default;
}

@keyframes expandIn-b-1j0twl3kkr {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.close-button[b-1j0twl3kkr] {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.close-button:hover[b-1j0twl3kkr] {
    opacity: 1;
    background: rgba(0, 0, 0, 0.05);
    transform: rotate(360deg);
}

.expanded-content[b-1j0twl3kkr] {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.expanded-left[b-1j0twl3kkr] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
}

.expanded-left .employee-name[b-1j0twl3kkr] {
    margin: 0 0 6px 0;
    color: var(--color-primary-dark);
    font-size: 1.8rem;
}

.expanded-left .employee-position[b-1j0twl3kkr] {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #C5A572;
    text-shadow: none;
}

.expanded-left .employee-email[b-1j0twl3kkr],
.expanded-left .employee-phone[b-1j0twl3kkr] {
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.9;
    color: #555555;
    text-shadow: none;
}

.expanded-linkedin[b-1j0twl3kkr] {
    margin-top: 20px;
}

.expanded-center[b-1j0twl3kkr] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.expanded-image-wrapper[b-1j0twl3kkr] {
    width: 100%;
    max-width: 400px;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        8px 8px 20px rgba(0, 0, 0, 0.15),
        -8px -8px 20px rgba(255, 255, 255, 0.7);
}

.expanded-image[b-1j0twl3kkr] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expanded-right[b-1j0twl3kkr] {
    text-align: left;
}

.expanded-right h4[b-1j0twl3kkr] {
    color: var(--color-primary-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expanded-right p[b-1j0twl3kkr] {
    color: var(--color-primary-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
}

.intro-text[b-1j0twl3kkr] {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.slide-out[b-1j0twl3kkr] {
    animation: slideOutLeft-b-1j0twl3kkr 1s ease-in-out forwards;
    animation-delay: 2s;
    display: inline-block;
}

.slide-in[b-1j0twl3kkr] {
    animation: slideInFromLeft-b-1j0twl3kkr 1s ease-in-out forwards;
    animation-delay: 2s;
    display: inline-block;
    opacity: 0;
}

.team-text[b-1j0twl3kkr] {
    margin-left: 0;
}

@keyframes slideOutLeft-b-1j0twl3kkr {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideInFromLeft-b-1j0twl3kkr {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.card-info-header[b-1j0twl3kkr] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-info-header .employee-name[b-1j0twl3kkr] {
    margin: 0;
    line-height: 1.2;
}

.expanded-left[b-1j0twl3kkr] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
}

.expanded-left .employee-name[b-1j0twl3kkr] {
    margin: 0 0 6px 0;
    color: var(--color-primary-dark);
    font-size: 1.8rem;
}

@media (max-width: 1024px) {
    .carousel-wrapper[b-1j0twl3kkr] {
        margin-left: 0;
        margin-right: 0;
    }

    .carousel-nav[b-1j0twl3kkr] {
        display: none;
    }

    .employee-card[b-1j0twl3kkr] {
        width: 340px;
        height: 460px;
        box-shadow: none;
    }
    
    .employee-card:hover[b-1j0twl3kkr],
    .employee-card.center[b-1j0twl3kkr] {
        box-shadow: none;
    }
    
    .carousel-nav[b-1j0twl3kkr] {
        width: 45px;
        height: 45px;
    }

    .expanded-content[b-1j0twl3kkr] {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .expanded-left[b-1j0twl3kkr],
    .expanded-right[b-1j0twl3kkr] {
        text-align: center;
    }

    .expanded-left .employee-name[b-1j0twl3kkr] {
        text-align: center;
    }
    
    .expanded-linkedin[b-1j0twl3kkr] {
        display: flex;
        justify-content: center;
    }

    .expanded-image-wrapper[b-1j0twl3kkr] {
        max-width: 350px;
        height: 450px;
    }

    .employee-expanded[b-1j0twl3kkr] {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .ansatte-header[b-1j0twl3kkr] {
        margin-top: 0;
    }
    
    .intro-text[b-1j0twl3kkr] {
        font-size: 1.6rem;
    }

    .carousel-wrapper[b-1j0twl3kkr] {
        margin-left: 0;
        margin-right: 0;
        min-height: 450px;
        width: 100%;
        overflow: hidden;
    }

    .carousel-container[b-1j0twl3kkr] {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0;
        width: 100%;
        overflow: hidden;
    }

    .carousel-track[b-1j0twl3kkr] {
        gap: 20px;
        display: flex;
        width: 100%;
        padding: 20px 0 20px calc((100% - 300px) / 2);
    }

    .employee-card[b-1j0twl3kkr] {
        flex: 0 0 300px;
        width: 300px;
        height: 500px;
        box-shadow: none;
    }
    
    .employee-card:hover[b-1j0twl3kkr],
    .employee-card.center[b-1j0twl3kkr] {
        box-shadow: none;
    }
    
    .carousel-nav[b-1j0twl3kkr] {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav svg[b-1j0twl3kkr] {
        width: 20px;
        height: 20px;
    }
    
    .carousel-indicators[b-1j0twl3kkr] {
        bottom: 10px;
        gap: 8px;
        padding-bottom: 10px;
    }
    
    .carousel-indicator[b-1j0twl3kkr] {
        width: 8px;
        height: 8px;
    }
    
    .carousel-indicator.active[b-1j0twl3kkr] {
        width: 10px;
        height: 10px;
    }

    .card-info[b-1j0twl3kkr] {
        padding: 24px 20px 20px;
    }

    .card-contact-info[b-1j0twl3kkr] {
        opacity: 1;
        max-height: 100px;
    }

    .employee-name[b-1j0twl3kkr] {
        font-size: 1.3rem;
    }

    .employee-position[b-1j0twl3kkr] {
        font-size: 0.85rem;
    }

    .employee-email[b-1j0twl3kkr],
    .employee-phone[b-1j0twl3kkr] {
        font-size: 0.85rem;
    }

    .employee-expanded[b-1j0twl3kkr] {
        padding: 30px 20px;
    }

    .expanded-left .employee-name[b-1j0twl3kkr] {
        font-size: 1.5rem;
    }

    .expanded-image-wrapper[b-1j0twl3kkr] {
        max-width: 300px;
        height: 400px;
    }

    .expanded-right h4[b-1j0twl3kkr] {
        font-size: 1.2rem;
    }

    .expanded-right p[b-1j0twl3kkr] {
        font-size: 1rem;
    }
    
    .close-button[b-1j0twl3kkr] {
        top: 10px;
        right: 10px;
        font-size: 2rem;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .ansatte-container[b-1j0twl3kkr] {
        padding: 0 10px;
    }

    .intro-text[b-1j0twl3kkr] {
        font-size: 1.4rem;
    }

    .carousel-wrapper[b-1j0twl3kkr] {
        margin-left: 0;
        margin-right: 0;
        min-height: 420px;
        width: 100%;
        overflow: hidden;
    }

    .carousel-container[b-1j0twl3kkr] {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-bottom: 10px;
        width: 100%;
        overflow: hidden;
    }

    .carousel-track[b-1j0twl3kkr] {
        gap: 20px;
        display: flex;
        width: 100%;
        padding: 20px 0;
        padding-left: calc((100% - 260px) / 2);
    }

    .employee-card[b-1j0twl3kkr] {
        flex: 0 0 260px;
        width: 260px;
        height: 480px;
        box-shadow: none;
    }
    
    .employee-card:hover[b-1j0twl3kkr],
    .employee-card.center[b-1j0twl3kkr] {
        box-shadow: none;
    }
    
    .carousel-nav[b-1j0twl3kkr] {
        width: 36px;
        height: 36px;
    }
    
    .carousel-nav svg[b-1j0twl3kkr] {
        width: 18px;
        height: 18px;
    }
    
    .carousel-indicators[b-1j0twl3kkr] {
        bottom: 5px;
        gap: 6px;
        padding-bottom: 10px;
    }
    
    .carousel-indicator[b-1j0twl3kkr] {
        width: 7px;
        height: 7px;
        border-width: 1.5px;
    }
    
    .carousel-indicator.active[b-1j0twl3kkr] {
        width: 9px;
        height: 9px;
    }

    .card-info[b-1j0twl3kkr], .card-info.auto-expanded[b-1j0twl3kkr] {
        padding: 24px 16px 12px;
    }

    .card-contact-info[b-1j0twl3kkr] {
        opacity: 1;
        max-height: 100px;
        margin-top: 4px;
    }

    .employee-name[b-1j0twl3kkr] {
        font-size: 1.1rem;
    }

    .employee-position[b-1j0twl3kkr] {
        font-size: 0.75rem;
    }


    .employee-email[b-1j0twl3kkr] {
        margin-bottom: 0;
        line-height: 1.1;
    }
    
    .employee-phone[b-1j0twl3kkr] {
        margin-bottom: 8px;
        line-height: 1.1;
    }

    .employee-expanded[b-1j0twl3kkr] {
        padding: 25px 15px;
        border-radius: 20px;
    }

    .expanded-image-wrapper[b-1j0twl3kkr] {
        max-width: 250px;
        height: 350px;
    }

    .close-button[b-1j0twl3kkr] {
        top: 0;
        right: 5px;
        font-size: 2rem;
        width: 36px;
        height: 36px;
    }

    .carousel-nav-left[b-1j0twl3kkr] {
        left: 1rem;
    }

    .carousel-nav-right[b-1j0twl3kkr] {
        right: 1rem;
    }
}
/* /Pages/Contact.razor.rz.scp.css */
main[b-lms9itk5zc] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: calc(100vh - 5rem) !important;
    padding: 1.5rem 1rem !important;
}

.contact-container[b-lms9itk5zc] {
    background: var(--color-bg-light);
    border-radius: 30px;
    padding: 30px;
    box-shadow:
        6px 6px 18px var(--color-shadow-dark),
        -6px -6px 18px var(--color-shadow-light);
    max-width: none;
    width: 80%;
    margin: 20px auto;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.contact-content[b-lms9itk5zc] {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 0;
}

.contact-bottom[b-lms9itk5zc] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

.contact-text[b-lms9itk5zc] {
    flex: 0 0 35%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
}

.contact-text p[b-lms9itk5zc] {
    color: var(--color-primary-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.contact-info[b-lms9itk5zc] {
    margin-top: 0;
}

.contact-info h3[b-lms9itk5zc] {
    color: var(--color-primary-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info h4[b-lms9itk5zc] {
    color: var(--color-primary-dark);
    font-size: 1rem;
    font-weight: 600;
    margin: 25px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p[b-lms9itk5zc] {
    color: var(--color-primary-dark);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.contact-info p:last-child[b-lms9itk5zc] {
    margin-bottom: 10px;
}

.contact-form[b-lms9itk5zc] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fields[b-lms9itk5zc] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.field[b-lms9itk5zc] {
    flex: 1;
    min-width: 250px;
}

.field.half[b-lms9itk5zc] {
    flex: 1;
    min-width: 250px;
}

.form-input[b-lms9itk5zc],
.form-textarea[b-lms9itk5zc] {
    width: 100%;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--color-bg-light);
    box-shadow:
        6px 6px 18px var(--color-shadow-dark),
        -6px -6px 18px var(--color-shadow-light);
    font-size: 1rem;
    color: var(--color-primary-dark);
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-input[b-lms9itk5zc]::placeholder,
.form-textarea[b-lms9itk5zc]::placeholder {
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-input:hover[b-lms9itk5zc],
.form-textarea:hover[b-lms9itk5zc] {
    transform: translateY(-2px);
    box-shadow:
        8px 8px 20px var(--color-shadow-dark-hover),
        -8px -8px 20px var(--color-shadow-light-hover);
}

.form-input:focus[b-lms9itk5zc],
.form-textarea:focus[b-lms9itk5zc] {
    outline-color: var(--color-bg-light);
    background: var(--color-bg-light);
    transform: translateY(0);
    box-shadow:
        inset 6px 6px 12px var(--color-shadow-dark-inset),
        inset -6px -6px 12px var(--color-shadow-light-inset);
    transition: all 0.3s ease;
}

.form-textarea[b-lms9itk5zc] {
    resize: none;
    min-height: 240px;
}

.validation-message[b-lms9itk5zc] {
    margin-top: 15px;
    color: var(--color-accent-golden);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
}

.social-section[b-lms9itk5zc] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
}

.social-section h4[b-lms9itk5zc] {
    color: var(--color-primary-dark);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.actions[b-lms9itk5zc] {
    list-style: none;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.actions li[b-lms9itk5zc] {
    margin: 0;
}

/* Mobile submit actions hidden on desktop */
.form-actions[b-lms9itk5zc] {
    display: none;
}

.btn-submit[b-lms9itk5zc] {
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    background: var(--color-bg-light);
    color: var(--color-primary-dark);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        6px 6px 18px var(--color-shadow-dark),
        -6px -6px 18px var(--color-shadow-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover[b-lms9itk5zc] {
    transform: translateY(-2px);
    color: var(--color-accent-golden);
    box-shadow:
        8px 8px 20px var(--color-shadow-dark-hover),
        -8px -8px 20px var(--color-shadow-light-hover);
}

.btn-submit:active[b-lms9itk5zc] {
    transform: translateY(0);
    box-shadow:
        inset 6px 6px 12px var(--color-shadow-dark-inset),
        inset -6px -6px 12px var(--color-shadow-light-inset);
}

.social-icons[b-lms9itk5zc] {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 0;
    flex-wrap: wrap;
    padding: 0;
}

.social-icons li[b-lms9itk5zc] {
    margin: 0;
}

.social-icons a[b-lms9itk5zc] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-light);
    color: var(--color-primary-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
    will-change: transform, box-shadow;
    box-shadow:
        4px 4px 12px rgba(0,0,0,0.05),
        -4px -4px 12px rgba(255,255,255,0.8);
}

.social-icons a:hover[b-lms9itk5zc] {
    transform: translateY(-1px);
    color: var(--color-accent-golden);
    box-shadow:
        5px 5px 14px rgba(0,0,0,0.07),
        -5px -5px 14px rgba(255,255,255,0.85);
}

.social-icons a:active[b-lms9itk5zc] {
    transform: translateY(0);
    box-shadow:
        inset 4px 4px 10px rgba(0,0,0,0.05),
        inset -4px -4px 10px rgba(255,255,255,0.5);
}

.social-icons .label[b-lms9itk5zc] {
    display: none;
}

.intro-top[b-lms9itk5zc] { display: none; }
.intro-desktop[b-lms9itk5zc] { display: block; }

.social-top[b-lms9itk5zc] {
    display: none;
}

@media (max-width: 1150px) {
    .contact-container[b-lms9itk5zc] {
        width: 90%;
    }
}

@media (max-width: 845px) {
    .contact-container[b-lms9itk5zc] {
        padding: 20px 15px 0 15px;  
        margin: 10px auto 40px auto;
    }

    /* Show top intro on small screens and hide desktop intro */
    .intro-top[b-lms9itk5zc] { display: block; margin-bottom: 1rem; }
    .intro-desktop[b-lms9itk5zc] { display: none; }

    .contact-content[b-lms9itk5zc] {
        flex-direction: column;
        gap: 30px;
    }

    /* Ensure form appears above contact text on small screens */
    .contact-form[b-lms9itk5zc] { order: 1; }
    .contact-text[b-lms9itk5zc] { order: 2; }

    /* Hide Kontaktinformasjon on small screens (strong specificity + important) */
    .contact-container .contact-text .contact-info[b-lms9itk5zc] { display: none !important; }

    /* Show submit under inputs on small screens, hide desktop bottom actions */
    .form-actions[b-lms9itk5zc] { display: flex; }
    .contact-bottom[b-lms9itk5zc] { display: none; }

    .contact-bottom[b-lms9itk5zc] {
        flex-direction: column-reverse;
        gap: 35px;
        align-items: center;
    }

    .contact-text[b-lms9itk5zc] {
        flex: none;
        align-items: center;
        text-align: center;
    }

    .fields[b-lms9itk5zc] {
        margin-bottom: 20px;
        justify-content: center;
    }

    .field.half[b-lms9itk5zc] {
        flex: 1;
        min-width: 100%;
    }

    .actions[b-lms9itk5zc] {
        justify-content: center;
    }

    .btn-submit[b-lms9itk5zc] {
        width: 100%;
        max-width: 200px;
    }

    /* Hide in-container social section on small screens */
    .contact-container .social-section[b-lms9itk5zc] { display: none !important; }

    /* Show external social section and center it */
    .social-top[b-lms9itk5zc] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 15px auto 30px;
        text-align: center;
    }

    .social-top .social-icons[b-lms9itk5zc] {
        display: flex;
        justify-content: center;
        gap: 12px;
        padding: 0;
        margin: 10px 0 0 0;
        list-style: none;
    }

    .social-top .social-icons a[b-lms9itk5zc] {
        /* sizing handled by component */
    }
}

@media (max-width: 480px) {
    .contact-container[b-lms9itk5zc] {
        padding: 20px 15px 0 15px;
    }

    /* Keep order consistent on very small screens */
    .contact-form[b-lms9itk5zc] { order: 1; }
    .contact-text[b-lms9itk5zc] { order: 2; }

    .form-input[b-lms9itk5zc],
    .form-textarea[b-lms9itk5zc] {
        padding: 12px 15px;
    }

    .btn-submit[b-lms9itk5zc] {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (min-width: 1800px) {
    .contact-container[b-lms9itk5zc] {
        max-width: 1300px;
        width: 1300px;
    }
}

/* /Pages/Home.razor.rz.scp.css */
.home-page-wrapper[b-gk9aoxj65y] {
    width: 100vw;
    max-width: 1600px;
    margin-left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.home-fullwidth-wrapper[b-gk9aoxj65y] {
    position: relative;
    width: 100%;
    z-index: 1;
}

.text-content .welcome-text[b-gk9aoxj65y] {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.home-container[b-gk9aoxj65y] {
    position: relative;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow-y: visible;
    padding: 30px 2.5% 30px 2.5%;
}

.content-wrapper[b-gk9aoxj65y] {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.background-image[b-gk9aoxj65y] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 251, 246, 0.95);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.content-overlay[b-gk9aoxj65y] {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(255, 251, 246, 0.95);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.text-content[b-gk9aoxj65y] {
    flex: 1;
    min-width: 0;
    padding: 20px;
}

.text-content h1[b-gk9aoxj65y] {
    color: var(--color-primary-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.text-content h2[b-gk9aoxj65y] {
    color: var(--color-primary-dark);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: left;
}

.text-content p[b-gk9aoxj65y] {
    color: var(--color-primary-dark);
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 18px 0 18px 0;
}

.text-content ul[b-gk9aoxj65y] {
    list-style-type: disc;
    margin: 18px 0;
    padding-left: 1.5em;
    color: var(--color-primary-dark);
    font-size: 1.15rem;
    width: 100%;
}

.text-content ul li[b-gk9aoxj65y] {
    margin-bottom: 8px;
    line-height: 1.6;
    text-align: left;
}

.button-container[b-gk9aoxj65y] {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.image-content[b-gk9aoxj65y] {
    flex: 0 0 auto;
    width: 650px;
    max-width: 55%;
}

.teamwork-image[b-gk9aoxj65y] {
    width: 100%;
    height: auto;
    border-radius: 50px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                0 10px 30px rgba(0, 0, 0, 0.2),
                0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teamwork-image:hover[b-gk9aoxj65y] {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 
                0 15px 40px rgba(0, 0, 0, 0.25),
                0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Trusted systems slider */
.trusted-section[b-gk9aoxj65y] {
    width: 100%;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.trusted-heading[b-gk9aoxj65y] {
    text-align: center;
    margin-bottom: 20px;
}

.trusted-kicker[b-gk9aoxj65y] {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0;
}

.trusted-title[b-gk9aoxj65y] {
    font-size: 1.8rem;
    margin: 6px 0 0 0;
    color: var(--color-primary-dark);
}

.logo-strip[b-gk9aoxj65y] {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 18px 0;
    --logo-play: running;
}

.logo-strip:hover[b-gk9aoxj65y] {
    --logo-play: paused;
}

.logo-strip:hover .logo-track[b-gk9aoxj65y],
.logo-track:hover[b-gk9aoxj65y] {
    animation-play-state: paused;
}

.logo-track[b-gk9aoxj65y] {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: slide-left-b-gk9aoxj65y 28s linear infinite;
    animation-play-state: var(--logo-play);
    width: max-content;
    will-change: transform;
}

.logo-tile[b-gk9aoxj65y] {
    flex: 0 0 auto;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.logo-link[b-gk9aoxj65y] {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
}

.logo-link img[b-gk9aoxj65y] {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-tile img[b-gk9aoxj65y] {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-tile.dual-logo[b-gk9aoxj65y] {
    gap: 12px;
}

.logo-tile .logo-icon[b-gk9aoxj65y] {
    height: 48px;
}

.logo-tile .logo-text[b-gk9aoxj65y] {
    height: 32px;
}

.logo-tile:hover[b-gk9aoxj65y] {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}

.logo-fade[b-gk9aoxj65y] {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(90deg, rgba(255, 251, 246, 1) 0%, rgba(255, 251, 246, 0) 100%);
}

.logo-fade--left[b-gk9aoxj65y] {
    left: 0;
}

.logo-fade--right[b-gk9aoxj65y] {
    right: 0;
    transform: rotate(180deg);
}

@keyframes slide-left-b-gk9aoxj65y {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 1024px) {
    .content-wrapper[b-gk9aoxj65y] {
        flex-direction: column;
        gap: 0;
    }

    .image-content[b-gk9aoxj65y] {
        width: 70%;
        max-width: 100%;
    }

    .content-overlay[b-gk9aoxj65y] {
        margin: 20px;
        padding: 30px 20px;
        max-width: calc(100% - 40px);
    }

    .text-content h1[b-gk9aoxj65y] {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .text-content p[b-gk9aoxj65y] {
        font-size: 1.1rem;
    }

    .button-container[b-gk9aoxj65y] {
        gap: 20px;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 20px;
    }

    .home-btn[b-gk9aoxj65y] {
        width: 100%;
        max-width: 200px;
        padding: 12px 25px;
    }

    .home-container[b-gk9aoxj65y] {
        padding: 0;
    }
    
    .text-content[b-gk9aoxj65y] {
        padding-left: 7%;
        padding-right: 7%;
    }

    .logo-track[b-gk9aoxj65y] {
        gap: 32px;
        animation-duration: 32s;
    }

    .logo-tile[b-gk9aoxj65y] {
        height: 42px;
    }

    .logo-tile .logo-icon[b-gk9aoxj65y] {
        height: 42px;
    }

    .logo-tile .logo-text[b-gk9aoxj65y] {
        height: 28px;
    }

    .trusted-title[b-gk9aoxj65y] {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper[b-gk9aoxj65y] {
        flex-direction: column;
    }

    .image-content[b-gk9aoxj65y] {
        width: 100%;
        max-width: 100%;
    }

    .teamwork-image[b-gk9aoxj65y] {
        width: 80%;
        border-radius: 15px;
    }

    .content-overlay[b-gk9aoxj65y] {
        margin: 10px;
        padding: 25px 15px;
        border-radius: 20px;
    }

    .text-content h1[b-gk9aoxj65y] {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .text-content h2[b-gk9aoxj65y] {
        font-size: 1.5rem;
        margin-bottom: 12px;
        text-align: center;
    }

    .text-content p[b-gk9aoxj65y] {
        font-size: 1rem;
    }
    
    .text-content ul li[b-gk9aoxj65y] {
        font-size: 1rem;
    }

    .text-content[b-gk9aoxj65y] {
        align-items: center;
    }

    .button-container[b-gk9aoxj65y] {
        justify-content: center;
        gap: 15px;
    }

    .home-btn[b-gk9aoxj65y] {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 140px;
    }

    /* Center the image container on phones */
    .image-content[b-gk9aoxj65y] {
        margin: 0 auto;
    }

    /* Ensure image itself is centered if it doesn't span full width */
    .teamwork-image[b-gk9aoxj65y] {
        display: block;
        margin: 0 auto;
    }

    /* Override top padding for phone screens */
    .home-container[b-gk9aoxj65y] {
        padding: 0;
    }

    .logo-track[b-gk9aoxj65y] {
        gap: 24px;
        animation-duration: 36s;
        margin-bottom: 1rem;
    }

    .logo-tile[b-gk9aoxj65y] {
        height: 38px;
    }

    .logo-tile .logo-icon[b-gk9aoxj65y] {
        height: 38px;
    }

    .logo-tile .logo-text[b-gk9aoxj65y] {
        height: 26px;
    }

    .trusted-title[b-gk9aoxj65y] {
        font-size: 1.4rem;
    }
}
/* /Pages/Systems/SystemPage.razor.rz.scp.css */
.logo-inline[b-ibpy9wn36c] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-inline-icon[b-ibpy9wn36c] {
  height: 60px;
  width: auto;
}

.logo-inline-text[b-ibpy9wn36c] {
  height: 40px;
  width: auto;
}

.system-intro .logo-inline[b-ibpy9wn36c] {
  margin-bottom: 0.5rem;
}

.intro-text-block[b-ibpy9wn36c] {
  text-align: center;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-6fd7jkncch] {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main[b-6fd7jkncch] {
  flex: 1 0 auto;
}

.site-footer[b-6fd7jkncch] {
  margin-top: auto;
}

article.content[b-6fd7jkncch] {
  display: block;
}

.site-footer .container[b-6fd7jkncch] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center; /* center children horizontally */
  text-align: center; /* center text */
}

.footer-contact p[b-6fd7jkncch] {
  margin: 0.15rem 0;
}

.footer-nav[b-6fd7jkncch] {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav a[b-6fd7jkncch] {
  color: var(--color-primary-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease-in-out;
}

.footer-nav a:visited[b-6fd7jkncch] {
  color: var(--color-primary-dark);
}

.footer-nav a:hover[b-6fd7jkncch],
.footer-nav a:active[b-6fd7jkncch],
.footer-nav a:visited:hover[b-6fd7jkncch],
.footer-nav a:visited:active[b-6fd7jkncch] {
  color: var(--color-accent-golden);
  text-decoration: none;
}

.footer-nav a:focus[b-6fd7jkncch],
.footer-nav a:focus-visible[b-6fd7jkncch] {
  outline: 2px solid rgba(242, 205, 136, 0.25);
  outline-offset: 2px;
}

.site-footer[b-6fd7jkncch] {
  background: rgba(22, 83, 67, 0.04);
  padding: 1.25rem 5% 1.5rem;
  border-top: 1px solid rgba(22, 83, 67, 0.08);
  position: relative;
  z-index: 5;
}

@media (max-width: 600px) {
  .footer-nav[b-6fd7jkncch] {
    gap: 0.4rem;
  }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.header[b-t5os13wohg] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 8px 24px -8px rgba(149, 157, 165, 0.2);
}

.header[b-t5os13wohg]::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.logo[b-t5os13wohg] {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    transition: color .3s ease;
}

.logo-icon[b-t5os13wohg] {
    height: 40px;
    width: auto;
    display: block;
    margin-right: .55rem;
    transition: opacity .3s ease;
}

.logo-text[b-t5os13wohg] {
    line-height: 1;
    white-space: nowrap;
}

@media (hover: hover) {
    .logo:hover .logo-text[b-t5os13wohg] { color: var(--color-accent-golden); }
    .logo:hover .logo-icon[b-t5os13wohg] { opacity: .9; }
}

.logo:active .logo-text[b-t5os13wohg] {
    color: var(--color-accent-golden);
}

.logo:active .logo-icon[b-t5os13wohg] {
    opacity: .75;
}

.navbar a:not(.neumorphism-btn):not(.contact-btn)[b-t5os13wohg] {
    font-size: 1.15rem;
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
    transition: color 0.3s ease;
}

.navbar a:not(.neumorphism-btn):not(.contact-btn).active[b-t5os13wohg] { color: var(--color-accent-golden); }
.navbar a:not(.neumorphism-btn):not(.contact-btn):active[b-t5os13wohg] { color: var(--color-accent-golden); }

@media (hover: hover) { 
    .navbar a:not(.neumorphism-btn):not(.contact-btn):hover[b-t5os13wohg] { color: var(--color-accent-golden); } 
}

@media (max-width: 992px) {
    .header[b-t5os13wohg] {
        padding: 1rem 5%;
    }
}

@media (hover: none), (max-width: 1024px) {
    /* Disable hover-open on touch */
    .dropdown:hover .dropdown-menu[b-t5os13wohg] {
        display: none;
    }

    /* Use the Blazor click toggle instead */
    .dropdown.dropdown-open .dropdown-menu[b-t5os13wohg] {
        display: block;
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 950px) {
    .header[b-t5os13wohg] {
        box-shadow: 0 8px 24px -8px rgba(149, 157, 165, 0.2);
    }

    .header.navbar-active[b-t5os13wohg] {
        box-shadow: none;
    }

    .navbar[b-t5os13wohg] {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(15px);
        overflow: hidden;
        height: 0;
        opacity: 0;
        transition: .3s ease;
        box-shadow: 0 8px 24px -8px rgba(149, 157, 165, 0.2);
        display: flex;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .navbar-open[b-t5os13wohg] {
        height: auto;
        opacity: 1;
        overflow: visible;
    }

    .navbar a:not(.neumorphism-btn):not(.contact-btn)[b-t5os13wohg] {
        display: block;
        width: 100%;
        flex: 0;
        font-size: 1.1rem;
        text-align: center;
        padding: 0.75rem 1.5rem;
        text-decoration: none;
        transition: 0.15s ease;
        opacity: 0;
        color: var(--color-primary-dark);
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-left: 0;
        font-weight: 500;
    }

    .navbar a:not(.neumorphism-btn):not(.contact-btn).active[b-t5os13wohg] { color: var(--color-accent-golden); }
    .navbar a:not(.neumorphism-btn):not(.contact-btn):active[b-t5os13wohg] { color: var(--color-accent-golden); }

    .navbar a:not(.neumorphism-btn):not(.contact-btn):last-child[b-t5os13wohg] {
        border-bottom: none;
    }

    .navbar-open a:not(.neumorphism-btn)[b-t5os13wohg] {
        transform: none !important;
        transition-delay: 0s !important;
        opacity: 1 !important;
    }

    .navbar .nav-link[b-t5os13wohg] {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        text-align: center;
        padding: 0 2rem;
        text-decoration: none;
        transform: translateY(-50px);
        transition: 0.3s ease;
        opacity: 0;
        color: var(--color-primary-dark);
        height: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar a:last-child[b-t5os13wohg] {
        border-bottom: none;
    }

    .navbar-open a[b-t5os13wohg] {
        transform: none !important;
        transition-delay: 0s !important;
        opacity: 1 !important;
    }

    .navbar-open .dropdown-menu[b-t5os13wohg] {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        background: transparent;
        box-shadow: none;
    }
}

.dropdown[b-t5os13wohg] {
    position: relative;
    display: inline-block;
    margin-left: 2.5rem;
}

.dropdown > .dropdown-trigger[b-t5os13wohg] {
    margin-left: 0 !important;
}

.dropdown-menu[b-t5os13wohg] {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 180px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 24px -8px rgba(149, 157, 165, 0.2);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 1200;
}

.dropdown-menu a[b-t5os13wohg] {
    margin: 0.35rem 0;
    text-align: center;
    font-size: 0.95rem;
    white-space: nowrap;
    text-decoration: none;
    color: var(--color-primary-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    width: 100%;
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
}

.navbar .dropdown .dropdown-menu a[b-t5os13wohg],
.dropdown .dropdown-menu a[b-t5os13wohg] {
    margin-left: 0;
}

@media (hover: hover) {
    .dropdown-menu a:hover[b-t5os13wohg] { color: var(--color-accent-golden); }
}

@media (hover: hover) {
    .dropdown:hover > .dropdown-menu[b-t5os13wohg] {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 950px) {
    .dropdown[b-t5os13wohg] {
        width: 100%;
        margin-left: 0;
    }
    .dropdown > .dropdown-trigger[b-t5os13wohg] {
        margin-left: 0 !important;
    }
    .dropdown-menu[b-t5os13wohg] {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        opacity: 0;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.18s ease, opacity 0.15s ease, padding 0.15s ease;
        flex-direction: column;
        align-items: center;
    }
    .dropdown-menu a[b-t5os13wohg] {
        width: 100%;
        margin: 0.25rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.4rem 0;
    }
    .dropdown-menu a:last-child[b-t5os13wohg] { border-bottom: none; }

    .dropdown.dropdown-open .dropdown-menu[b-t5os13wohg] {
        opacity: 1;
        pointer-events: auto;
        max-height: 600px;
        padding: 0.25rem 0 0.5rem;
    }
}

.dropdown.dropdown-closing > .dropdown-menu[b-t5os13wohg] {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(8px) !important;
}

.dropdown.dropdown-closing:hover > .dropdown-menu[b-t5os13wohg] {
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width:950px) {
    .navbar.navbar-open[b-t5os13wohg] {
        height: auto !important;
        opacity: 1 !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .navbar.navbar-open a[b-t5os13wohg] {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
    }

    .navbar.navbar-open .dropdown-menu[b-t5os13wohg] {
        display: flex !important;
        opacity: 1 !important;
        position: static !important;
        transform: none !important;
        pointer-events: auto !important;
    }
}

.navbar .neumorphism-btn[b-t5os13wohg] {
    margin-left: 2.5rem;
}

@media (max-width: 950px) {
    .navbar .neumorphism-btn[b-t5os13wohg] {
        display: block;
        width: 100%;
        margin-left: 0;
        padding: 0.75rem 1.5rem;
        box-sizing: border-box;
        border-bottom: none;
    }
}

.navbar .neumorphism-btn.active[b-t5os13wohg] {
    color: var(--color-accent-golden);
}

.navbar .contact-btn[b-t5os13wohg] {
    background: var(--color-primary-dark);
    color: #ffffff;
    padding: 10px 18px;
    border: none;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    min-width: 120px;
    text-align: center;
    margin-left: 1.2rem;
    box-shadow: none;
    transition: color .2s ease, background-color .2s ease;
}

@media (hover: hover) {
    .navbar .contact-btn:hover:not(.active)[b-t5os13wohg] {
        background: rgba(255, 255, 255, 0);
        color: var(--color-accent-golden);
        border: none;
    }
}

.navbar .contact-btn.active[b-t5os13wohg] {
    background: rgba(255, 255, 255, 0);
    color: var(--color-accent-golden);
    border: none;
}
@media (hover: hover) {
    .navbar .contact-btn.active:hover[b-t5os13wohg] {
        background: rgba(255, 255, 255, 0);
        color: var(--color-accent-golden);
        border: none;
    }
}

@media (max-width: 950px) {
    .navbar .contact-btn[b-t5os13wohg] {
        display: block;
        width: 45%;
        margin: 0.75rem auto 0;
        padding: 0.65rem 1.25rem;
        box-sizing: border-box;
        border-bottom: none;
        background: var(--color-primary-dark);
        color: #ffffff;
    }
}

.logo-text[b-t5os13wohg] {
    white-space: nowrap;
}

.logo-sub[b-t5os13wohg] {
    display: inline;
}

@media (max-width: 1150px) {
    .logo-sub[b-t5os13wohg] {
        display: none;
    }
}
/* /Shared/NotFound.razor.rz.scp.css */
.not-found-wrapper[b-mhbnk7es0j] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 12rem);
    padding: 40px 20px;
}

.not-found-container[b-mhbnk7es0j] {
    background: var(--color-bg-light);
    border-radius: 30px;
    padding: 80px 60px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 
        10px 10px 30px var(--color-shadow-dark),
        -10px -10px 30px var(--color-shadow-light);
    animation: fadeIn-b-mhbnk7es0j 0.6s ease-out;
}

@keyframes fadeIn-b-mhbnk7es0j {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.not-found-icon[b-mhbnk7es0j] {
    margin-bottom: 30px;
    position: relative;
}

.error-code[b-mhbnk7es0j] {
    display: inline-block;
    font-size: 8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-accent-golden) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    animation: pulse-b-mhbnk7es0j 2s ease-in-out infinite;
}

@keyframes pulse-b-mhbnk7es0j {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.not-found-title[b-mhbnk7es0j] {
    color: var(--color-primary-dark);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.not-found-content[b-mhbnk7es0j] {
    margin-bottom: 40px;
}

.lead-text[b-mhbnk7es0j] {
    color: var(--color-primary-dark);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.sub-text[b-mhbnk7es0j] {
    color: var(--color-primary-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 0;
    font-style: italic;
}

.not-found-actions[b-mhbnk7es0j] {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-text[b-mhbnk7es0j] {
    color: var(--color-primary-dark);
    font-size: 0.95rem;
    opacity: 0.7;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .not-found-wrapper[b-mhbnk7es0j] {
        padding: 30px 15px;
        min-height: calc(100vh - 10rem);
    }

    .not-found-container[b-mhbnk7es0j] {
        padding: 50px 30px;
        border-radius: 25px;
    }

    .error-code[b-mhbnk7es0j] {
        font-size: 6rem;
    }

    .not-found-title[b-mhbnk7es0j] {
        font-size: 1.6rem;
    }

    .lead-text[b-mhbnk7es0j] {
        font-size: 1.1rem;
    }

    .sub-text[b-mhbnk7es0j] {
        font-size: 1rem;
    }

    .not-found-actions[b-mhbnk7es0j] {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .not-found-container[b-mhbnk7es0j] {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .error-code[b-mhbnk7es0j] {
        font-size: 5rem;
    }

    .not-found-title[b-mhbnk7es0j] {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .lead-text[b-mhbnk7es0j] {
        font-size: 1rem;
    }

    .sub-text[b-mhbnk7es0j] {
        font-size: 0.95rem;
    }

    .footer-text[b-mhbnk7es0j] {
        font-size: 0.9rem;
    }
}

