/* /Layout/MainLayout.razor.rz.scp.css */
/* Urso Layout - Modern Layout with Header/Main/Footer Structure */
.page[b-hnp8cpx1fh] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.urso-main[b-hnp8cpx1fh] {
    flex: 1;
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Navigation Component Specific Overrides */
/* This file provides component-specific styling that extends the main navigation styles */

/* Ensure nav links maintain proper contrast on all backgrounds */
.urso-nav .nav-link[b-nj04crnsoa] {
    color: var(--urso-text-dark) !important;
    font-weight: 500;
}

.urso-nav .nav-link:hover[b-nj04crnsoa],
.urso-nav .nav-link.active[b-nj04crnsoa] {
    color: var(--urso-primary) !important;
}

/* Ensure logo text maintains proper color */
.urso-nav .logo-text[b-nj04crnsoa] {
    color: var(--urso-primary) !important;
}

/* Mobile menu adjustments for better contrast */
@media (max-width: 768px) {
    .nav-menu[b-nj04crnsoa] {
        background: var(--urso-white) !important;
    }
    
    .nav-menu.active[b-nj04crnsoa] {
        background: var(--urso-white) !important;
    }
}
/* /Pages/About/About.razor.rz.scp.css */
/* About page specific styles */

/* About Story Section */
.about-story[b-upz0ku2b0r] {
    padding: 4rem 0;
}

.story-grid[b-upz0ku2b0r] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2[b-upz0ku2b0r] {
    margin-bottom: 2rem;
}

.story-highlights[b-upz0ku2b0r] {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight-item[b-upz0ku2b0r] {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.highlight-item strong[b-upz0ku2b0r] {
    display: block;
    font-size: 2rem;
    color: var(--urso-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.highlight-item span[b-upz0ku2b0r] {
    color: var(--urso-text-medium);
    /* Förbättrad kontrast för highlight beskrivningar */
    font-size: 0.9rem;
}

.story-visual[b-upz0ku2b0r] {
    display: flex;
    justify-content: center;
}

.about-card[b-upz0ku2b0r] {
    background: var(--urso-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    padding: 2rem;
    max-width: 350px;
}

.card-header[b-upz0ku2b0r] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--urso-light-gray);
}

.card-icon[b-upz0ku2b0r] {
    font-size: 2rem;
}

.card-header h3[b-upz0ku2b0r] {
    color: var(--urso-primary);
    margin: 0;
}

.card-content p[b-upz0ku2b0r] {
    font-style: italic;
    color: var(--urso-text-medium);
    /* Förbättrad kontrast för card innehåll */
    margin: 0;
}

/* Approach Section */
.approach[b-upz0ku2b0r] {
    padding: 4rem 0;
    background: var(--urso-background);
}

.approach-steps[b-upz0ku2b0r] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step[b-upz0ku2b0r] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number[b-upz0ku2b0r] {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--urso-primary);
    color: var(--urso-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3[b-upz0ku2b0r] {
    color: var(--urso-primary);
    margin-bottom: 0.5rem;
}

.step-content p[b-upz0ku2b0r] {
    color: var(--urso-text-medium);
    /* Förbättrad kontrast för step beskrivningar */
    margin: 0;
}

/* Expertise Section */
.expertise[b-upz0ku2b0r] {
    padding: 4rem 0;
}

.expertise-grid[b-upz0ku2b0r] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-category[b-upz0ku2b0r] {
    background: var(--urso-white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
}

.expertise-category h3[b-upz0ku2b0r] {
    color: var(--urso-primary);
    margin-bottom: 1.5rem;
}

.tech-tags[b-upz0ku2b0r] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag[b-upz0ku2b0r] {
    background: var(--urso-background);
    color: var(--urso-text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    border: 1px solid var(--urso-light-gray);
    transition: var(--transition);
}

.tech-tag:hover[b-upz0ku2b0r] {
    background: var(--urso-primary);
    color: var(--urso-white);
    border-color: var(--urso-primary);
}

/* CTA Section (shared but mainly used on About page) */
.cta-section[b-upz0ku2b0r] {
    padding: 4rem 0;
    background: var(--urso-primary);
    color: var(--urso-white);
    text-align: center;
}

.cta-content h2[b-upz0ku2b0r] {
    color: var(--urso-white);
    margin-bottom: 1rem;
}

.cta-content p[b-upz0ku2b0r] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-actions[b-upz0ku2b0r] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .story-grid[b-upz0ku2b0r] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-highlights[b-upz0ku2b0r] {
        justify-content: center;
    }

    .approach-steps[b-upz0ku2b0r] {
        grid-template-columns: 1fr;
    }

    .cta-actions[b-upz0ku2b0r] {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {

    .about-story[b-upz0ku2b0r],
    .approach[b-upz0ku2b0r],
    .expertise[b-upz0ku2b0r] {
        padding: 2rem 0;
    }
}
/* /Pages/Contact/Contact.razor.rz.scp.css */
/* Contact Page Specific Styles */

/* Contact Section */
.contact-section[b-5ojn0x0vzy] {
    background: var(--urso-primary);
    color: var(--urso-white);
    padding: 4rem 0;
}

/* Säkerställ hög kontrast för all text i contact section */
.contact-section[b-5ojn0x0vzy],
.contact-section h1[b-5ojn0x0vzy],
.contact-section h2[b-5ojn0x0vzy],
.contact-section h3[b-5ojn0x0vzy],
.contact-section h4[b-5ojn0x0vzy],
.contact-section h5[b-5ojn0x0vzy],
.contact-section h6[b-5ojn0x0vzy] {
    color: var(--urso-white) !important;
}

.contact-section p[b-5ojn0x0vzy],
.contact-section .lead[b-5ojn0x0vzy] {
    color: var(--urso-white) !important;
}

.contact-info p[b-5ojn0x0vzy] {
    color: var(--urso-white) !important;
}

/* Säkerställ att alla textelement är synliga, men ikke skjema-elementer */
.contact-section *:not(.contact-form-card):not(.contact-form-card *)[b-5ojn0x0vzy] {
    color: var(--urso-white);
}

.contact-section small[b-5ojn0x0vzy] {
    color: rgba(255, 255, 255, 0.8) !important;
}

.contact-section a[b-5ojn0x0vzy] {
    color: var(--urso-white) !important;
}

.contact-section span[b-5ojn0x0vzy] {
    color: var(--urso-white);
}

.contact-grid[b-5ojn0x0vzy] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2[b-5ojn0x0vzy] {
    color: var(--urso-white);
    margin-bottom: 1rem;
}

/* Contact Methods */
.contact-methods[b-5ojn0x0vzy] {
    margin-top: 2rem;
}

.contact-method[b-5ojn0x0vzy] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.method-icon[b-5ojn0x0vzy] {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--urso-accent);
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.method-content h3[b-5ojn0x0vzy] {
    color: var(--urso-white);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.method-content p[b-5ojn0x0vzy] {
    margin-bottom: 0.25rem;
}

.method-content a[b-5ojn0x0vzy] {
    color: var(--urso-white);
    text-decoration: none;
    font-weight: 500;
}

.method-content a:hover[b-5ojn0x0vzy] {
    text-decoration: underline;
}

.method-content small[b-5ojn0x0vzy] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* Response Badge */
.response-time[b-5ojn0x0vzy] {
    margin-top: 2rem;
}

.response-badge[b-5ojn0x0vzy] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    color: var(--urso-white);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.badge-icon[b-5ojn0x0vzy] {
    font-size: 1rem;
}

/* Contact Form */
.contact-form-container[b-5ojn0x0vzy] {
    background: var(--urso-white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.contact-form-card[b-5ojn0x0vzy] {
    padding: 2rem;
}

.contact-form-card h3[b-5ojn0x0vzy] {
    color: var(--urso-primary);
    margin-bottom: 1.5rem;
}

.contact-form-card label[b-5ojn0x0vzy] {
    color: var(--urso-text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form-card .form-input[b-5ojn0x0vzy],
.contact-form-card .form-select[b-5ojn0x0vzy],
.contact-form-card .form-textarea[b-5ojn0x0vzy] {
    color: var(--urso-text-dark);
    transition: all 0.3s ease;
}

.contact-form-card .form-input.error[b-5ojn0x0vzy],
.contact-form-card .form-textarea.error[b-5ojn0x0vzy] {
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.field-error[b-5ojn0x0vzy] {
    color: #DC2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.field-error[b-5ojn0x0vzy]::before {
    content: "⚠️";
    font-size: 0.75rem;
}

.contact-form-card .form-input[b-5ojn0x0vzy]::placeholder,
.contact-form-card .form-textarea[b-5ojn0x0vzy]::placeholder {
    color: var(--urso-text-light);
    opacity: 0.7;
}

.contact-form-card option[b-5ojn0x0vzy] {
    color: var(--urso-text-dark);
    background: var(--urso-white);
}

.contact-form-card .btn[b-5ojn0x0vzy] {
    color: var(--urso-white) !important;
    background: var(--urso-primary) !important;
    position: relative;
    min-width: 200px;
}

.contact-form-card .btn:hover:not(:disabled)[b-5ojn0x0vzy] {
    background: var(--urso-accent) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.contact-form-card .btn:disabled[b-5ojn0x0vzy] {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none !important;
}

.contact-form-card .btn span[b-5ojn0x0vzy] {
    color: var(--urso-white) !important;
}

.contact-form-card .form-actions[b-5ojn0x0vzy] {
    margin-top: 2rem;
}

.spinner[b-5ojn0x0vzy] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin-b-5ojn0x0vzy 1s linear infinite;
}

@keyframes spin-b-5ojn0x0vzy {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Overstyr alle hvite tekstfarger for skjema-elementer */
.contact-form-card[b-5ojn0x0vzy],
.contact-form-card *:not(.btn):not(.btn *)[b-5ojn0x0vzy] {
    color: var(--urso-text-dark) !important;
}

.contact-form-card h3[b-5ojn0x0vzy] {
    color: var(--urso-primary) !important;
}

.contact-form-card .btn[b-5ojn0x0vzy],
.contact-form-card .btn *[b-5ojn0x0vzy] {
    color: var(--urso-white) !important;
}

.contact-form[b-5ojn0x0vzy] {
    background: var(--urso-white);
}

/* Submit Message */
.submit-message[b-5ojn0x0vzy] {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.submit-message.success[b-5ojn0x0vzy] {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.submit-message.error[b-5ojn0x0vzy] {
    background: rgba(239, 68, 68, 0.1);
    color: #991B1B;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.message-icon[b-5ojn0x0vzy] {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* FAQ Section */
.faq-section[b-5ojn0x0vzy] {
    padding: 4rem 0;
}

.faq-grid[b-5ojn0x0vzy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item[b-5ojn0x0vzy] {
    background: var(--urso-white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
}

.faq-item h3[b-5ojn0x0vzy] {
    color: var(--urso-primary);
    margin-bottom: 1rem;
}

.faq-item p[b-5ojn0x0vzy] {
    color: var(--urso-text-medium);
    /* Förbättrad kontrast för FAQ text */
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid[b-5ojn0x0vzy] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-section[b-5ojn0x0vzy] {
        padding: 2rem 0;
    }

    .contact-form-card[b-5ojn0x0vzy] {
        padding: 1.5rem;
    }

    .faq-grid[b-5ojn0x0vzy] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-method[b-5ojn0x0vzy] {
        padding: 1rem;
    }

    .method-icon[b-5ojn0x0vzy] {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
}
/* /Pages/Home/Home.razor.rz.scp.css */
/* Home page specific styles */

/* Hero Section */
.hero[b-hs9eudd631] {
    background: linear-gradient(135deg, var(--urso-background) 0%, var(--urso-light-gray) 100%);
    padding: 4rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content[b-hs9eudd631] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title[b-hs9eudd631] {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight[b-hs9eudd631] {
    color: var(--urso-accent);
}

.hero-subtitle[b-hs9eudd631] {
    font-size: 1.25rem;
    color: var(--urso-text-medium);
    /* Forbedret kontrast for hero subtitle */
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions[b-hs9eudd631] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual[b-hs9eudd631] {
    display: flex;
    justify-content: center;
}

.hero-card[b-hs9eudd631] {
    background: var(--urso-white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    text-align: center;
    max-width: 300px;
}

.card-icon[b-hs9eudd631] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-card h3[b-hs9eudd631] {
    color: var(--urso-primary);
    margin-bottom: 1rem;
}

.hero-card p[b-hs9eudd631] {
    color: var(--urso-text-medium);
    /* Förbättrad kontrast för hero card text */
    margin: 0;
}

/* Services Grid */
.services-grid[b-hs9eudd631] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card[b-hs9eudd631] {
    background: var(--urso-white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card:hover[b-hs9eudd631] {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-icon[b-hs9eudd631] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3[b-hs9eudd631] {
    margin-bottom: 1rem;
}

.service-features[b-hs9eudd631] {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-features li[b-hs9eudd631] {
    padding: 0.5rem 0;
    color: var(--urso-text-medium);
    /* Förbättrad kontrast för service features */
    position: relative;
    padding-left: 1.5rem;
}

.service-features li[b-hs9eudd631]::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--urso-accent-green);
    font-weight: bold;
}

/* Values Section */
.values-grid[b-hs9eudd631] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card[b-hs9eudd631] {
    text-align: center;
    padding: 2rem;
}

.value-icon[b-hs9eudd631] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Responsive Design for Home Page */
@media (max-width: 768px) {
    .hero-content[b-hs9eudd631] {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title[b-hs9eudd631] {
        font-size: 2rem;
    }

    .hero-actions[b-hs9eudd631] {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero[b-hs9eudd631] {
        padding: 2rem 0;
    }

    .hero-title[b-hs9eudd631] {
        font-size: 1.75rem;
    }

    .hero-actions[b-hs9eudd631] {
        flex-direction: column;
        align-items: center;
    }

    .services[b-hs9eudd631] {
        padding: 2rem 0;
    }

    .values[b-hs9eudd631] {
        padding: 2rem 0;
    }
}
/* /Pages/NotFound.razor.rz.scp.css */
/* 404 Not Found Page Styles */
.not-found-hero[b-hwgpygq24q] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--urso-background) 0%, #E8F4F8 100%);
    overflow: hidden;
}

.not-found-content[b-hwgpygq24q] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Visual Section */
.not-found-visual[b-hwgpygq24q] {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.error-code[b-hwgpygq24q] {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 800;
    color: var(--urso-primary);
    line-height: 1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(31, 59, 77, 0.1);
    position: relative;
}

.error-code[b-hwgpygq24q]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(31, 59, 77, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Bear Illustration */
.bear-illustration[b-hwgpygq24q] {
    position: relative;
    animation: float-b-hwgpygq24q 3s ease-in-out infinite;
}

@keyframes float-b-hwgpygq24q {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bear-head[b-hwgpygq24q] {
    width: 120px;
    height: 120px;
    background: var(--urso-accent);
    border-radius: 50% 50% 45% 45%;
    position: relative;
    box-shadow: var(--shadow-medium);
}

.bear-ears[b-hwgpygq24q] {
    position: absolute;
    top: -20px;
    width: 100%;
}

.ear[b-hwgpygq24q] {
    width: 35px;
    height: 35px;
    background: var(--urso-accent);
    border-radius: 50% 50% 20% 50%;
    position: absolute;
}

.ear.left[b-hwgpygq24q] {
    left: 10px;
    transform: rotate(-30deg);
}

.ear.right[b-hwgpygq24q] {
    right: 10px;
    transform: rotate(30deg);
}

.ear[b-hwgpygq24q]::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 20px;
    height: 20px;
    background: #5A3E2A;
    border-radius: 50%;
}

.bear-face[b-hwgpygq24q] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.eyes[b-hwgpygq24q] {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
}

.eye[b-hwgpygq24q] {
    width: 12px;
    height: 12px;
    background: #2C1810;
    border-radius: 50%;
    position: relative;
}

.pupil[b-hwgpygq24q] {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
}

.snout[b-hwgpygq24q] {
    display: flex;
    justify-content: center;
}

.nose[b-hwgpygq24q] {
    width: 8px;
    height: 6px;
    background: #2C1810;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

/* Code Brackets */
.code-brackets[b-hwgpygq24q] {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 140px;
    font-size: 2rem;
    color: var(--urso-accent-green);
    font-weight: bold;
    opacity: 0.7;
}

.bracket[b-hwgpygq24q] {
    animation: pulse-b-hwgpygq24q 2s ease-in-out infinite;
}

.bracket.right[b-hwgpygq24q] {
    animation-delay: 1s;
}

@keyframes pulse-b-hwgpygq24q {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Text Section */
.not-found-text[b-hwgpygq24q] {
    text-align: left;
}

.not-found-text h1[b-hwgpygq24q] {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--urso-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.not-found-text .lead[b-hwgpygq24q] {
    font-size: 1.2rem;
    color: var(--urso-text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.not-found-text p[b-hwgpygq24q] {
    color: var(--urso-text-medium);
    margin-bottom: 2rem;
}

/* Action Buttons */
.not-found-actions[b-hwgpygq24q] {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn[b-hwgpygq24q] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary[b-hwgpygq24q] {
    background: var(--urso-primary);
    color: var(--urso-white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover[b-hwgpygq24q] {
    background: #2A4D63;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary[b-hwgpygq24q] {
    background: var(--urso-white);
    color: var(--urso-primary);
    border: 2px solid var(--urso-primary);
}

.btn-secondary:hover[b-hwgpygq24q] {
    background: var(--urso-primary);
    color: var(--urso-white);
    transform: translateY(-2px);
}

.btn-icon[b-hwgpygq24q] {
    font-size: 1.2rem;
}

/* Helpful Links */
.helpful-links[b-hwgpygq24q] {
    border-top: 1px solid var(--urso-light-gray);
    padding-top: 2rem;
}

.helpful-links h3[b-hwgpygq24q] {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--urso-primary);
    margin-bottom: 1rem;
}

.helpful-links ul[b-hwgpygq24q] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.helpful-links li[b-hwgpygq24q] {
    margin-bottom: 0.5rem;
}

.helpful-links a[b-hwgpygq24q] {
    color: var(--urso-accent-green);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.helpful-links a:hover[b-hwgpygq24q] {
    color: var(--urso-primary);
    padding-left: 0.5rem;
}

.helpful-links a[b-hwgpygq24q]::before {
    content: '→';
    margin-right: 0.5rem;
    transition: var(--transition);
}

/* Background Pattern */
.tech-pattern[b-hwgpygq24q] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.pattern-dot[b-hwgpygq24q] {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--urso-accent-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: twinkle-b-hwgpygq24q 3s ease-in-out infinite;
}

.pattern-dot:nth-child(1)[b-hwgpygq24q] {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.pattern-dot:nth-child(2)[b-hwgpygq24q] {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.pattern-dot:nth-child(3)[b-hwgpygq24q] {
    bottom: 30%;
    left: 80%;
    animation-delay: 2s;
}

.pattern-line[b-hwgpygq24q] {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--urso-accent-green), transparent);
    opacity: 0.2;
    animation: slide-b-hwgpygq24q 4s ease-in-out infinite;
}

.pattern-line:nth-child(4)[b-hwgpygq24q] {
    top: 25%;
    left: 0;
    right: 0;
    animation-delay: 0s;
}

.pattern-line:nth-child(5)[b-hwgpygq24q] {
    bottom: 35%;
    left: 0;
    right: 0;
    animation-delay: 2s;
}

@keyframes twinkle-b-hwgpygq24q {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes slide-b-hwgpygq24q {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .not-found-content[b-hwgpygq24q] {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1rem;
    }

    .error-code[b-hwgpygq24q] {
        font-size: 5rem;
        margin-bottom: 1rem;
    }

    .not-found-text h1[b-hwgpygq24q] {
        font-size: 2rem;
    }

    .not-found-actions[b-hwgpygq24q] {
        justify-content: center;
    }

    .btn[b-hwgpygq24q] {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .bear-head[b-hwgpygq24q] {
        width: 100px;
        height: 100px;
    }

    .code-brackets[b-hwgpygq24q] {
        gap: 120px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .not-found-actions[b-hwgpygq24q] {
        flex-direction: column;
        align-items: center;
    }

    .btn[b-hwgpygq24q] {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .error-code[b-hwgpygq24q] {
        font-size: 4rem;
    }
}
/* /Pages/Services/Services.razor.rz.scp.css */
/* Services page specific styles */

/* Services Detailed Section */
.services-detailed[b-vomqrolp7g] {
    padding: 4rem 0;
}

.service-detail[b-vomqrolp7g] {
    background: var(--urso-white);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-soft);
}

.service-detail-header[b-vomqrolp7g] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon.large[b-vomqrolp7g] {
    font-size: 3rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--urso-background);
    border-radius: var(--border-radius);
}

.service-tagline[b-vomqrolp7g] {
    color: var(--urso-text-medium);
    /* Forbedret kontrast for service tagline */
    font-size: 1.1rem;
    margin: 0;
}

.service-description[b-vomqrolp7g] {
    margin-bottom: 2rem;
}

.service-offerings[b-vomqrolp7g] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.offering-card[b-vomqrolp7g] {
    background: var(--urso-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--urso-accent);
}

.offering-card h3[b-vomqrolp7g] {
    color: var(--urso-primary);
    margin-bottom: 0.5rem;
}

.offering-card p[b-vomqrolp7g] {
    color: var(--urso-text-medium);
    /* Förbättrad kontrast för offering beskrivningar */
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.offering-card ul[b-vomqrolp7g] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offering-card li[b-vomqrolp7g] {
    padding: 0.25rem 0;
    color: var(--urso-text-medium);
    /* Förbättrad kontrast för offering listor */
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.offering-card li[b-vomqrolp7g]::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--urso-accent);
    font-weight: bold;
}

/* Process Section */
.process-section[b-vomqrolp7g] {
    padding: 4rem 0;
    background: var(--urso-background);
}

.process-timeline[b-vomqrolp7g] {
    margin-top: 3rem;
}

.timeline-item[b-vomqrolp7g] {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-item:last-child[b-vomqrolp7g] {
    margin-bottom: 0;
}

.timeline-marker[b-vomqrolp7g] {
    width: 3rem;
    height: 3rem;
    background: var(--urso-primary);
    color: var(--urso-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
}

.timeline-item:not(:last-child) .timeline-marker[b-vomqrolp7g]::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 3rem;
    background: var(--urso-light-gray);
}

.timeline-content[b-vomqrolp7g] {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-content h3[b-vomqrolp7g] {
    color: var(--urso-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p[b-vomqrolp7g] {
    color: var(--urso-text-medium);
    /* Förbättrad kontrast för timeline beskrivningar */
    margin: 0;
}

/* CTA Section for Services */
.cta-section[b-vomqrolp7g] {
    padding: 4rem 0;
    background: var(--urso-primary);
    color: var(--urso-white);
    text-align: center;
}

.cta-content h2[b-vomqrolp7g] {
    color: var(--urso-white);
    margin-bottom: 1rem;
}

.cta-content p[b-vomqrolp7g] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-actions[b-vomqrolp7g] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .timeline-item[b-vomqrolp7g] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .timeline-item:not(:last-child) .timeline-marker[b-vomqrolp7g]::after {
        display: none;
    }

    .cta-actions[b-vomqrolp7g] {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {

    .services-detailed[b-vomqrolp7g],
    .process-section[b-vomqrolp7g] {
        padding: 2rem 0;
    }

    .service-detail[b-vomqrolp7g] {
        padding: 2rem;
    }
}
