/* RESET */
@font-face {
    font-family: 'Inter';
    src: url('/public/assets/fonts/Inter/inter.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/public/assets/fonts/Inter/inter_italic.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}


:root {
    --bg-glass: rgba(255, 255, 255, .72);
    --bg-glass-strong: rgba(255, 255, 255, .88);

    --border-glass: rgba(255, 255, 255, .55);

    --text-main: #111827;
    --text-soft: #6b7280;

    --primary: #2563eb;
    --primary-2: #7c3aed;

    --shadow-xl:
        0 40px 120px rgba(0, 0, 0, .18),
        0 10px 40px rgba(0, 0, 0, .08);

    --radius-xl: 34px;
    --radius-lg: 22px;
    --radius-md: 18px;
}





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

/* BODY */
body {

    line-height: 1.6;

    background: #f5f5f7;

    box-sizing: border-box;
    font-family: 'Inter', sans-serif;

    /*padding-top: 70px; */
}



h1 {
    font-weight: 600;
}

h2 {
    font-weight: 500;
}

p {
    font-weight: 400;
}

strong {
    font-weight: 700;
}

a {
    color: #007AFF;
}





a[title],
button[title],
img[title] {
    position: relative;
}


a[title]:hover,
button[title]:hover,
img[title]:hover {
    cursor: pointer;
}

/* =========================
   Apple / macOS Tooltip
   ========================= */
[data-tooltip] {
    position: relative;
    cursor: pointer;
}

/* macOS tooltip */
[data-tooltip]::after {

    content: attr(data-tooltip);

    position: absolute;

    left: 50%;
    top: calc(100% + 12px);

    transform:
        translateX(-50%) translateY(-6px) scale(.98);

    padding: 12px 16px;

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.72);

    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);

    border:
        1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12),
        inset 0 1px 0 rgba(255, 255, 255, .55);

    color: rgba(20, 20, 20, .92);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.4;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .18s ease,
        transform .22s cubic-bezier(.2, .8, .2, 1);

    z-index: 999999999;
}

/* show */
[data-tooltip]:hover::after {

    opacity: 1;
    visibility: visible;

    transform:
        translateX(-50%) translateY(0) scale(1);
}



/* NAVBAR */
.navbar {
    position: fixed;
    width: 80%;
    margin: 10px auto;
    /* Only centers horizontally not vertically! */
    left: 0;
    right: 0;
    z-index: 999;

    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 50px;



    transition:
        width 0.4s ease,
        margin 0.4s ease,
        border-radius 0.4s ease;
}


.navbar.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* WRAPPER */
.nav-wrapper {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */

.logo {
    margin-top: 7px;
}


.logo img {
    height: 60px;
}

/* DESKTOP MENU */
.nav-center {
    display: flex;
    gap: 25px;
}

.nav-center a {
    text-decoration: none;
    color: #1d1d1f;
}


.nav-center a:hover {

    color: #868686;

}


/* LOGIN */
.login {
    padding: 8px 16px;
    background: #d09426;
    color: white;
    border-radius: .3rem;
    text-decoration: none;
    border: 1px solid #DAB46B;
    align-self: center !important;
}

/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 2px;
    background: black;
    transition: 0.3s;
}

/* MENU (HIDDEN DEFAULT) */
.menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);

    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;

    transition: 0.4s ease;
}

/* OPEN STATE */
.menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}



.menu.open a {
    text-decoration: none;
    font-size: 22pt;
    color: #1d1d1f;
    font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-center {
        display: none;
    }

    .burger {
        display: flex;
    }



}



.w-100 {
    width: 100% !important;
}




.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* SLIDES */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent);
}

/* CONTENT */
.content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;

    grid-column: 2 / span 6;

    display: flex;
    flex-direction: column;
    gap: 18px;

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


@media (max-width: 1024px) {
    .content {
        grid-column: 2 / span 10;
    }
}

@media (max-width: 600px) {
    .content {
        grid-column: 1 / -1;
    }
}

.content h1 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-wrap: balance;
    color: #ffffff;


}


.content p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.75);
}




.content ul {
    list-style: none;
    padding: 0;

}

.content li {
    font-size: 16px;
    color: #ffffff;

    display: flex;
    align-items: center;
    gap: 10px;
}



.content li::before {
    content: "✓";
    color: #ffd60a;
    /* galben premium */
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}


.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-up.delay-1 {
    transition-delay: 0.1s;
}

.fade-up.delay-2 {
    transition-delay: 0.2s;
}

.fade-up.delay-3 {
    transition-delay: 0.3s;
}


/* NAV FIX 🔥 */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;

    width: 48px;
    height: 48px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.2);

    color: white;
    font-size: 18px;
    cursor: pointer;

    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}



.nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.08);
}

.nav:active {
    transform: translateY(-50%) scale(0.95);
}



.prev {
    left: 20px;
}

.next {
    right: 20px;
}




/* PREVIEW CARDS */
.preview {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 15px;
    z-index: 1;
}

.card {
    width: 160px;
    height: 100px;
    border-radius: 15px;

    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    position: relative;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card span {
    position: absolute;
    bottom: 5px;
    left: 10px;
    color: white;
    font-size: 12px;
}

/* ACTIVE CARD */
.card.active {
    transform: scale(1.1);
    opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
    .card {
        width: 100px;
        height: 70px;
    }
}





.btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: auto;
    justify-content: center;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}





.btn.cta {
    background: none;
    border: none;
    box-shadow: none;

    padding: 8px 14px 8px 14px;
    border-radius: 25px;

    font-size: 17px;
    font-weight: 500;

    color: #0a84ff;

    display: inline-flex;
    align-items: center;
    gap: 5px;

}





.btn.cta:hover {
    opacity: 0.8;
    border: 1px solid #0a84ff;
    ;
}


.btn.cta::before {
    content: "→";
    display: inline-block;
    margin-right: 8px;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.btn.cta:hover::before {
    transform: translateX(8px);
}

.btn.primary {
    background: #007aff;
    border: none;

    position: relative;

}

.btn.primary2 {

    padding: 7px 14px;
    border-radius: 7px;

}

.btn.primary::before {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4), transparent 70%);
    opacity: 0;

    transition: opacity 0.3s ease;
}

.btn.primary:hover::before {
    opacity: 1;
}



.btn.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.3);
}



.btn.secundary {


    background: black;
    color: white;
    border: none;
    transition: 0.3s;
    position: relative;


}




.btn.secundary::before {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4), transparent 70%);
    opacity: 0;

    transition: opacity 0.3s ease;
}

.btn.secundary:hover::before {
    opacity: 1;
}



.btn.secundary:hover {
    background: #333;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(82, 94, 107, 0.3);
}






.btn-right {
    float: right;
}


.btn.edit {
    background-color: #E0A800;
    border-radius: 15px;
    padding: 10px 11px;
    margin-left: 5px;
    margin-left: 5px;
}

.btn.delete {
    background-color: #FF0000;
    border-radius: 15px;
    padding: 10px 11px;
    margin-left: 5px;
    margin-left: 5px;
}

.btn.edit img,
.btn.delete img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(99%) sepia(14%) saturate(0%) hue-rotate(144deg) brightness(107%) contrast(100%);
}




/* CONTAINER */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;

    background: rgba(255, 255, 255, 0.6);
    padding: 10px;
    border-radius: 16px;
    backdrop-filter: blur(20px);
}



/* LINKS */
.pagination a {
    text-decoration: none;
    color: #007aff;

    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(0, 122, 255, 0.08);
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

/* HOVER */
.pagination a:hover {
    background: rgba(0, 122, 255, 0.15);
    transform: translateY(-1px);
}

/* ACTIVE PAGE */
.pagination a.active {
    background: #007aff;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

/* DISABLED (optional dacă vrei) */
.pagination a.disabled {
    pointer-events: none;
    opacity: 0.4;
}

/* MOBILE */
@media (max-width: 600px) {
    .pagination {
        gap: 6px;
    }

    .pagination a {
        padding: 6px 10px;
        font-size: 13px;
        border-radius: 10px;
    }
}










/* CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ROW */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;

}

/* COLOANE GENERALE */
[class*="col-"] {
    padding: 15px;
}

/* 12 COLOANE */
.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

/* OPTIONAL: RESPONSIVE (simplu) */
@media (max-width: 768px) {
    [class*="col-"] {
        width: 100%;
    }
}













.alert {
    display: block;
    width: 100%;
    padding: 20px;
    margin-top: 20px;
    border-radius: 7px;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}






.consulting-section {
    padding: 100px 20px;

    text-align: center;

}

.section-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #6e6e73;
    margin-bottom: 60px;
    font-size: 18px;
}


