﻿:root {
    --primary: #4b2d9e;
    --accent: #00d2ff;
    --bg: #f9f9fb;
    --text-dark: #222;
    --text-light: #fff;
    --card-hover: rgba(75, 45, 158, 0.1);
    --primary-1: #006466;
    --primary-2: #065A60;
    --primary-3: #0B525B;
    --primary-4: #144552;
    --primary-5: #1B3A4B;
    --primary-6: #212F45;
    --primary-7: #272640;
    --primary-8: #312244;
    --primary-9: #3E1F47;
    --primary-10: #4D194D;
    --text-light: #f8f9fa;
    --text-muted: #ced4da;
    --shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    --scrollbar-thumb: #9A6102;
    --scrollbar-track: #E5E5E5;
    --scrollbar-thumb-hover: #000000;
    --service-bg: var(--primary-6);
    --service-header-bg: var(--primary-3);
    --service-header-text: #ffffff;
    --highlight-bg: var(--primary-1);
    --highlight-hover: var(--primary-2);
    --tl-primary: #006466; /*Primary-1*/
    --tl-secondary: #0B525B; /*Primary-3*/
    --tl-accent: #4D194D; /*Primary-10*/
    --tl-bg: #212F45; /*Primary-6*/
    --tl-light: #e0e0e0;
    --tl-dark: #1B3A4B; /*Primary-5*/
    --cu-primary: #006466; /*Primary-1*/
    --cu-accent: #4D194D; /*Primary-10*/
    --cu-bg: #212F45; /*Primary-6*/
    --cu-light: #e0e0e0;
    --cu-dark: #1B3A4B; /*Primary-5*/
    --ua-primary: #006466; /*Primary-1*/
    --ua-accent: #4D194D; /*Primary-10*/
    --ua-bg: #212F45; /*Primary-6*/
    --ua-light: #e0e0e0;
    --ua-dark: #1B3A4B; /*Primary-5*/
    --contact-bg: #212F45; /*Primary-6*/
    --contact-dark: #1B3A4B; /*Primary-5*/
    --contact-light: #e0e0e0;
    --contact-accent: #4D194D; /*Primary-10*/
    --contact-primary: #006466; /*Primary-1*/
    --color-dark: #000000;
    --color-white: #ffffff;
    --color-blue: #14213D;
    --color-blue-navy: #213663;
    --color-orange: #FCA311;
    --color-orange-dark: #D78703;
    --color-orange-darker: #9A6102;
    --color-grey: #E5E5E5;
    --color-grey-darker: #CCCCCC;
    --color-lime: #11FCA3;
    --color-lime-dark: #03D787;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--color-dark);
    color: var(--text-light);
    position: relative;
    z-index: 1;
    backdrop-filter: none;
    height: 100%;
}

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(160deg, #060612 0%, #14213D 35%, #1a0a2e 65%, #060612 100%);
        background-size: cover;
        background-position: center;
        z-index: -1;
    }

.hidden {
    display: none !important;
}


.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* full height */
}

.page-content {
    flex: 1;
}

/* ------------------------------------------------------------------------------- DARK HEADER & FOOTER */
/* ------------------------------------------------------------------ HEADER */
/* --------------------- HEADER --------------------- */
.dark-main-header,
.dark-logo-header {
    background: rgba(252, 163, 17, 0.85); /* orange theme with transparency */
    backdrop-filter: blur(6px); /* slight blur */
    border-bottom: 2px solid var(--color-orange-darker);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0.5rem 0;
}

/* Container */
.dark-logo-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Three-column layout */
.dark-logo-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left spacer */
.logo-header-left {
    flex: 1;
}

/* Center: Logo + Contact */
.dark-logo-header-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

/* Logo Image */
.dark-header-logo-img {
    height: 75px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    margin-bottom: 0.25rem;
}

/* Contact Info Horizontal */
.dark-logo-header-contact-links {
    display: flex;
    flex-direction: row; /* horizontal layout */
    gap: 1rem;
    font-size: 0.95rem;
    align-items: center;
}

.dark-contact-link {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

    .dark-contact-link:hover {
        color: var(--color-blue);
    }

/* Right: Actions */
.dark-logo-header-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

/* Language Buttons */
.dark-lang-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.2s ease;
    padding: 0;
}

    .dark-lang-btn:hover {
        transform: scale(1.2);
    }

.dark-flag-img {
    width: 40px;
    height: 28px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Login/Logout Buttons */
.dark-user-login-btn,
.user-logout-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s;
}

.dark-user-login-btn {
    background-color: var(--color-blue);
    color: var(--text-light);
}

    .dark-user-login-btn:hover {
        background-color: var(--color-blue-navy);
        transform: translateY(-1px);
    }

.user-logout-btn {
    background-color: #722F37;
    color: var(--text-light);
}

    .user-logout-btn:hover {
        background-color: #770737;
        transform: translateY(-1px);
    }

/* --------------------- RESPONSIVE --------------------- */
@media (max-width: 992px) {
    .dark-header-logo-img {
        height: 65px;
    }

    .dark-logo-header-actions {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .dark-logo-header-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .dark-logo-header-center {
        order: 1; /* logo stays on top */
        flex-direction: column; /* stack vertically on mobile */
    }

    .dark-logo-header-contact-links {
        flex-direction: column; /* stack on mobile */
        gap: 0.25rem;
        font-size: 0.85rem;
    }

    .dark-logo-header-actions {
        order: 2; /* actions below logo */
        justify-content: center;
        width: 100%;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .dark-header-logo-img {
        height: 50px;
    }

    .dark-user-login-btn,
    .user-logout-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    .dark-flag-img {
        width: 28px;
        height: 18px;
    }
}

/* --------------------- FADE-IN --------------------- */
.dark-logo-header {
    opacity: 0;
    animation: fadeInHeader 0.6s forwards;
}

@keyframes fadeInHeader {
    to {
        opacity: 1;
    }
}




/* ------------------------------------------------------------------ FOOTER OLD - NEW ONE AT THE BOTTOM  */
.dark-main-footer {
    background: linear-gradient(to right, rgba(252, 163, 17, 0.9), rgba(215, 135, 3, 0.9));
    font-family: 'Segoe UI', sans-serif;
    border-top: 2px solid var(--color-orange-darker);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 0;
    text-align: center;
    /* Stick to bottom */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    animation: footerFadeIn 0.8s ease-out forwards;
}

    .dark-main-footer p {
        margin: 0.15rem 0;
        font-size: 0.85rem;
        color: var(--text-dark);
    }

.dark-footer-link {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 500;
    margin: 0 6px;
    font-size: 0.85rem;
}

    .dark-footer-link:hover {
        color: #ffffff;
        text-decoration: none;
    }

/* Mobile: stack links */
@media (max-width: 600px) {
    .dark-footer-link {
        display: block;
        margin: 4px 0;
    }
}

/* Fade-in keyframes */
@keyframes oldfooterFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ------------------------------------------------------------------------------ OLD DESIGN HEADER & FOOTER*/
/*#region OLD_HEADER_FOOTER*/
/* ------------------------------------------------------------------------------ HEADER */

.main-header {
    background: linear-gradient(to right, #4b2d9e, #00d2ff);
    font-family: 'Segoe UI', sans-serif;
    border-bottom: 3px solid #321b6f;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
}

.company-name {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #c1e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.contact-info a {
    font-size: 0.95rem;
    font-weight: 500;
}

    .contact-info a:hover {
        text-decoration: underline;
    }

/* Header Container */
.logo-header {
    background: linear-gradient(to right, var(--color-blue), var(--color-blue-navy));
    border-bottom: 2px solid var(--color-orange-darker);
    padding: 16px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* Flex Container */
.logo-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.logo-header-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Center Section: Logo + Contact */
.logo-header-center {
    text-align: center;
    flex-grow: 1;
}

.logo-header-empty {
    width: 25%;
}

.header-logo-img {
    height: 120px;
    margin-bottom: 8px;
}

.logo-header-contact-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
}

.contact-link {
    text-decoration: none;
    color: var(--color-blue);
    margin: 2px 0;
    transition: color 0.2s ease;
}

    .contact-link:hover {
        color: var(--color-blue-navy);
    }


/* Language and Login Section */
.logo-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 25%;
}

/* Flag Language Buttons */
.lang-btn {
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

    .lang-btn:hover {
        transform: scale(1.3);
    }

/* Flag Image Styling */
.flag-img {
    width: 48px; /*32*/
    height: 36px; /*24*/
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* Login Button */
.user-login-btn {
    background-color: #4a90e2;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

    .user-login-btn:hover {
        background-color: #357ab8;
    }


/* -------------------------------------------------------------------------------------------- FOOTER */

.main-footer {
    background: linear-gradient(to right, #4b2d9e, #00d2ff);
    font-family: 'Segoe UI', sans-serif;
    border-top: 3px solid #321b6f;
    box-shadow: inset 0 6px 12px rgba(0, 0, 0, 0.1);
}

    .main-footer p {
        margin: 0.25rem 0;
        font-size: 0.95rem;
        color: #f0f0f0;
    }

.footer-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}

    .footer-link:hover {
        text-decoration: none;
        color: #d0e0ff;
    }

/*#endregion*/



/* -------------------------------------------------------------------------------------------- EFFECTS */
/*#region EFFECTS */

@keyframes lights {
    0% {
        color: hsl(230, 40%, 80%);
        text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.2), 0 0 0.125em hsla(320, 100%, 60%, 0.3), -1em -0.125em 0.5em hsla(40, 100%, 60%, 0), 1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
    }

    30% {
        color: hsl(230, 80%, 90%);
        text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 60%, 0.5), -0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2), 0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
    }

    40% {
        color: hsl(230, 100%, 95%);
        text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 90%, 0.5), -0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2), 0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.4);
    }

    70% {
        color: hsl(230, 80%, 90%);
        text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 60%, 0.5), 0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2), -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
    }

    100% {
        color: hsl(230, 40%, 80%);
        text-shadow: 0 0 1em hsla(320, 100%, 50%, 0.2), 0 0 0.125em hsla(320, 100%, 60%, 0.3), 1em -0.125em 0.5em hsla(40, 100%, 60%, 0), -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
    }
}

.text-night-effect {
    font-weight: 300;
    animation: lights 5s 750ms linear infinite;
}

