/* ==========================================================================
    police et variable
   ========================================================================== */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
}

:root {
    /* couleurs communes et Front-office */
    --primary-dark: #003366;
    --primary-cyan: #00C2CB;
    --text-gray: #343A40;
    --black: #000000;
    --bg-light: #F1F5F9;
    --white: #FFFFFF;

    /* couleurs admin */
    --bg-page: #F8F9FB;
    --bg-card: #FFFFFF;
    --text-main: #111827;
    --text-muted: #6B7280;
    --border-color: #E5E7EB;
    --border-btn: #E5E5E5;
    --avatar-gray: #E5E7EB;

    --admin-purple: #552796;
    --admin-purple-hover: #451d7a;

    --pro-blue: #3B82F6;
    --pro-blue-light: #EFF6FF;

    --success-green: #00A63D;
    --success-green-light: #E6F6ED;

    --warning-orange: #F59E0B;
    --warning-orange-light: #FFFBEB;

    --stat-purple: #8B5CF6;
    --stat-purple-light: #F5F3FF;

    --danger-red: #EF4444;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    margin: 0;
}

/* ==========================================================================
   front (acceuil, navbar, footer)
   ========================================================================== */

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    font-family: 'Inter', sans-serif;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-logo {
    font-size: 24px;
    font-weight: 800;
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    background: #6366f1;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.header-nav {
    display: flex;
    gap: 24px;
}

.header-nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #111827;
}

.header-center {
    flex-grow: 1;
    max-width: 400px;
    margin: 0 40px;
}

.header-search {
    display: flex;
    align-items: center;
    background-color: #f3f4f6;
    border-radius: 8px;
    padding: 10px 16px;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.header-search input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 14px;
    color: #111827;
}

.header-search input::placeholder {
    color: #6b7280;
}

.header-search i {
    color: #9ca3af;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon-link {
    color: #111827;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-icon-link:hover {
    color: #6366f1;
}

.header-auth-text {
    font-weight: 600;
    font-size: 15px;
}

.btn-header-outline {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #111827;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-header-outline:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.btn-header-solid {
    background: #030712;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-header-solid:hover {
    background: #1f2937;
    color: #ffffff;
}

.btn-black {
    background-color: var(--black);
    color: var(--white);
    border-radius: 8px;
    font-weight: 500;
    padding: 10px 16px;
    transition: 0.2s;
    border: none;
}

.btn-black:hover {
    background-color: var(--text-gray);
    color: var(--white);
}

.scroll-x {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.scroll-x::-webkit-scrollbar {
    display: none;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    cursor: pointer;
    transition: 0.2s;
}

.cat-item:hover {
    transform: translateY(-3px);
}

.cat-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cat-text {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--text-gray);
}

.bg-blue-light {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--pro-blue);
}

.bg-orange-light {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning-orange);
}

.bg-green-light {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--success-green);
}

.btn-filter {
    background-color: var(--white);
    border: 1px solid var(--bg-light);
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    white-space: nowrap;
    transition: 0.2s;
    color: var(--text-gray);
}

.btn-filter:hover {
    background-color: var(--bg-light);
}

.card-service {
    border: 1px solid var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.2s;
    cursor: pointer;
    background-color: var(--white);
}

.card-service:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.card-img {
    position: relative;
    height: 200px;
}

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

.badge-pro {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--pro-blue);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
}

.avatar {
    width: 24px;
    height: 24px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    transition: 0.2s;
}

.footer-link:hover {
    color: var(--primary-cyan);
    text-decoration: underline;
}

/* ==========================================================================
   page inscription et connection 
   ========================================================================== */
.register-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px 20px;
}

.register-header,
.register-footer {
    text-align: center;
}

.register-header {
    margin-bottom: 40px;
}

.register-footer {
    margin-top: 40px;
}

.register-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.register-subtitle {
    color: var(--text-gray);
    font-size: 16px;
}

.register-cards-wrapper {
    max-width: 1000px;
    width: 100%;
}

.register-card {
    background-color: var(--white);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.register-card:hover {
    border-color: var(--pro-blue);
    transform: translateY(-5px);
}

.icon-box-client,
.icon-box-pro {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px auto;
}

.icon-box-client {
    background-color: #E8F0FE;
    color: #2563EB;
}

.icon-box-pro {
    background-color: #F3E8FF;
    color: #9333EA;
}

.register-card .card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--black);
    margin-bottom: 12px;
    text-align: center;
}

.register-card .card-desc {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.5;
    min-height: 45px;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 15px;
}

.check-circle {
    width: 26px;
    height: 26px;
    background-color: #DCFCE7;
    color: #22C55E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 14px;
    flex-shrink: 0;
}

.btn-register {
    background-color: var(--black);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    display: block;
    width: 100%;
}

.btn-register:hover {
    background-color: var(--text-gray);
}

.login-link {
    color: var(--text-gray);
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.login-link:hover {
    color: var(--pro-blue);
    text-decoration: underline;
}

.auth-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    min-height: 80vh;
}

.back-btn {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    width: 100%;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.auth-card {
    background-color: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 650px;
}

.auth-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.auth-icon-box {
    width: 80px;
    height: 80px;
    background-color: #E8F0FE;
    color: #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 16px;
}

.auth-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--black);
    margin-bottom: 8px;
}

.auth-subtitle {
    color: var(--text-gray);
    font-size: 14px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
}

.required-star {
    color: #EF4444;
}

.form-input {
    width: 100%;
    background-color: #F8FAFC;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--black);
    outline: none;
    transition: 0.2s;
}

.form-input:focus {
    border-color: var(--pro-blue);
    background-color: var(--white);
}

.password-wrapper {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    cursor: pointer;
    font-size: 20px;
}

.input-hint {
    font-size: 11px;
    color: #94A3B8;
    margin-top: 6px;
    display: block;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    margin-top: 30px;
    font-size: 13px;
    color: var(--text-gray);
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 3px;
}

.checkbox-wrapper a {
    color: var(--pro-blue);
    text-decoration: underline;
}

.btn-submit {
    background-color: var(--black);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px;
    width: 100%;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: 20px;
}

.btn-submit:hover {
    background-color: var(--text-gray);
}

.auth-footer {
    text-align: center;
    font-size: 14px;
    color: var(--black);
}

.auth-footer a {
    color: var(--pro-blue);
    text-decoration: underline;
}

.pro-icon-box {
    background-color: #F5EEF8;
    color: #8D6E63;
}

.info-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #F0F7FF;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    color: var(--black);
    font-size: 13px;
    line-height: 1.5;
}

.info-alert iconify-icon {
    color: var(--pro-blue);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: -2px;
}

.info-alert strong {
    font-weight: 700;
}

.mb-checkbox {
    margin-bottom: 12px;
    margin-top: 0;
}

.puzzle-container {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(2, 75px);
    gap: 2px;
    width: fit-content;
    margin: 0 auto 15px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 4px;
    transition: border-color 0.3s;
}

.puzzle-piece {
    width: 100px;
    height: 75px;
    background-size: 300px 150px;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.1s, box-shadow 0.1s;
}

.puzzle-piece.selected {
    transform: scale(0.92);
    box-shadow: 0 0 0 3px #0d6efd;
    z-index: 2;
}

.puzzle-success {
    border-color: #198754 !important;
    background: #d1e7dd;
    pointer-events: none;
}

.puzzle-instructions {
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 10px;
}

/* ==========================================================================
   connexion
   ========================================================================== */
.navbar-custom {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-right: 24px;
    font-size: 14px;
    font-weight: 500;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 16px;
}