.c-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 30px;
    height: 100%;
    text-align: left;


    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.c-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.c-card img {
    width: 70px;
    filter: opacity(10%);
}

/* ICON MARE FUNDAL */
.c-bg-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: rgba(0, 0, 0, 0.05);

    pointer-events: none;
    transition: all 0.4s ease;
}

/* mic efect pe hover */
.c-card:hover .c-bg-icon {
    transform: scale(1.1);
    color: rgba(0, 0, 0, 0.08);
}

/* TEXT */
.c-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.c-card p {
    font-size: 15px;
    color: #6e6e73;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}


/* CTA */
.cta-wrap {
    margin-top: 80px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text {
    font-size: 18px;
    line-height: 1.7;
    color: #6e6e73;
    margin-bottom: 25px;
}






















.services-dark {
    width: 100%;
    padding: 100px 20px;
    background: #000;
    background-image: url("/public/assets/images/font.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;

    color: #fff;
    text-align: center;
}

.services-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-subtitle {
    color: #a1a1a6;
    font-size: 18px;
    margin-bottom: 60px;
}

/* BUTTON CARD */
.service-btn {
    display: block;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 35px 25px;
    text-decoration: none;
    color: #fff;
    height: 100%;
    transition: all 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;

}

/* hover elegant */
.service-btn:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ICON */
.service-btn img {

    width: 60px;
    height: auto;
    display: block;
    opacity: 0.9;
    margin: 0 auto;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(208deg) brightness(101%) contrast(104%);
}

/* TITLU */
.service-btn h3 {
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* TEXT */
.service-btn p {
    font-size: 14px;
    color: #a1a1a6;
    line-height: 1.6;
}



.service-btn:hover::before {
    opacity: 1;
}


















.about-section {
    padding: 100px 20px;
    background: #fff;
}

.align-center {
    align-items: center;
}

/* TEXT */
.about-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* CTA */
.about-cta {
    margin-top: 30px;
}

.about-cta h3 {
    font-size: 20px;
    margin-bottom: 10px;
}


/* GRID CONSULTANTS */
/* GRID RESPONSIVE */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* TABLET */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD */
.team-card {
    position: relative;
    border-radius: 18px;
    overflow: visible !important;
    cursor: pointer;
}

.team-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;

    transition: 0.4s;
    border-radius: 18px;

}





/* TABLET */
@media (max-width: 800px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card img {
        height: auto;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* OVERLAY */
.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    text-align: center;
    transition: 0.35s ease;
    margin-bottom: 7px;

}

.team-overlay h3 {
    font-size: 15px;
    margin-bottom: 20px;
}







/* HOVER EFFECT */


.team-card:hover .team-overlay {
    opacity: 0.7;
}



.profile-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}





.contact_row_index {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;

    transition: 0.3s;
}

.contact_row_index a {
    background-color: #fff;
    padding: 5px 10px 0px 10px;
    border-radius: 7px;
}

.contact-item img {
    width: 28px;
    height: 28px;
    border-radius: none !important;

}












/* =========================
   REVIEWS SECTION (DARK)
========================= */

.reviews-dark {
    background: #000;
    background-image: url("/public/assets/images/font2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 20px;
    color: #fff;
    text-align: center;
}

.reviews-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.reviews-subtitle {
    color: #a1a1a6;
    font-size: 18px;
    margin-bottom: 50px;
}

/* =========================
   SLIDER
========================= */

.reviews-slider {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    width: max-content;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CARD */
.review-card {
    width: 100%;
    flex: 0 0 100%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 30px;
    text-align: left;
    position: relative;
    backdrop-filter: blur(10px);
    transition: 0.35s ease;
}

/* hover effect */
.review-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
}

/* QUOTE MARK */
.review-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.08);
}

/* TEXT */
.review-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d1d6;
    margin-bottom: 25px;
    word-wrap: break-word;
}

/* USER AREA */
.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;

}

.review-user h4 {
    font-size: 14px;
    margin: 0;
}

.review-user span {
    font-size: 12px;
    color: #a1a1a6;
}

/* =========================
   CTA SLIDE
========================= */

.cta-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.cta-slide h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.cta-slide p {
    color: #a1a1a6;
    font-size: 14px;
}

.cta-review-btn {
    margin-top: 15px;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.cta-review-btn:hover {
    background: #e5e5e5;
}

/* =========================
   CONTROLS
========================= */

.slider-controls {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 22px;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .reviews-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .review-card {
        padding: 25px;
    }

    .reviews-subtitle {
        font-size: 16px;
    }
}









/* SECTION */
.gallery-section {
    padding: 100px 20px;

}

/* HEAD (titlu + text) */
.gallery-head {
    margin-bottom: 25px;
}

.gallery-head h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-head p {
    font-size: 15px;
    color: #6e6e73;
    line-height: 1.6;
    max-width: 90%;
}

/* VIDEO */
.video-main {
    border-radius: 22px;

    height: 360px;
    margin-bottom: 15px;
}

.video-main iframe {
    width: 100%;
    height: 100%;
}

/* VIDEO THUMBS */
.video-thumbs {
    display: flex;
    gap: 10px;
}

.video-thumb {
    flex: 1;
    border-radius: 14px;

}

.video-thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: 0.3s ease;
}

.video-thumb:hover img {
    transform: scale(1.05);
}

/* PHOTO GRID */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.photo-grid a {
    border-radius: 14px;

}

.photo-grid img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: 0.3s ease;
}

.photo-grid img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .col-7,
    .col-5 {
        width: 100%;
    }

    .video-main {
        height: 260px;
    }
}

@media (max-width: 576px) {
    .gallery-head h2 {
        font-size: 24px;
    }

    .video-thumb img {
        height: 80px;
    }

    .photo-grid img {
        height: 100px;
    }
}















/* SECTION */
.blog-dark {

    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8)), url("/public/assets/images/font_blog.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-size: cover;

    padding: 100px 20px;
    color: #fff;
}

/* HEADER */
.blog-head {
    text-align: center;
    margin-bottom: 60px;
}

.blog-head h2 {
    font-size: 40px;
    font-weight: 600;
}

.blog-head p {
    color: #a1a1a6;
    margin-top: 10px;
}

/* CARD */
.blog-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 22px;

    transition: 0.35s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* HOVER */
.blog-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
}

/* IMAGE */
.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* CONTENT */
.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* TITLE */
.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* TEXT */
.blog-content p {
    font-size: 14px;
    color: #d1d1d6;
    line-height: 1.6;
    flex-grow: 1;
}

/* LINK */
.blog-link {
    margin-top: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: 0.3s;
}

.blog-link:hover {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .col-4 {
        width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .col-4 {
        width: 100%;
    }

    .blog-head h2 {
        font-size: 28px;
    }
}













/* BASE */
.footer-pro {
    position: relative;
    background: #020100;
    padding-top: 60px;
}

/* GLASS EFFECT */
.footer-glass {

    border-radius: 30px 30px 0 0;
    padding: 50px 20px 30px;
}

/* GRID */
.footer-grid {
    margin-bottom: 40px;
}

/* TITLES */
.footer-pro h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-pro h4 {
    font-size: 15px;
    color: #a1a1a6;
    margin-bottom: 15px;
}

/* TEXT */
.footer-pro p {
    font-size: 14px;
    color: #d1d1d6;
    line-height: 1.6;
}

/* LINKS */
.footer-pro a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: 0.3s;
}

.footer-pro a:hover {
    opacity: 1;
}

/* BRAND */
.footer-site {
    display: inline-block;
    margin-top: 10px;
}

/* CONTACT ITEMS */
.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-item .icon {
    font-size: 16px;
    opacity: 0.8;
}

/* LINKS COLUMN */
.footer-links a {
    display: block;
    margin-bottom: 8px;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 13px;
    color: #8e8e93;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .col-4 {
        width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .col-4 {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}







.login-error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 13px;
    margin-bottom: 15px;
    margin-top: 20px;
    animation: shake 0.25s ease;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(3px);
    }

    75% {
        transform: translateX(-2px);
    }

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




/* =========================
   SECTION (sub navbar)
========================= */

.login-section,
.dashboard {
    padding: 100px 20px;
}

/* =========================
   CONTAINER
========================= */

.login-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* =========================
   LEFT SIDE (FORM)
========================= */

.login-box {
    flex: 1;
    display: flex;
    align-items: center;
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 35px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e5e5ea;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

/* subtle hover */
.login-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* =========================
   HEADER
========================= */

.login-logo {
    text-align: center;
    margin-bottom: 25px;
}

.login-logo h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
}