/* TABS */
.tab-container-title {
    text-align: center;
    padding: 50px 0px 25px 0;
    font-size: 44px;
    font-weight: 600;
    color: #21222c;
    font-family: "Playfair Display SC";
}

.tabs-wrapper {
    background-color: #f6f8ff;
    width: 100%;
    background: transparent;
    opacity: 1;
}

    .tabs-wrapper.pre {
        background-size: cover !important;
        background: url(https://images.unsplash.com/photo-1523633589114-88eaf4b4f1a8?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=3870&q=80);
        background: url(https://images.unsplash.com/photo-1462556791646-c201b8241a94?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2896&q=80);
        position: absolute;
        top: 0;
        z-index: -2;
        opacity: 0.75;
        background: url(https://assets.codepen.io/4927073/mybg.jpg);
    }

    .tabs-wrapper .line {
        width: 50%;
        margin: 25px auto 0 auto;
        height: 1px;
        background-color: #c3d2e3;
    }

.tab-container {
    padding: 10px 0;
    text-align: center;
    width: 90%;
    padding: 10px 0px;
    text-align: center;
    margin: auto;
}

    .tab-container .tab-card {
        max-width: 600px;
        min-height: 140px;
        min-width: 595px;
        background-color: white;
        border-radius: 10px;
        border: 1px solid #e3e3e3;
        margin: 0 auto;
    }

.tabs {
    text-align: left;
    position: relative;
}

    .tabs input {
        position: absolute;
        opacity: 0;
        margin: 0;
        padding: 0;
    }

        .tabs input + label:hover {
            color: #777;
        }

    .tabs .tabsShadow {
        width: 100%;
        padding: 10px;
        box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.04);
        box-sizing: border-box;
        position: absolute;
        height: 35px;
        z-index: 0;
        top: 0;
        pointer-events: none;
    }

.tab-content .tab-item {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    position: absolute;
    padding: 10px 20px;
}

#tab-1:checked ~ .glider {
    left: 0px;
}

#tab-2:checked + label {
    color: #51a14c;
}

#tab-2:checked ~ .glider {
    background: linear-gradient(90deg, #51a14c 0%, #10c33e 100%);
    box-shadow: 0px 0px 8px 0px rgba(47, 187, 12, 0.62);
}

#tab-3:checked + label {
    color: #525252;
}

#tab-1:checked ~ section #content-1,
#tab-2:checked ~ section #content-2,
#tab-3:checked ~ section #content-3,
#tab-4:checked ~ section #content-4 {
    opacity: 1;
    visibility: visible;
}

.tabs input + label {
    margin: 12px -8px;
    width: 15%;
    transition: all 0.3s;
    text-align: center;
    border: none;
    border-bottom: 0.5pt solid #1d1e22;
    color: #e7e9f5;
    display: inline-flex;
    -webkit-box-pack: center;
    padding: 5pt 10pt;
    vertical-align: top;
    justify-content: flex-start;
    background: #333;
    box-shadow: 1px 1px 2px 1px #231f20;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 8pt;
    background: #26292c;
    margin-bottom: 0.5px;
    border-radius: 7px 7px 0 0 !important;
    border-top: 1px solid #3b3d3f;
    letter-spacing: 0.1666666667em !important;
    font-family: "antique-olive" !important;
    background: hsl(232deg 6% 17%);
    cursor: pointer;
}

.tab-content {
    margin: 0px auto;
    text-align: left;
    line-height: 20px;
    height: 240px;
    border-radius: 5px;
    box-shadow: 0 2px 3px rgb(10 10 10 / 10%), 0 0 0 1px rgb(10 10 10 / 10%);
    display: block;
    padding: 1.25rem;
    z-index: 2;
    border-top: 1px solid #3b3d3f;
    background: hsl(232deg 16% 15%);
    position: relative;
}

.tab-container .tab-card {
    max-width: 600px;
    min-height: 140px;
    border-radius: 10px;
    border: none;
    margin: 0 auto;
    z-index: 4 !important;
    position: relative;
    background: linear-gradient(#141e30, #243b55);
    background: #16181a;
    border-top: 1px solid #3b3d3f;
    background: hsl(232deg 18% 8%);
}

.tab-content p {
    margin: 10px 15px 10px 0;
    letter-spacing: 0.75px;
    font-size: 14pt;
    font-style: normal;
    color: #f0f2fc;
    line-height: 30px;
    margin-top: 10pt;
    font-family: "freight-display-pro";
    font-weight: 300 !important;
}

h2.tab-title.tab-warning,
h2.tab-title.tab-success,
h2.tab-title.tab-primary,
h2.tab-title.tab-default {
    display: inline-flex;
    color: #fff;
    background-position: bottom center;
    margin-bottom: 0pt !important;
    margin-top: 6pt;
    height: 22pt;
    text-fill-color: transparent !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    -ms-background-clip: text;
    -ms-text-fill-color: transparent;
    text-transform: capitalize;
    font-size: 24px;
    letter-spacing: 0px;
    font-family: "Manrope" !important;
    font-weight: 800 !important;
}

h2.tab-title.tab-default {
    background: linear-gradient(10deg, #f7ec9c, #ff8651);
}

h2.tab-title.tab-success {
    background: linear-gradient(10deg, #02ce85, #02ceab);
}

h2.tab-title.tab-primary {
    background: linear-gradient( 60deg, hsl(202deg 100% 75%), hsl(205deg 100% 64%), hsl(230deg 100% 75%), hsl(270deg 100% 72%) );
}

h2.tab-title.tab-warning {
    background: linear-gradient(70deg, #c51574, #97389b);
}

.tabs input {
    position: relative;
    opacity: 0;
    margin: auto !important;
    padding: 0;
}

label.tab.tab-primary {
    border-radius: 6pt 0 0 6pt;
}

label.tab.tab-warning {
    border-radius: 0 6pt 6pt 0;
}

#tab-1:checked + label {
    color: deepskyblue;
}

#tab-3:checked + label {
    color: #ffadfa;
    color: #ffaa75;
}

#tab-4:checked + label {
    color: #ffadfa;
}

#tab-1:checked ~ .glider {
    left: 1.6%;
}

#tab-2:checked ~ .glider {
    left: 21.85%;
}

#tab-3:checked ~ .glider {
    background: linear-gradient( 90deg, #faffcc 0%, #f5eea3 10%, #ffe48a 40%, #ffb54d 65%, #ff974d 85%, #ff8052 100% );
    left: 42.15%;
    box-shadow: 0px 0px 8px 0px hsl(17.72deg 100% 70% / 70%);
}

#tab-4:checked ~ .glider {
    background: linear-gradient(90deg, #b9326f 0%, #ff5ddc 100%);
    box-shadow: 0px 0px 8px 0px rgba(231, 13, 93, 0.57);
    left: 62.365% !important;
}

.glider {
    width: 15%;
    padding: 0px 13px;
    height: 4.5px;
    border-radius: 0 0 1px 1px;
    position: absolute;
    box-shadow: 0px 0px 8px 0px hsl(262deg 100% 70% / 70%);
    background: linear-gradient( 113deg, hsl(260deg 100% 64%) 0%, hsl(190deg 100% 55%) 100% );
    transition: all 0.3s;
    top: 36px;
    z-index: 2;
}

span.numit {
    font-size: 12pt;
    font-family: "muli";
    font-weight: 600;
    text-shadow: 0.5px 0.5px 0.5px #e7e9f5;
    color: #0e101a;
    margin-right: 2px;
    margin-left: -2px;
    padding: 0;
    color: aliceblue;
    text-shadow: 0.5pt 0.5pt 0.5pt #2d3748;
}

.neon-text {
    text-shadow: 0 0 5px var(--text-dark), 0 0 10px var(--text-dark), 0 0 20px var(--text-dark), 0 0 40px var(--text-dark), 0 0 80px var(--text-dark);
    animation: glow 3.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px var(--color-orange-darker), 0 0 10px var(--color-orange-darker), 0 0 20px var(--color-orange-darker), 0 0 40px var(--color-orange-darker), 0 0 80px var(--color-orange);
    }

    100% {
        text-shadow: 0 0 10px var(--color-blue), 0 0 20px var(--color-blue), 0 0 40px var(--color-blue), 0 0 80px var(--color-blue), 0 0 160px var(--color-blue);
    }
}

/*#endregion*/

/* --------------------------------------------------------------------------------------------- !NEW! USER INDEX PAGE */
/*#region NEW_USER_INDEX_PAGE*/

/* Floating button - hidden by default */
.mobile-nav-btn {
    display: none; /* only for mobile, JS will toggle visibility */
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--color-orange-dark);
    color: var(--color-blue-navy);
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, background 0.3s ease;
}

    .mobile-nav-btn:hover {
        background: var(--color-orange);
        transform: scale(1.05);
    }

/* Mobile menu */
.mobile-nav-menu {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 2px solid var(--color-orange);
    border-radius: 0.8rem;
    padding: 0.8rem;
    z-index: 1099;
    animation: slideUpMenu 0.3s ease-out;
}

.mobile-nav-link {
    display: block;
    padding: 0.6rem 1rem;
    background-color: var(--color-blue);
    color: var(--color-orange);
    text-decoration: none;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.2s ease;
    margin-top: 0.5rem;
    width: 100%;
    border: none;
}

    .mobile-nav-link:hover {
        background: rgba(252, 163, 17, 0.2);
    }

/* Animations */
@keyframes slideUpMenu {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Only show on mobile */
@media (max-width: 768px) {
    .mobile-nav-btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


/* Welcome Box */
.welcome-box {
    background: linear-gradient(145deg, var(--color-blue), var(--color-blue-navy));
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    animation: fadeIn 1s ease-in;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

    .welcome-box h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--color-orange);
    }

    .welcome-box p {
        font-size: 1.25rem;
        color: var(--color-orange-dark);
    }

/* Tabs */
.tab-buttons {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 2rem 0;
    gap: 1rem;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: var(--color-orange-dark);
    color: var(--text-dark);
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}

    .tab-button:hover,
    .tab-button.active {
        background-color: var(--color-blue);
        transform: scale(1.15);
        color: var(--color-orange);
    }

/* Section */
.index-tab-content {
    max-width: 100%;
    margin: auto;
    /*padding: 1rem;
    background-color: var(--color-orange-dark);*/
    border: 10px solid var(--color-orange);
    border-radius: 12px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.7s ease-in-out;
}

/* About Us Section */
.about-us {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 1 1 55%;
}

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        line-height: 1.6;
        color: var(--text-muted);
    }