.nav-icons i {
    font-size: 20px;
    color: var(--text-main);
    cursor: pointer;
}

.search-box-nav {
    background-color: var(--border-color);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    width: 350px;
}

.search-box-nav input {
    border: none;
    background: transparent;
    outline: none;
    margin-left: 8px;
    font-size: 14px;
    width: 100%;
}

.login-section {
    min-height: calc(100vh - 73px);
    background-color: var(--bg-page);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 48px 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
}

.login-logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    overflow: hidden;
}

.login-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-title {
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    margin-bottom: 8px;
    color: var(--black);
}

.login-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    text-align: center;
    margin-bottom: 32px;
}

.input-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    display: block;
}

.input-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.input-label-row a {
    color: var(--pro-blue);
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.input-gray {
    background-color: #F3F4F6;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px 16px;
    width: 100%;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.input-gray:focus {
    border-color: var(--pro-blue);
    background-color: var(--white);
}

.pwd-wrapper {
    position: relative;
}

.eye-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
}

.remember-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 24px 0;
}

.remember-row label {
    font-size: 14px;
    color: var(--text-main);
    cursor: pointer;
}

.btn-login {
    background-color: var(--black);
    color: var(--white);
    border-radius: 8px;
    width: 100%;
    padding: 14px;
    font-weight: 600;
    border: none;
    font-size: 15px;
    transition: 0.2s;
}

.btn-login:hover {
    background-color: var(--text-gray);
}

.divider-box {
    position: relative;
    text-align: center;
    margin: 32px 0;
}

.divider-line {
    border-top: 1px solid var(--border-color);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 1;
}

.divider-text {
    background-color: var(--white);
    padding: 0 16px;
    color: var(--text-muted);
    font-size: 13px;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.register-link-box {
    text-align: center;
    font-size: 14px;
    color: var(--text-main);
}

.register-link-box a {
    color: var(--pro-blue);
    text-decoration: underline;
    font-weight: 500;
}

/* ==========================================================================
   back office (admin)
   ========================================================================== */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background-color: var(--bg-page);
}

