:root {
    --first-color: #000918;
    --second-color: #F67060;
    --third-color: #ff4a36;
    --text-color: #f0f0f0;
    --header-bg: #1e1e1e;
    --theme-transition: all 0.3s ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: var(--first-color);
    color: #f0f0f0;
    line-height: 1.6;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

main {
    flex: 1;
}

.content {
    animation: fadeIn 2s ease-in-out, slideIn 1s ease-in-out;
    animation-fill-mode: forwards;
}

a {
    text-decoration: none;
    color: white;
}

img {
    max-width: 100%;
    height: auto;
}

header {
    background-color: #1e1e1e;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--second-color);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 10px rgba(var(--second-color), 0.1), 0 8px 24px 4px var(--second-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transform: none;
}

.sidebar_burger {
    display: flex;
    justify-content: center;
    align-items: end;
    cursor: pointer;
    transform: scale(3);
    border: none;
    background: transparent;
    margin-top: 40px;
    color: var(--second-color);
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    transform: rotate(0);
}

.sidebar_burger.rotated {
    transform: rotate(180deg);
    margin-left: 30px;
    transition: transform 0.3s;
}

.burger {
    cursor: pointer;
    transform: scale(3);
    border: none;
    background: transparent;
    display: flex;
    color: var(--second-color);
}

.pc__header__links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    text-align: center;
}

.pc__header__link {
    display: flex;
    overflow: hidden;
    font-weight: bold;
    text-decoration: none;
    color: var(--third-color);
    position: relative;
}

.header__links {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 110%;
    right: 5px;
    width: max-content;
    height: max-content;
    background: var(--header-bg);
    cursor: pointer;
    gap: 6px;
    z-index: 200;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
}

.header__links.active {
    display: flex;
}

.pc__header__link {
    display: inline-block;
    position: relative;
    font-weight: bold;
    text-decoration: none;
    color: var(--third-color);
    width: max-content;
    height: 100%;
    overflow: visible;
}

.pc__header__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 100%;
    border-radius: 10px;
    background: var(--second-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.pc__header__link:hover::after {
    transform: scaleX(1);
}

.sidebar {
    height: 100%;
    width: 240px;
    max-width: 240px;
    background-color: #2b2b2b;
    padding-top: 30px;
    display: flex;
    /*position: absolute;*/
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
    transition: transform 0.3s;
    transform: translateX(0);
}
 
.sidebar.nav-hidden {
    transform: translateX(-150%);
    opacity: 0;
}

.sidebar.sidebar-collapsed {
    width: 0px;
}

.logo {
  width: 120px;
  margin-bottom: 30px;
  border-radius: 20px;
}

.menu-item {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    color: white;
    font-weight: bold;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    transform: translateX(0);
    opacity: 1;
}

.menu-item:hover {
  background-color: #3a3a3a;
}

.menu-item.nav-hidden {
    transform: translateX(-150%);
    opacity: 0;
}

.header__logo {
    height: 100px;
    width: 100px;
    border-radius: 20px;
}

nav a {
    margin-left: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
}

.nav-theme-toggle {
    display: inline-flex;
    font-size: 1rem;
    height: 36px;
    margin: 0;
    vertical-align: middle;
    width: 36px;
}

.theme-toggle {
    align-items: center;
    background: #0000;
    border: 2px solid var(--third-color);
    border: 2px solid var(--third-color);
    border-radius: 50%;
    box-shadow: 0 0 10px #ff005580;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    font-size: 1.2rem;
    height: 48px;
    justify-content: center;
    margin-left: 1rem;
    overflow: hidden;
    position: relative;
    transition: all .5s cubic-bezier(.4,0,.2,1);
    transition: var(--theme-transition);
    width: 48px;
}

.theme-toggle:hover {
    box-shadow: rgba(255, 0, 85, 0.5) 0px 0px 14.8792px 0px, rgba(255, 0, 85, 0.49) 0px 0px 29.275px 0px;
    transform: rotate(43.9126deg);
}

.hero {
    margin-top: 50px;
    border-radius: 10px;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(145deg, #0f2027, #203a43);
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--second-color), var(--third-color));
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 5px 15px var(--second-color);
    -webkit-text-fill-color: #0000;
}

#glow {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--second-color), var(--third-color));
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 5px 15px var(--second-color);
    -webkit-text-fill-color: #0000;
}

.hero p {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    line-height: 1.5;
    margin: 0 auto 4rem;
    max-width: 700px;
}

.cta-button {
    background: linear-gradient(145deg, var(--second-color), var(--third-color));
    border: none;
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transition: all 0.3s ease;
    color: var(--text-color);
    transform: translateY(-3px);
}

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.services, .why-us, .faq, .about {
    text-align: center;
}