.about-us-container {
    display: flex;
    flex-direction: column;
}

    .about-us-container p {
        font-size: 1.25em;
        line-height: 1.6;
    }

.founder-image {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

    .founder-image img {
        width: 100%;
        max-width: 250px;
        border-radius: 12px;
        box-shadow: var(--shadow);
        transition: transform 0.4s ease;
    }

        .founder-image img:hover {
            transform: scale(1.05);
        }

    .founder-image span {
        margin-top: 0.5rem;
        color: var(--color-blue);
        font-size: 0.75em;
        font-weight: 800;
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section layout */
.services-section {
    background: rgb(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: var(--color-white);
    padding: 3rem 1rem;
    border-radius: 8px;
}

.services-header {
    text-align: center;
    margin-bottom: 2rem;
}

.services-title {
    font-size: 2rem;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--color-grey);
    max-width: 700px;
    margin: 0 auto;
}

/* List view */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Card styling */
.service-card {
    background: rgba(0,0,0,0.7);
    border: 2px solid var(--color-orange-dark);
    border-radius: 0.8rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-3px);
    }

/* Header */
.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 1.2rem;
    background: rgba(255, 140, 0, 0.1);
    transition: background 0.3s ease;
}

    .service-header:hover {
        background: rgba(255, 140, 0, 0.2);
    }

.service-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.service-title {
    flex: 1;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-orange);
}

.service-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Details */
.service-details {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.2rem;
    color: var(--color-grey);
    transition: max-height 0.4s ease;
}

    .service-details p {
        margin-top: 1rem;
        font-size: 1rem;
    }

    .service-details ul {
        margin: 1rem 0;
        padding-left: 1.2rem;
        list-style-type: none;
    }

    .service-details li {
        margin-bottom: 0.5rem;
        position: relative;
    }

        .service-details li::before {
            content: "✔";
            color: var(--color-orange);
            position: absolute;
            left: -1.2rem;
        }



/* HOW IT WORKS */
/* Timeline Section Styling */
.how-it-works-section {
    background: rgb(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: var(--color-white);
    padding: 4rem 1.5rem;
    position: relative;
}

    .how-it-works-section .how-title {
        text-align: center;
        color: var(--color-orange);
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .how-it-works-section .ua-subtext {
        text-align: center;
        font-size: 1.1rem;
        color: var(--color-grey);
        margin-bottom: 3rem;
    }


/* --- */


/* Timeline line */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

    .timeline::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #FCA311;
        left: 50%;
        margin-left: -2px;
    }

/* Timeline items */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

    .timeline-item.left {
        left: 0;
    }

    .timeline-item.right {
        left: 50%;
    }

/* Icon */
.timeline-icon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-blue-navy);
    color: #000;
    font-size: 1.5rem;
    padding: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-orange);
    z-index: 2;
    box-shadow: 0 0 15px rgba(252,163,17,0.8);
}

/* Panel */
.timeline-panel {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    position: relative;
}
    .timeline-panel h3 {
        color: var(--color-orange);
        margin-top: 1rem;
    }

    .timeline-panel p {
        color: var(--color-orange-dark);
    }

/* Substeps */
.stage-substeps {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

    .stage-substeps li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 12px;
    }

    .stage-substeps .checkmark-step {
        color: var(--color-orange);
        font-weight: bold;
        margin-right: 8px;
        margin-bottom: 2px;
        flex-shrink: 0;
    }

    .stage-substeps div {
        line-height: 1.4;
    }

/* Animations */
.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

.timeline-icon.pulse {
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0%,100% {
        box-shadow: 0 0 10px rgba(252,163,17,0.8);
    }

    50% {
        box-shadow: 0 0 25px rgba(252,163,17,1);
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

        .timeline-item.right {
            left: 0;
        }

    .timeline-icon {
        left: 30px;
        transform: translateX(-50%);
    }
}


/* WHY CHOOSE US SECTION */

.why-choose-us-section {
    color: var(--cu-light);
    padding: 2rem 1rem;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--color-dark);
}

.choose-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #ffffff, var(--color-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.choose-item {
    background-color: var(--color-blue-navy);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s ease;
    border: 2px solid transparent;
}

    .choose-item:hover {
        transform: translateY(0) scale(1.03);
        border-color: var(--color-orange);
    }

    .choose-item.active {
        opacity: 1;
        transform: translateY(0);
    }

.choose-icon {
    font-size: 2.5rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.choose-heading {
    font-size: 1.4rem;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
}

.choose-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}


/* USER AREA */

.user-area-section {
    color: var(--text-dark);
    background-color: var(--color-dark);
    padding: 2rem 1rem;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    z-index: 1;
    align-content: center;
}

.ua-title {
    font-size: 2.5rem;
    text-align: center;
    background: linear-gradient(to right, #fff, var(--color-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.ua-subtext {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: var(--color-orange-dark);
}

.ua-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ua-card {
    background-color: var(--color-blue-navy);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.6s ease;
    border: 2px solid transparent;
}

    .ua-card:hover {
        transform: translateY(0px) scale(1.03);
        border-color: var(--color-orange);
    }

    .ua-card.active {
        opacity: 1;
        transform: translateY(0);
    }

.ua-icon {
    font-size: 2.5rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.ua-heading {
    font-size: 1.3rem;
    color: var(--color-orange);
    margin-bottom: 0.6rem;
}

.ua-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* CONTACT FORM */

.contact-section {
    
    color: var(--color-dark);
    padding: 5rem 2rem;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 12px;
    margin-top: 4rem;
}

.contact-title {
    font-size: 2.5rem;
    text-align: center;
    background: linear-gradient(to right, #fff, var(--color-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.contact-subtext {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--color-orange-dark);
}

.contact-errors {
    background: rgba(255, 0, 0, 0.1);
    border-left: 4px solid #f44336;
    color: #ffb3b3;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    animation: fadeInError 0.4s ease-in-out;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-error-list {
    list-style: none;
    padding-left: 1rem;
}

    .contact-error-list li {
        margin-bottom: 0.5rem;
    }

@keyframes fadeInError {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}


.contact-form-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, var(--color-orange), var(--color-orange-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.3rem;
}


/* Row layout */
.contact-row {
    gap: 1rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

/* Input fields */
.contact-input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: var(--color-orange); /* blue background */
    border: 2px solid transparent;
    border-radius: 0.5rem;
    color: var(--color-dark); /* orange text */
    font-size: 1rem;
    transition: border 0.3s ease, background 0.3s ease;
    width: 100%;
}
    .contact-input::placeholder {
        color: var(--color-dark);
    }

    .contact-input:focus {
        border-color: var(--color-orange-darker);
        outline: none;
        background: var(--color-orange-dark); /* darker blue on focus */
    }

/* Textarea */
.contact-textarea {
    width: 100%;
    min-height: 150px;
    background: var(--color-orange); /* blue background */
    border: 2px solid transparent;
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
    color: var(--color-dark); /* orange text */
    resize: vertical;
    transition: border 0.3s ease, background 0.3s ease;
    margin-bottom: 1rem;
}

    .contact-textarea::placeholder {
        color: var(--color-dark);
    }    

    .contact-textarea:focus {
        border-color: var(--color-orange-darker);
        outline: none;
        background: var(--color-orange-dark); /* darker blue on focus */
    }

/* Checkbox wrapper */
.contact-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Label + checkbox */
.contact-check {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--color-orange); /* orange label text */
}

    /* Hide native checkbox */
    .contact-check input {
        opacity: 0;
        position: absolute;
        cursor: pointer;
    }

/* Custom checkbox box */
.checkmark {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: var(--color-orange); /* blue box */
    border: 2px solid var(--color-orange-dark);
    margin-right: 0.6rem;
    position: relative;
    transition: all 0.2s ease;
}

/* Orange checkmark when selected */
.contact-check input:checked + .checkmark::after {
    content: "✔";
    color: var(--color-blue); /* orange checkmark */
    position: absolute;
    top: -6px;
    left: 2px;
    font-size: 1rem;
    font-weight: 600;
}

/* Submit button */
.contact-submit-btn {
    background: var(--color-orange);
    color: var(--color-dark);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 0.6rem;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    display: block;
    margin: 0 auto;
}

    .contact-submit-btn:hover {
        background: var(--color-orange-dark);
        color: var(--color-blue); /* invert to white text on hover */
    }

/* Mobile */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
    }
}


/*#endregion*/

/* -------------------------------------------------------------------------------------------- OLD USER INDEX PAGE */
/*#region OLD_USER_INDEX_PAGE*/
/*
.hidden {
    display: none !important;
}

.hero-intro {
    background: linear-gradient(135deg, #4b2d9e, #00d2ff);
    color: white;
    padding: 5rem 1rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-slogan {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #ffffff, #d6f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    font-weight: 400;
    color: #f0f0f0;
    animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.old-services-section {
    background: #f5f7fc;
    padding: 4rem 1rem;
    text-align: center;
}

.old-section-title {
    font-size: 2.5rem;
    color: #4b2d9e;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.old-section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.old-service-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.old-card-btn {
    background-color: white;
    border: 2px solid #4b2d9e;
    color: #4b2d9e;
    font-weight: 600;
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
}

    .old-card-btn:hover,
    .old-card-btn.active {
        background: linear-gradient(to right, #4b2d9e, #00d2ff);
        color: white;
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

.old-service-details {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background-color: white;
    border-left: 4px solid #4b2d9e;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

    .old-service-details h3 {
        color: #4b2d9e;
        margin-top: 0;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


form {
    margin-top: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

    form h3 {
        margin-top: 0;
    }

input, textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

label {
    font-weight: bold;
}

.checkbox-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

    .checkbox-group label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
    }

    .checkbox-group input[type="checkbox"] {
        appearance: none;
        width: 20px;
        height: 20px;
        border: 2px solid var(--primary);
        border-radius: 4px;
        position: relative;
    }

        .checkbox-group input[type="checkbox"]:checked::before {
            content: "✓";
            position: absolute;
            left: 3px;
            top: -2px;
            font-size: 16px;
            color: var(--primary);
        }

button {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

    button:hover {
        background-color: #3a2189;
    }
*/

/*#endregion*/


/* ---------------------------------------------------------------------------------- ADMIN LOGIN */
/*#region ADMIN_LOGIN*/