.sidebar {
    width: 260px;
    background-color: var(--admin-purple);
    color: white;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 32px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sidebar-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.sidebar-subtitle {
    font-size: 11px;
    opacity: 0.7;
}

.nav-menu {
    padding: 0 16px;
    flex-grow: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.nav-item i {
    width: 24px;
    font-size: 16px;
    opacity: 0.7;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-item.active {
    background-color: rgba(0, 0, 0, 0.15);
}

.nav-item.active i {
    opacity: 1;
}

.sidebar-footer {
    padding: 24px;
}

.main-content {
    flex-grow: 1;
    padding: 40px;
    overflow-y: auto;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.page-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 4px;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 14px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: right;
}

.user-name {
    font-weight: 700;
    font-size: 14px;
}

.user-email {
    color: var(--text-muted);
    font-size: 12px;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.kpi-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
}

.kpi-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.kpi-blue {
    background-color: var(--pro-blue-light);
    color: var(--pro-blue);
}

.kpi-green {
    background-color: var(--success-green-light);
    color: var(--success-green);
}

.kpi-orange {
    background-color: var(--warning-orange-light);
    color: var(--warning-orange);
}

.kpi-purple {
    background-color: var(--stat-purple-light);
    color: var(--stat-purple);
}

.kpi-value {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 8px;
    line-height: 1;
}

.kpi-label {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 24px;
}

.kpi-trend {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

.section-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

.link-blue {
    color: var(--pro-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.list-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-item:last-child {
    margin-bottom: 0;
}

.item-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--avatar-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-main);
    flex-shrink: 0;
}

.badge-tag {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    display: inline-block;
}

.btn-action {
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 16px;
    transition: 0.2s;
}

.btn-refuser {
    color: var(--danger-red);
    background: transparent;
    border: 1px solid var(--border-btn);
}

.btn-refuser:hover {
    background-color: var(--bg-light);
}

.btn-examiner {
    color: var(--text-main);
    background: transparent;
    border: 1px solid var(--border-btn);
}

.btn-examiner:hover {
    background-color: var(--bg-light);
}

.btn-valider {
    background-color: var(--success-green);
    color: white;
    border: 1px solid var(--success-green);
}

.btn-valider:hover {
    background-color: #008a32;
    border-color: #008a32;
}

.activity-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.activity-row:last-child {
    margin-bottom: 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.dot-green {
    background-color: var(--success-green);
}

.dot-gray {
    background-color: #D1D5DB;
}

.dot-red {
    background-color: var(--danger-red);
}

.dot-blue {
    background-color: var(--pro-blue);
}

.activity-title {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 2px;
}

.activity-desc {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.4;
}

.avatar-admin {
    background-color: #A21CAF;
}

.fs-14 {
    font-size: 14px;
}

.fs-13 {
    font-size: 13px;
}

.fs-12 {
    font-size: 12px;
}

.gap-2 {
    gap: 8px;
}

/* ==========================================================================
   parametre admin
   ========================================================================== */
.setting-box {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.setting-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 4px;
}

.setting-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.custom-switch .form-check-input {
    width: 3.2rem;
    height: 1.6rem;
    cursor: pointer;
    border: none;
    background-color: #D1D5DB;
}

.custom-switch .form-check-input:checked {
    background-color: var(--success-green);
    border-color: var(--success-green);
}

.custom-switch .form-check-input:focus {
    box-shadow: none;
}

.bg-purple-soft {
    background-color: #F8F5FF;
    border: 1px solid #E9D8FF;
    border-radius: 12px;
    padding: 24px;
}

.text-purple-custom {
    color: var(--admin-purple);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.text-purple-muted {
    color: #7E56C1;
    font-size: 13px;
    margin-bottom: 24px;
}

.input-flat {
    background-color: var(--bg-page);
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    width: 100%;
    outline: none;
    font-weight: 500;
    color: var(--text-main);
}

.btn-red-solid {
    background-color: #DF4141;
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 13px;
    transition: 0.2s;
}

.btn-red-solid:hover {
    background-color: #B91C1C;
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.custom-checkbox:checked {
    background-color: var(--pro-blue);
    border-color: var(--pro-blue);
}

.checkbox-label {
    font-size: 13px;
    color: var(--text-main);
    font-weight: 500;
    cursor: pointer;
}

.btn-outline-custom {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.btn-outline-custom:hover {
    background-color: var(--bg-page);
}

.mb-32 {
    margin-bottom: 32px;
}

/* ==========================================================================
   newsletter
   ========================================================================== */
.kpi-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kpi-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.newsletter-row {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
}

.newsletter-row:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.news-badge-envoyee {
    background: #dcfce7;
    color: #166534;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    margin-left: 12px;
}

.news-badge-brouillon {
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    margin-left: 12px;
}

.news-meta-item {
    color: #64748b;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 24px;
    margin-top: 10px;
}

.tips-container-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
}

.tips-list-custom {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list-custom li {
    position: relative;
    padding-left: 16px;
    color: #334155;
    font-size: 14px;
    margin-bottom: 12px;
}

.tips-list-custom li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 2px;
    color: #3b82f6;
    font-size: 8px;
}

.create-news-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
}

.form-label-custom {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
    display: block;
}

.target-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    background: #ffffff;
    transition: 0.2s;
    height: 100%;
    display: block;
}

.target-input:checked+.target-card {
    border: 2px solid #3b82f6;
    background: #f0f7ff;
}

.input-gray-fill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    font-size: 14px;
    color: #0f172a;
    outline: none;
    transition: 0.2s;
}

.input-hint {
    font-size: 13px;
    color: #64748b;
    margin-top: 8px;
    display: block;
}

.preview-container {
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 24px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.preview-badge-top {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #475569;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 4px;
}

.btn-black-send {
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

/* ==========================================================================
   gestion users
   ========================================================================== */
.kpi-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px 20px;
    height: 100%;
}

.kpi-stat-card.active-purple {
    border-color: #a855f7;
    border-width: 2px;
}

.kpi-stat-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.kpi-stat-label {
    font-size: 13px;
    color: #64748b;
}

.search-container-user {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.search-input-user {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 14px;
    color: #0f172a;
}

.user-row-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.avatar-circle-lg {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: #a855f7;
    flex-shrink: 0;
}

.badge-soft-green {
    background: #dcfce7;
    color: #16a34a;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.badge-soft-gray {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.badge-soft-orange {
    background: #ffedd5;
    color: #ea580c;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.badge-soft-red {
    background: #fee2e2;
    color: #dc2626;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.user-meta-text {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.alert-warning-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.alert-danger-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.btn-outline-gray {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #334155;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline-red {
    background: #ffffff;
    border: 1px solid #fee2e2;
    color: #dc2626;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline-orange {
    background: #ffffff;
    border: 1px solid #ffedd5;
    color: #ea580c;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-solid-green {
    background: #16a34a;
    border: 1px solid #16a34a;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
    profil users et hsitorique 
   ========================================================================== */
.profile-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 24px;
}

.profile-avatar-xl {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    background: #a855f7;
}

.info-group {
    margin-bottom: 24px;
}

.info-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 6px;
    display: block;
}

.info-value {
    font-size: 15px;
    color: #0f172a;
    font-weight: 500;
}

.history-table-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
}

.history-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    font-size: 13px;
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.history-table td {
    padding: 16px;
    font-size: 14px;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.badge-status {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

/* ==========================================================================
    validation pro
   ========================================================================== */
.stats-cards-wrapper {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card-link {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    text-decoration: none;
    transition: 0.2s;
    display: block;
}

.stat-card-link:hover {
    border-color: #D1D5DB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #6B7280;
}

.active-purple {
    border: 1px solid #8B5CF6;
    box-shadow: 0 0 0 1px #8B5CF6;
}

.active-orange {
    border: 1px solid #F59E0B;
    box-shadow: 0 0 0 1px #F59E0B;
}

.active-green {
    border: 1px solid #10B981;
    box-shadow: 0 0 0 1px #10B981;
}

.active-red {
    border: 1px solid #EF4444;
    box-shadow: 0 0 0 1px #EF4444;
}

.search-wrapper {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.search-icon {
    color: #9CA3AF;
    font-size: 16px;
}

.search-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #374151;
}

.pro-card-new {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pro-avatar-circle {
    width: 56px;
    height: 56px;
    background-color: #8B5CF6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.pro-main-info {
    flex-grow: 1;
    margin-left: 16px;
}

.title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.title-row h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.badge-status-new {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.badge-orange {
    background: #FEF3C7;
    color: #B45309;
}

.badge-green {
    background: #D1FAE5;
    color: #047857;
}

.badge-red {
    background: #FEE2E2;
    color: #B91C1C;
}

.badge-tag-new {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #E5E7EB;
    color: #4B5563;
}

.subtitle-row {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: #6B7280;
    margin-top: 8px;
}

.contact-row span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-right-info {
    font-size: 13px;
    color: #6B7280;
    text-align: right;
}

.phone-text {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 500;
}

.divider-line {
    height: 1px;
    background-color: #F3F4F6;
    margin: 24px 0;
}

.card-details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-size: 13px;
}

.detail-block {
    margin-bottom: 16px;
}

.detail-block.full-width {
    grid-column: span 2;
}

.detail-block strong {
    display: block;
    color: #111827;
    margin-bottom: 4px;
    font-weight: 600;
}

.detail-block p {
    margin: 0;
    color: #4B5563;
    line-height: 1.5;
}

.docs-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.doc-item {
    padding: 4px 12px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    color: #374151;
    font-weight: 500;
}

.reason-alert {
    background-color: #FEF2F2;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #FECACA;
    margin-top: 16px;
}

.card-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-action-outline {
    background: white;
    border: 1px solid #E5E7EB;
    color: #111827;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-action-outline:hover {
    background: #F9FAFB;
}

.action-buttons-right {
    display: flex;
    gap: 12px;
}

.btn-action-refuse {
    background: white;
    border: 1px solid #FECACA;
    color: #DC2626;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-action-validate {
    background: #22C55E;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-action-validate:hover {
    background: #16A34A;
}

/* ==========================================================================
    gestion annonces
   ========================================================================== */
.admin-layout-wrapper {
    display: flex;
    min-height: 100vh;
    background-color: #111827;
}

.admin-main-content {
    flex-grow: 1;
    background: #F8FAFC;
    border-top-left-radius: 24px;
    padding: 30px 40px;
    margin-left: 80px;
}

.admin-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-page-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.admin-page-subtitle {
    font-size: 14px;
    color: #64748B;
    margin: 0;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: right;
}

.admin-avatar-circle {
    width: 40px;
    height: 40px;
    background: #C026D3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.admin-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.admin-kpi-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    display: block;
    transition: 0.2s;
}

.admin-kpi-card.active {
    border: 2px solid #9333EA;
}

.admin-kpi-value {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.admin-kpi-card:nth-child(1) .admin-kpi-value {
    color: #111827;
}

.admin-kpi-card:nth-child(2) .admin-kpi-value {
    color: #EA580C;
}

.admin-kpi-card:nth-child(3) .admin-kpi-value {
    color: #16A34A;
}

.admin-kpi-card:nth-child(4) .admin-kpi-value {
    color: #DC2626;
}

.admin-kpi-label {
    font-size: 13px;
    color: #64748B;
}

.admin-search-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.admin-search-input {
    width: 100%;
    background: #F1F5F9;
    border: none;
    padding: 14px 20px 14px 44px;
    border-radius: 8px;
    font-size: 14px;
    color: #334155;
    outline: none;
}

.admin-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 18px;
}

.admin-ad-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    gap: 24px;
}

.admin-ad-img {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.admin-ad-content {
    flex-grow: 1;
}

.admin-ad-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.admin-ad-title {
    font-size: 15px;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
}

.admin-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.badge-status-active {
    background: #DCFCE7;
    color: #16A34A;
}

.badge-status-signaled {
    background: #FFEDD5;
    color: #EA580C;
}

.badge-status-suspended {
    background: #FEE2E2;
    color: #DC2626;
}

.badge-category {
    background: #F8FAFC;
    color: #475569;
    border: 1px solid #E2E8F0;
}

.badge-report-count {
    background: #FEE2E2;
    color: #DC2626;
}

.admin-ad-author {
    font-size: 13px;
    color: #475569;
    margin-bottom: 12px;
}

.admin-ad-meta {
    display: flex;
    gap: 32px;
    font-size: 13px;
    color: #64748B;
    margin-bottom: 12px;
}

.admin-ad-date {
    font-size: 12px;
    color: #94A3B8;
    margin-bottom: 16px;
}

.admin-alert-box {
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    font-size: 12px;
}

.alert-box-warning {
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    color: #EA580C;
}

.alert-box-danger {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #DC2626;
}

.alert-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.alert-list {
    margin: 0;
    padding-left: 16px;
}

.alert-list li {
    margin-bottom: 4px;
}

.admin-actions-row {
    display: flex;
    gap: 12px;
}

.btn-admin-action {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    background: #FFFFFF;
}

.btn-view {
    border: 1px solid #E2E8F0;
    color: #475569;
}

.btn-suspend {
    border: 1px solid #FED7AA;
    color: #EA580C;
}

.btn-delete {
    border: 1px solid #FECACA;
    color: #DC2626;
}

.btn-unban {
    background: #16A34A;
    border: 1px solid #16A34A;
    color: #FFFFFF;
}

/* ==========================================================================
    forum
   ========================================================================== */
.forum-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.forum-page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.forum-page-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.forum-cat-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    background: var(--white);
    text-decoration: none;
    display: block;
    transition: 0.2s;
}

.forum-cat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.forum-cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 18px;
    color: var(--black);
}

.forum-cat-icon {
    color: var(--text-muted);
    font-size: 20px;
}

.forum-cat-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    margin-left: 32px;
}

.forum-cat-meta {
    display: flex;
    gap: 32px;
    color: var(--text-muted);
    font-size: 13px;
    margin-left: 32px;
}

.forum-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.forum-section-title {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--black);
}

.icon-trend {
    color: #F59E0B;
}

.btn-blue-solid {
    background-color: #2563EB;
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

.btn-blue-solid:hover {
    background-color: #1D4ED8;
    color: var(--white);
}

.discussion-list {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--white);
}

.discussion-item {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    display: block;
    transition: 0.2s;
}

.discussion-item:hover {
    background-color: #F8FAFC;
}

.discussion-item:last-child {
    border-bottom: none;
}

.discussion-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.tag-fire {
    background-color: #FFF7ED;
    color: #EA580C;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tag-pin {
    background-color: #F8FAFC;
    color: #475569;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #E2E8F0;
}

.tag-cat {
    border: 1px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-main);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
}

.discussion-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.discussion-meta {
    display: flex;
    gap: 16px;
    color: var(--text-muted);
    font-size: 13px;
    align-items: center;
}

.discussion-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-author {
    font-weight: 600;
    color: var(--text-main);
}

/* ==========================================================================
    Dashboard client
   ========================================================================== */
.dashboard-container {
    display: flex;
    min-height: calc(100vh - 73px);
    background-color: #F8FAFC;
}

.client-sidebar {
    width: 260px;
    background-color: var(--white);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.client-profile-box {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.client-avatar-circle {
    width: 48px;
    height: 48px;
    background-color: #4F46E5;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.client-nav-menu {
    flex-grow: 1;
    padding: 0 16px;
}

.client-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    margin-bottom: 4px;
}

.client-nav-item.active {
    background-color: #F1F5F9;
}

.client-nav-item i {
    font-size: 18px;
    color: #64748B;
    width: 20px;
    text-align: center;
}

.client-sidebar-footer {
    padding: 24px 16px;
    border-top: 1px solid var(--border-color);
}

.client-content {
    flex-grow: 1;
    padding: 40px;
    overflow-y: auto;
}

.welcome-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.welcome-subtitle {
    color: #64748B;
    font-size: 15px;
    margin-bottom: 32px;
}

.kpi-grid-client {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.kpi-card-client {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

.kpi-icon-top {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
}

.kpi-bg-blue {
    background: #EFF6FF;
    color: #3B82F6;
}

.kpi-bg-red {
    background: #FEF2F2;
    color: #EF4444;
}

.kpi-bg-purple {
    background: #FAF5FF;
    color: #A855F7;
}

.kpi-bg-green {
    background: #F0FDF4;
    color: #22C55E;
}

.kpi-trend-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #22C55E;
    font-size: 20px;
}

.kpi-value-client {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1;
}

.kpi-label-client {
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
}

.middle-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.panel-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.panel-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-title iconify-icon {
    color: #3B82F6;
    font-size: 22px;
}

.panel-link {
    color: #3B82F6;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.service-row {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-info-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pro-avatar {
    width: 48px;
    height: 48px;
    background: #6366F1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.service-pro-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-rating {
    color: #F59E0B;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-title-text {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
}

.service-meta-details {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #64748B;
}

.service-meta-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-info-right {
    text-align: right;
}

.service-price {
    font-weight: 700;
    font-size: 18px;
    color: #3B82F6;
    margin-bottom: 8px;
}

.btn-new-service {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--white);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-new-service:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.activity-item {
    display: flex;
    gap: 16px;
}

.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #475569;
    flex-shrink: 0;
}

.activity-content {
    flex-grow: 1;
}

.activity-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 2px;
}

.activity-desc {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 2px;
}

.activity-time {
    font-size: 11px;
    color: #94A3B8;
}

.reco-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.reco-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 16px;
}

.reco-img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
}

.reco-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.reco-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
    margin-bottom: 4px;
}

