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

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


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

/* BODY */
body {

    line-height: 1.6;

    background: #f5f5f7;


        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;
 }

/* 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 {
    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;
}

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

    .burger {
        display: flex;
    }
}








.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;
    overflow: hidden;
    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: 0;

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

    color: #0a84ff;

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

    transition: all 0.25s ease;
}


.btn.cta::after {
    content: "→";
    font-size: 18px;
    transition: transform 0.25s ease;
}

.btn.cta:hover::after {
    transform: translateX(4px);
}


.btn.cta:hover {
    opacity: 0.8;
}



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

    position: relative;
    overflow: hidden;
}

.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;
            overflow: hidden;
}




.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;
    overflow: hidden;
    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(/themes/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;
    overflow: hidden;
}

/* 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;
}

/* glow subtil pe hover */
.service-btn::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
    top: -50px;
    right: -50px;
    opacity: 0;
    transition: 0.4s;
}

.service-btn:hover::after {
    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: hidden;
    cursor: pointer;
}

.team-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}





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

        .team-card img {
            height: 200px;
        }
}

/* 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;
    text-align: center;
    transition: 0.35s ease;
    backdrop-filter: blur(10px);
}

.team-overlay h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.team-overlay p {
    font-size: 12px;
    opacity: 0.85;
}

/* HOVER EFFECT */
.team-card:hover img {
    transform: scale(1.05);
}

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






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

.profile-link:hover {
    opacity: 0.7;
}

/* CONTACT ITEMS */
.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    margin-top: 5px;
    transition: 0.3s;
}

.contact-item i {
    font-size: 14px;
}

.contact-item:hover {
    opacity: 0.7;
}
















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

.reviews-dark {
    background: #000;
    background-image: url('/themes/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;
    overflow: hidden;
    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;
    overflow: hidden;
}

.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;
    overflow: hidden;
}

.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.8), rgba(0, 0, 0, 0.8)), url('/themes/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.04);
    border-radius: 22px;
    overflow: hidden;
    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: #000000;
    padding-top: 60px;
}

/* GLASS EFFECT */
.footer-glass {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    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, .edit-user {
    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;
    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;

 }

 /* 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-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 {
     transform: translateY(-2px);
     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;
 }

 /* tooltip */
 .contact-item2::after {
     content: attr(data-tooltip);
     position: absolute;
     left: 50%;
     bottom: 120%;
     transform: translateX(-50%) scale(0.95);
     background: rgba(0, 0, 0, 0.85);
     color: #fff;
     padding: 6px 10px;
     font-size: 12px;
     border-radius: 8px;
     opacity: 0;
     transition: 0.2s;
 }

 .contact-item2:hover::after {
     opacity: 1;
     transform: translateX(-50%) scale(1);
 }

 /* 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;
    }
}