.why-us li {
    list-style: none;
}

.tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.tile {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2e2e2e;
    max-width: clamp(380px, 90vw, 1000px);
    min-width: 380px;
    transition: transform 0.3s;
}

.tile:hover {
    transform: translateY(-5px);
}

.faq-item {
    margin-bottom: 1rem;
    text-align: left;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    background-color: #2e2e2e;
    border: none;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    border-left: 4px solid #00aaff;
    padding: 1rem;
    background-color: #1a1a1a;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
    max-height: 500px;
    opacity: 1;
}

footer {
    background-color: #1e1e1e;
    text-align: center;
    justify-content: end;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 2px solid var(--second-color);
    border-radius: 10px 10px 0 0;
}

footer p, footer a {
    color: #ccc;
    margin: 0.5rem;
    display: inline-block;
}

.services-tiles {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    margin-top: 100px;
}

.services-handler img {
    width: 200px;
    height: 200px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.services-btn {
    display: flex;
    justify-content: center;
    text-align: center;
    background: linear-gradient(145deg, #008ecc, #00aaff);
    border: none;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
    color: black;
    width: 220px;
    transition: all 0.3s ease;
}

.services-btn-heading {
    color: black;
    font-size: 19px;
}

.services-btn:hover {
    background: linear-gradient(145deg, #00aaff, #008ecc);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.privacy-policy-handler {
    border: none;
    border-bottom: none;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    justify-content: flex-start;
}

.privacy-policy-handler1 {
    border: none;
    border-top: none;
    border-radius: 0px 0px 10px 10px;
    display: flex;
    justify-content: flex-start;
}

.priceing-handler {
    border: 1px solid var(--second-color);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.priceing-handler:hover {
    transition: all 0.3s;
    transform: scale(1.05);
}

.priceing-handler li {
    list-style-type: none;
}

.spis-tesci {
    padding: 10px;
    background-color: var(--second-color);
    box-shadow: 0 2px 10px rgba(var(--second-color), 0.1);
    border-radius: 20px;
    width: max-content;
    margin-top: 30px;
}

.spis-tesci li {
    font-size: 23px;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
    border-left: 5px solid var(--third-color);
    padding-left: 10px;
    list-style-type: none;
}

.spis-tesci a {
    color: var(--text-color);
    text-decoration: none;
}

.spis-tesci li:hover {
    color: var(--third-color);
    cursor: pointer;
}

.spis-tesci h2 {
    font-size: 30px;
    color: var(--text-color);
    margin-bottom: 10px;
    text-align: center;
}

.spis-tesci button {
    background-color: var(--third-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.notfound__button {
    background-color: transparent;
    font-size: 21px;
    border-radius: 3em;
    margin-top: 20px;
    padding: 10px;
    width: 300px;
    align-self: center;
    height: max-content;
    text-align: center;
    border: #0093d7 solid;
    font-weight: bold;
    transition: all 0.3s ease;
}

.notfound__button:hover {
    transition: all 0.3s;
    color: #00dac7;
    border: #e102f5 solid;
    transform: translateY(-2px);
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    max-width: 400px;
    margin: auto;
}

.login-handler {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    border: 1px solid var(--second-color);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    align-items: center;
}

.login-handler p {
    margin-top: 5px;
    color: var(--text-color);
    align-items: start;
    display: flex;
    font-weight: bold;
    font-size: 20px;
}

.login-handler input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: #797979;
    color: #fff;
}

.login-handler input:focus {
    outline: none;
    border: 2px solid var(--second-color);
}

.login-handler button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(180deg, var(--second-color) 0%, var(--third-color) 100%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.panel-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 250px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.opinion-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 250px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: center;
}

.contact_form {
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(var(--header-color), 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form h1 {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-form label {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--text-color);
}

.contact-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #2e2e2e;
    color: var(--text-color);
}

.contact-form input:focus {
    outline: none;
    border: 2px solid var(--second-color);
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(90deg, var(--second-color) 0%, var(--third-color) 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transition: all 0.3s ease;
    background: linear-gradient(90deg, var(--third-color) 0%, var(--second-color) 100%);
    transform: translateY(2px);
}

.contact-form form {
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(var(--header-color), 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #2e2e2e;
    color: var(--text-color);
    resize: vertical;
}

.contact-form textarea:focus {
    outline: none;
    border: 2px solid var(--second-color);
}

.www_priceing {
    border-collapse: collapse;
    text-align: center;
}

.www_priceing th,
.www_priceing td {
    border: 1px solid #ccc;
    padding: 5px;
}

.www_priceing td#label {
    text-align: left;
    font-weight: 500;
    white-space: nowrap;
}

.www_priceing td:not(#label) {
    text-align: center;
    vertical-align: middle;
}

.chat-list-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.chat-label {
    display: flex;
    align-items: center;
}

.chat-list {
    list-style-type: none;
    padding: 0;
    font-size: 25px;
}

.chat-form {
    display: flex;
    justify-content: center;
    width: 100%;
}

.chat-form input {
    border-radius: 10px 0px 0px 10px;
    padding: 6px;
    height: max-content;
    width: 100%;
    height: 45px;
}

.chat-form button {
    background-color: var(--second-color);
    border: none;
    border-radius: 0px 10px 10px 0px;
    padding: 6px;
    font-weight: bold;
}

.chat-container-width {
    width: 100%;
    display: flex;
    justify-content: center;
}

.chat-container #chat-form-container {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 12px;
    box-sizing: border-box;
}


.chat-message {
    margin-top: 30px;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 100px;
    max-width: 1000px;
    text-wrap: wrap;
}

.chat-message-negative {
    margin-top: 30px;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 100px;
    max-width: 1000px;
    text-wrap: wrap;
}

#messages {
    display: flex;
    flex-direction: column;
    margin-left: auto;
}

.chat-content {
    margin-left: auto;
    align-items: center;
}

.chat-message #text-message {
    background-color: #0093d7;
    color: var(--text-color);
    border-radius: 10px;
    display: block;
    padding: 5px;
    max-width: 500px;
    margin: 0;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.chat-message-negative #text-message {
    background: #0093d7;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: var(--text-color);
    border-radius: 10px;
    display: block;
    padding: 5px;
    max-width: 500px;
    margin: 0;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.chat-content #timestamp {
    margin: 0;
    display: inline;
    color: gray;
    font-size: 10px;
}

.opinion-form {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
}

.opinion-form textarea {
    padding: 10px;
    border-radius: 5px;
    resize: vertical;
    width: 300px;
}

.opinion-form button {
    background: linear-gradient(145deg, var(--second-color), var(--third-color));
    border: none;
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.opinion-form button:hover {
    transition: all 0.3s ease;
    background: linear-gradient(145deg, var(--third-color), var(--second-color));
    color: var(--text-color);
    transform: translateY(-3px);
}

.opinions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 30px;
}

.index-opinions {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 30px;
}

.opinion {
    display: flex;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.opinion-card {
    max-width: 500px;
    min-width: 400px;
    min-height: 200px;
    max-height: 500px;
    background-color: transparent;
    border: 3px solid #0093d7;
    box-shadow: #008fcc 0px 0px 2px, #008fcc 0px 0px 3px;
    border-radius: 34px;
    padding: 18px;
    position: relative;
    box-sizing: border-box;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.opinion-card:hover{
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  transform: translateY(-2px);
  box-shadow: #008fcc 0px 0px 3px, #008fcc 0px 0px 4px;
  transition: all 0.3s ease;
}

.opinion-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.opinion-sender{
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #e6eef6;
    text-shadow: 0 1px 0 rgba(0,0,0,0.6);
    line-height: 1;
}

.opinion-rating img{
    display: block;
    width: auto;
    height: 28px;
    object-fit: contain;
}

.opinion-content{
    background: transparent;
    border-radius: 26px;
    padding: 14px;
    min-height: 120px;
    box-sizing: border-box;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

@media (min-width: 1024px) {
    .burger {
        display: none;
    }

    .sidebar_burger {
        display: none;
    }
}

@media (max-width: 1023px) {
    .pc__header__links {
        display: none;
    }

    .pc__header__link {
        display: none;
    }
}

@media (max-width: 768px) {
    .pc__header__link {
        display: none;
    }

    .pc__header__links {
        display: none;
    }

    header {
        flex-direction: row;
        align-items: space-between;
    }

    nav {
        flex-direction: column;
        width: 100%;
    }

    .services-tiles {
        margin-top: 50px;
        flex-direction: column;
        align-items: center;
    }

    .services-btn {
        width: 80%;
        flex-direction: column;
        text-align: center;
        font-size: 16px;
    }

    .sidebar {
        z-index: 1000;
        position: absolute;
    }

    .tile {
        width: 100%;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pc__header__link {
        display: none;
    }

    .pc__header__links {
        display: none;
    }

    header {
        position: relative;
    }

    .sidebar {
        z-index: 1000;
        position: absolute;
    }

    .header__logo {
        height: 60px;
        width: 60px;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .cta-button {
        width: 100%;
    }
}