.reco-pro {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 8px;
}

.reco-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #64748B;
    margin-bottom: 16px;
}

.reco-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reco-price {
    font-weight: 700;
    font-size: 16px;
    color: #3B82F6;
}

.reco-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reco-actions iconify-icon {
    font-size: 20px;
    color: var(--black);
    cursor: pointer;
}

.btn-black-small {
    background: var(--black);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.action-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    background: var(--white);
    text-decoration: none;
    color: var(--black);
    transition: 0.2s;
}

.action-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.action-card iconify-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.action-card.blue iconify-icon {
    color: #3B82F6;
}

.action-card.purple iconify-icon {
    color: #A855F7;
}

.action-card.red iconify-icon {
    color: #EF4444;
}

.action-card.green iconify-icon {
    color: #22C55E;
}

.action-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.action-desc {
    font-size: 12px;
    color: #64748B;
}

/* ==========================================================================
    CAPTCHA
   ========================================================================== */

.captcha-wrapper {
    width: 100%;
    max-width: 300px;
    margin: 15px auto 25px auto;
    user-select: none;
}

#captcha-image-container {
    position: relative;
    width: 300px;
    height: 150px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#captcha-bg {
    width: 100%;
    height: 100%;
}

#captcha-hole {
    position: absolute;
    top: 40px;
    left: 200px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.8);
}

#captcha-piece {
    position: absolute;
    top: 40px;
    left: 0px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    background-image: url('https://picsum.photos/300/150?random=1');
    background-size: 300px 150px;
    background-position: -200px -40px;
    z-index: 10;
}

#captcha-slider-container {
    position: relative;
    width: 300px;
    height: 40px;
    background: #f1f1f1;
    border-radius: 20px;
    border: 1px solid #ddd;
}

#captcha-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #d4edda;
    border-radius: 20px 0 0 20px;
}

#captcha-slider-btn {
    position: absolute;
    top: -1px;
    left: 0;
    width: 42px;
    height: 42px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    z-index: 5;
}

#captcha-slider-btn:active {
    cursor: grabbing;
}

/* ==========================================================================
    DASHBOARD PRO
   ========================================================================== */
.pro-body {
    margin: 0;
    background-color: #F9FAFB;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.pro-layout {
    display: flex;
    min-height: calc(100vh - 72px);
}

.pro-sidebar {
    width: 260px;
    background: white;
    border-right: 1px solid #E5E7EB;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
}

.sidebar-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px 32px 24px;
    border-bottom: 1px solid #F3F4F6;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    background: #6366F1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.profile-info strong {
    display: block;
    color: #111827;
    font-size: 15px;
    margin-bottom: 2px;
}

.profile-info span {
    color: #6B7280;
    font-size: 13px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: #4B5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
    border-left: 3px solid transparent;
}

.sidebar-menu li a iconify-icon {
    font-size: 20px;
}