.admin-login-wrapper {
    height: 50vh;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.login-card {
    background-color: var(--color-blue-navy);
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
}

    .login-card h2 {
        font-weight: 700;
        background: linear-gradient(to right, var(--color-orange), var(--color-orange-dark));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.login-btn {
    background-color: var(--color-orange);
    color: var(--text-dark);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: background 0.3s ease;
    width: 50%;
    margin: 0 auto;
}

    .login-btn:hover {
        background-color: var(--color-orange-dark);
    }

/*#endregion*/

/* ---------------------------------------------------------------------------------- ADMIN SIDEBAR */
/*#region ADMIN_SIDEBAR*/

.admin-wrapper {
    display: flex;
    gap: 2rem;
    background-color: var(--color-dark);
    color: var(--color-white);
}

.admin-sidebar {
    background-color: var(--color-blue-navy);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    width: 100%;
    max-width: 300px;
    color: var(--color-white);
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--color-orange);
    border-bottom: 2px solid var(--color-orange-dark);
    padding-bottom: 0.5rem;
}

.sidebar-buttons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-element {
    border-radius: 0.5rem;
    transition: background 0.3s, transform 0.2s;
}

.sidebar-link {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--color-white);
    font-weight: 500;
    border-radius: 0.5rem;
    transition: background 0.3s, color 0.3s;
    background-color: var(--color-blue);
}

    .sidebar-link:hover,
    .sidebar-element:hover .sidebar-link {
        background-color: var(--color-orange-dark);
        color: var(--color-white);
        transform: translateX(4px);
    }

    /* Optional: active class for highlighting current page */
    .sidebar-link.active {
        background-color: var(--color-orange);
        font-weight: bold;
    }

/* Responsive tweak */
@media (max-width: 768px) {
    .admin-sidebar {
        max-width: 100%;
        padding: 1.5rem 1rem;
    }
}

/*#endregion*/

/* -------------------------------------------------------------------------------------------- ADMIN INDEX PAGE */
/*#region ADMIN_INDEX_PAGE*/

/* === Sidebar === */
.admin-sidebar {
    flex: 1 1 250px;
}

/* === Main Area === */
.admin-main {
    flex: 3 1 700px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* === Title === */
.admin-index-title {
    font-size: 2rem;
    color: var(--color-orange);
    border-bottom: 2px solid var(--color-orange-dark);
    padding-bottom: 0.5rem;
}

/* === Quick Actions === */
.admin-quick-actions {
    background-color: var(--color-blue-navy);
    padding: 1.5rem;
    border-radius: 1rem;
}

.admin-quick-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-quick-action-button {
    flex: 1 1 150px;
}

.admin-quick-action-link {
    text-decoration: none;
}

.admin-quick-action-card {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 1rem;
    text-align: center;
    border-radius: 0.75rem;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
}

    .admin-quick-action-card:hover {
        background-color: var(--color-orange-dark);
        transform: scale(1.03);
    }

.logout-card {
    background-color: var(--color-orange-darker);
}

/* === Split Section (Requests & Reminders) === */
.admin-index-split-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.admin-index-col, .admin-index-appointments {
    flex: 1 1 300px;
}

/* === Section Titles === */
.admin-index-section-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-lime);
    border-bottom: 1px solid var(--color-grey-darker);
    padding-bottom: 0.25rem;
}

/* === Contact Requests === */
.admin-index-contact-request-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-index-contact-request {
    background-color: var(--color-blue);
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--color-white);
    transition: background 0.3s, transform 0.2s;
}

    .admin-index-contact-request:hover {
        background-color: var(--color-orange-dark);
        transform: translateX(5px);
    }

.admin-index-request-name {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.admin-index-request-title {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-grey);
}

.admin-index-request-mail,
.admin-index-request-timestamp {
    display: block;
    font-size: 0.75rem;
    color: var(--color-grey-darker);
}

/* === Appointments === */
.admin-appointments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-appointment-card {
    background-color: var(--color-blue);
    padding: 1rem;
    border-radius: 0.75rem;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    transition: border 0.3s;
}

.admin-appointment-card-date {
    font-weight: bold;
}

.admin-appointment-project-title {
    font-size: 0.85rem;
    color: var(--color-lime-dark);
}

.admin-appointment-card-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.admin-appointment-view-project-btn,
.admin-appointment-dismiss-btn {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    background-color: var(--color-orange-dark);
    color: var(--color-white);
    transition: background 0.3s;
}

.admin-appointment-dismiss-btn {
    background-color: var(--color-orange-darker);
}

    .admin-appointment-view-project-btn:hover,
    .admin-appointment-dismiss-btn:hover {
        background-color: var(--color-orange);
    }

/* === Reminder Importance (color scale) === */
.importance-1 {
    border-left: 5px solid #11FCA3;
}

.importance-2 {
    border-left: 5px solid #03D787;
}

.importance-3 {
    border-left: 5px solid #FCA311;
}

.importance-4 {
    border-left: 5px solid #D78703;
}

.importance-5 {
    border-left: 5px solid #9A6102;
}

.importance-6 {
    border-left: 5px solid red;
}

/* === Project Preview === */
.admin-latest-project-preview {
    background-color: var(--color-blue-navy);
    padding: 1.5rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

    .admin-latest-project-preview:hover {
        background-color: var(--color-blue);
    }

.admin-index-project-preview-box {
    padding: 1rem;
    border: 2px dashed var(--color-orange-dark);
    border-radius: 0.75rem;
    background-color: var(--color-dark);
    transition: border 0.3s;
}

    .admin-index-project-preview-box:hover {
        border-color: var(--color-orange);
    }

.admin-index-project-preview-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-lime-dark);
}

/* === Responsive === */
@media (max-width: 768px) {
    .admin-wrapper {
        flex-direction: column;
    }

    .admin-index-split-section {
        flex-direction: column;
    }

    .admin-quick-action-buttons {
        flex-direction: column;
    }
}