.login-logo p {
    font-size: 13px;
    color: #6e6e73;
    margin-top: 5px;
}

/* =========================
   INPUTS
========================= */

.input-group {
    margin-bottom: 16px;
}

.input-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #6e6e73;
}

.input-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #d2d2d7;
    background: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.25s ease;
}

/* focus iOS style */
.input-group input:focus {
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
}

/* =========================
   OPTIONS
========================= */

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin: 10px 0 20px;
    color: #6e6e73;
}

.login-options a {
    color: #0071e3;
    text-decoration: none;
}

.login-options a:hover {
    text-decoration: underline;
}

.login-options input {
    accent-color: #0071e3;
}

/* =========================
   BUTTON
========================= */

.login-btn {
    width: 100%;
    padding: 12px;
    border-radius: 999px;
    border: none;
    background: #0071e3;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
}

.login-btn:hover {
    background: #005fc5;
}

/* =========================
   RIGHT SIDE (INFO)
========================= */

.login-info {
    flex: 1;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-info h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1d1d1f;
}

.login-info p {
    color: #6e6e73;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* list */
.login-info ul {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.login-info li {
    margin-bottom: 8px;
    color: #1d1d1f;
    font-size: 14px;
}

/* help text */
.login-help {
    margin-top: 20px;
    font-size: 14px;
    color: #6e6e73;
}

/* =========================
   CTA BUTTON
========================= */

.become-partner-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 22px;
    border-radius: 999px;
    background: #1d1d1f;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    width: fit-content;
}


.become-partner-btn:hover {
    background: #000;
    transform: translateY(-1px);
}

/* =========================
   ANIMATION (premium feel)
========================= */

.login-card {
    animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .login-container {
        flex-direction: column;
    }

    .login-box {
        justify-content: center;
    }

    .login-card {
        max-width: 100%;
    }

    .login-info {
        text-align: center;
    }

    .become-partner-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 25px;
    }

    .login-btn {
        font-size: 14px;
    }

    .login-info h1 {
        font-size: 24px;
    }
}















/* =========================
   SECTION BASE
========================= */

.contact-clean {
    padding: 100px 20px;
    background: #f5f5f7;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

/* =========================
   HEADER
========================= */

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 40px;
    font-weight: 600;
    color: #1d1d1f;
}

.contact-header p {
    max-width: 700px;
    margin: 10px auto;
    color: #6e6e73;
    font-size: 15px;
    line-height: 1.6;
}

/* =========================
   GRID
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* =========================
   CARD
========================= */

.contact-card {
    background: #fff;
    border: 1px solid #e5e5ea;
    border-radius: 24px;
    padding: 35px;
    text-align: left;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

/* TITLE */
.contact-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1d1d1f;
}

/* INFO */

.contact-line {
    margin-bottom: 10px;
}

.contact-line a {
    font-size: 14px;

    color: #1d1d1f;
    text-decoration: none;
}

.contact-text {
    margin-top: 15px;
    font-size: 13px;
    color: #6e6e73;
    line-height: 1.6;
}

/* BADGES */
.badges {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.badges span {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f2f2f7;
}

/* =========================
   FORM
========================= */

.contact-card form input,
.contact-card form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid #d2d2d7;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.contact-card form textarea {
    min-height: 120px;
    resize: none;
}

/* FOCUS iOS STYLE */
.contact-card form input:focus,
.contact-card form textarea:focus {
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 28px;
    }
}

















/* =========================
   BASE
========================= */

.dash-wrapper {
    display: flex;
    min-height: 100vh;

}

/* =========================
   SIDEBAR
========================= */



.dash-sidebar {
    width: 260px;
    background: #fff;
    border-right: 1px solid #e5e5ea;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
}

/* PROFILE */
.dash-profile {
    text-align: center;
    margin-bottom: 25px;
}

.dash-profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.dash-profile h3 {
    font-size: 15px;
}

.dash-profile span {
    font-size: 12px;
    color: #6e6e73;
}

/* LINKS */
.dash-links {
    display: flex;
    flex-direction: column;
}




.dash-links a {
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #1d1d1f;
    font-size: 14px;
    margin-bottom: 5px;
    transition: 0.2s;
}

.dash-links a:hover {
    background: #f2f2f7;
}

/* LOGOUT */
.dash-logout {
    color: #ff3b30;
}

/* DIVIDER */
.dash-divider {
    height: 1px;
    background: #e5e5ea;
    margin: 15px 0;
}

/* =========================
   CONTENT
========================= */


.dash-profile {
    padding-top: 100px;
}


.dash-content {
    flex: 1;
    padding: 40px;
    padding-top: 100px;
}

/* HEADER */
.dash-header h2 {
    font-size: 26px;
}

.dash-header p {
    color: #6e6e73;
    font-size: 14px;
    margin-top: 5px;
}

/* =========================
   CARDS
========================= */

.dash-grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.dash-card {

    padding: 20px;

    transition: 0.25s;
}



.dash-card h4 {
    margin-bottom: 8px;
}

.dash-card p {
    font-size: 13px;
    color: #6e6e73;
    margin-bottom: 10px;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .dash-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .dash-wrapper {
        flex-direction: column;
    }

    .dash-sidebar {
        width: 100%;
    }

    .dash-grid {
        grid-template-columns: 1fr;
    }
}




.edit-user h1 {
    margin-bottom: 10px;
    font-weight: 600;
}



/* grid layout */
.edit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* box */
.edit-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eee;
}


.edit-box-2 {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eee;
    margin-top: 25px;

}


.edit-box-3 {
    background: transparent;
    padding: 0px;
    border-radius: none;
    border: none;
    margin-top: 25px;

}




/* titlu */
.edit-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* input */
.edit-input {
    width: 100%;
    padding: 13px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fafafa;
}

.edit-input:focus {
    border-color: #007aff;
    outline: none;
    background: #fff;
}

/* textarea */
.edit-textarea {
    width: 100%;
    min-height: 120px;
    padding: 13px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fafafa;
}

/* avatar */
.edit-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* button */
.edit-btn {
    margin-top: 20px;
    width: 100%;

}

/* diplome */
.edit-diplome {
    margin-top: 30px;
}

.edit-diplome-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.edit-diplome img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}


.edit-diplome-grid div {
    position: relative;
}


.edit-diplome-grid a {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #F5F5F7;
    text-decoration: none;
    padding: 2px;
}

/* responsive */
@media (max-width: 768px) {
    .edit-grid {
        grid-template-columns: 1fr;
    }
}

.margin-top {
    padding-top: 80px;
}







.profile-wrapper {

    margin: 40px auto;
    padding: 20px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 25px;
}

.profile-box {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #eee;
}

/* avatar */
.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 15px;
}

.profile-name {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.profile-cat {
    text-align: center;
    color: #666;
    margin-top: 5px;
}


.profile-oras {
    text-align: center;
    color: #333;
    margin-top: 5px;


}

.profile-oras img {
    width: 25px;
    height: 25px;
    margin-bottom: -5px;
    margin-right: 5px;
}

/* contact */
.profile-contact {
    margin-top: 20px;
}

.profile-contact a {
    display: block;
    padding: 10px;
    border-radius: 10px;
    background: #f7f7f7;
    margin-bottom: 10px;
    text-decoration: none;
    color: #111;
}

/* content */
.profile-text {
    line-height: 1.6;
}


/* diplome */
.profile-diplome {
    margin-top: 30px;
}


.profile-diplome h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.profile-diplome-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-diplome img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
}

.contact-item2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f5f5f7;
    margin-bottom: 12px;
    text-decoration: none;
    color: #111;
    font-size: 15px;
    transition: all 0.25s ease;
}

/* hover premium */
.contact-item2:hover {

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* icon image */
.contact-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    margin-bottom: -5px;
    margin-right: 10px;
}

/* subtle colors overlay */
.icon-email {
    filter: brightness(0) saturate(100%) invert(39%) sepia(98%) saturate(300%) hue-rotate(190deg);
}

.icon-whatsapp {
    filter: brightness(0) saturate(100%) invert(55%) sepia(80%) saturate(400%) hue-rotate(90deg);
}

.icon-phone {
    opacity: 0.6;
}




/* responsive */
@media(max-width:900px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}




/* TABLE */
.dash-card table {
    width: 100%;
    border-collapse: collapse;
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", sans-serif;
    font-size: 15px;
    color: #1d1d1f;
}

/* HEADER */
.dash-card table thead {
    background: transparent;
}