.sidebar-menu li a:hover {
    background: #F9FAFB;
    color: #111827;
}

.sidebar-menu li a.active {
    color: #111827;
    font-weight: 600;
    border-left-color: #111827;
}

.bottom-menu {
    flex-grow: 0;
    border-top: 1px solid #F3F4F6;
    padding-top: 16px;
    margin-top: 16px;
}

.pro-main {
    flex-grow: 1;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-header {
    margin-bottom: 32px;
}

.main-header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #111827;
}

.main-header p {
    margin: 4px 0 0 0;
    color: #6B7280;
    font-size: 15px;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.kpi-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
}

.kpi-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.icon-green {
    background: #DCFCE7;
    color: #16A34A;
}

.icon-blue {
    background: #E0E7FF;
    color: #4F46E5;
}

.icon-yellow {
    background: #FEF3C7;
    color: #D97706;
}

.icon-purple {
    background: #F3E8FF;
    color: #9333EA;
}

.kpi-value {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.kpi-label {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 16px;
}

.kpi-trend {
    font-size: 13px;
    font-weight: 600;
}

.text-green {
    color: #16A34A;
}

.lists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.list-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.list-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.list-header a {
    color: #2563EB;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.list-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
}

.item-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.bg-gray {
    background: #F3F4F6;
    color: #374151;
}

.item-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-content.full-width {
    width: 100%;
}

.item-content strong {
    color: #111827;
    font-size: 14px;
    margin-bottom: 2px;
}

.item-content span {
    color: #4B5563;
    font-size: 13px;
    margin-bottom: 4px;
}

.item-content small {
    color: #9CA3AF;
    font-size: 12px;
}

.item-price {
    font-size: 18px;
    font-weight: 800;
    color: #2563EB;
}

.avis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 4px;
}

.stars {
    color: #F59E0B;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.avis-text {
    margin: 0 0 8px 0;
    color: #4B5563;
    font-size: 13px;
    line-height: 1.4;
}

.chart-section {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
}

.chart-section h2 {
    margin: 0 0 24px 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.chart-placeholder {
    width: 100%;
    height: 250px;
    background: #F8FAFC;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================================================
    DASHBOARD PRO - REVENUES
   ========================================================================== */
.rev-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.rev-title {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.rev-subtitle {
    color: #6B7280;
    font-size: 15px;
}

.btn-black-solid {
    background-color: #111827;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.btn-black-solid:hover {
    background-color: #374151;
    color: #FFFFFF;
}

.rev-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.rev-kpi-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

.rev-kpi-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.bg-icon-green {
    background-color: #DCFCE7;
    color: #16A34A;
}

.bg-icon-orange {
    background-color: #FFEDD5;
    color: #EA580C;
}

.bg-icon-blue {
    background-color: #DBEAFE;
    color: #2563EB;
}

.bg-icon-purple {
    background-color: #F3E8FF;
    color: #9333EA;
}

.rev-kpi-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: #F3F4F6;
    color: #374151;
}

.rev-kpi-value {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.rev-kpi-label {
    font-size: 14px;
    color: #6B7280;
}

.rev-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.rev-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
}

.rev-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.rev-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.btn-outline-gray {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    color: #374151;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.rev-tx-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 12px;
}

.rev-tx-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: #F3F4F6;
    color: #4B5563;
    margin-right: 16px;
}

.rev-tx-icon.in {
    background-color: #DCFCE7;
    color: #16A34A;
}

.rev-tx-details {
    flex-grow: 1;
}

.rev-tx-name {
    font-weight: 600;
    color: #111827;
    font-size: 14px;
    margin-bottom: 2px;
}

.rev-tx-desc {
    color: #6B7280;
    font-size: 13px;
    margin-bottom: 2px;
}

.rev-tx-date {
    color: #9CA3AF;
    font-size: 12px;
}

.rev-tx-amount-box {
    text-align: right;
}

.rev-tx-amount {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
}

.amount-positive {
    color: #16A34A;
}

.amount-negative {
    color: #4B5563;
}

.rev-badge-status {
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 12px;
}

.rev-badge-completed {
    background-color: #DCFCE7;
    color: #16A34A;
}

.rev-badge-pending {
    background-color: #FFF7ED;
    color: #EA580C;
}

.rev-pending-text {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 20px;
    line-height: 1.5;
}

.rev-pending-box {
    background-color: #FFF7ED;
    border: 1px solid #FFEDD5;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.rev-pending-box-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.rev-pending-name {
    font-weight: 600;
    color: #111827;
    font-size: 14px;
}

.rev-pending-amount {
    font-weight: 700;
    color: #EA580C;
    font-size: 14px;
}

.rev-pending-service {
    font-size: 13px;
    color: #4B5563;
    margin-bottom: 12px;
}

.rev-pending-time {
    font-size: 11px;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.rev-pending-date {
    font-size: 11px;
    color: #9CA3AF;
}

.rev-pending-total-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
    margin-top: 24px;
}

.rev-pending-total-label {
    font-weight: 700;
    color: #111827;
    font-size: 14px;
}

.rev-pending-total-value {
    font-weight: 800;
    color: #EA580C;
    font-size: 18px;
}

.rev-info-box {
    background-color: #F0F9FF;
    border: 1px solid #DBEAFE;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
}

.rev-info-icon {
    width: 40px;
    height: 40px;
    background-color: #DBEAFE;
    color: #2563EB;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.rev-info-title {
    font-weight: 700;
    color: #111827;
    font-size: 14px;
    margin-bottom: 4px;
}

.rev-info-text {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.5;
}


/* ==========================================================================
    DASHBOARD PRO - EVALUATIONS
   ========================================================================== */

.eval-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.eval-title {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.eval-subtitle {
    color: #6B7280;
    font-size: 15px;
}

.eval-top-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    margin-bottom: 24px;
}

.eval-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
}

.eval-avg-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.eval-avg-score {
    font-size: 56px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-bottom: 12px;
}

.eval-avg-stars {
    color: #FBBF24;
    font-size: 24px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.eval-avg-text {
    color: #6B7280;
    font-size: 15px;
}

.eval-dist-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    margin-top: 0;
}

.eval-dist-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.eval-dist-star {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    width: 30px;
}

.eval-dist-star iconify-icon {
    color: #FBBF24;
}

.eval-dist-bar-bg {
    flex-grow: 1;
    height: 8px;
    background-color: #F3F4F6;
    border-radius: 4px;
    overflow: hidden;
}

.eval-dist-bar-fill {
    height: 100%;
    background-color: #FBBF24;
    border-radius: 4px;
}

.eval-dist-count {
    font-size: 14px;
    color: #4B5563;
    width: 30px;
    text-align: right;
}

.eval-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.eval-kpi-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.eval-kpi-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.eval-icon-green {
    background-color: #DCFCE7;
    color: #16A34A;
}

.eval-icon-blue {
    background-color: #DBEAFE;
    color: #2563EB;
}

.eval-icon-purple {
    background-color: #F3E8FF;
    color: #9333EA;
}

.eval-kpi-val {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 2px;
}

.eval-kpi-lbl {
    font-size: 14px;
    color: #6B7280;
}

.eval-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E7EB;
}

.eval-list-title {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

.eval-sort-select {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    color: #374151;
    background-color: #FFFFFF;
    outline: none;
    cursor: pointer;
}

.eval-item {
    padding-bottom: 28px;
    border-bottom: 1px solid #F3F4F6;
    margin-bottom: 28px;
}

.eval-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.eval-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.eval-user-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.eval-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #6366F1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.eval-user-name {
    font-weight: 700;
    color: #111827;
    font-size: 16px;
    margin-bottom: 4px;
}