.custom-card {
    background-color: var(--color-orange-dark);
    border: 1px solid var(--color-grey-darker);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.search-dropdown {
    max-width: 25%;
}

.project-list .list-group-item {
    border: none;
    border-bottom: 1px solid var(--color-orange);
    transition: background-color 0.2s;
}

    .project-list .list-group-item:hover {
        background-color: #f0f4fa;
    }

.selected-project-box {
    background-color: var(--color-orange);
    border: 1px solid var(--color-orange-darker);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.selected-project-details {
    margin-top: 10px;
    font-size: 0.9rem;
}

.contact-card-list {
    background-color: var(--color-orange);
    border: 1px solid var(--color-orange-darker);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

/* Container anchor styled like a card */
.contact-card {
    display: block;
    background-color: var(--color-orange-dark);
    border: 1px solid var(--color-grey-darker);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    color: inherit;
}

    .contact-card:hover {
        background-color: var(--color-orange);
        transform: translateY(-2px);
        text-decoration: none;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    }

    .contact-card h6,
    .contact-card p,
    .contact-card small {
        margin: 0;
    }


.appointments-list .appointment-card {
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* Importance backgrounds */
.importance-1 {
    background-color: #6c757d;
}
/* Default / Unknown */
.importance-2 {
    background-color: #17a2b8;
}
/* Info / Low */
.importance-3 {
    background-color: #20c997;
}
/* Moderate */
.importance-4 {
    background-color: #ffc107;
    color: #212529;
}
/* Medium */
.importance-5 {
    background-color: #fd7e14;
}
/* High */
.importance-6 {
    background-color: #dc3545;
}
/* Critical */

/* Button styling override for light buttons on dark bg */
.appointment-card .btn-outline-light {
    border-color: var(--color-orange);
    color: var(--text-dark);
}

    .appointment-card .btn-outline-light:hover {
        background-color: var(--color-orange-dark);
        color: var(--text-dark);
    }

/*#endregion*/

/* ---------------------------------------------------------------------------------------------- ADMIN CONTACT REQUESTS PAGE */
/*#region ADMIN_CONTACT_REQUESTS_PAGE*/


/* Page Title */
.admin-page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 1.5rem;
    text-align: left;
    border-left: 6px solid var(--color-orange);
    padding-left: 10px;
}

/* Filter Panel */
.admin-contact-requests-filter-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.filter-requests-btn {
    background-color: var(--color-dark);
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .filter-requests-btn:hover {
        background-color: var(--color-orange-dark);
        color: var(--color-white);
        transform: translateY(-2px);
    }

    .filter-requests-btn.active {
        background-color: var(--color-orange);
        color: var(--color-dark);
    }

/* Search Bar */
.search-bar-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: flex-start;
}

.search-bar {
    display: flex;
    border: 2px solid var(--color-orange);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.search-filter {
    background-color: var(--color-dark);
    color: var(--color-white);
    border: none;
    padding: 6px 10px;
    font-size: 0.95rem;
    outline: none;
}

.search-input {
    flex: 1;
    border: none;
    padding: 8px 12px;
    font-size: 0.95rem;
    outline: none;
    background-color: var(--color-grey);
    color: var(--color-dark);
}

    .search-input::placeholder {
        color: var(--color-grey-darker);
    }

/* Request List */
.request-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Request Card */
.request-card {
    background-color: var(--color-dark);
    border: 2px solid var(--color-orange-dark);
    border-radius: 10px;
    padding: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

    .request-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    }

.request-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Card Content */
.request-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.request-card-title {
    font-size: 0.95rem;
    color: var(--color-grey-darker);
    margin-bottom: 6px;
}

.request-card-timestamp {
    font-size: 0.8rem;
    color: var(--color-grey);
}

/* Status Badges */
.request-card-badge-new,
.request-card-badge-answered,
.request-card-badge-accepted,
.request-card-badge-completed,
.request-card-badge-rejected {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 14px;
    text-transform: uppercase;
}

/* Different colors per status */
.request-card-badge-new {
    background-color: var(--color-orange);
    color: var(--color-dark);
}

.request-card-badge-answered {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.request-card-badge-accepted {
    background-color: var(--color-lime);
    color: var(--color-dark);
}

.request-card-badge-completed {
    background-color: var(--color-blue-navy);
    color: var(--color-white);
}

.request-card-badge-rejected {
    background-color: #722F37;
    color: var(--color-white);
}

/*#endregion*/

/* ------------------------------------------------------------------------------ ADMIN CONTACT REQUEST DETAILS */
/*#region ADMIN_CONTACT_REQUEST_DETAILS*/


/* Subtitle */
.admin-page-subtitle {
    font-size: 0.9rem;
    color: var(--color-grey-darker);
    margin-bottom: 1.5rem;
    display: block;
}

/* Contact Request Info */
.admin-contact-request-info {
    background-color: var(--color-dark);
    border: 2px solid var(--color-orange-dark);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.admin-contact-request-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-orange);
    margin-bottom: 10px;
}

.admin-contact-request-text {
    font-size: 0.95rem;
    color: var(--color-white);
    margin: 4px 0;
}

    .admin-contact-request-text a {
        color: var(--color-orange);
        text-decoration: none;
    }

        .admin-contact-request-text a:hover {
            text-decoration: underline;
        }

/* Communication Preferences */
.admin-contact-request-contact {
    display: flex;
    align-items: center;
    margin-top: 6px;
}

.admin-contact-request-contact-box {
    accent-color: var(--color-orange);
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.admin-contact-request-contact-label {
    font-size: 0.9rem;
    color: var(--color-grey);
}

/* Status Buttons */
.admin-contact-request-status-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.admin-contact-request-status-btn {
    background-color: var(--color-orange);
    border: none;
    color: var(--color-dark);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
}

    .admin-contact-request-status-btn:hover {
        background-color: var(--color-orange-dark);
        transform: translateY(-2px);
    }

/* Special Reject Button */
.btn-status-reject {
    background-color: #722F37;
    color: var(--color-white);
}

    .btn-status-reject:hover {
        background-color: #990f3d;
    }

/* Status Info Box */
.admin-contact-request-status-box {
    background-color: var(--color-blue-navy);
    border-left: 5px solid var(--color-orange);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    color: var(--color-white);
    font-size: 0.95rem;
}

/* Notes Section */
.admin-contact-request-notes-box {
    background-color: var(--color-dark);
    border: 2px solid var(--color-orange-dark);
    border-radius: 10px;
    padding: 1rem;
}

.admin-contact-request-notes-header {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

/* Add Note */
.admin-contact-request-new-note-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.admin-contact-request-note-textarea {
    resize: vertical;
    padding: 10px;
    border: 2px solid var(--color-orange-dark);
    border-radius: 6px;
    background-color: var(--color-grey);
    color: var(--color-dark);
    font-size: 0.95rem;
    outline: none;
}

    .admin-contact-request-note-textarea:focus {
        border-color: var(--color-orange);
        box-shadow: 0 0 6px rgba(252, 163, 17, 0.5);
    }

.admin-contact-request-submit-note-btn {
    background-color: var(--color-orange);
    color: var(--color-dark);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s;
}

    .admin-contact-request-submit-note-btn:hover {
        background-color: var(--color-orange-dark);
        transform: translateY(-2px);
    }

/* Existing Notes */
.admin-contact-request-notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-contact-request-note-entry {
    background-color: var(--color-blue-navy);
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.admin-contact-request-note-user {
    font-size: 0.8rem;
    color: var(--color-grey-darker);
    display: block;
    margin-bottom: 6px;
}

.admin-contact-request-note-content {
    font-size: 0.95rem;
    color: var(--color-white);
}

.admin-contact-request-delete-note-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s, color 0.2s;
    color: var(--color-grey);
}

    .admin-contact-request-delete-note-btn:hover {
        color: #ff4d4d;
        transform: scale(1.2);
    }

/*#endregion*/


/* -------------------------------------------------------------------------------------------- ADMIN CREATE NEW PROJECT */
/*#region ADMIN_CREATE_NEW_PROJECT*/

#newCustomerFields input {
    border-radius: 8px;
}

.modal-body .form-control,
.modal-body .form-select {
    border-radius: 8px;
}

.btn-outline-primary {
    border-radius: 8px;
    font-weight: 600;
}

.btn-lg {
    font-size: 1.25rem;
    font-weight: 600;
}

.admin-new-project-form {
    background-color: var(--color-blue);
}

/*#endregion*/


/* ------------------------------------------------------------------------------------- ADMIN PROJECTS LIST */
/* Tabs */
.project-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.project-tab {
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 25px;
    background: var(--color-orange);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .project-tab:hover {
        background-color: var(--color-orange-dark);
    }

    .project-tab.active {
        background-color: var(--color-orange-darker);
        color: var(--text-dark);
    }

/* Project Cards Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Card */
.project-card {
    background-color: var(--color-orange-dark);
    border: 1px solid var(--color-orange);
    border-radius: 12px;
    padding: 1.2rem;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .project-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        text-decoration: none;
    }

/* Card Elements */
.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-blue);
}

.project-card .badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
}

/* Optional: Custom colors per status badge */
.badge.bg-primary {
    background-color: var(--color-orange);
}

.badge.bg-success {
    background-color: var(--color-lime);
}

.badge.bg-danger {
    background-color: #e74c3c;
}

/* Project List Layout */
.project-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-list-item {
    background: var(--color-orange-dark);
    border: 1px solid var(--color-orange);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

    .project-list-item:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }

/* Inner clickable link */
.project-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

/* Info area */
.project-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.project-info p {
    margin: 0;
    font-size: 0.95rem;
}

/* Status badge */
.status-badge {
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    background-color: var(--color-orange);
    color: var(--text-dark);
    white-space: nowrap;
}

    /* Optional: Color variations for status */
    .status-badge[data-status="current"] {
        background-color: var(--color-orange-dark);
    }

    .status-badge[data-status="completed"] {
        background-color: #2ecc71;
    }

    .status-badge[data-status="canceled"] {
        background-color: #e74c3c;
    }


/* ------------------------------------------------------------------------------------- ADMIN PROJECT DETAILS */

.project-details-header {
    border-left: 5px solid var(--color-grey-darker);
    padding-left: 1rem;
}

.project-codename {
    font-size: 1.25rem;
    color: var(--color-blue);
}

.project-details-title {
    font-size: 2rem;
    font-weight: bold;
}

.project-details-description {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.customer-info-box,
.project-control-panel,
.file-manager {
    border-radius: 1rem;
    background-color: var(--color-orange-dark);
}

.stage-indicator {
    font-size: 1.2rem;
    color: var(--color-blue);
}

.stage-buttons button {
    min-width: 80px;
}

.status-buttons button {
    flex: 1;
}

.file-manager ul.list-group {
    margin-top: 1rem;
}

.card h5 {
    margin-bottom: 1rem;
}

.project-header-box {
    background-color: var(--color-orange-dark);
    border-left: 5px solid var(--color-orange);
    border-radius: 1rem;
}

.project-dates {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.project-control-panel .input-group {
    max-width: 300px;
}

.project-control-panel .status-buttons {
    margin-top: 1rem;
}

.nav-tabs .nav-link {
    cursor: pointer;
}

.project-status-indicator {
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: var(--color-grey-darker);
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

    /* Individual status styles */
    .project-status-indicator.preparation {
        background-color: #6c757d; /* Gray */
    }

    .project-status-indicator.current {
        background-color: var(--color-orange); /* Bootstrap green */
    }

    .project-status-indicator.canceled {
        background-color: #dc3545; /* Bootstrap red */
    }

    .project-status-indicator.completed {
        background-color: var(--color-lime); /* Bootstrap blue */
    }


.project-note {
    background-color: var(--color-orange-dark);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--color-orange);
}


.public-note {
    background-color: #e6f4ea; /* light greenish */
}

.internal-note {
    background-color: #f4f4f6; /* subtle gray */
}

.project-note-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.project-note-title {
    min-width: 120px;
}

.project-note-user {
    min-width: 120px;
}

.project-note-timestamp {
    flex-grow: 1;
    text-align: center;
    font-size: 0.85rem;
}

.project-note-delete-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

.project-note-body {
    font-size: 1rem;
    line-height: 1.5;
    white-space: pre-line;
}

.project-note-visibility {
    font-size: 0.8rem;
}

/* ---------------------------------------------------------------------------------------------- ADMIN MESSAGES */

/* Layout and Tabs */
.message-page {
    padding: 2rem;
    font-family: 'Segoe UI', sans-serif;
}

.message-tabs button {
    margin-right: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.3rem;
    background: var(--color-orange);
    cursor: pointer;
}

    .message-tabs button.active {
        background: var(--color-orange-dark);
        color: white;
    }

/* Search Bar */
.message-search-bar {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    align-items: center;
}

    .message-search-bar select,
    .message-search-bar input {
        padding: 0.5rem;
        border: 1px solid var(--color-orange-dark);
        border-radius: 0.3rem;
    }

/* Message Preview */
.message-preview {
    border: 1px solid var(--color-grey-darker);
    border-left: 5px solid var(--color-orange);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: background 0.2s;
}

    .message-preview:hover {
        background: var(--color-orange-dark);
    }

    .message-preview .badge {
        background: red;
        color: white;
        padding: 0.2rem 0.5rem;
        border-radius: 0.3rem;
        font-size: 0.75rem;
    }

    .message-preview .badge-green {
        background-color: green;
        color: black;
    }

/* Modal */
.modal .file-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
}

/* ---------------------------------------------------------------------------------------------- ADMIN BUG REPORTS */

.bug-tabs {
    display: flex;
    gap: 1rem;
}

.tab-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: var(--color-orange);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

    .tab-btn.active {
        background-color: var(--color-orange-dark);
        color: var(--text-dark);
    }

.bug-search-type, .bug-sort-select {
    min-width: 160px;
}

    .bug-search-input {
        width: 250px;
    }

.bug-sort-order-select {
    max-width: 80px;
}

.bug-card {
    background: var(--color-orange-dark);
    border: 1px solid var(--color-grey-darker);
    border-left: 5px solid var(--color-orange);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

    .bug-card:hover {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

.bug-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.bug-meta {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
}

.bug-status-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: white;
}

.status-new {
    background-color: #dc3545;
}

.status-active {
    background-color: var(--color-orange);
    color: black;
}

.status-solved {
    background-color: var(--color-lime);
}

/* ------------------------------------------------------------------------------------- ADMIN BUG REPORT DETAILS */

/* === Bug Details Container === */
.bug-details-container {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

/* === Status Controls === */
.bug-status-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bug-info-set-active-btn,
.bug-info-set-solved-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s, transform 0.2s;
}

.bug-info-set-active-btn {
    background-color: var(--color-orange);
    color: var(--color-dark);
}
.bug-info-set-active-btn:hover {
    background-color: var(--color-orange-dark);
    transform: scale(1.05);
}

.bug-info-set-solved-btn {
    background-color: var(--color-lime);
    color: var(--color-dark);
}
.bug-info-set-solved-btn:hover {
    background-color: var(--color-lime-dark);
    transform: scale(1.05);
}

/* === Bug Info Card === */
.bug-info-card {
    background-color: var(--color-blue-navy);
    border: 1px solid var(--color-grey-darker);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}
.bug-info-card h4 {
    color: var(--color-orange);
    margin-bottom: 0.5rem;
}
.bug-info-card a {
    color: var(--color-lime);
    text-decoration: none;
}
.bug-info-card a:hover {
    text-decoration: underline;
}

/* === Status Badge === */
.bug-status-details-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: bold;
    background-color: var(--color-orange);
    color: var(--color-dark);
}

/* === Solved Info Alert === */
.bug-solved-alert {
    background-color: rgba(17,252,163,0.1);
    border: 1px solid var(--color-lime);
    color: var(--color-lime);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

/* === Screenshot Section === */
.bug-screenshots h5 {
    color: var(--color-orange);
    margin-bottom: 0.75rem;
}
.bug-info-screenshots-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.bug-screenshot {
    max-width: 250px;
    border-radius: 0.5rem;
    border: 2px solid var(--color-grey-darker);
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
}
.bug-screenshot:hover {
    transform: scale(1.05);
    border-color: var(--color-orange);
}

/* === Add Note === */
.add-note-card {
    background-color: var(--color-blue);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 2rem;
}
.add-note-card h5 {
    color: var(--color-orange);
    margin-bottom: 0.5rem;
}
.btn-note-submit {
    background-color: var(--color-orange);
    color: var(--color-dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}
.btn-note-submit:hover {
    background-color: var(--color-orange-dark);
    transform: translateY(-2px);
}

/* === Notes List === */
.bug-notes h5 {
    color: var(--color-orange);
    margin-bottom: 1rem;
}
.bug-notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bug-note-entry {
    background-color: var(--color-blue-navy);
    border: 1px solid var(--color-grey-darker);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.bug-note-entry strong {
    color: var(--color-lime);
}
.note-public-badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
    margin-top: 0.25rem;
    background-color: var(--color-grey-darker);
    color: var(--color-dark);
}
.btn-bug-note-delete {
    background: none;
    border: none;
    color: var(--color-orange);
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s, color 0.2s;
}
.btn-bug-note-delete:hover {
    color: var(--color-orange-dark);
    transform: scale(1.2);
}


/* -------------------------------------------------------------------------------------------- ADMIN FEATURE REQUEST DETAILS */

.feature-request .badge {
    font-size: 0.9rem;
    padding: 0.4em 0.8em;
}

.feature-status-controls .btn {
    min-width: 120px;
}

.feature-quote-area input,
.feature-quote-area select {
    height: 48px;
}

.feature-quote-area .btn {
    height: 48px;
}

/* ------------------------------------------------------------------------------------------- ADMIN USER FILES */

.user-file-preview-card {
    background: var(--color-orange-dark);
    border: 1px solid var(--color-orange);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
}

    .user-file-preview-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.user-file-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.user-file-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.user-file-timestamp {
    font-size: 0.85rem;
    color: var(--color-grey-darker);
}

.user-file-meta {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
}

.user-file-sender h5,
.user-file-sender h6 {
    margin: 0;
    color: var(--color-blue);
}

.user-file-sender h5 {
    font-size: 1rem;
    font-weight: 600;
}

.user-file-sender h6 {
    font-size: 0.9rem;
    color: var(--color-blue);
}

.divider-vertical {
    width: 1px;
    background: var(--color-orange);
    height: 40px;
    align-self: center;
}

.user-file-description {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.user-file-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 12px;
}

.user-file-button {
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.button-download {
    background-color: var(--color-orange);
    color: var(--text-dark);
}

    .button-download:hover {
        background-color: var(--color-orange-dark);
    }

.button-delete {
    background-color: #f44336;
    color: #fff;
}

    .button-delete:hover {
        background-color: #e53935;
    }


/* ---------------------------------------------------------------------------------------- ADMIN CUSTOMERS */

/* Wrapper Card */
.customer-preview-card {
    background-color: var(--color-orange-dark);
    border: 1px solid var(--color-orange);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    max-width: 360px;
    margin: 12px auto;
}

    .customer-preview-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }

/* Customer Name */
.customer-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 4px;
}

/* Username Styling */
.customer-username {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-blue-navy);
    margin-bottom: 10px;
}

/* Info Block (email & phone) */
.customer-info {
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ---------------------------------------------------------------------------------------------------- ADMIN CUSTOMER DETAILS */

.admin-customer-page {
    padding: 24px;
    font-family: 'Segoe UI', sans-serif;
    max-width: 1000px;
    margin: auto;
}

/* --- Quick Actions --- */
.quick-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.quick-btn {
    background-color: var(--color-orange);
    color: var(--text-dark);
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .quick-btn:hover {
        background-color: var(--color-orange-dark);
    }

/* --- Customer Info --- */
.customer-info-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background-color: var(--color-orange-dark);
    border: 1px solid var(--color-orange);
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.customer-details p {
    margin: 4px 0;
    color: var(--text-dark);
}

.customer-name {
    margin-bottom: 4px;
    font-size: 1.5rem;
    font-weight: 600;
}

.customer-address-box {
    min-width: 200px;
    background-color: var(--color-orange-darker);
    padding: 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    border: 1px solid var(--color-orange);
}

/* --- Section Headers --- */
.section-header {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 24px 0 12px;
}

/* --- Projects --- */
.project-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-card {
    background: var(--color-orange-dark);
    padding: 14px 16px;
    border: 1px solid var(--color-orange);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-title {
    font-weight: 600;
}

.project-meta {
    text-align: right;
}

.project-status {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 6px;
    color: var(--text-dark);
}

    .project-status.active {
        background-color: var(--color-orange);
    }

    .project-status.completed {
        background-color: var(--color-lime);
    }

    .project-status.pending {
        background-color: #f6ad55;
    }

/* --- Bills --- */
.bill-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bill-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.bill-meta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.bill-title {
    font-weight: 600;
}

/* Status background coloring */
.bill-open {
    background-color: #fffbea;
}

.bill-paid {
    background-color: var(--color-lime);
}

.bill-overdue {
    background-color: #fff5f5;
}

/* Badges for bill statuses */
.badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark);
}

.bill-status.open {
    background-color: #f6ad55;
}

.bill-status.paid {
    background-color: var(--color-lime-dark);
}

.bill-status.overdue {
    background-color: #e53e3e;
}


/* ----------------------------------------------------------------------------------- USER DASHBOARD */

.user-dashboard-wrapper {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
    color: var(--color-white);
}

.user-dashboard-left,
.user-dashboard-right {
    background-color: var(--color-blue-navy);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.15);
    flex: 1;
}

.user-dashboard-left-title,
.user-dashboard-right-title {
    font-size: 1.5rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.user-notification-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-notification-card {
    background-color: var(--color-dark);
    border-left: 4px solid var(--color-orange);
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--color-white);
    transition: transform 0.2s, background-color 0.3s;
}

    .user-notification-card:hover {
        background-color: var(--color-blue);
        transform: scale(1.02);
    }

.user-notification-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-orange);
}

.user-notification-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-grey-darker);
    margin: 0.25rem 0;
}