.dash-card table th {
    text-align: left;
    font-weight: 600;
    padding: 14px 16px;
    color: #000000;
    font-size: 14px;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ROWS */
.dash-card table td {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

/* HOVER EFFECT */
.dash-card table tbody tr {
    border-radius: 12px;
}

.dash-card table tbody tr:hover {
    background: rgba(0, 122, 255, 0.05);
}

/* LAST ROW */
.dash-card table tr:last-child td {
    border-bottom: none;
}

/* STRIPED SUBTLE */
.dash-card table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.015);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {


    .dash-card table thead {
        display: none;
    }

    .dash-card table,
    .dash-card table tbody,
    .dash-card table tr,
    .dash-card table td {
        display: block;
        width: 100%;
    }

    .dash-card table tr {
        margin-bottom: 12px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 16px;
        padding: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    }

    .dash-card table td {
        padding: 10px 12px;
        text-align: right;
        position: relative;
    }

    .dash-card table td::before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        top: 10px;
        font-weight: 500;
        color: #8e8e93;
        text-align: left;
    }
}














/* Container */
.lang-dropdown {
    position: relative;
}

/* Button */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;

    border: none;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px rgba(255, 255, 255, 0.6);

    color: #111;

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition: all .25s ease;
}

.lang-btn:hover {
    transform: translateY(-1px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.10),
        inset 0 1px rgba(255, 255, 255, 0.7);
}

.arrow {
    margin-top: 5px;
    filter: brightness(0) saturate(100%);
    transition: transform .25s ease;
}


.arrow img {
    width: 15px;
    height: 15px;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 58px;
    right: 0;

    width: 180px;

    padding: 8px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(.98);

    transition: all .25s ease;
}

.lang-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-dropdown.active .arrow {
    transform: rotate(180deg);
    margin-top: -5px;
}

/* Items */
.dropdown-item {
    display: flex;
    align-items: center;

    width: 100%;

    padding: 12px 14px;

    border-radius: 14px;

    text-decoration: none;

    color: #111;

    font-size: 14px;
    font-weight: 500;

    transition: all .2s ease;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.06);
}

.dropdown-item.active {
    background: #111;
    color: white;
}

/* Mobile */
@media(max-width:768px) {

    .lang-btn {
        padding: 9px 14px;
        font-size: 13px;
    }

    .dropdown-menu {
        width: 160px;
        right: -5px;
    }
}

.margin-l-10 {
    margin-left: 10px;
}




.switch {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.switch input {
    display: none;
}

.slider_edit {
    position: relative;
    width: 52px;
    height: 32px;
    background: #d1d1d6;
    border-radius: 999px;
    transition: all 0.25s ease;
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.08);
}

.slider_edit::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.15),
        0 1px 2px rgba(0, 0, 0, 0.1);
}

.switch input:checked+.slider_edit {
    background: linear-gradient(135deg, #34c759, #30d158);
}

.switch input:checked+.slider_edit::before {
    transform: translateX(20px);
}

.switch:hover .slider_edit {
    filter: brightness(1.03);
}

.switch:active .slider_edit::before {
    width: 30px;
}

.switch input:focus-visible+.slider_edit {
    outline: 3px solid rgba(0, 122, 255, 0.35);
    outline-offset: 3px;
}

.switch-text {
    font-size: 15px;
    font-weight: 500;
    color: #1c1c1e;
}


.margin_b_20 {
    margin-bottom: 20px;
}


.admin_back {
    background-color: rgba(255, 0, 0, 0.15);
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 0;
}























.macos-modal-overlay {
    position: fixed;
    inset: 0;

    overflow-y: auto;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding:
        clamp(20px, 5vw, 60px) 20px;

    background:
        radial-gradient(circle at top,
            rgba(124, 58, 237, .18),
            transparent 35%),
        radial-gradient(circle at bottom right,
            rgba(37, 99, 235, .18),
            transparent 30%),
        rgba(10, 10, 15, .55);

    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;

    z-index: 9999;
}


.macos-modal-overlay:target {
    opacity: 1;
    visibility: visible;
}


.macos-modal {
    position: relative;

    width: 100%;
    max-width: 760px;

    border-radius: var(--radius-xl);

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .82),
            rgba(255, 255, 255, .68));

    border: 1px solid var(--border-glass);

    box-shadow: var(--shadow-xl);

    overflow: hidden;

    transform:
        scale(.92) translateY(30px);

    opacity: 0;

    transition:
        transform .45s cubic-bezier(.16, 1, .3, 1),
        opacity .45s ease;

    isolation: isolate;
}


.macos-modal::before {
    content: "";

    position: absolute;
    inset: -2px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .9),
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, .35));

    z-index: -1;

    border-radius: inherit;

    opacity: .7;
}


.macos-modal-overlay:target .macos-modal {
    transform:
        scale(1) translateY(0);

    opacity: 1;
}


.modal-header {
    position: relative;

    padding:
        34px 38px 22px;

    text-align: center;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .55),
            rgba(255, 255, 255, .18));

    border-bottom:
        1px solid rgba(255, 255, 255, .4);
}



.modal-header::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    background:
        radial-gradient(circle,
            rgba(37, 99, 235, .18),
            transparent 70%);

    top: -120px;
    right: -100px;

    pointer-events: none;
}

.modal-header h2 {
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.modal-header p {
    margin-top: 10px;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 1.6;
}



.close-modal {
    position: absolute;

    top: 22px;
    right: 22px;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255, 255, 255, .55);

    border:
        1px solid rgba(255, 255, 255, .5);

    color: #111;

    font-size: 22px;

    text-decoration: none;

    backdrop-filter: blur(10px);

    transition: .25s ease;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, .08);
}

.close-modal:hover {
    transform:
        scale(1.08) rotate(90deg);

    background: white;
}



.modal-body {
    padding:
        34px clamp(20px, 4vw, 38px) 38px;
}



.partner-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}



.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group label {
    font-size: 14px;
    font-weight: 700;

    color: #374151;
}


.language-list input,
.input-group textarea {
    width: 100%;

    border: none;

    background:
        rgba(255, 255, 255, .65);

    backdrop-filter: blur(14px);

    border:
        1px solid rgba(255, 255, 255, .55);

    border-radius: 22px;

    padding:
        18px 20px;

    font-size: 15px;

    color: #111827;

    outline: none;

    transition: .28s ease;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .45),
        0 4px 14px rgba(0, 0, 0, .04);
}

.input-group textarea {
    min-height: 140px;
    resize: vertical;
}

.language-list input::placeholder,
.input-group textarea::placeholder {
    color: #9ca3af;
}


.language-list input:focus,
.input-group textarea:focus {
    background:
        rgba(255, 255, 255, .9);

    transform: translateY(-1px);

    border:
        1px solid rgba(37, 99, 235, .35);

    box-shadow:
        0 0 0 5px rgba(37, 99, 235, .10),
        0 12px 30px rgba(37, 99, 235, .12);
}


.language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.language-list label {
    position: relative;

    display: flex;
    align-items: center;
    gap: 10px;

    padding:
        8px 16px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .58);

    border:
        1px solid rgba(255, 255, 255, .5);

    cursor: pointer;

    font-size: 14px;
    font-weight: 600;

    transition: .25s ease;

    overflow: hidden;
}

.language-list label::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .35),
            transparent);

    opacity: 0;

    transition: .25s;
}

.language-list label:hover {
    transform:
        translateY(-2px) scale(1.02);

    background:
        rgba(255, 255, 255, .9);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08);
}

.language-list label:hover::before {
    opacity: 1;
}


.language-list input {
    width: 18px;
    height: 18px;
}


.fake-captcha {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 20px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, .6);

    border:
        1px solid rgba(255, 255, 255, .5);

    width: fit-content;

    backdrop-filter: blur(14px);
}





.macos-modal-overlay::-webkit-scrollbar {
    width: 10px;
}

.macos-modal-overlay::-webkit-scrollbar-thumb {
    background:
        rgba(255, 255, 255, .35);

    border-radius: 20px;
}


@media(max-width:768px) {

    .macos-modal {
        border-radius: 28px;
    }

    .modal-header {
        padding:
            28px 20px 18px;
    }

    .modal-body {
        padding: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .language-list label {
        width: 100%;
    }



}



.hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    visibility: hidden;
}



.gdpr-box {
    margin-top: 10px;
}

.gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 18px;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, .55);

    border:
        1px solid rgba(255, 255, 255, .45);

    font-size: 14px;
    line-height: 1.6;

    color: #4b5563;
}

.gdpr-label input {
    margin-top: 3px;

    width: 20px;
    height: 20px;

    flex-shrink: 0;
}
















/* =========================
   TEAM PREMIUM LIGHT v2
========================= */



/* HEADER */

.cm-team-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}