.eval-user-meta {
    font-size: 14px;
    color: #6B7280;
}

.eval-item-stars {
    color: #FBBF24;
    font-size: 18px;
    display: flex;
    gap: 4px;
}

.eval-comment {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 20px;
}

.eval-actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.eval-btn-action {
    background: none;
    border: none;
    padding: 0;
    color: #4B5563;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.eval-btn-action:hover {
    color: #111827;
}

.eval-reply-box {
    margin-top: 20px;
    background-color: #F0F9FF;
    border-left: 4px solid #2563EB;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
}

.eval-reply-badge {
    display: inline-block;
    background-color: #2563EB;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.eval-reply-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
    DASHBOARD PRO - MES SERVICES
   ========================================================================== */

.pro-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.pro-page-title {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.pro-page-subtitle {
    color: #6B7280;
    font-size: 15px;
}

.btn-black-solid {
    background-color: #111827;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.2s;
}

.btn-black-solid:hover {
    background-color: #374151;
    color: #FFFFFF;
}

.pro-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.pro-kpi-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
}

.pro-kpi-label {
    font-size: 15px;
    color: #4B5563;
    margin-bottom: 16px;
}

.pro-kpi-value {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
}

.pro-service-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.pro-service-img {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.pro-service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pro-service-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.pro-service-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.badge-status-pro-actif {
    background-color: #DCFCE7;
    color: #16A34A;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-status-pro-pause {
    background-color: #F3F4F6;
    color: #4B5563;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pro-service-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #4B5563;
    margin-bottom: 16px;
}

.pro-badge-cat {
    border: 1px solid #E5E7EB;
    padding: 2px 10px;
    border-radius: 16px;
    background: #FFFFFF;
}

.pro-price-blue {
    color: #2563EB;
    font-weight: 700;
}

.pro-service-stats {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: auto;
    /* Pousse les boutons vers le bas */
}

.pro-service-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 16px;
}

.pro-btn-group {
    display: flex;
    gap: 12px;
}

.btn-pro-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    background: #FFFFFF;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}

.btn-pro-action:hover {
    background: #F9FAFB;
    color: #111827;
}

.btn-pro-delete {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #DC2626;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.btn-pro-delete:hover {
    text-decoration: underline;
}

/* ==========================================================================
    POST ANNONCE PRO
   ========================================================================== */
.bg-gray-light {
    background-color: #F9FAFB;
}

.ad-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.ad-back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4B5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.ad-header-text h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #111827;
}

.ad-header-text p {
    margin: 8px 0 32px 0;
    color: #6B7280;
    font-size: 15px;
}

.ad-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.ad-card-title {
    margin: 0 0 24px 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ad-form-group {
    margin-bottom: 24px;
}

.ad-form-group:last-child {
    margin-bottom: 0;
}

.ad-row {
    display: flex;
    gap: 24px;
}

.w-50 {
    width: 50%;
}

.ad-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.ad-label span {
    color: #EF4444;
}

.ad-input,
.ad-textarea {
    width: 100%;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #111827;
    outline: none;
    transition: 0.2s;
}

.ad-input:focus,
.ad-textarea:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.bg-gray-input {
    background-color: #F9FAFB;
}

.ad-hint {
    font-size: 13px;
    color: #9CA3AF;
    margin-top: 8px;
    display: block;
}

.ad-radio-group {
    display: flex;
    gap: 24px;
    align-items: center;
}

.ad-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #111827;
    font-weight: 500;
    cursor: pointer;
}

.ad-radio-label input {
    accent-color: #3B82F6;
    width: 16px;
    height: 16px;
}

.ad-price-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.ad-price-wrapper input {
    padding-right: 40px;
}

.ad-currency {
    position: absolute;
    right: 16px;
    color: #6B7280;
    font-weight: 500;
}

.ad-commission-text {
    display: block;
    font-size: 13px;
    color: #6B7280;
    margin-top: 8px;
}

.ad-commission-text strong {
    color: #111827;
}

.ad-upload-box {
    margin-top: 10px;
}

.ad-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F3F4F6;
    border: 1px solid #D1D5DB;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: 0.2s;
}

.ad-upload-btn:hover {
    background: #E5E7EB;
}

.ad-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-bottom: 60px;
}

.btn-ad-cancel {
    color: #4B5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.btn-ad-submit {
    background: #111827;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn-ad-submit:hover {
    background: #374151;
}

/* ==========================================================================
    ANNONCE FAV
   ========================================================================== */