.user-notification-message {
    color: var(--color-grey);
    font-size: 0.95rem;
}

.user-project-preview-tabs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.user-project-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.user-tab-button {
    background-color: var(--color-dark);
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

    .user-tab-button.active,
    .user-tab-button:hover {
        background-color: var(--color-orange);
        color: var(--color-dark);
    }

.user-project-input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none;
    background-color: var(--color-blue);
    color: var(--color-white);
    font-size: 1rem;
    outline: none;
    transition: box-shadow 0.3s;
}

    .user-project-input-field:focus {
        box-shadow: 0 0 0 3px var(--color-orange-dark);
    }

.user-project-preview-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-project-preview-card {
    background-color: var(--color-dark);
    border-left: 4px solid var(--color-orange-dark);
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s, transform 0.2s;
}

    .user-project-preview-card:hover {
        background-color: var(--color-blue);
        transform: scale(1.02);
    }

.user-project-preview-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-orange);
}

.user-project-preview-start,
.user-project-preview-end {
    font-size: 0.95rem;
    color: var(--color-grey);
    margin-top: 0.25rem;
}

.user-badge {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 1rem;
    margin-top: 0.4rem;
}

.user-status-badge.scheduled {
    background-color: var(--color-blue);
    color: var(--color-grey);
}

.user-status-badge.inprogress {
    background-color: var(--color-orange-dark);
    color: var(--color-dark);
}

.user-status-badge.completed {
    background-color: var(--color-lime-dark);
    color: var(--color-dark);
}

.user-status-badge.canceled {
    background-color: #911;
    color: var(--color-white);
}

.user-new-notification-badge {
    background-color: var(--color-orange);
    color: var(--color-dark);
    margin-left: 0.5rem;
}

.fade-tab {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

    .fade-tab.active {
        display: flex;
        flex-direction: column;
        opacity: 1;
        transform: translateY(0);
    }
/* OLD
.fade-tab {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

    .fade-tab.active {
        display: block;
        opacity: 1;
    }
*/

.user-activity-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--color-dark);
    border-radius: 1rem;
}

.user-activity-column {
    background-color: var(--color-blue-navy);
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-activity-title {
    font-size: 1.25rem;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-orange-dark);
    padding-bottom: 0.5rem;
}

.user-activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-activity-card {
    background-color: var(--color-blue);
    border-left: 5px solid var(--color-orange);
    padding: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    color: var(--color-white);
}

    .user-activity-card:hover {
        background-color: var(--color-orange-dark);
    }

.user-activity-card-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: var(--color-white);
}

.user-activity-card-status {
    font-size: 0.9rem;
    color: var(--color-grey);
}

.user-activity-card-date {
    font-size: 0.8rem;
    color: var(--color-grey-darker);
}

/* ----------------------------------------------------------------------------------------- USER PROJECT DETAILS*/

/* Container */
.user-project-details-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    color: var(--color-white);
}