.cm-team-head h1 {
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

.cm-team-head p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.8;
}

/* GRID */

.cm-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* CARD */

.cm-member-card {
    position: relative;
    overflow: visible;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: 0.4s ease;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04);
}

.cm-member-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.cm-member-image {
    position: relative;
    display: block;
    height: 270px;
    overflow: hidden;
}

.cm-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.cm-member-card:hover .cm-member-image img {
    transform: scale(1.05);
}

/* OVERLAY */

.cm-member-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.35),
            transparent 45%);

}

/* BODY */

.cm-member-body {
    padding: 22px;
}

.cm-role {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 14px;
}

/* NAME */

.cm-member-body h3 {
    margin: 0 0 10px;
}

.cm-member-body h3 a {
    text-decoration: none;
    color: #111;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
    transition: 0.3s;
}

.cm-member-body h3 a:hover {
    opacity: 0.7;
}

/* LOCATION */

.cm-location {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 22px;
}

/* BUTTONS */

.cm-actions {
    display: flex;
    gap: 10px;
}

.cm-btn {
    flex: 1;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: 0.35s ease;
}

/* BUTTON COLORS */

.phone-btn {
    background: #111;
    color: #fff;
}


.cm-actions img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}


.cm-location img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.wa-btn img,
.phone-btn img,
.wa-btn img:hover,
.phone-btn img:hover {

    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(152deg) brightness(101%) contrast(102%);
}

.wa-btn {
    background: #25d366;
    color: #fff;

}

.mail-btn {
    background: #eef2ff;
    color: #4338ca;
}

.mail-btn img,
.mail-btn img:hover {
    filter: brightness(0) saturate(100%) invert(22%) sepia(77%) saturate(2780%) hue-rotate(239deg) brightness(80%) contrast(99%);
}





.cm-btn:hover {
    transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 1200px) {

    .cm-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 900px) {

    .cm-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cm-team-head h1 {
        font-size: 42px;
    }

}

@media (max-width: 640px) {

    .cm-team-wrap {
        padding: 70px 16px;
    }

    .cm-team-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cm-team-head h1 {
        font-size: 34px;
    }

    .cm-team-head p {
        font-size: 15px;
    }

    .cm-member-image {
        height: 240px;
    }

    .cm-member-body {
        padding: 18px;
    }

    .cm-member-body h3 a {
        font-size: 22px;
    }

}



















/* =========================
   macOS 404 PAGE
========================= */

.mac404-page {

    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            #f5f7fb 0%,
            #eef2f7 100%);

    padding: 100px 20px;
}

/* =========================
   BACKGROUND GLOW
========================= */

.mac404-bg {

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top left,
            rgba(0, 122, 255, 0.12),
            transparent 30%),
        radial-gradient(circle at bottom right,
            rgba(90, 200, 250, 0.12),
            transparent 30%);

    z-index: 1;
}

/* =========================
   CARD
========================= */

.mac404-card {

    position: relative;
    z-index: 2;

    max-width: 760px;
    width: 100%;

    padding: 70px 50px;

    text-align: center;

    border-radius: 36px;

    background:
        rgba(255, 255, 255, 0.72);

    backdrop-filter:
        blur(30px) saturate(180%);

    -webkit-backdrop-filter:
        blur(30px) saturate(180%);

    border:
        1px solid rgba(255, 255, 255, 0.7);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);

    margin: 0 auto;
}

/* =========================
   ICON
========================= */

.mac404-icon {

    width: 90px;
    height: 90px;

    margin: 0 auto 24px;

    border-radius: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;

    background:
        linear-gradient(135deg,
            #007aff,
            #5ac8fa);

    color: white;

    box-shadow:
        0 15px 35px rgba(0, 122, 255, 0.25);
}

/* =========================
   LABEL
========================= */

.mac404-label {

    display: inline-flex;

    padding: 8px 16px;

    border-radius: 999px;

    background:
        rgba(0, 122, 255, 0.08);

    color: #007aff;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 20px;
}

/* =========================
   TITLE
========================= */

.mac404-card h1 {

    font-size: 58px;
    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -2px;

    color: #111;

    margin-bottom: 20px;
}

/* =========================
   TEXT
========================= */

.mac404-card p {

    max-width: 560px;

    margin: 0 auto 40px;

    font-size: 18px;
    line-height: 1.7;

    color: #5f6672;
}

/* =========================
   ACTIONS
========================= */

.mac404-actions {

    display: flex;
    justify-content: center;
    gap: 16px;

    flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .mac404-card {

        padding: 50px 28px;

        border-radius: 28px;
    }

    .mac404-card h1 {

        font-size: 42px;
    }

    .mac404-card p {

        font-size: 16px;
    }

    .mac404-actions {

        flex-direction: column;
    }

    .mac404-actions .btn {

        width: 100%;
    }
}

@media (max-width: 480px) {

    .mac404-card h1 {

        font-size: 34px;
    }

    .mac404-icon {

        width: 74px;
        height: 74px;

        font-size: 34px;
    }
}









/* MARGIN TOP */
.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* MARGIN BOTTOM */
.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* MARGIN LEFT */
.ms-0 {
    margin-left: 0;
}

.ms-1 {
    margin-left: 0.25rem;
}

.ms-2 {
    margin-left: 0.5rem;
}

.ms-3 {
    margin-left: 1rem;
}

.ms-4 {
    margin-left: 1.5rem;
}

.ms-5 {
    margin-left: 3rem;
}

/* MARGIN RIGHT */
.me-0 {
    margin-right: 0;
}

.me-1 {
    margin-right: 0.25rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.me-3 {
    margin-right: 1rem;
}

.me-4 {
    margin-right: 1.5rem;
}

.me-5 {
    margin-right: 3rem;
}

/* PADDING TOP */
.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 0.25rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-3 {
    padding-top: 1rem;
}

.pt-4 {
    padding-top: 1.5rem;
}

.pt-5 {
    padding-top: 3rem;
}

/* PADDING BOTTOM */
.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-3 {
    padding-bottom: 1rem;
}

.pb-4 {
    padding-bottom: 1.5rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

/* PADDING LEFT */
.ps-0 {
    padding-left: 0;
}

.ps-1 {
    padding-left: 0.25rem;
}

.ps-2 {
    padding-left: 0.5rem;
}

.ps-3 {
    padding-left: 1rem;
}

.ps-4 {
    padding-left: 1.5rem;
}

.ps-5 {
    padding-left: 3rem;
}

/* PADDING RIGHT */
.pe-0 {
    padding-right: 0;
}

.pe-1 {
    padding-right: 0.25rem;
}

.pe-2 {
    padding-right: 0.5rem;
}

.pe-3 {
    padding-right: 1rem;
}

.pe-4 {
    padding-right: 1.5rem;
}

.pe-5 {
    padding-right: 3rem;
}
















.page-hero {
    position: relative;
    min-height: 65vh;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: #111;

}

.page-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.page-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .82),
            rgba(0, 0, 0, .25));
}

.page-hero-content {
    position: relative;
    z-index: 2;

    padding: 100px 0 70px;

    color: #fff;

    max-width: 900px;
}

.page-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.page-meta {
    display: flex;
    gap: 25px;

    flex-wrap: wrap;

    opacity: .9;
}

.page-meta span {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
}


.page-meta .author a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}



.page-meta span img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(319deg) brightness(102%) contrast(101%);
}


.page-section {

    padding: 20px 0;
}

.page-content {

    color: #1d1d1f;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    margin-top: 35px;
    margin-bottom: 20px;

    line-height: 1.3;
}

.page-content p {
    margin-bottom: 15px;
}

.page-content img {
    max-width: 100%;

    border-radius: 24px;

    margin: 25px 0;
}

.page-content ul,
.page-content ol {
    padding-left: 25px;

    margin-bottom: 25px;
}

.page-content a {
    color: #0066cc;
}

@media(max-width:768px) {

    .page-hero {
        min-height: 50vh;
    }





    .page-meta {
        gap: 15px;
    }

}
















.comment-form {
    background: rgba(255, 255, 255, .75);

    backdrop-filter: blur(18px);

    padding: 35px;

    border-radius: 30px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .05);

    margin-bottom: 50px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;

    border: none;

    background: #f5f5f7;

    padding: 18px 20px;

    border-radius: 18px;

    font-size: 16px;

    outline: none;
}

.comment-form textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.comment-form button {
    border: none;

    background: #111;

    color: #fff;

    padding: 16px 28px;

    border-radius: 18px;

    cursor: pointer;

    font-size: 15px;

    font-weight: 600;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}


.comments-list h3 {
    font-size: 24px;
    font-weight: 700;
}

