@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Components/AutocompleteInput.razor.rz.scp.css */
.autocomplete-container[b-eg0fwe2ogc] {
    position: relative;
    width: 100%;
}

.autocomplete-dropdown[b-eg0fwe2ogc] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fffbf6;
    border-radius: 1rem;
    box-shadow:
        20px 20px 60px #d6d1cc,
        -20px -20px 60px #ffffff;
    margin-top: 8px;
    max-height: 320px;
    /* Increased height to show more results */
    overflow: hidden;
    animation: dropdownFadeIn-b-eg0fwe2ogc 0.2s ease-out;
}

.autocomplete-dropdown.scrollable[b-eg0fwe2ogc] {
    overflow-y: auto;
}

.autocomplete-item[b-eg0fwe2ogc] {
    padding: 1rem;
    color: #165343;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(214, 209, 204, 0.3);
    user-select: none;
    text-align: left;
}

.autocomplete-item:last-child[b-eg0fwe2ogc] {
    border-bottom: none;
}

.autocomplete-item:hover[b-eg0fwe2ogc] {
    background: linear-gradient(145deg, #f0ebe6, #ffffff);
    transform: translateX(4px);
    box-shadow:
        inset 5px 5px 15px #d6d1cc,
        inset -5px -5px 15px #ffffff;
}
    
.autocomplete-item.selected[b-eg0fwe2ogc] {
    background: linear-gradient(145deg, #e8e3de, #f5f0eb);
    transform: translateX(4px);
    box-shadow:
        inset 5px 5px 15px #d6d1cc,
        inset -5px -5px 15px #ffffff;
    border-left: 3px solid #165343;
}

.autocomplete-item:active[b-eg0fwe2ogc] {
    transform: translateX(2px);
    box-shadow:
        inset 8px 8px 20px #d6d1cc,
        inset -8px -8px 20px #ffffff;
}

/* Custom scrollbar for the dropdown */
.autocomplete-dropdown.scrollable[b-eg0fwe2ogc]::-webkit-scrollbar {
    width: 8px;
}

.autocomplete-dropdown.scrollable[b-eg0fwe2ogc]::-webkit-scrollbar-track {
    background: #f0ebe6;
    border-radius: 4px;
    margin: 8px 0;
}

.autocomplete-dropdown.scrollable[b-eg0fwe2ogc]::-webkit-scrollbar-thumb {
    background: #d6d1cc;
    border-radius: 4px;
    box-shadow:
        inset 2px 2px 4px #c4bfba,
        inset -2px -2px 4px #e8e3de;
}

.autocomplete-dropdown.scrollable[b-eg0fwe2ogc]::-webkit-scrollbar-thumb:hover {
    background: #c4bfba;
}

/* Animation for dropdown appearance */
@keyframes dropdownFadeIn-b-eg0fwe2ogc {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Make sure the input field follows the same styling as FormInput */
.field[b-eg0fwe2ogc] {
    flex: 1;
    min-width: 250px;
}

.field.half[b-eg0fwe2ogc] {
    flex: 1;
    min-width: 250px;
}

.form-input[b-eg0fwe2ogc] {
    width: 100%;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    background: #fffbf6;
    box-shadow:
        20px 20px 60px #d6d1cc,
        -20px -20px 60px #ffffff;
    font-size: 1rem;
    color: #165343;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-input[b-eg0fwe2ogc]::placeholder {
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-input:hover[b-eg0fwe2ogc] {
    transform: translateY(-2px);
    box-shadow:
        22px 22px 50px #d6d1cc,
        -22px -22px 50px #ffffff;
}

.form-input:focus[b-eg0fwe2ogc] {
    outline-color: #fffbf6;
    background: #fffbf6;
    transform: translateY(0);
    box-shadow:
        inset 20px 20px 60px #d6d1cc,
        inset -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}

.form-input.validation-error[b-eg0fwe2ogc] {
    box-shadow:
        20px 20px 60px #e6c077,
        -20px -20px 60px #fff8e6,
        0 0 0 1px #f2cd88,
        0 0 15px rgba(242, 205, 136, 0.3);
}

.form-input.validation-error:hover[b-eg0fwe2ogc] {
    transform: translateY(-2px);
    box-shadow:
        22px 22px 50px #e6c077,
        -22px -22px 50px #fff8e6,
        0 0 0 1px #f2cd88,
        0 0 20px rgba(242, 205, 136, 0.4);
}

.form-input.validation-error:focus[b-eg0fwe2ogc] {
    outline-color: #fffbf6;
    background: #fffbf6;
    transform: translateY(0);
    box-shadow:
        inset 20px 20px 60px #d6d1cc,
        inset -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}
/* /Components/Button.razor.rz.scp.css */
/* Neumorphism Button Component - Exact styling from Contact page */

.neumorphism-btn[b-m5e9ncdska] {
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    background: #fffbf6;
    color: #165343;
    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:
        20px 20px 60px #d6d1cc,
        -20px -20px 60px #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

.neumorphism-btn:hover[b-m5e9ncdska] {
    transform: translateY(-2px);
    color: #f2cd88;
    box-shadow:
        22px 22px 50px #d6d1cc,
        -22px -22px 50px #ffffff;
    text-decoration: none;
}

.neumorphism-btn:active[b-m5e9ncdska] {
    transform: translateY(0);
    box-shadow:
        inset 20px 20px 60px #d6d1cc,
        inset -20px -20px 60px #ffffff;
}

.neumorphism-btn:visited[b-m5e9ncdska] {
    color: #165343;
    text-decoration: none;
}

.neumorphism-btn:visited:hover[b-m5e9ncdska] {
    color: #f2cd88;
    text-decoration: none;
}

.neumorphism-btn.disabled[b-m5e9ncdska] {
    background: #e6e1dc;
    color: #999;
    cursor: not-allowed;
    transform: none !important;
    box-shadow:
        inset 10px 10px 30px #d0cbc6,
        inset -10px -10px 30px #fcf7f2;
}

.neumorphism-btn.disabled:hover[b-m5e9ncdska] {
    transform: none !important;
    color: #999;
    box-shadow:
        inset 10px 10px 30px #d0cbc6,
        inset -10px -10px 30px #fcf7f2;
}
/* /Components/CookieConsent.razor.rz.scp.css */
.cookie-banner[b-vjdfr65wzk] {
    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-vjdfr65wzk] {
    background: #fffbf6;
    color: #165343;
    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-vjdfr65wzk] {
    flex: 1 1 auto;
}

.cookie-text p[b-vjdfr65wzk] {
    margin: 0.25rem 0 0 0;
    color: #165343;
}

.cookie-actions[b-vjdfr65wzk] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-accept[b-vjdfr65wzk],
.btn-decline[b-vjdfr65wzk] {
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-accept[b-vjdfr65wzk] {
    background: #165343; /* green */
    color: white;
}

.btn-decline[b-vjdfr65wzk] {
    background: transparent;
    color: #165343;
    border: 1px solid rgba(22,83,67,0.12);
}

@media (max-width: 600px) {
    .cookie-content[b-vjdfr65wzk] {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .cookie-actions[b-vjdfr65wzk] {
        justify-content: flex-end;
    }
}

/* /Components/FormInput.razor.rz.scp.css */
.field[b-lcmzkn7w1e] {
    flex: 1;
    min-width: 250px;
}

.field.half[b-lcmzkn7w1e] {
    flex: 1;
    min-width: 250px;
}

.form-input[b-lcmzkn7w1e],
.form-textarea[b-lcmzkn7w1e] {
    width: 100%;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    background: #fffbf6;
    box-shadow:
        20px 20px 60px #d6d1cc,
        -20px -20px 60px #ffffff;
    font-size: 1rem;
    color: #165343;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    transition: all 0.3s ease;
    outline: none;
}

.input-wrapper[b-lcmzkn7w1e] {
    position: relative;
}

.form-input[b-lcmzkn7w1e],
.form-textarea[b-lcmzkn7w1e] {
    padding-right: 2.6rem;
    /* space for required star */
}

.form-input[b-lcmzkn7w1e]::placeholder,
.form-textarea[b-lcmzkn7w1e]::placeholder {
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-input:hover[b-lcmzkn7w1e],
.form-textarea:hover[b-lcmzkn7w1e] {
    transform: translateY(-2px);
    box-shadow:
        22px 22px 50px #d6d1cc,
        -22px -22px 50px #ffffff;
}

.form-input:focus[b-lcmzkn7w1e],
.form-textarea:focus[b-lcmzkn7w1e] {
    outline-color: #fffbf6;
    background: #fffbf6;
    transform: translateY(0);
    box-shadow:
        inset 20px 20px 60px #d6d1cc,
        inset -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}

.form-textarea[b-lcmzkn7w1e] {
    resize: none;
    min-height: 240px;
}

.form-input.validation-error[b-lcmzkn7w1e],
.form-textarea.validation-error[b-lcmzkn7w1e] {
    box-shadow:
        20px 20px 60px #e6c077,
        -20px -20px 60px #fff8e6,
        0 0 0 1px #f2cd88,
        0 0 15px rgba(242, 205, 136, 0.3);
}

.form-input.validation-error:hover[b-lcmzkn7w1e],
.form-textarea.validation-error:hover[b-lcmzkn7w1e] {
    transform: translateY(-2px);
    box-shadow:
        22px 22px 50px #e6c077,
        -22px -22px 50px #fff8e6,
        0 0 0 1px #f2cd88,
        0 0 20px rgba(242, 205, 136, 0.4);
}

.form-input.validation-error:focus[b-lcmzkn7w1e],
.form-textarea.validation-error:focus[b-lcmzkn7w1e] {
    outline-color: #fffbf6;
    background: #fffbf6;
    transform: translateY(0);
    box-shadow:
        inset 20px 20px 60px #d6d1cc,
        inset -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}

.field-validation-message[b-lcmzkn7w1e] {
    color: #f2cd88;
    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-lcmzkn7w1e] {
    font-size: 0.9rem;
    margin-top: 6px;
    color: #6b6b6b;
    text-align: left; /* force left alignment regardless of parent */
}

.inline-message.hint[b-lcmzkn7w1e] {
    color: #6b6b6b;
    text-align: left; /* ensure hints also left-aligned */
}

.inline-message.error[b-lcmzkn7w1e] {
    color: #b94a4a;
    text-align: left; /* ensure error messages not centered */
}

.required-star[b-lcmzkn7w1e] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #f2cd88;
    font-weight: 700;
    pointer-events: none;
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* /Layout/NavMenu.razor.rz.scp.css */
.header[b-miub7zub7w] {
    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: 0px 8px 24px -8px rgba(149, 157, 165, 0.2);
}

.header[b-miub7zub7w]::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-miub7zub7w] {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #165343;
    transition: color .3s ease;
}

.logo-icon[b-miub7zub7w] {
    height: 40px;
    width: auto;
    display: block;
    margin-right: .55rem;
    transition: opacity .3s ease;
}

.logo-text[b-miub7zub7w] {
    line-height: 1;
    white-space: nowrap;
}

@media (hover: hover) {
    .logo:hover .logo-text[b-miub7zub7w] { color: #f2cd88; }
    .logo:hover .logo-icon[b-miub7zub7w] { opacity: .9; }
}

.logo:active .logo-text[b-miub7zub7w] {
    color: #f2cd88;
}

.logo:active .logo-icon[b-miub7zub7w] {
    opacity: .75;
}

.navbar a[b-miub7zub7w] {
    font-size: 1.15rem;
    color: #165343;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
    transition: color 0.3s ease;
}

.navbar a.active[b-miub7zub7w] {
    color: #f2cd88;
}

.navbar a:active[b-miub7zub7w] {
    color: #f2cd88;
}

@media (hover: hover) {
    .navbar a:hover[b-miub7zub7w] {
        color: #f2cd88;
    }
}

.icons[b-miub7zub7w] {
    position: absolute;
    right: 5%;
    font-size: 2.5rem;
    color: #165343;
    cursor: pointer;
    display: none;
    transition: color 0.3s ease;
}

.icons:active[b-miub7zub7w] {
    color: #f2cd88;
}

@media (hover: hover) {
    .icons:hover[b-miub7zub7w] {
        color: #f2cd88;
    }
}

.hamburger[b-miub7zub7w] {
    width: 30px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span[b-miub7zub7w] {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #165343;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.icons:hover .hamburger span[b-miub7zub7w] {
    background-color: #f2cd88;
}

.icons:active .hamburger span[b-miub7zub7w] {
    background-color: #f2cd88;
}

/* Animation when menu is open */
.icons.open .hamburger span:nth-child(1)[b-miub7zub7w] {
    transform: translateY(10.5px) rotate(45deg);
}

.icons.open .hamburger span:nth-child(2)[b-miub7zub7w] {
    opacity: 0;
    transform: scaleX(0);
}

.icons.open .hamburger span:nth-child(3)[b-miub7zub7w] {
    transform: translateY(-10.5px) rotate(-45deg);
}

.hidden[b-miub7zub7w] {
    display: none;
}

@media (max-width: 992px) {
    .header[b-miub7zub7w] {
        padding: 1rem 5%;
    }
}

@media (max-width: 768px) {
    .header[b-miub7zub7w] {
        box-shadow: 0px 8px 24px -8px rgba(149, 157, 165, 0.2);
    }

    .header.navbar-active[b-miub7zub7w] {
        box-shadow: none;
    }

    .icons[b-miub7zub7w] {
        display: inline-flex;
    }

    .navbar[b-miub7zub7w] {
        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: 0px 8px 24px -8px rgba(149, 157, 165, 0.2);
        display: flex;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .navbar-open[b-miub7zub7w] {
        height: 8rem;
        opacity: 1;
    }

    .navbar a[b-miub7zub7w] {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex: 1;
        font-size: 1.1rem;
        text-align: center;
        padding: 0 2rem;
        text-decoration: none;
        transform: translateY(-50px);
        transition: 0.3s ease;
        opacity: 0;
        color: #165343;
        height: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-left: 0;
        font-weight: 500;
    }

    .navbar a.active[b-miub7zub7w] {
        color: #f2cd88;
    }

    .navbar a:active[b-miub7zub7w] {
        color: #f2cd88;
    }

    .navbar .nav-link[b-miub7zub7w] {
        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: #165343;
        height: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar a:last-child[b-miub7zub7w] {
        border-bottom: none;
    }

    .navbar-open a[b-miub7zub7w] {
        transform: translateY(0);
        transition-delay: calc(.15s * var(--i));
        opacity: 1;
    }
}
/* /Pages/About.razor.rz.scp.css */
/* About Page Modern Design */

.about-container[b-hkw4h99xpo] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header[b-hkw4h99xpo] {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 20px;
}

.about-header h1[b-hkw4h99xpo] {
    color: #165343;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-text[b-hkw4h99xpo] {
    color: #165343;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    opacity: 0.8;
}

.about-content[b-hkw4h99xpo] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-section[b-hkw4h99xpo] {
    background: #fffbf6;
    border-radius: 25px;
    padding: 40px;
    box-shadow:
        15px 15px 40px #d6d1cc,
        -15px -15px 40px #ffffff;
    transition: transform 0.3s ease;
}

.about-section:hover[b-hkw4h99xpo] {
    transform: translateY(-2px);
}

.about-section.highlight[b-hkw4h99xpo] {
    background: linear-gradient(135deg, #fffbf6 0%, #f8f4ef 100%);
    border-left: 5px solid #f2cd88;
}

.about-section h2[b-hkw4h99xpo] {
    color: #165343;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section h3[b-hkw4h99xpo] {
    color: #165343;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section p[b-hkw4h99xpo] {
    color: #165343;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-section p:last-child[b-hkw4h99xpo] {
    margin-bottom: 0;
}

.about-section strong[b-hkw4h99xpo] {
    color: #f2cd88;
    font-weight: 700;
}

.plans-title[b-hkw4h99xpo] {
    color: #165343;
    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-hkw4h99xpo] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

.plan-item[b-hkw4h99xpo] {
    background: #fffbf6;
    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-hkw4h99xpo] {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.plan-item-golden[b-hkw4h99xpo] {
    background: #f2cd88;
    box-shadow: none;
}

.plan-item.plan-item-golden h3[b-hkw4h99xpo],
.plan-item.plan-item-golden p[b-hkw4h99xpo] {
    color: #ffffff !important;
}

.plan-item-golden:hover[b-hkw4h99xpo] {
    box-shadow: none;
}

.plan-item.plan-item-green[b-hkw4h99xpo] {
    background: #165343;
    box-shadow: none;
}

.plan-item.plan-item-green:hover[b-hkw4h99xpo] {
    box-shadow: none;
}

.plan-item.plan-item-green h3[b-hkw4h99xpo],
.plan-item.plan-item-green p[b-hkw4h99xpo] {
    color: #fffbf6 !important;
}

.plan-item h3[b-hkw4h99xpo] {
    color: #165343;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.plan-item p[b-hkw4h99xpo] {
    font-size: 1rem;
    margin: 0;
}

.social-section[b-hkw4h99xpo] {
    /* Break out of container to span full width */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;

    /* Light green background */
    background: linear-gradient(135deg, #8db5a6 0%, #a3c4b7 100%);
    text-align: center;
    padding: 60px 40px;
    margin-top: 25px;
    margin-bottom: 0;

    /* Remove default about-section styling */
    border-radius: 0;
    box-shadow: none;
}

.social-section:hover[b-hkw4h99xpo] {
    transform: none;
}

.social-section h2[b-hkw4h99xpo] {
    margin-bottom: 15px;
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 600;
}

.social-section p[b-hkw4h99xpo] {
    margin-bottom: 30px;
    color: #ffffff !important;
}

.social-section h3[b-hkw4h99xpo] {
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons[b-hkw4h99xpo] {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.social-icons li[b-hkw4h99xpo] {
    margin: 0;
}

.social-icons a[b-hkw4h99xpo] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fffbf6;
    color: #165343;
    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-hkw4h99xpo] {
    transform: translateY(-2px);
    color: #f2cd88;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-icons a:active[b-hkw4h99xpo] {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-icons .label[b-hkw4h99xpo] {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-header h1[b-hkw4h99xpo] {
        font-size: 2.2rem;
    }

    .intro-text[b-hkw4h99xpo] {
        font-size: 1.2rem;
    }

    .about-section[b-hkw4h99xpo] {
        padding: 25px;
    }

    .about-section h2[b-hkw4h99xpo] {
        font-size: 1.5rem;
    }

    .plans-grid[b-hkw4h99xpo] {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-section[b-hkw4h99xpo] {
        padding: 40px 30px;
    }

    .social-icons[b-hkw4h99xpo] {
        gap: 15px;
        justify-content: center;
    }

    .social-icons a[b-hkw4h99xpo] {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-container[b-hkw4h99xpo] {
        padding: 0 15px;
    }

    .about-header h1[b-hkw4h99xpo] {
        font-size: 1.8rem;
    }

    .intro-text[b-hkw4h99xpo] {
        font-size: 1.1rem;
    }

    .about-section[b-hkw4h99xpo] {
        padding: 20px;
    }

    .plan-item[b-hkw4h99xpo] {
        padding: 20px;
    }

    .social-section[b-hkw4h99xpo] {
        padding: 30px 20px;
    }
}

/* Remove bottom padding from main element for About page */
[b-hkw4h99xpo] main {
    padding-bottom: 0;
}

/* Ensure social section extends to bottom */
.social-section[b-hkw4h99xpo] {
    margin-bottom: 0;
}
/* /Pages/Contact.razor.rz.scp.css */
/* Contact Page Neumorphism Styles */

/* Override main padding for contact page to create flex container */
main[b-hwk2it9wrg] {
    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-hwk2it9wrg] {
    background: #fffbf6;
    border-radius: 30px;
    padding: 30px;
    box-shadow:
        20px 20px 60px #d6d1cc,
        -20px -20px 60px #ffffff;
    max-width: none;
    width: 90%;
    margin: auto;
    /* Remove absolute positioning to prevent overlap with navbar */
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.contact-content[b-hwk2it9wrg] {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 0;
}

/* Add a bottom section for aligned buttons */
.contact-bottom[b-hwk2it9wrg] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

.contact-text[b-hwk2it9wrg] {
    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-hwk2it9wrg] {
    color: #165343;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.contact-info[b-hwk2it9wrg] {
    margin-top: 0;
}

.contact-info h3[b-hwk2it9wrg] {
    color: #165343;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info h4[b-hwk2it9wrg] {
    color: #165343;
    font-size: 1rem;
    font-weight: 600;
    margin: 25px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p[b-hwk2it9wrg] {
    color: #165343;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.contact-info p:last-child[b-hwk2it9wrg] {
    margin-bottom: 10px;
}

.contact-form[b-hwk2it9wrg] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fields[b-hwk2it9wrg] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.field[b-hwk2it9wrg] {
    flex: 1;
    min-width: 250px;
}

.field.half[b-hwk2it9wrg] {
    flex: 1;
    min-width: 250px;
}

.form-input[b-hwk2it9wrg],
.form-textarea[b-hwk2it9wrg] {
    width: 100%;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    background: #fffbf6;
    box-shadow:
        20px 20px 60px #d6d1cc,
        -20px -20px 60px #ffffff;
    font-size: 1rem;
    color: #165343;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-input[b-hwk2it9wrg]::placeholder,
.form-textarea[b-hwk2it9wrg]::placeholder {
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-input:hover[b-hwk2it9wrg],
.form-textarea:hover[b-hwk2it9wrg] {
    transform: translateY(-2px);
    box-shadow:
        22px 22px 50px #d6d1cc,
        -22px -22px 50px #ffffff;
}

.form-input:focus[b-hwk2it9wrg],
.form-textarea:focus[b-hwk2it9wrg] {
    outline-color: #fffbf6;
    background: #fffbf6;
    transform: translateY(0);
    box-shadow:
        inset 20px 20px 60px #d6d1cc,
        inset -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}

.form-textarea[b-hwk2it9wrg] {
    resize: none;
    min-height: 240px;
}

.validation-message[b-hwk2it9wrg] {
    margin-top: 15px;
    color: #f2cd88;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
}

.social-section[b-hwk2it9wrg] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
}

.social-section h4[b-hwk2it9wrg] {
    color: #165343;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.actions[b-hwk2it9wrg] {
    list-style: none;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.actions li[b-hwk2it9wrg] {
    margin: 0;
}

.btn-submit[b-hwk2it9wrg] {
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    background: #fffbf6;
    color: #165343;
    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:
        20px 20px 60px #d6d1cc,
        -20px -20px 60px #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover[b-hwk2it9wrg] {
    transform: translateY(-2px);
    color: #f2cd88;
    box-shadow:
        22px 22px 50px #d6d1cc,
        -22px -22px 50px #ffffff;
}

.btn-submit:active[b-hwk2it9wrg] {
    transform: translateY(0);
    box-shadow:
        inset 20px 20px 60px #d6d1cc,
        inset -20px -20px 60px #ffffff;
}

.social-icons[b-hwk2it9wrg] {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 0;
    flex-wrap: wrap;
    padding: 0;
}

.social-icons li[b-hwk2it9wrg] {
    margin: 0;
}

.social-icons a[b-hwk2it9wrg] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fffbf6;
    color: #165343;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow:
        15px 15px 45px #d6d1cc,
        -15px -15px 45px #ffffff;
}

.social-icons a:hover[b-hwk2it9wrg] {
    transform: translateY(-2px);
    color: #f2cd88;
    box-shadow:
        17px 17px 35px #d6d1cc,
        -17px -17px 35px #ffffff;
}

.social-icons a:active[b-hwk2it9wrg] {
    transform: translateY(0);
    box-shadow:
        inset 15px 15px 45px #d6d1cc,
        inset -15px -15px 45px #ffffff;
}

.social-icons .label[b-hwk2it9wrg] {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container[b-hwk2it9wrg] {
        padding: 30px 20px;
        margin: 10px;
    }

    .contact-content[b-hwk2it9wrg] {
        flex-direction: column;
        gap: 30px;
    }

    .contact-bottom[b-hwk2it9wrg] {
        flex-direction: column-reverse;
        gap: 35px;
        align-items: center;
    }

    .contact-text[b-hwk2it9wrg] {
        flex: none;
    }

    .fields[b-hwk2it9wrg] {
        margin-bottom: 10px;
        justify-content: center; /* ensure fields are centered on small screens */
    }

    .field.half[b-hwk2it9wrg] {
        flex: 1;
        min-width: 100%;
    }

    .actions[b-hwk2it9wrg] {
        justify-content: center;
    }

    .btn-submit[b-hwk2it9wrg] {
        width: 100%;
        max-width: 200px;
    }

    .social-section[b-hwk2it9wrg] {
        align-items: center;
        text-align: center;
    }

    .social-icons[b-hwk2it9wrg] {
        gap: 12px;
        margin-top: 10px;
        justify-content: center;
    }

    .social-icons a[b-hwk2it9wrg] {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-container[b-hwk2it9wrg] {
        padding: 20px 15px;
    }

    .form-input[b-hwk2it9wrg],
    .form-textarea[b-hwk2it9wrg] {
        padding: 12px 15px;
    }

    .btn-submit[b-hwk2it9wrg] {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* Home Page Neumorphism Styles */

/* Create a wrapper that breaks out of the main layout constraints */
.home-fullwidth-wrapper[b-63jr12ikkq] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.home-container[b-63jr12ikkq] {
    position: absolute;
    top: 3.5rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 3.5rem);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 20px 0;
}

.background-image[b-63jr12ikkq] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/images/akros_bakgrunnsbilde_01_optimized.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.content-overlay[b-63jr12ikkq] {
    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-63jr12ikkq] {
    margin-bottom: 40px;
}

.text-content h1[b-63jr12ikkq] {
    color: #165343;
    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 p[b-63jr12ikkq] {
    color: #165343;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 18px 0 18px 0;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Bullet list styling */
.text-content ul[b-63jr12ikkq] {
    list-style-type: disc;
    margin: 18px auto;
    padding-left: 1.5em;
    color: #165343;
    font-size: 1.15rem;
    max-width: 600px;
    width: 100%;
}

.text-content ul li[b-63jr12ikkq] {
    margin-bottom: 8px;
    line-height: 1.6;
    text-align: left;
}

.button-container[b-63jr12ikkq] {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.home-btn[b-63jr12ikkq] {
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    background: #fffbf6;
    color: #165343;
    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: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    min-width: 150px;
}

.home-btn:hover[b-63jr12ikkq] {
    transform: translateY(-2px);
    color: #f2cd88;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.home-btn:active[b-63jr12ikkq] {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.home-btn:visited[b-63jr12ikkq] {
    color: #165343;
    text-decoration: none;
}

.home-btn:visited:hover[b-63jr12ikkq] {
    color: #f2cd88;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-overlay[b-63jr12ikkq] {
        margin: 20px;
        padding: 30px 20px;
        max-width: calc(100% - 40px);
    }

    .text-content h1[b-63jr12ikkq] {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .text-content p[b-63jr12ikkq] {
        font-size: 1.1rem;
    }

    /* no flipboard on mobile; bullet list already responsive */

    .button-container[b-63jr12ikkq] {
        gap: 20px;
        flex-direction: column;
    }

    .home-btn[b-63jr12ikkq] {
        width: 100%;
        max-width: 200px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .content-overlay[b-63jr12ikkq] {
        margin: 10px;
        padding: 25px 15px;
        border-radius: 20px;
    }

    .text-content h1[b-63jr12ikkq] {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .text-content p[b-63jr12ikkq] {
        font-size: 1rem;
    }

    /* mobile bullet list tweaks not needed */

    .text-content[b-63jr12ikkq] {
        margin-bottom: 30px;
    }

    .home-btn[b-63jr12ikkq] {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 140px;
    }
}