.card-service {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

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

.card-img {
    height: 180px;
    position: relative;
    overflow: hidden;
}

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

.badge-pro {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(17, 24, 39, 0.8);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.btn-favori {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

.btn-favori:hover {
    background: #F3F4F6;
    transform: scale(1.1);
}

.btn-favori i {
    font-size: 16px;
    color: #9CA3AF;
}

.btn-favori i.text-danger {
    color: #EF4444 !important;
}

/* ==========================================================================
    MESSAGERIE
   ========================================================================== */
.chat-wrapper {
    display: flex;
    height: calc(100vh - 140px);
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.chat-sidebar-list {
    width: 340px;
    border-right: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    flex-shrink: 0;
}

.chat-list-header {
    padding: 20px 24px;
    border-bottom: 1px solid #E5E7EB;
}

.chat-list-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-search-box {
    background: #F3F4F6;
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
}

.chat-search-box input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.chat-list-scroll {
    overflow-y: auto;
    flex-grow: 1;
}

.chat-list-item {
    display: flex;
    padding: 16px 24px;
    gap: 16px;
    cursor: pointer;
    border-bottom: 1px solid #F3F4F6;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.chat-list-item:hover {
    background: #F9FAFB;
}

.chat-list-item.active {
    background: #F3F4F6;
}

.chat-avatar-wrapper {
    position: relative;
}

.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #6366F1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.chat-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #10B981;
    border: 2px solid white;
    border-radius: 50%;
}

.chat-item-content {
    flex-grow: 1;
    min-width: 0;
}

.chat-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.chat-item-name {
    font-weight: 600;
    color: #111827;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-item-time {
    font-size: 12px;
    color: #6B7280;
    white-space: nowrap;
}

.chat-item-preview {
    font-size: 14px;
    color: #6B7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-item-preview.unread {
    color: #2563EB;
    font-weight: 500;
}

.chat-unread-badge {
    background: #2563EB;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    float: right;
    margin-top: -18px;
}

.chat-window {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #F9FAFB;
}

.chat-header {
    padding: 16px 32px;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.chat-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-chat-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: 0.2s;
}

.btn-chat-action:hover {
    background: #F3F4F6;
}

.chat-messages-area {
    flex-grow: 1;
    padding: 32px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.chat-message-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chat-message-group.received {
    align-items: flex-start;
}

.chat-message-group.sent {
    align-items: flex-end;
}

.chat-bubble {
    max-width: 65%;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.5;
}

.chat-bubble.received {
    background: #FFFFFF;
    color: #111827;
    border: 1px solid #E5E7EB;
    border-radius: 12px 12px 12px 4px;
}

.chat-bubble.sent {
    background: #2563EB;
    color: #FFFFFF;
    border-radius: 12px 12px 4px 12px;
}

.chat-message-time {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 4px;
}

.chat-input-container {
    padding: 20px 32px;
    background: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 16px;
}

.chat-attach-btn {
    background: none;
    border: none;
    color: #6B7280;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
}

.chat-input-wrapper {
    flex-grow: 1;
    background: #F3F4F6;
    border-radius: 8px;
    padding: 12px 16px;
}

.chat-input-wrapper input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
    color: #111827;
}

.chat-send-btn {
    background: #111827;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.chat-send-btn:hover {
    background: #374151;
}

.chat-empty-state {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    background: #F9FAFB;
}

.chat-empty-state iconify-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* ==========================================================================
    ANNONCE COMPLETE
   ========================================================================== */
.service-page-wrapper {
    background-color: #FAFAFA;
    min-height: 100vh;
    padding-bottom: 64px;
}

.service-top-nav {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-back-link {
    color: #4B5563;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: 0.2s;
}

.btn-back-link:hover {
    color: #111827;
}

.service-actions-group {
    display: flex;
    gap: 12px;
}

.btn-outline-action {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    padding: 8px 16px;
    border-radius: 8px;
    color: #111827;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s;
}

.btn-outline-action:hover {
    background: #F9FAFB;
}

.service-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.service-main-col {
    flex: 1;
    min-width: 0;
}

.service-sidebar-col {
    width: 360px;
    flex-shrink: 0;
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-cover-image {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.service-badge-cat {
    background: #F3F4F6;
    color: #374151;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.service-title-h1 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.service-meta-info {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 32px;
}

.service-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-meta-item.rating {
    color: #111827;
    font-weight: 500;
}

.service-meta-item.rating span {
    color: #6B7280;
    font-weight: normal;
}

.content-box {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.box-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desc-paragraph {
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
}

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

.included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    font-size: 15px;
}

.icon-check-green {
    color: #10B981;
    font-size: 22px;
}

.review-item {
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #111827;
    font-size: 14px;
}

.review-author-name {
    font-weight: 600;
    color: #111827;
    font-size: 15px;
}

.review-stars {
    color: #FBBF24;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.review-body {
    color: #4B5563;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.review-date {
    color: #9CA3AF;
    font-size: 12px;
}

.btn-full-width {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #FFFFFF;
    color: #111827;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-full-width:hover {
    background: #F9FAFB;
    color: #111827;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2563EB;
}

.price-label {
    font-size: 15px;
    color: #6B7280;
}

.price-duration {
    color: #4B5563;
    font-size: 14px;
    margin-bottom: 24px;
}

.btn-dark-reserve {
    background: #0B0F19;
    color: #FFFFFF;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-dark-reserve:hover {
    background: #1F2937;
    color: #FFFFFF;
}

.response-time-text {
    text-align: center;
    color: #6B7280;
    font-size: 13px;
    margin-top: 24px;
}

.pro-info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.pro-large-avatar {
    width: 56px;
    height: 56px;
    background: #6366F1;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.pro-name-badge {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.pro-member-date {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 4px;
}

.security-alert-box {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 12px;
    padding: 20px;
}

.security-alert-title {
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.security-alert-text {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.5;
}

.tuto-hero-banner {
    background: linear-gradient(135deg, #3B82F6 0%, #A855F7 100%);
    padding: 60px 0;
    color: #FFFFFF;
}

.tuto-hero-title {
    font-size: 36px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tuto-hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.tuto-search-wrapper {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 4px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 600px;
}

.tuto-search-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    padding: 12px 0;
    color: #111827;
    font-size: 15px;
}

.tuto-search-wrapper button {
    background: none;
    border: none;
    padding: 0;
}

.tuto-search-wrapper iconify-icon {
    color: #6B7280;
    font-size: 20px;
}

.tuto-page-layout {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.tuto-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 24px;
}

.tuto-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tuto-cat-link {
    display: block;
    padding: 10px 16px;
    color: #4B5563;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 4px;
    transition: 0.2s;
}

.tuto-cat-link:hover {
    background: #F9FAFB;
    color: #111827;
}

.tuto-cat-link.active {
    background: #EFF6FF;
    color: #2563EB;
    font-weight: 600;
}

.tuto-main-content {
    flex-grow: 1;
    min-width: 0;
}

.tuto-results-count {
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 20px;
}

.tuto-card {
    display: flex;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    gap: 24px;
    margin-bottom: 20px;
    transition: 0.2s;
}

.tuto-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tuto-card-img-box {
    position: relative;
    width: 280px;
    height: 180px;
    flex-shrink: 0;
}

.tuto-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.tuto-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #111827;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tuto-card-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tuto-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
    text-decoration: none;
    display: block;
}

.tuto-card-title:hover {
    color: #2563EB;
}

.tuto-card-excerpt {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.tuto-author-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tuto-author-avatar {
    width: 36px;
    height: 36px;
    background: #3B82F6;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
}

.tuto-author-details {
    display: flex;
    flex-direction: column;
}

.tuto-author-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.tuto-author-date {
    font-size: 12px;
    color: #6B7280;
}

.tuto-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F3F4F6;
    padding-top: 16px;
}

.tuto-stats {
    display: flex;
    gap: 16px;
    color: #6B7280;
    font-size: 13px;
}

.tuto-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-read-tuto {
    background: #0B0F19;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.btn-read-tuto:hover {
    background: #1F2937;
    color: #FFFFFF;
}

.tuto-empty-state {
    background: #FFFFFF;
    border: 1px dashed #E5E7EB;
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    color: #6B7280;
}

.form-tuto-container {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 32px;
    max-width: 800px;
}

.form-tuto-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 15px;
    display: block;
}

.form-tuto-input {
    background: #F9FAFB;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 12px 16px;
    color: #111827;
    font-size: 15px;
    width: 100%;
    transition: 0.2s;
}

.form-tuto-input:focus {
    background: #FFFFFF;
    border-color: #3B82F6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-tuto-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-tuto-textarea-large {
    min-height: 300px;
    resize: vertical;
}

.form-tuto-file-upload {
    border: 2px dashed #D1D5DB;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    background: #F9FAFB;
    cursor: pointer;
    transition: 0.2s;
}

.form-tuto-file-upload:hover {
    border-color: #3B82F6;
    background: #EFF6FF;
}

.btn-submit-tuto {
    background: #0B0F19;
    color: #FFFFFF;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-submit-tuto:hover {
    background: #1F2937;
}

.tuto-action-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.btn-edit-tuto {
    background: #EFF6FF;
    color: #2563EB;
    border: 1px solid #BFDBFE;
}

.btn-edit-tuto:hover {
    background: #DBEAFE;
    color: #1D4ED8;
}

.btn-delete-tuto {
    background: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FECACA;
    cursor: pointer;
}

.btn-delete-tuto:hover {
    background: #FEE2E2;
    color: #B91C1C;
}

.tuto-manage-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 20px;
}

.tuto-manage-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tuto-manage-img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.tuto-manage-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.tuto-manage-date {
    font-size: 13px;
    color: #6B7280;
}

.tuto-manage-actions {
    display: flex;
    gap: 12px;
}

.hover-card-transition {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-card-transition:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1) !important;
}

/* ==========================================================================
    RESERVATION
   ========================================================================== */
.slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.slot-btn {
    padding: 12px 8px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
    color: #374151;
}

.slot-btn:hover:not(.disabled) {
    border-color: #3B82F6;
    color: #3B82F6;
    background: #EFF6FF;
}

.slot-btn.selected {
    background: #111827;
    color: #FFFFFF;
    border-color: #111827;
}

.slot-btn.disabled {
    background: #F3F4F6;
    color: #9CA3AF;
    cursor: not-allowed;
    border-color: #E5E7EB;
    text-decoration: line-through;
}

.icon-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
    MDP OUBLIE
   ========================================================================== */
.forgot-pwd-wrapper {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.forgot-pwd-container {
    width: 100%;
    max-width: 480px;
}

.back-link-custom {
    color: #374151;
    text-decoration: none;
    margin-bottom: 24px;
    display: inline-block;
    font-weight: 500;
    transition: 0.2s;
}

.back-link-custom:hover {
    color: #111827;
}

.icon-mail-wrapper {
    width: 64px;
    height: 64px;
    background-color: #EFF6FF;
    color: #2563EB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.icon-mail-wrapper iconify-icon {
    font-size: 32px;
}

.forgot-pwd-title {
    font-weight: 700;
    font-size: 24px;
    color: #111827;
    margin-bottom: 12px;
}

.forgot-pwd-desc {
    color: #6B7280;
    font-size: 14.5px;
    line-height: 1.5;
}

.forgot-pwd-label {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    color: #111827;
}

/* ==========================================================================
    PARAMETRE
   ========================================================================== */
.settings-container {
    max-width: 800px;
    margin: 0 auto;
}

.settings-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.settings-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F3F4F6;
}

.settings-form-group {
    margin-bottom: 20px;
}

.settings-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.settings-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 15px;
    color: #111827;
    background-color: #F9FAFB;
    transition: all 0.2s;
}

.settings-input:focus {
    outline: none;
    border-color: #6366F1;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.settings-btn-save {
    background-color: #111827;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.settings-btn-save:hover {
    background-color: #374151;
}

.maintenance-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FEF2F2;
    border: 1px solid #FECACA;
    padding: 24px;
    border-radius: 12px;
}

.maintenance-info h3 {
    color: #DC2626;
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 700;
}

.maintenance-info p {
    color: #991B1B;
    margin: 0;
    font-size: 14px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #D1D5DB;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.toggle-slider {
    background-color: #DC2626;
}

input:checked+.toggle-slider:before {
    transform: translateX(26px);
}

.maintenance-page-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F9FAFB;
    text-align: center;
    padding: 20px;
}

.maintenance-content iconify-icon {
    font-size: 80px;
    color: #2563EB;
    margin-bottom: 24px;
}

.maintenance-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

.maintenance-content p {
    font-size: 18px;
    color: #6B7280;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* ==========================================================================
    PAGE FOOTER - QUI SOMME NOUS
   ========================================================================== */
.about-hero {
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-hero p {
    font-size: 20px;
    color: #D1D5DB;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    text-align: center;
}

.about-section-subtitle {
    font-size: 18px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 48px;
}

.about-value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-value-icon {
    width: 64px;
    height: 64px;
    background: #F3F4F6;
    color: #2563EB;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

.about-value-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.about-value-text {
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.about-stats-wrapper {
    background-color: #F9FAFB;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    padding: 80px 0;
    margin: 80px 0;
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2563EB;
    margin-bottom: 8px;
    line-height: 1;
}

.about-stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #4B5563;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-story {
    max-width: 800px;
    margin: 0 auto 80px;
    font-size: 18px;
    color: #374151;
    line-height: 1.8;
}

.about-cta {
    background: #2563EB;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    margin-bottom: 80px;
}

.about-cta h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.about-cta .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
}

/* ==========================================================================
    PAGE FOOTER - COMMENT CA MARCHE
   ========================================================================== */
.how-hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 60px;
}

.how-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.how-hero p {
    font-size: 20px;
    color: #E0E7FF;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.how-nav-tabs {
    border-bottom: none;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.how-nav-tabs .nav-link {
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    color: #4B5563;
    font-weight: 700;
    padding: 12px 32px;
    font-size: 18px;
    transition: all 0.3s ease;
    background: transparent;
}

.how-nav-tabs .nav-link:hover {
    border-color: #D1D5DB;
    color: #111827;
}

.how-nav-tabs .nav-link.active {
    background-color: #2563EB;
    border-color: #2563EB;
    color: white;
}

.how-step-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 24px;
}

.how-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.how-step-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: #111827;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    border: 4px solid white;
}

.how-step-icon {
    font-size: 48px;
    color: #2563EB;
    margin-bottom: 20px;
    margin-top: 16px;
    display: block;
}

.how-step-title {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

.how-step-text {
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.how-cta-box {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    margin: 80px auto;
    max-width: 900px;
}

/* ==========================================================================
    PAGE FOOTER - FAQ
   ========================================================================== */
.faq-hero {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 60px;
}

.faq-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.faq-hero p {
    font-size: 20px;
    color: #E0E7FF;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-section-title {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-section-title iconify-icon {
    color: #4F46E5;
    font-size: 32px;
}

.faq-accordion .accordion-item {
    border: 1px solid #E5E7EB;
    border-radius: 16px !important;
    margin-bottom: 16px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 700;
    color: #374151;
    background-color: #FFFFFF;
    padding: 20px 24px;
    box-shadow: none;
    font-size: 16px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #4F46E5;
    background-color: #F8FAFC;
    box-shadow: inset 0 -1px 0 #E5E7EB;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.faq-accordion .accordion-body {
    padding: 24px;
    color: #6B7280;
    line-height: 1.6;
    font-size: 15px;
    background-color: #FFFFFF;
}

.faq-contact-box {
    background-color: #F3F4F6;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    margin: 80px auto;
}

/* ==========================================================================
    PAGE FOOTER - CONTACT
   ========================================================================== */
.contact-hero {
    background: linear-gradient(135deg, #111827 0%, #4B5563 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 60px;
}

.contact-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-hero p {
    font-size: 18px;
    color: #D1D5DB;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-info-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #F3F4F6;
    color: #111827;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.contact-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.contact-info-text {
    color: #4B5563;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

.contact-form-box {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.contact-input {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
    color: #111827;
    width: 100%;
    transition: all 0.2s;
}

.contact-input:focus {
    background-color: #FFFFFF;
    border-color: #2563EB;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-contact-submit {
    background-color: #2563EB;
    color: #FFFFFF;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    width: 100%;
}

.btn-contact-submit:hover {
    background-color: #1D4ED8;
    color: #FFFFFF;
}

/* ==========================================================================
    PAGE FOOTER - CGU/POLITIQUE DE CONFIDENTIALITE
   ========================================================================== */
.legal-hero {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 60px;
}

.legal-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.legal-hero p {
    font-size: 18px;
    color: #D1D5DB;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-content-wrapper {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 60px;
    margin: 0 auto 80px;
    max-width: 900px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F3F4F6;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-last-update {
    display: inline-block;
    background-color: #F3F4F6;
    color: #4B5563;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 40px;
}

/* ==========================================================================
    VOIR PROFIL
   ========================================================================== */
.profile-header {
    background: white;
    border-bottom: 1px solid #E5E7EB;
    padding: 60px 0;
    margin-bottom: 40px;
}

.profile-avatar-xl {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    color: white;
    border: 4px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.profile-name {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #EEF2FF;
    color: #4F46E5;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.profile-nav-tabs {
    border: none;
    gap: 32px;
}

.profile-nav-tabs .nav-link {
    border: none;
    color: #6B7280;
    font-weight: 700;
    padding: 16px 0;
    position: relative;
}

.profile-nav-tabs .nav-link.active {
    color: #111827;
    background: transparent;
}

.profile-nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #111827;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease;
}

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

.portfolio-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.review-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.star-rating {
    color: #FBBF24;
    font-size: 18px;
}

.btn-contact-pro {
    background: #111827;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.2s;
}

.btn-contact-pro:hover {
    background: #374151;
    color: white;
}