.comment-item {
    display: flex;
    gap: 20px;

    background: #fff;

    padding: 25px;

    border-radius: 24px;

    box-shadow:
        0 6px 24px rgba(0, 0, 0, .05);
}

.comment-avatar {
    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: #111;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;
}

.comment-body {
    flex: 1;
}

.comment-head {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 10px;
}

.comment-head span {
    color: #888;
    font-size: 14px;
}

.comment-text {
    line-height: 1.8;
    color: #333;
}

@media(max-width:768px) {

    .form-grid {
        grid-template-columns: 1fr;
    }

    .comment-item {
        flex-direction: column;
    }

}















/* PAGINA RECENZII */

.reviews-page {
    padding: 80px 0;
}

.reviews-page__container {
    max-width: 900px;
    margin: 0 auto;
}

.review-item {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 28px;

    padding: 32px;

    margin-bottom: 24px;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.review-item:hover {
    transform: translateY(-2px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .06),
        0 8px 16px rgba(0, 0, 0, .04);
}

.review-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 18px;
}

.review-item__author {
    font-size: 18px;
    font-weight: 600;
}

.review-item__rating {
    letter-spacing: 2px;
    font-size: 15px;
}

.review-item__body {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.review-item__date {
    margin-top: 18px;

    font-size: 13px;
    color: #999;
}









.blog-premium-hero {
    position: relative;
    min-height: 520px;
    padding: 170px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(203, 162, 90, .28), transparent 34%),
        radial-gradient(circle at 80% 0%, rgba(37, 99, 235, .16), transparent 30%),
        linear-gradient(180deg, #fff 0%, #f5f5f7 100%);
}

.blog-premium-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .22));
    backdrop-filter: blur(22px);
    pointer-events: none;
}

.blog-premium-hero-inner {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.blog-premium-eyebrow {
    display: inline-flex;
    padding: 10px 18px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .07);
    color: #9a6a18;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.blog-premium-hero h1 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: .98;
    letter-spacing: 0.06em;
    color: #111827;
    margin-bottom: 24px;
}

.blog-premium-hero p {
    max-width: 690px;
    margin: 0 auto;
    font-size: clamp(17px, 2vw, 21px);
    color: #6b7280;
    line-height: 1.65;
}

.blog-premium-section {
    position: relative;
    padding: 80px 0 110px;
    background: #f5f5f7;
}

.blog-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-premium-card {
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .78);
    box-shadow:
        0 28px 80px rgba(17, 24, 39, .08),
        inset 0 1px 0 rgba(255, 255, 255, .9);
    backdrop-filter: blur(22px) saturate(170%);
    transition: transform .35s ease, box-shadow .35s ease;
}

.blog-premium-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 36px 110px rgba(17, 24, 39, .14),
        inset 0 1px 0 rgba(255, 255, 255, .95);
}

.blog-premium-image {
    display: block;
    height: 235px;
    overflow: hidden;
    background: #e5e7eb;
}

.blog-premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.blog-premium-card:hover .blog-premium-image img {
    transform: scale(1.07);
}

.blog-premium-content {
    padding: 26px;
}

.blog-premium-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.blog-premium-meta span {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(245, 245, 247, .9);
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
}

.blog-premium-content h2 {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.22;
    letter-spacing: -.03em;
}

.blog-premium-content h2 a {
    color: #111827;
    text-decoration: none;
}

.blog-premium-content h2 a:hover {
    color: #9a6a18;
}

.blog-premium-content p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.blog-premium-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111827;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
}

.blog-premium-link span {
    transition: transform .25s ease;
}

.blog-premium-link:hover span {
    transform: translateX(5px);
}

.blog-premium-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 52px;
}

.blog-premium-pagination a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    text-decoration: none;
    color: #111827;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    font-weight: 800;
}

.blog-premium-pagination a.active,
.blog-premium-pagination a:hover {
    background: #111827;
    color: #fff;
}

.blog-empty-card {
    max-width: 680px;
    margin: 0 auto;
    padding: 36px;
    border-radius: 28px;
    text-align: center;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .08);
    color: #6b7280;
    font-weight: 700;
}

@media (max-width: 992px) {
    .blog-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-premium-hero {
        min-height: auto;
        padding: 140px 0 70px;
    }

    .blog-premium-grid {
        grid-template-columns: 1fr;
    }

    .blog-premium-content {
        padding: 22px;
    }
}





/* =========================================================
   FAQ PREMIUM – Apple macOS / iOS Style
   ========================================================= */

details {
    position: relative;
    width: 100%;
    margin: 0 0 16px;
    overflow: hidden;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.96),
            rgba(247, 249, 251, 0.92));

    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;

    box-shadow:
        0 12px 35px rgba(15, 23, 42, 0.07),
        0 2px 8px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}

details:hover {
    transform: translateY(-2px);

    border-color: rgba(0, 101, 113, 0.18);

    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.10),
        0 4px 12px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

details[open] {
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.99),
            rgba(242, 248, 249, 0.97));

    border-color: rgba(0, 101, 113, 0.22);

    box-shadow:
        0 22px 55px rgba(0, 101, 113, 0.10),
        0 5px 14px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

/* Titlul întrebării */
details summary {
    position: relative;
    display: flex;
    align-items: center;

    min-height: 74px;
    padding: 20px 72px 20px 24px;

    color: #162126;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Display",
        "SF Pro Text",
        "Segoe UI",
        sans-serif;

    font-size: 17px;
    font-weight: 650;
    line-height: 1.4;
    letter-spacing: -0.02em;

    cursor: pointer;
    list-style: none;
    user-select: none;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

/* Elimină săgeata standard */
details summary::-webkit-details-marker {
    display: none;
}

details summary::marker {
    display: none;
    content: "";
}

details summary:hover {
    color: #006571;
}

/* Linia subtilă de separare când este deschis */
details[open] summary {
    color: #006571;

    background:
        linear-gradient(90deg,
            rgba(0, 101, 113, 0.045),
            rgba(0, 101, 113, 0));
}

details[open] summary::after {
    background: #006571;
    color: #ffffff;

    transform: translateY(-50%) rotate(45deg);

    box-shadow:
        0 8px 18px rgba(0, 101, 113, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Butonul rotund plus/minus */
details summary::after {
    content: "+";

    position: absolute;
    top: 50%;
    right: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(0, 101, 113, 0.12);
    border-radius: 50%;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 1),
            rgba(235, 242, 243, 0.95));

    color: #006571;

    font-size: 25px;
    font-weight: 300;
    line-height: 1;

    transform: translateY(-50%) rotate(0deg);

    box-shadow:
        0 7px 16px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

details summary:hover::after {
    background: #006571;
    color: #ffffff;

    box-shadow:
        0 9px 20px rgba(0, 101, 113, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Textul răspunsului */
details p {
    position: relative;
    margin: 0;
    padding: 0 28px 26px;

    color: #5e6a70;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Text",
        "Segoe UI",
        sans-serif;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

/* Linie elegantă deasupra răspunsului */
details p::before {
    content: "";

    display: block;

    width: calc(100% - 4px);
    height: 1px;

    margin: 0 0 20px;

    background:
        linear-gradient(90deg,
            rgba(0, 101, 113, 0),
            rgba(0, 101, 113, 0.18),
            rgba(0, 101, 113, 0));
}

/* Focus accesibil */
details summary:focus-visible {
    outline: none;

    box-shadow:
        inset 0 0 0 3px rgba(0, 101, 113, 0.16);
}

/* Telefon și tabletă */
@media (max-width: 768px) {
    details {
        margin-bottom: 12px;
        border-radius: 18px;
    }

    details summary {
        min-height: 66px;
        padding: 17px 62px 17px 18px;

        font-size: 15.5px;
        line-height: 1.45;
    }

    details summary::after {
        right: 16px;

        width: 34px;
        height: 34px;

        font-size: 22px;
    }

    details p {
        padding: 0 20px 22px;

        font-size: 15px;
        line-height: 1.7;
    }

    details p::before {
        margin-bottom: 17px;
    }
}

/* Reducerea animațiilor pentru accesibilitate */
@media (prefers-reduced-motion: reduce) {

    details,
    details summary,
    details summary::after {
        transition: none;
    }
}






/* =========================================================
   SCHOOL / TRAINING MODULE — premium macOS/iOS UI
========================================================= */
.school-page {
    :root {
        --school-accent: #DAB46B;
        --school-accent-dark: #C89D4B;
        --school-accent-light: #F2E1BB;
        --school-text: #3A2B18;
        --school-muted: #8A7657;
        --school-line: rgba(218, 180, 107, .22);
        --school-surface: rgba(255, 252, 246, .82);
        --school-surface-solid: #FFFDF8;
        color: var(--school-text);
    }
}

.school-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 34px 36px;
    margin-bottom: 22px;
    border: 1px solid rgba(0, 101, 113, .12);
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 15%, rgba(218, 180, 107, .28), transparent 30%),
        radial-gradient(circle at 15% 85%, rgba(245, 233, 203, .45), transparent 40%),
        linear-gradient(135deg,
            #ffffff 0%,
            #fcf8f1 55%,
            #f2e3bf 100%);
    box-shadow: 0 18px 55px rgba(12, 55, 60, .09)
}

.school-hero:after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    right: 8%;
    bottom: -120px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 0 0 22px rgba(255, 255, 255, .22)
}

.school-hero.compact {
    padding-top: 28px;
    padding-bottom: 28px
}

.school-hero-copy {
    position: relative;
    z-index: 1
}

.school-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    color: var(--school-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase
}

.school-kicker span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--school-accent);
    box-shadow: 0 0 0 5px rgba(0, 101, 113, .11)
}

.school-hero h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.02;
    letter-spacing: -.045em
}