/* Quick Actions */
.quick-actions-box {
    background-color: var(--color-blue-navy);
    border-left: 4px solid var(--color-orange);
    padding: 1.5rem;
    border-radius: 1rem;
}

.quick-actions-title {
    font-size: 1.3rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.quick-actions-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.quick-btn {
    padding: 0.6rem 1rem;
    border-radius: 2rem;
    font-weight: bold;
    background-color: var(--color-dark);
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .quick-btn:hover {
        background-color: var(--color-orange);
        color: var(--color-dark);
    }

/* Project Details */
.user-project-details-box {
    background-color: var(--color-blue);
    border-radius: 1rem;
    padding: 1.5rem;
}

.user-project-title {
    font-size: 1.5rem;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
}

.user-project-description,
.user-project-info {
    color: var(--color-grey);
    margin-bottom: 0.5rem;
}

.user-project-badge {
    background-color: var(--color-orange-dark);
    color: var(--color-dark);
    padding: 0.3rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Stage Indicator */
.user-stage-indicator {
    margin-top: 2rem;
}

.user-stage-title {
    font-size: 1.2rem;
    color: var(--color-orange);
    margin-bottom: 0.8rem;
}

.user-stage-bar {
    height: 12px;
    background-color: var(--color-grey-darker);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.user-stage-fill {
    height: 100%;
    background-color: var(--color-orange);
    transition: width 0.5s ease;
}

.user-stage-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-grey);
}

.user-stage-description-box {
    margin-top: 1.5rem;
}

    .user-stage-description-box p {
        color: var(--color-grey);
        font-style: italic;
    }

/* Admin Files */
.admin-files-box {
    background-color: var(--color-blue-navy);
    border-radius: 1rem;
    padding: 1.5rem;
    color: var(--color-white);
}

.admin-files-title {
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.admin-files-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-admin-file {
    background-color: var(--color-dark);
    padding: 1rem;
    border-left: 4px solid var(--color-orange);
    border-radius: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.user-admin-file-body {
    color: var(--color-grey);
}

.user-admin-file-download-btn {
    background-color: var(--color-orange);
    color: var(--color-dark);
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

    .user-admin-file-download-btn:hover {
        background-color: var(--color-orange-darker);
    }

/* Admin Notes */
.user-admin-notes-box {
    background-color: var(--color-blue);
    border-radius: 1rem;
    padding: 1.5rem;
}

.user-admin-notes-title {
    font-size: 1.2rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.user-admin-notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-admin-note {
    background-color: var(--color-dark);
    border-left: 4px solid var(--color-orange);
    padding: 1rem;
    border-radius: 0.75rem;
}

.user-admin-note-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-grey-darker);
    margin-bottom: 0.3rem;
}

.user-admin-note-header-content {
    display: flex;
    flex-direction: column;
}

.user-admin-note-content {
    color: var(--color-grey);
    font-size: 0.95rem;
}

/* Modals */
.user-modal-dialog {
    max-width: 700px;
    margin: auto;
}

.user-modal-content {
    background-color: var(--color-blue-navy);
    border-radius: 1rem;
    padding: 1rem;
    color: var(--color-white);
}

.user-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-grey-darker);
    margin-bottom: 1rem;
}

.user-modal-title {
    font-size: 1.2rem;
    color: var(--color-orange);
}

.user-modal-close-btn {
    background: none;
    border: none;
    color: var(--color-grey);
    font-size: 1.2rem;
    cursor: pointer;
}

    .user-modal-close-btn:hover {
        color: var(--color-white);
    }

.user-modal-body {
    padding: 1rem 0;
}

.user-modal-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
}

/* Modal Layout */
.body-split {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.modal-col {
    flex: 1;
    min-width: 250px;
}

.modal-col-title {
    color: var(--color-orange);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

/* Inputs and Selects */
.user-input {
    margin-bottom: 1rem;
}

.user-input-label,
.user-select-label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: bold;
    color: var(--color-grey);
}

.user-input-field,
.user-input-area,
.user-input-select {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    border: none;
    background-color: var(--color-blue);
    color: var(--color-white);
    font-size: 0.95rem;
    outline: none;
}

    .user-input-field:focus,
    .user-input-area:focus,
    .user-input-select:focus {
        box-shadow: 0 0 0 3px var(--color-orange);
    }

/* Buttons */
.user-modal-submit-btn,
.user-send-bug-reports-btn,
.user-add-btn,
.user-add-button,
.user-submit-files-btn,
.user-submit-feature-btn {
    background-color: var(--color-orange);
    color: var(--color-dark);
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 2rem;
    font-weight: bold;
    transition: background-color 0.3s;
    cursor: pointer;
}

    .user-modal-submit-btn:hover,
    .user-send-bug-reports-btn:hover,
    .user-add-btn:hover,
    .user-add-button:hover,
    .user-submit-files-btn:hover,
    .user-submit-feature-btn:hover {
        background-color: var(--color-orange-darker);
    }

/* Lists */
.user-bug-report-list,
.user-files-upload-list {
    list-style: none;
    padding-left: 0;
    max-height: 200px;
    overflow-y: auto;
    background-color: var(--color-dark);
    border-radius: 0.5rem;
    padding: 0.5rem;
    color: var(--color-white);
}

    .user-bug-report-list li,
    .user-files-upload-list li {
        padding: 0.5rem;
        border-bottom: 1px solid var(--color-grey-darker);
    }



/*
.project-details-box {
    background-color: #fff;
    border-radius: 0.75rem;
}

.stage-indicator .stage-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.stage-progress {
    margin-top: 0.5rem;
}

.stage-bar {
    height: 10px;
    background-color: #dee2e6;
    border-radius: 5px;
    overflow: hidden;
}

.stage-fill {
    height: 100%;
    background-color: #0d6efd;
    transition: width 0.4s ease-in-out;
}

.stage-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.stage-description-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    border-radius: 0.5rem;
    font-size: 0.95rem;
}
*/

/* --------------------------------------------------------------------------------------------------- USER BUG REPORT */

.bugreport-wrapper {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bugreport-header {
    border-bottom: 2px solid var(--color-orange-dark);
    padding-bottom: 1rem;
}

.bugreport-title {
    font-size: 2rem;
    color: var(--color-orange);
}

.bugreport-info {
    background-color: var(--color-blue-navy);
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bugreport-info-item {
    font-size: 1rem;
    color: var(--color-grey);
}

.bugreport-status {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
    color: var(--color-white);
    margin-left: 0.5rem;
}

.status-active {
    background-color: var(--color-orange);
}

.status-new {
    background-color: var(--color-grey-darker);
}

.status-solved {
    background-color: var(--color-lime-dark);
}

.bugreport-importance {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
    color: var(--color-white);
    margin-left: 0.5rem;
}

.importance-1 {
    background-color: var(--color-lime);
}

.importance-2 {
    background-color: var(--color-orange);
}

.importance-3 {
    background-color: var(--color-orange-dark);
}

.importance-4 {
    background-color: var(--color-orange-darker);
}

.importance-5 {
    background-color: red;
}

/* === Comments Section === */
.bugreport-comments-section {
    background-color: var(--color-blue);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.bugreport-comments-title {
    font-size: 1.5rem;
    color: var(--color-lime);
    margin-bottom: 1rem;
}

.bugreport-no-comments {
    color: var(--color-grey-darker);
}

.bugreport-comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bugreport-comment-card {
    background-color: var(--color-blue-navy);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--color-orange);
}

.bugreport-comment-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--color-grey);
}

.bugreport-comment-author {
    font-weight: bold;
}

.bugreport-comment-content {
    color: var(--color-white);
    font-size: 1rem;
}

/* ------------------------------------------------------------------------------------------------- USER FEATURE REQUEST DETAILS */

.feature-wrapper {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Header */
.feature-header {
    border-bottom: 2px solid var(--color-orange-dark);
    padding-bottom: 1rem;
}

.feature-title {
    font-size: 2rem;
    color: var(--color-orange);
}

/* Info Panel */
.feature-info {
    background-color: var(--color-blue-navy);
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-info-item {
    font-size: 1rem;
    color: var(--color-grey);
}

.feature-description {
    font-size: 1rem;
    color: var(--color-white);
    margin-left: 1rem;
}

.feature-status {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
    margin-left: 0.5rem;
    color: var(--color-white);
}

.f-status-new {
    background-color: var(--color-lime);
}

.f-status-quoted {
    background-color: var(--color-orange);
}

.f-status-active {
    background-color: var(--color-orange-dark);
}

.f-status-implemented {
    background-color: var(--color-lime-dark);
}

.f-status-rejected {
    background-color: red;
}

/* Quote Panel */
.feature-quote-panel {
    background-color: var(--color-blue);
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-quote-title {
    font-size: 1.5rem;
    color: var(--color-lime);
}

.feature-quote-amount {
    font-size: 1.25rem;
    color: var(--color-white);
}

.feature-quote-actions {
    display: flex;
    gap: 1rem;
}

.feature-quote-btn {
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    color: var(--color-white);
}

.accept-btn {
    background-color: var(--color-lime-dark);
}

    .accept-btn:hover {
        background-color: var(--color-lime);
    }

.reject-btn {
    background-color: var(--color-orange-darker);
}

    .reject-btn:hover {
        background-color: red;
    }

.feature-quote-status {
    color: var(--color-grey-darker);
    font-style: italic;
}

/* Notes */
.feature-notes-section {
    background-color: var(--color-blue-navy);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.feature-notes-title {
    font-size: 1.5rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.feature-note-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-note-textarea {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    border-radius: 0.5rem;
    border: none;
    background-color: var(--color-grey);
    color: var(--color-dark);
    font-size: 1rem;
    resize: vertical;
}

.feature-note-submit {
    align-self: flex-end;
    padding: 0.5rem 1.25rem;
    background-color: var(--color-orange);
    color: var(--color-dark);
    font-weight: bold;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.feature-notes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-note-card {
    padding: 1rem;
    border-radius: 0.5rem;
    color: var(--color-white);
}

.admin-note {
    background-color: var(--color-blue);
    border-left: 4px solid var(--color-orange);
}

.user-note {
    background-color: var(--color-grey-darker);
    border-left: 4px solid var(--color-lime-dark);
}

.feature-note-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--color-grey);
}

.feature-note-message {
    font-size: 1rem;
}

/* ----------------------------------------------------------------------------------------------------- USER MESSAGE LIST */

.user-message-preview {
    background-color: var(--color-blue-navy);
    border: 1px solid var(--color-grey-darker);
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    transition: background-color 0.2s, border-color 0.2s;
    cursor: pointer;
}

    .user-message-preview:hover {
        background-color: var(--color-blue);
        border-color: var(--color-orange);
    }

.message-preview-timestamp {
    color: var(--color-grey);
    font-size: 0.85rem;
}

.message-badge {
    background-color: var(--color-orange);
    color: var(--color-dark);
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.message-preview-title {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------------------------------- USER CONVERSATION */
.message-details-wrapper {
    padding: 2rem;
    background-color: var(--color-dark);
    color: var(--color-white);
}

.message-back-button {
    background-color: var(--color-blue);
    color: var(--color-white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: background-color 0.2s;
}

    .message-back-button:hover {
        background-color: var(--color-orange-dark);
    }

.message-reply-section {
    margin-bottom: 2rem;
    background-color: var(--color-blue-navy);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.message-reply-title {
    margin-bottom: 1rem;
    color: var(--color-orange);
}

.message-reply-textarea {
    width: 100%;
    height: 100px;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: var(--color-blue);
    border: none;
    color: var(--color-white);
    margin-bottom: 1rem;
    resize: vertical;
}

.message-file-input {
    margin-bottom: 1rem;
    display: block;
    color: var(--color-white);
}

.message-reply-submit {
    background-color: var(--color-orange);
    color: var(--color-dark);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .message-reply-submit:hover {
        background-color: var(--color-orange-darker);
    }

.message-display-section {
    display: flex;
    gap: 2rem;
}

/* Left: Files */
.message-files-panel {
    width: 35%;
    background-color: var(--color-blue-navy);
    padding: 1rem;
    border-radius: 0.75rem;
    height: fit-content;
}

.message-files-title {
    font-size: 1.1rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.message-files-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.message-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-blue);
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
}

.message-file-download {
    color: var(--color-orange);
    text-decoration: none;
}

/* Right: Message Thread */
.message-thread {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-bubble {
    width: 80%;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: var(--color-blue);
    position: relative;
}

.user-bubble {
    align-self: flex-start;
    background-color: var(--color-blue-navy);
    border-left: 5px solid var(--color-orange);
}

.admin-bubble {
    align-self: flex-end;
    background-color: var(--color-blue);
    border-right: 5px solid var(--color-grey-darker);
}

.message-meta {
    font-size: 0.85rem;
    color: var(--color-grey);
    margin-bottom: 0.5rem;
}

.message-content {
    color: var(--color-white);
    font-size: 1rem;
    white-space: pre-wrap;
}

.message-bubble-files {
    margin-top: 0.75rem;
    border-top: 1px solid var(--color-grey-darker);
    padding-top: 0.5rem;
}

.bubble-files-list {
    list-style: none;
    padding-left: 0;
}

    .bubble-files-list li {
        display: flex;
        justify-content: space-between;
        font-size: 0.85rem;
        color: var(--color-white);
        margin-bottom: 0.25rem;
    }

.bubble-file-download {
    color: var(--color-orange);
    text-decoration: none;
}


/* -------------------------------------------------------------------------------------------------------------------- IMPRINT */

/* === Back Button === */
.btn-back {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    background-color: var(--color-orange);
    color: var(--color-dark);
    transition: background-color 0.2s, transform 0.2s;
}

    .btn-back:hover {
        background-color: var(--color-orange-dark);
        color: var(--color-dark);
        transform: translateY(-2px);
    }

/* === Legal Container === */
.legal-container {
    color: var(--color-white);
    padding: 2rem;
    line-height: 1.6;
    text-align: center;
}

/* === Header === */
.legal-header h2 {
    color: var(--color-orange);
    margin-bottom: 0.5rem;
}

.legal-header h6 {
    color: var(--color-grey);
    margin-bottom: 2rem;
}

/* === Section Wrapper === */
.legal-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--color-blue-navy);
    border-radius: 0.75rem;
    border: 1px solid var(--color-grey-darker);
}

/* === Section Headers === */
.legal-section-header h3 {
    color: var(--color-orange);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-orange-dark);
    padding-bottom: 0.3rem;
}

/* === Section Body === */
.legal-section-body p {
    margin-bottom: 0.5rem;
}

/* === Address & Company Info === */
.legal-adress p,
.legal-company p {
    margin: 0.2rem 0;
}

/* === ToS Sections === */
.legal-tos-section {
    margin-bottom: 1.25rem;
    padding: 1rem;
    border-left: 4px solid var(--color-orange);
    background-color: var(--color-blue);
    border-radius: 0.5rem;
}

    .legal-tos-section h4 {
        color: var(--color-orange);
        margin-bottom: 0.5rem;
    }

    .legal-tos-section p {
        color: var(--color-grey);
    }

/* === Provider Section === */
.legal-provider h5 {
    color: var(--color-orange);
    margin-bottom: 0.25rem;
}

/* === Links === */
.legal-link {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

    .legal-link:hover {
        color: var(--color-orange-dark);
        text-decoration: underline;
    }

/* -------------------------------------------------------------------------------------------------------- PRIVACY */

/* === Privacy Section Sub-Headers === */
.privacy-sub-header h5 {
    color: var(--color-orange);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--color-orange-dark);
    font-size: 1.1rem;
}

/* === Privacy Content === */
.privacy-content {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background-color: var(--color-blue);
    border-radius: 0.5rem;
    border-left: 4px solid var(--color-orange);
    color: var(--color-grey);
    line-height: 1.6;
}

    .privacy-content p {
        margin-bottom: 0.75rem;
    }

    .privacy-content strong {
        color: var(--color-orange);
    }

    .privacy-content span {
        display: block;
        margin-top: 0.75rem;
        font-weight: bold;
        color: var(--color-orange-dark);
    }


/* ------------------------------------------------------------------------------------------------------------ COOKIE BANNER */

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-blue-navy);
    color: var(--color-grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    flex-wrap: wrap;
    /* Initial Slide-Up Animation */
    transform: translateY(100%);
    animation: slideUp 0.6s ease-out forwards;
}

/* Slide Up Keyframes */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Slide Down Keyframes (closing) */
@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Class to trigger closing animation */
.cookie-banner.hide {
    animation: slideDown 0.5s ease-in forwards;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-banner-text strong {
    color: var(--color-orange);
}

.cookie-banner-btn {
    background-color: var(--color-orange);
    color: var(--color-dark);
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    white-space: nowrap;
}

    .cookie-banner-btn:hover {
        background-color: var(--color-orange-dark);
    }

/* === Mobile Friendly === */
@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    .cookie-banner-text {
        margin-bottom: 0.8rem;
    }

    .cookie-banner-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

/* ----------------------------------------------------------------------------------------------------------- FOOTER */

.site-footer {
    background-color: rgba(0, 0, 0, 0.85); /* semi-transparent black */
    color: var(--color-grey);
    padding: 0.8rem 2rem; /* slightly reduced height */
    font-size: 0.9rem;
    border-top: 3px solid var(--color-orange);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    /* fade-in animation */
    opacity: 0;
    transform: translateY(20px);
    animation: footerFadeIn 0.8s ease-out forwards;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left,
.footer-center,
.footer-right {
    margin: 0.3rem 0;
}

.footer-slogan {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-orange);
    margin: 0;
}

.footer-right {
    display: flex;
    gap: 1rem;
}

.footer-link {
    color: var(--color-grey);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

    .footer-link:hover {
        color: var(--color-orange);
    }

/* ------------------------------------------------------------------ MOBILE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-center {
        margin: 0;
    }

    .footer-right {
        margin-top: 0;
        gap: 0.8rem;
    }
}

/* ------------------------------------------------------------------ FADE-IN ANIMATION */
@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ---------------------------------------------------------------------------------------------------------------------- CALCULATOR */
.calc-back-btn {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 1rem;
    background-color: var(--color-orange);
    color: #000;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

    .calc-back-btn:hover {
        background-color: var(--color-orange-dark);
        color: var(--color-blue-navy);
    }

/* -------------------- TITLE -------------------- */

.calc-title-box {
    background-color: rgb(0,0, 0, 0.75);
    backdrop-filter: blur(4px);
    border: 2px solid var(--color-orange);
    padding: 1rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.calc-page-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-orange);
}

.calc-intro {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-grey);
}

/* -------------------- PRICE FIELD -------------------- */
.calc-price-container {
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    padding: 1rem;
    border: 2px solid var(--color-orange);
    border-radius: 6px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

/* Price field container */
.price-summary {
    position: sticky; /* sticks within its container */
    top: 160px; /* adjust this to your header height */
    z-index: 1000; /* make sure it stays above content but under nav */
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 1rem;
    border: 2px solid var(--color-orange);
    border-radius: 8px;
    color: var(--color-grey);
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.calc-price-label {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-orange);
}

.calc-price-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-orange-dark);
}

/* -------------------- OPTIONS -------------------- */
.calc-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.option-group {
    border: 1px solid var(--color-orange);
    border-radius: 6px;
    padding: 1rem;
    background: rgba(20, 20, 20, 0.8);
}

    .option-group h3 {
        margin-top: 0;
        margin-bottom: 0.5rem;
        color: var(--color-orange);
    }

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

    .option-item:last-child {
        margin-bottom: 0;
    }

    .option-item label {
        flex: 1;
        cursor: pointer;
    }

    .option-item input[type="checkbox"],
    .option-item select {
        margin-left: 1rem;
        padding: 4px 6px;
    }

/* -------------------- BREAKDOWN -------------------- */
.calc-breakdown {
    margin-top: 2rem;
    padding: 1rem;
    border: 1px solid var(--color-orange);
    border-radius: 6px;
    background: rgba(30,30,30,0.9);
}

    .calc-breakdown h3 {
        margin-top: 0;
        color: var(--color-orange);
    }

.breakdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .breakdown-list li {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 0.3rem 0;
        font-size: 0.95rem;
    }

        .breakdown-list li:last-child {
            border-bottom: none;
        }

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 768px) {
    .calc-price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .option-item {
        flex-direction: column;
        align-items: flex-start;
    }

        .option-item input,
        .option-item select {
            margin-left: 0;
            margin-top: 4px;
        }
}

/* ------------------------------------------------------------------------------------------------ */