.school-hero p {
    max-width: 620px;
    margin: 11px 0 0;
    color: var(--school-muted);
    font-size: 15px;
    line-height: 1.65
}

.school-primary-btn,
.school-secondary-btn,
.school-filter-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 750;
    transition: .22s ease;
    cursor: pointer
}

.school-primary-btn {
    padding: 13px 18px !important;
    color: #fff;
    background: linear-gradient(135deg, #DAB46B 0%, #C89D4B 100%);
    border: 1px solid rgba(255, 255, 255, .25);
    box-shadow:
        0 10px 24px rgba(218, 180, 107, .30),
        inset 0 1px 0 rgba(255, 255, 255, .25);
    transition: all .28s ease;
}

.school-primary-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #E2BF7C 0%, #D0A558 100%);
    box-shadow:
        0 16px 36px rgba(218, 180, 107, .38),
        inset 0 1px 0 rgba(255, 255, 255, .35);
}

.school-primary-btn:active {
    transform: translateY(0);
    box-shadow:
        0 8px 18px rgba(218, 180, 107, .25),
        inset 0 2px 4px rgba(0, 0, 0, .08);
}

.school-secondary-btn {
    padding: 13px 18px;
    color: #334649;
    background: #eef3f3;
    border: 1px solid var(--school-line)
}

.school-alert {
    margin: 0 0 18px;
    padding: 14px 17px;
    border-radius: 14px;
    font-weight: 650
}

.school-alert.success {
    color: #176b49;
    background: #e8f8ef;
    border: 1px solid #bfe8d0
}

.school-alert.error {
    color: #9c2e2e;
    background: #fff0f0;
    border: 1px solid #f1caca
}

.school-toolbar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 210px auto;
    gap: 12px;
    margin-bottom: 22px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--school-line);
    box-shadow: 0 12px 35px rgba(22, 48, 51, .055);
    backdrop-filter: blur(18px)
}

.school-search {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    border-radius: 12px;
    background: #f4f7f7
}

.school-search span {
    font-size: 22px;
    color: #738386
}

.school-search input,
.school-toolbar select {
    width: 100%;
    min-height: 44px;
    border: 0 !important;
    outline: 0;
    background: transparent;
    font-size: 14px
}

.school-toolbar select {
    padding: 0 12px;
    border-radius: 12px !important;
    background: #f4f7f7
}

.school-filter-btn {
    padding: 10px 18px !important;
    color: #fff;
    background: #1f3033
}

.school-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px
}

.school-card {
    position: relative;
    padding: 22px;
    border: 1px solid var(--school-line);
    border-radius: 23px;
    background: var(--school-surface);
    box-shadow: 0 14px 40px rgba(25, 48, 51, .07);
    backdrop-filter: blur(18px);
    transition: .25s ease
}

.school-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 19px 48px rgba(25, 48, 51, .11)
}

.school-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

.school-language {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .04em
}

.lang-ro {
    color: #995017;
    background: #fff0df
}

.lang-ru {
    color: #3a62a3;
    background: #eaf2ff
}

.lang-de {
    color: #4f4f55;
    background: #eeeeef
}

.school-card-actions {
    display: flex;
    gap: 6px
}

.school-card-actions a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    text-decoration: none;
    color: #385256;
    background: #eef4f4
}

.school-card-actions a.danger {
    color: #b04040;
    background: #fff0f0
}

.school-card h2 {
    margin: 17px 0 8px;
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -.02em
}

.school-description {
    margin: 0 0 14px;
    color: var(--school-muted);
    font-size: 14px;
    line-height: 1.55
}

.school-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
    padding-bottom: 15px;
    margin-bottom: 13px;
    border-bottom: 1px solid var(--school-line);
    color: #829093;
    font-size: 12px
}

.school-files {
    display: flex;
    flex-direction: column;
    gap: 8px
}










.school-file-row {

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 18px;

    border-radius: 18px;

    background: #fff;
    text-decoration: none;

}

.school-file-ext {

    flex: 0 0 54px;

    height: 30px;

    border-radius: 10px;

    background: #DAB46B;

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    letter-spacing: .5px;

}

.school-file-title {

    flex: 1;

    min-width: 0;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    font-size: 15px;

    font-weight: 600;

}

.school-file-view {

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #F5F5F5;

    font-size: 18px;

}

.type-pdf {
    background: linear-gradient(145deg, #e55e5e, #ae2929)
}

.type-doc,
.type-docx {
    background: linear-gradient(145deg, #4f8de7, #2857aa)
}

.type-xls,
.type-xlsx,
.type-csv {
    background: linear-gradient(145deg, #43a871, #1e7547)
}

.type-ppt,
.type-pptx {
    background: linear-gradient(145deg, #e98549, #b6471f)
}

.school-file-info {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column
}

.school-file-info strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px
}

.school-file-info small {
    margin-top: 3px;
    color: #899699
}

.school-download {
    font-size: 21px;
    color: var(--school-accent)
}

.school-empty {
    padding: 70px 20px;
    text-align: center;
    border: 1px dashed rgba(0, 101, 113, .25);
    border-radius: 24px;
    background: #f7fbfa
}

.school-empty-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 15px;
    border-radius: 18px;
    background: #e6f3f1;
    color: var(--school-accent);
    font-size: 30px
}

.school-empty h3 {
    margin: 0 0 6px
}

.school-empty p {
    margin: 0;
    color: var(--school-muted)
}

.school-form-card {
    padding: 25px;
    border: 1px solid var(--school-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 15px 44px rgba(20, 45, 48, .08)
}

.school-form-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 18px
}

.school-field {
    margin-bottom: 18px
}

.school-field label {
    display: block;
    margin-bottom: 7px;
    color: #536568;
    font-size: 13px;
    font-weight: 750
}

.school-field label small {
    font-weight: 500;
    color: #98a2a4
}

.school-field input,
.school-field select,
.school-field textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d9e1e2;
    border-radius: 13px;
    background: #fbfcfc;
    outline: 0;
    font: inherit;
    transition: .2s
}

.school-field textarea {
    resize: vertical
}

.school-field input:focus,
.school-field select:focus,
.school-field textarea:focus {
    border-color: var(--school-accent);
    box-shadow: 0 0 0 4px rgba(0, 101, 113, .1);
    background: #fff
}

.school-upload-zone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    padding: 25px;
    text-align: center;
    border: 2px dashed #bdd2d4;
    border-radius: 20px;
    background: linear-gradient(145deg, #f9fcfc, #eff7f6);
    overflow: hidden
}

.school-upload-zone>input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer
}

.school-upload-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(145deg, #00828f, #005761);
    font-size: 27px;
    box-shadow: 0 10px 23px rgba(0, 101, 113, .2)
}

.school-upload-zone strong {
    font-size: 16px
}

.school-upload-zone>span {
    max-width: 600px;
    margin-top: 7px;
    color: #7d8c8e;
    font-size: 12px;
    line-height: 1.5
}

.school-selected-files {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    pointer-events: none
}

.school-selected-files span {
    padding: 6px 9px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #dce6e6;
    font-size: 11px
}

.school-existing {
    margin-top: 22px
}

.school-existing h3 {
    font-size: 15px
}

.school-existing-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    margin-top: 8px;
    border-radius: 14px;
    background: #f5f8f8
}

.school-existing-row>span:nth-child(2) {
    min-width: 0;
    display: flex;
    flex-direction: column
}

.school-existing-row strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px
}

.school-existing-row small {
    color: #879496
}

.school-existing-row a {
    color: #ae3e3e;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700
}

.school-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--school-line)
}

@media(max-width:900px) {
    .school-grid {
        grid-template-columns: 1fr
    }

    .school-toolbar {
        grid-template-columns: 1fr 1fr auto
    }

    .school-form-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:620px) {
    .school-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px 22px
    }

    .school-toolbar {
        grid-template-columns: 1fr
    }

    .school-grid {
        gap: 14px
    }

    .school-card {
        padding: 17px
    }

    .school-form-card {
        padding: 17px
    }

    .school-form-actions {
        flex-direction: column-reverse
    }

    .school-form-actions>* {
        width: 100%
    }
}





.school-pdf-page {
    min-height: calc(100vh - 80px);
    background:
        radial-gradient(circle at 85% 10%,
            rgba(218, 180, 107, .18),
            transparent 30%),
        linear-gradient(145deg,
            #f8f6f1 0%,
            #eeeae2 100%);
    border-radius: 28px;
    overflow: hidden;
}

.school-pdf-toolbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .86);
    border-bottom: 1px solid rgba(218, 180, 107, .22);
    box-shadow: 0 10px 30px rgba(45, 35, 20, .08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.school-pdf-toolbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.school-pdf-toolbar-left strong {
    display: block;
    color: #2f2416;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.school-pdf-toolbar-left span {
    display: block;
    margin-top: 3px;
    color: #8a7657;
    font-size: 12px;
}

.school-pdf-back,
.school-pdf-controls button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    color: #49371f;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(218, 180, 107, .25);
    border-radius: 13px;
    box-shadow: 0 6px 16px rgba(62, 46, 25, .08);
    cursor: pointer;
    transition: .25s ease;
}

.school-pdf-back:hover,
.school-pdf-controls button:hover {
    color: #fff;
    background: linear-gradient(135deg, #dab46b, #c89d4b);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(218, 180, 107, .32);
}

.school-pdf-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.school-pdf-counter {
    min-width: 70px;
    padding: 9px 12px;
    color: #49371f;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(218, 180, 107, .2);
    border-radius: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.school-pdf-viewer {
    height: calc(100vh - 180px);
    padding: 30px 20px 60px;
    overflow: auto;
    user-select: none;
    -webkit-user-select: none;
}

#pdfPages {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.school-pdf-page-wrapper {
    line-height: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow:
        0 18px 50px rgba(35, 28, 18, .16),
        0 2px 8px rgba(35, 28, 18, .08);
    overflow: hidden;
}

.school-pdf-page-wrapper canvas {
    display: block;
    max-width: 100%;
    height: auto !important;
}

.school-pdf-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 400px;
    color: #7e6b4d;
}

.school-pdf-spinner {
    width: 42px;
    height: 42px;
    border: 4px solid rgba(218, 180, 107, .2);
    border-top-color: #dab46b;
    border-radius: 50%;
    animation: schoolPdfSpin .8s linear infinite;
}

.school-pdf-error {
    padding: 30px;
    color: #a74242;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(167, 66, 66, .15);
    border-radius: 18px;
    text-align: center;
}

@keyframes schoolPdfSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .school-pdf-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .school-pdf-controls {
        width: 100%;
        justify-content: center;
    }

    .school-pdf-viewer {
        height: calc(100vh - 230px);
        padding: 20px 8px 40px;
    }
}

@media print {
    body {
        display: none !important;
    }
}




.contact-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 14px 0 18px;
    font-size: 14px;
    line-height: 1.5;
    color: #5f6368;
}

.contact-privacy input {
    width: 18px !important;
    height: 18px !important;
    margin-top: 2px;
    flex: 0 0 auto;
    accent-color: #006571;
}

.contact-privacy a {
    color: #006571;
    font-weight: 600;
    text-decoration: none;
}

.contact-privacy a:hover {
    text-decoration: underline;
}

.contact-form-message {
    display: none;
    margin: 12px 0;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.45;
}

.contact-form-message:not(:empty) {
    display: block;
}

.contact-form-message.success {
    color: #146c43;
    background: rgba(25, 135, 84, 0.10);
    border: 1px solid rgba(25, 135, 84, 0.20);
}

.contact-form-message.error {
    color: #a61b29;
    background: rgba(220, 53, 69, 0.10);
    border: 1px solid rgba(220, 53, 69, 0.20);
}

#contactForm button:disabled {
    opacity: 0.65;
    cursor: wait;
}





.tarife-module {
    display: grid;
    gap: 22px;
}

.tarife-hero,
.tarife-admin,
.tarife-viewer-wrap,
.tarife-empty {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(194, 148, 70, .16);
    box-shadow: 0 18px 50px rgba(194, 148, 70, .08);
    border-radius: 24px;
}

.tarife-hero {
    padding: 28px 30px;
    background: linear-gradient(135deg,
            rgba(194, 148, 70, .18),
            rgba(194, 148, 70, .08),
            rgba(255, 255, 255, .96));
}

.tarife-hero h1 {
    margin: 8px 0 6px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
    color: #1f2937;
}

.tarife-hero p {
    margin: 0;
    color: #64748b;
}

.tarife-badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #C29446;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.tarife-admin {
    padding: 24px;
}

.tarife-admin-heading h2 {
    margin: 0 0 5px;
}

.tarife-admin-heading p {
    margin: 0;
    color: #64748b;
}

.tarife-upload-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0;
}

.tarife-upload-card {
    display: grid;
    gap: 9px;
    padding: 18px;
    border: 1px dashed rgba(194, 148, 70, .35);
    border-radius: 18px;
    background: #FCFAF7;
    cursor: pointer;
    transition: .25s ease;
}

.tarife-upload-card:hover {
    transform: translateY(-3px);
    border-color: #C29446;
    background: #fff;
    box-shadow: 0 12px 30px rgba(194, 148, 70, .15);
}

.tarife-upload-card input {
    width: 100%;
}

.tarife-upload-card small {
    color: #64748b;
    overflow-wrap: anywhere;
}

.tarife-lang {
    font-size: 12px;
    font-weight: 800;
    color: #C29446;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tarife-save {
    border: 0;
    border-radius: 14px;
    padding: 13px 20px;
    background: #C29446;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: .25s ease;
    box-shadow: 0 8px 22px rgba(194, 148, 70, .28);
}

.tarife-save:hover {
    background: #A97D35;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(194, 148, 70, .35);
}

.tarife-alert {
    padding: 14px 17px;
    border-radius: 15px;
    font-weight: 650;
}

.tarife-alert.success {
    background: #F7EAD5;
    color: #8A6227;
}

.tarife-alert.error {
    background: #FEF2F2;
    color: #B91C1C;
}

.tarife-alert.info {
    background: #FCF5E8;
    color: #A97D35;
}

.tarife-meta {
    display: flex;
    gap: 18px;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #64748b;
}

.tarife-viewer-wrap {
    overflow: hidden;
    padding: 8px;
    height: calc(100vh - 190px);
    min-height: 650px;
}

.tarife-viewer {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 17px;
    background: #F7F5F2;
}

.tarife-empty {
    padding: 50px 24px;
    text-align: center;
    color: #64748b;
}

.tarife-module iframe {
    user-select: none;
}

@media (max-width:800px) {

    .tarife-upload-grid {
        grid-template-columns: 1fr;
    }

    .tarife-hero,
    .tarife-admin {
        padding: 20px;
    }

    .tarife-viewer-wrap {
        height: 72vh;
        min-height: 520px;
    }

}

.tarife-upload-single {
    max-width: 760px;
    margin-top: 18px;
}

.tarife-history {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid rgba(194, 148, 70, .16);
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 50px rgba(194, 148, 70, .08);
}

.tarife-history-table-wrap {
    overflow: auto;
    margin-top: 18px;
}

.tarife-history-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.tarife-history-table th,
.tarife-history-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(194, 148, 70, .12);
    text-align: left;
}

.tarife-history-table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #8A6227;
    background: #FCF8F2;
}

.tarife-history-table tbody tr {
    transition: .2s ease;
}

.tarife-history-table tbody tr:hover {
    background: #FCFAF7;
}

.tarife-status {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.tarife-status.active {
    background: #F7EAD5;
    color: #8A6227;
}

.tarife-status.archived {
    background: #F4F4F5;
    color: #6B7280;
}

.tarife-history-link {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 12px;
    background: #C29446;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    transition: .25s ease;
    box-shadow: 0 6px 18px rgba(194, 148, 70, .25);
}

.tarife-history-link:hover {
    background: #A97D35;
    transform: translateY(-2px);
    color: #fff;
}