@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---------- Global / shared across every page ---------- */
body {
    background: #fff;
    font-family: "Inter", sans-serif;
}

.reg-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}


/* ============================================================
   1. LABOUR REGISTRATION — scope: .reg-labour
   ============================================================ */
.reg-labour .reg-box {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(6, 43, 132, 0.1);
    position: relative;
    overflow: hidden;
}

.reg-labour .reg-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.reg-labour .reg-box h2 {
    color: #062b84;
    font-weight: 800;
}

.reg-labour .back-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.reg-labour .back-link:hover {
    color: #062b84;
}

.reg-labour .form-control,
.reg-labour .form-select {
    border-radius: 12px;
    border: 2px solid #e8edf8;
    padding: 12px 16px;
    width: 100%;
}

.reg-labour .form-control:focus,
.reg-labour .form-select:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    outline: none;
}

.reg-labour .form-label {
    font-weight: 600;
    color: #062b84;
    margin-bottom: 8px;
    display: block;
}

.reg-labour .section-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #062b84;
    margin-bottom: 4px;
}

.reg-labour .section-subtext {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.reg-labour hr.divider {
    border: none;
    border-top: 1px solid #e8edf8;
    margin: 32px 0;
}

.reg-labour .skill-category-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #062b84;
    margin-top: 22px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #f0f4ff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reg-labour .skill-category-title i {
    color: #ffc107;
}

.reg-labour .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 10px;
}

.reg-labour .skill-check {
    border: 2px solid #e8edf8;
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    background: #fdfdfd;
    user-select: none;
    line-height: 1.3;
}

.reg-labour .skill-check:hover {
    border-color: #10b981;
    background: #f7fefa;
}

.reg-labour .skill-check:has(input:checked) {
    border-color: #10b981;
    background: #f0fdf4;
    font-weight: 600;
}

.reg-labour .skill-check input {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: #10b981;
    flex-shrink: 0;
}

.reg-labour .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.reg-labour .form-row.triple {
    grid-template-columns: repeat(3, 1fr);
}

.reg-labour .btn-register {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px;
    width: 100%;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.22);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reg-labour .btn-register:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 14px 26px rgba(16, 185, 129, 0.3);
}

.reg-labour .btn-register:active {
    transform: translateY(0);
}

.reg-labour .login-hint {
    text-align: center;
    margin-top: 16px;
    color: #6c757d;
    font-size: 0.9rem;
}

.reg-labour .login-hint a {
    color: #10b981;
    font-weight: 700;
    text-decoration: none;
}

.reg-labour .login-hint a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .reg-labour .reg-box {
        padding: 36px 24px;
    }

    .reg-labour .form-row.triple {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .reg-labour.reg-wrapper {
        padding: 20px 12px;
    }

    .reg-labour .reg-box {
        padding: 28px 18px;
        border-radius: 18px;
    }

    .reg-labour .reg-box h2 {
        font-size: 1.5rem;
    }

    .reg-labour .form-row,
    .reg-labour .form-row.triple {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .reg-labour .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reg-labour .btn-register {
        font-size: 1rem;
        padding: 14px;
    }
}

@media (max-width: 360px) {
    .reg-labour .skills-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   2. OWNER REGISTRATION — scope: .reg-owner
   ============================================================ */
.reg-owner .reg-box {
    background: white;
    border-radius: 2rem;
    padding: 2.75rem;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.reg-owner .reg-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.reg-owner .back-link {
    color: #5d6f8f;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.reg-owner .back-link:hover {
    color: #062b84;
    transform: translateX(-2px);
}

.reg-owner .reg-box h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #062b84;
    margin-bottom: 0.2rem;
    letter-spacing: -0.02em;
}

.reg-owner .sub-head {
    font-size: 0.9rem;
    color: #5d6f8f;
    margin-bottom: 2rem;
    padding-left: 10px;
    border-left: 3px solid #10b981;
}

.reg-owner .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
    margin-bottom: 8px;
}

.reg-owner .form-grid .full-span {
    grid-column: 1 / -1;
}

.reg-owner .form-label {
    font-weight: 600;
    color: #0a1c3a;
    font-size: 0.85rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reg-owner .form-label i {
    color: #10b981;
    font-size: 0.9rem;
}

.reg-owner .form-control,
.reg-owner .form-select {
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    padding: 11px 15px;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    background-color: #fbfcfe;
}

.reg-owner .form-control:focus,
.reg-owner .form-select:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
    outline: none;
    background-color: #ffffff;
}

.reg-owner .form-control::placeholder {
    color: #a8b3c7;
}

.reg-owner .field-wrap {
    position: relative;
}

.reg-owner .field-wrap .form-control {
    padding-right: 44px;
}

.reg-owner .toggle-eye {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #a8b3c7;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.reg-owner .toggle-eye:hover {
    color: #10b981;
}

.reg-owner input[type="file"].form-control {
    padding: 8px 15px;
    cursor: pointer;
}

.reg-owner .btn-register {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px;
    width: 100%;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 22px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.22);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.reg-owner .btn-register:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 14px 26px rgba(16, 185, 129, 0.3);
}

.reg-owner .btn-register:active {
    transform: translateY(0);
}

.reg-owner .login-redirect {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #5d6f8f;
}

.reg-owner .login-redirect a {
    color: #10b981;
    font-weight: 700;
    text-decoration: none;
}

.reg-owner .login-redirect a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .reg-owner .reg-box {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .reg-owner.reg-wrapper {
        padding: 1.25rem 0.75rem;
    }

    .reg-owner .reg-box {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .reg-owner .reg-box h2 {
        font-size: 1.5rem;
    }

    .reg-owner .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .reg-owner .btn-register {
        padding: 13px;
    }
}


/* ============================================================
   3. CONTRACTOR REGISTRATION — scope: .reg-contractor
   ============================================================ */
.reg-contractor .reg-box {
    background: white;
    border-radius: 24px;
    padding: 40px 44px;
    max-width: 750px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(6, 43, 132, 0.1);
    position: relative;
    overflow: hidden;
}

.reg-contractor .reg-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.reg-contractor .reg-box h2 {
    color: #062b84;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.reg-contractor .back-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.reg-contractor .back-link:hover {
    color: #062b84;
    transform: translateX(-2px);
}

.reg-contractor .alert-danger {
    border: none;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 0.9rem;
}

.reg-contractor .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
    margin-bottom: 8px;
}

.reg-contractor .form-grid .full-span {
    grid-column: 1 / -1;
}

.reg-contractor .form-label {
    font-weight: 600;
    color: #062b84;
    font-size: 0.85rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reg-contractor .form-label i {
    color: #10b981;
    font-size: 0.9rem;
}

.reg-contractor .form-control,
.reg-contractor .form-select {
    border-radius: 10px;
    border: 2px solid #e8edf8;
    padding: 10px 14px;
    font-size: 0.9rem;
    width: 100%;
    background-color: #fbfcfe;
    transition: 0.2s;
}

.reg-contractor .form-control:focus,
.reg-contractor .form-select:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
    outline: none;
    background-color: #ffffff;
}

.reg-contractor .form-control::placeholder {
    color: #a8b3c7;
}

.reg-contractor input[type="file"].form-control {
    padding: 8px 14px;
    cursor: pointer;
}

.reg-contractor hr.divider {
    border: none;
    border-top: 1px solid #eef1f8;
    margin: 26px 0 20px;
}

.reg-contractor .section-heading {
    font-weight: 700;
    color: #062b84;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.reg-contractor .section-subtext {
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.reg-contractor .type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 10px;
    background: #f8fafc;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.reg-contractor .skill-check {
    background: white;
    border: 1.5px solid #e8edf8;
    border-radius: 10px;
    padding: 9px 13px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    line-height: 1.3;
}

.reg-contractor .skill-check:hover {
    border-color: #10b981;
    background: #f7fefa;
}

.reg-contractor .skill-check input {
    margin-right: 10px;
    accent-color: #10b981;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.reg-contractor .skill-check:has(input:checked) {
    border-color: #10b981;
    background: #f0fdf4;
    font-weight: 600;
}

.reg-contractor .btn-register {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px;
    width: 100%;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 24px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.reg-contractor .btn-register:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 14px 26px rgba(16, 185, 129, 0.3);
}

.reg-contractor .btn-register:active {
    transform: translateY(0);
}

.reg-contractor .login-redirect {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.reg-contractor .login-redirect a {
    color: #10b981;
    font-weight: 700;
    text-decoration: none;
}

.reg-contractor .login-redirect a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .reg-contractor .reg-box {
        padding: 30px 26px;
    }
}

@media (max-width: 576px) {
    .reg-contractor.reg-wrapper {
        padding: 20px 12px;
    }

    .reg-contractor .reg-box {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .reg-contractor .reg-box h2 {
        font-size: 1.5rem;
    }

    .reg-contractor .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .reg-contractor .type-grid {
        grid-template-columns: 1fr 1fr;
        padding: 12px;
    }

    .reg-contractor .btn-register {
        font-size: 1rem;
        padding: 13px;
    }
}

@media (max-width: 360px) {
    .reg-contractor .type-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   4. TRANSPORTATION REGISTRATION — scope: .reg-transport
   ============================================================ */
.reg-transport .reg-box {
    background: white;
    border-radius: 24px;
    padding: 40px 44px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(6, 43, 132, 0.1);
    position: relative;
    overflow: hidden;
}

.reg-transport .reg-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.reg-transport .reg-box h2 {
    color: #062b84;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
}

.reg-transport .back-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.reg-transport .back-link:hover {
    color: #062b84;
    transform: translateX(-2px);
}

.reg-transport .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}

.reg-transport .form-grid .full-span {
    grid-column: 1 / -1;
}

.reg-transport .docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 20px;
}

.reg-transport .form-label {
    font-weight: 600;
    color: #062b84;
    font-size: 0.85rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reg-transport .form-label i {
    color: #10b981;
    font-size: 0.9rem;
}

.reg-transport .form-control,
.reg-transport .form-select {
    border-radius: 12px;
    border: 2px solid #e8edf8;
    padding: 10px 15px;
    font-size: 0.9rem;
    width: 100%;
    background-color: #fbfcfe;
    transition: 0.2s;
}

.reg-transport .form-control:focus,
.reg-transport .form-select:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
    outline: none;
    background-color: #ffffff;
}

.reg-transport .form-control::placeholder {
    color: #a8b3c7;
}

.reg-transport input[type="file"].form-control {
    padding: 8px 15px;
    cursor: pointer;
}

.reg-transport .section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #062b84;
    margin-top: 26px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eef1f8;
}

.reg-transport .section-title:first-of-type {
    margin-top: 4px;
}

.reg-transport .btn-register {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px;
    width: 100%;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 28px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.reg-transport .btn-register:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 14px 26px rgba(16, 185, 129, 0.3);
}

.reg-transport .btn-register:active {
    transform: translateY(0);
}

.reg-transport .login-redirect {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.reg-transport .login-redirect a {
    color: #10b981;
    font-weight: 700;
    text-decoration: none;
}

.reg-transport .login-redirect a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    transition: all .15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: #08A070;
    border-color: #08A070;
}

.btn-primary:hover {
    background-color: #08A070;
    border-color: #08a070;
}

.btn-outline-primary {
    color: #08A070;
    background: transparent;
    border: 1px solid #08A070;
}

.btn-outline-primary:hover {
    color: #fff;
    background: #08A070;
}

@media (max-width: 768px) {
    .reg-transport .reg-box {
        padding: 30px 26px;
    }

    .reg-transport .docs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .reg-transport.reg-wrapper {
        padding: 20px 12px;
    }

    .reg-transport .reg-box {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .reg-transport .reg-box h2 {
        font-size: 1.5rem;
    }

    .reg-transport .form-grid,
    .reg-transport .docs-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .reg-transport .btn-register {
        font-size: 1rem;
        padding: 13px;
    }
}



/* pricavy css */
/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 40px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(145deg, #f0f4f9 0%, #e6ecf5 100%);
    color: #1e293b;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- MAIN CARD ---------- */
.legal-card {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 40px 48px 44px;
    box-shadow: 0 20px 60px rgba(26, 35, 126, 0.10), 0 8px 24px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* top shimmer bar */
.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a237e, #3b5bdb, #6c8cff, #3b5bdb, #1a237e);
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 0%;
    }
}

/* ---------- HEADER / BRAND ---------- */
.legal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a237e, #283593);
    border-radius: 16px;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(26, 35, 126, 0.25);
}

.legal-header h1 {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.header-badge {
    display: inline-block;
    background: #eef2ff;
    color: #1a237e;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 14px;
    border-radius: 100px;
    border: 1px solid rgba(26, 35, 126, 0.12);
    margin-left: auto;
    white-space: nowrap;
}

.legal-sub {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: -4px;
    margin-bottom: 28px;
    padding-left: 0;
    border-left: none;
}

/* ---------- TABS ---------- */
.nav-tabs {
    border-bottom: 2px solid #e9edf4;
    margin-bottom: 30px;
    gap: 4px;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 40px;
    font-weight: 500;
    color: #475569;
    padding: 10px 22px;
    background: transparent;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.nav-tabs .nav-link:hover {
    background: #f1f5f9;
    color: #0f172a;
    border: none;
}

.nav-tabs .nav-link.active {
    background: #1a237e;
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.25);
}

.nav-tabs .nav-link i {
    margin-right: 8px;
}

/* ---------- SECTIONS ---------- */
.section {
    margin-top: 34px;
}

.section:first-of-type {
    margin-top: 0;
}

.section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.01em;
}

.section h2 .bi {
    font-size: 1.3rem;
    color: #1a237e;
    opacity: 0.7;
}

.section h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 22px;
    margin-bottom: 6px;
}

.section p {
    margin: 8px 0 12px 0;
    color: #334155;
    font-size: 0.98rem;
}

.section ul {
    padding-left: 0;
    list-style: none;
    margin: 8px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
}

.section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
    break-inside: avoid;
}

.section ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    top: 0;
    color: #1a237e;
    font-weight: 600;
    font-size: 1rem;
}

.section ul.single-col {
    grid-template-columns: 1fr;
}

/* ---------- META / DATE FOOTER ---------- */
.policy-meta {
    margin-top: 44px;
    padding-top: 28px;
    border-top: 2px solid #f1f5f9;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px 24px;
}

.policy-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #475569;
}

.policy-meta .meta-item .bi {
    font-size: 1.1rem;
    color: #1a237e;
    opacity: 0.5;
}

.policy-meta .meta-item strong {
    color: #0f172a;
    font-weight: 600;
}

.policy-meta .meta-divider {
    color: #d1d9e6;
    font-weight: 300;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    body {
        padding: 20px 12px;
    }

    .legal-card {
        padding: 28px 20px 32px;
        border-radius: 20px;
    }

    .legal-header h1 {
        font-size: 1.5rem;
    }

    .brand-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 12px;
    }

    .header-badge {
        font-size: 0.6rem;
        padding: 3px 12px;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .legal-sub {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .nav-tabs .nav-link {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .section ul {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .section ul li {
        font-size: 0.92rem;
    }

    .section h2 {
        font-size: 1.1rem;
    }

    .policy-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-top: 20px;
        margin-top: 32px;
    }

    .policy-meta .meta-item {
        font-size: 0.85rem;
        width: 100%;
    }

    .policy-meta .meta-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .legal-card {
        padding: 20px 14px 24px;
        border-radius: 16px;
    }

    .legal-header h1 {
        font-size: 1.3rem;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .nav-tabs .nav-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .section h2 {
        font-size: 1rem;
    }

    .section p,
    .section ul li {
        font-size: 0.88rem;
    }

    .policy-meta .meta-item {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
}

/* ---------- PRINT ---------- */
@media print {
    body {
        background: #fff;
        padding: 0.5in;
    }

    .legal-card {
        box-shadow: none;
        padding: 0;
        border-radius: 0;
    }

    .legal-card::before {
        display: none;
    }

    .header-badge {
        border-color: #ccc;
        background: #f5f5f5;
    }

    .nav-tabs {
        display: none !important;
    }

    .tab-pane {
        display: block !important;
        opacity: 1 !important;
    }
}

/* ---------- UTILITY ---------- */
html {
    scroll-behavior: smooth;
}

.section ul li {
    transition: color 0.15s ease;
}

.section ul li:hover {
    color: #0f172a;
}

.section ul li:hover::before {
    color: #3b5bdb;
}


/* INDEX */
body {
    margin-top: 100px;
}

:root {
    --navy: #002367;
    --navy-light: #1a3f7a;
    --accent: #56AD32;
    --accent-light: #6bc44a;
    --accent-dark: #3e8a26;
    --success: #16a34a;
    --border: #e6ecf5;
    --text-muted: #fff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 35, 103, 0.12);
    --radius: 16px;
}

/* ===== COVER BANNER ===== */
.profile-cover {
    height: 350px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.profile-cover::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(86, 173, 50, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.profile-cover::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(86, 173, 50, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

.cover-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(86, 173, 50, 0.08) 0%, transparent 30%);
}

/* ===== PROFILE HEADER CARD ===== */
.profile-header-card {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin-top: -130px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border);
    overflow: hidden;
}

.profile-photo-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 4rem;
    font-weight: 800;
    overflow: hidden;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-indicator {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--accent);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(86, 173, 50, 0.4);
}

.verified-badge-corner {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(86, 173, 50, 0.3);
}

/* ----- Name & Actions Row ----- */
.profile-name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 4px;
}

.profile-name-row .profile-name {
    color: var(--navy);
    font-weight: 800;
    font-size: 2rem;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.profile-name-row .action-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-wrap: wrap;
}

.profile-name-row .action-buttons .btn-action {
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    background: white;
    color: var(--navy);
    border-color: var(--border);
}

.profile-name-row .action-buttons .btn-action:hover {
    background: #f8fafc;
    border-color: var(--text-muted);
    color: var(--navy);
    transform: translateY(-2px);
}

.profile-name-row .action-buttons .btn-action.primary {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(0, 35, 103, 0.3);
}

.profile-name-row .action-buttons .btn-action.primary:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    box-shadow: 0 6px 20px rgba(86, 173, 50, 0.4);
    transform: translateY(-2px);
}

.profile-name-row .role-pill {
    background: rgba(86, 173, 50, 0.15);
    color: var(--accent-dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.profile-name-row .verified-pill {
    background: var(--accent);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(86, 173, 50, 0.3);
    white-space: nowrap;
}

/* ----- Username & Profession (removed the profession line) ----- */
.profile-username {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.profile-username code {
    background: #f0f4ff;
    color: var(--navy);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* ===== STATS BAR ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 24px 0;
    margin-top: 24px;
    gap: 15px;
    border-top: 1px dashed var(--border);
    border-bottom: 1px dashed var(--border);
}

.stat-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid var(--border);
    transition: transform 0.2s;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    color: var(--navy);
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ===== SECTION NAV (simple anchor links, no JS tabs needed) ===== */
.profile-nav {
    display: flex;
    gap: 4px;
    margin-top: 30px;
    border-bottom: 2px solid #f0f4ff;
    overflow-x: auto;
    scrollbar-width: none;
    color: var(--navy);
}

.profile-nav::-webkit-scrollbar {
    display: none;
}

.profile-nav a {
    padding: 14px 22px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.profile-nav a:hover {
    color: var(--navy);
    background: #f8fafc;
    border-radius: 8px 8px 0 0;
}

/* ===== INFO CARDS ===== */
.info-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.info-card:hover {
    box-shadow: var(--shadow-md);
}

.info-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f4ff;
}

.info-card-title {
    color: var(--navy);
    font-weight: 800;
    font-size: 1.15rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card-title-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f0f4ff 0%, #dbeafe 100%);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.1rem;
}

.info-card-action {
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

.info-card-action:hover {
    color: var(--accent);
}

/* ===== ABOUT TEXT ===== */
.about-text {
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.75;
    white-space: pre-line;
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.portfolio-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.portfolio-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.4s;
}

.portfolio-card:hover .portfolio-card-img {
    transform: scale(1.05);
}

.portfolio-card-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 2.5rem;
}

.portfolio-card-body {
    padding: 14px;
}

.portfolio-card h6 {
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 4px;
    line-height: 1.3;
}

.portfolio-card small {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.featured-ribbon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(86, 173, 50, 0.4);
}

/* ===== REVIEWS ===== */
.review-summary {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg, #f0f4ff 0%, #dbeafe 100%);
    border-radius: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.big-rating-block {
    text-align: center;
    padding-right: 30px;
    border-right: 2px solid rgba(0, 35, 103, 0.1);
}

.big-rating {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.rating-stars-big {
    color: var(--accent);
    font-size: 1.2rem;
    margin: 6px 0 4px;
}

.rating-bars-block {
    flex: 1;
    min-width: 250px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 0.88rem;
}

.rating-bar-label {
    width: 35px;
    color: var(--navy);
    font-weight: 700;
}

.rating-bar-track {
    flex: 1;
    height: 7px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 10px;
    transition: width 1.5s ease;
}

.rating-bar-count {
    width: 35px;
    text-align: right;
    color: var(--text-muted);
    font-weight: 600;
}

.review-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px dashed var(--border);
}

.review-item:last-child {
    border-bottom: none;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.review-stars {
    color: var(--accent);
}

.review-stars .bi-star {
    color: #cbd5e1;
}

/* ===== SERVICES ===== */
.service-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--navy) 0%, var(--accent) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f0f4ff 0%, #dbeafe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card h6 {
    color: var(--navy);
    font-weight: 700;
    margin: 0 0 6px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 0 10px;
}

.service-price {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.05rem;
}

/* ===== ACTIVITY TIMELINE ===== */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--accent) 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 24px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 4px;
    width: 22px;
    height: 22px;
    background: white;
    border: 3px solid var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-dot i {
    font-size: 0.7rem;
    color: var(--navy);
}

.timeline-item.success .timeline-dot {
    border-color: var(--accent);
}

.timeline-item.success .timeline-dot i {
    color: var(--accent);
}

.timeline-item.warning .timeline-dot {
    border-color: var(--accent);
}

.timeline-item.warning .timeline-dot i {
    color: var(--accent);
}

.timeline-content h6 {
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 4px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0;
}

.timeline-time {
    color: #94a3b8;
    font-size: 0.78rem;
    margin-top: 4px;
    display: block;
}

/* ===== CONTACT INFO ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.contact-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.contact-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: inherit;
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f0f4ff 0%, #dbeafe 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card-icon.whatsapp {
    background: #25D366;
    color: white;
}

.contact-card-icon.email {
    background: var(--navy);
    color: white;
}

.contact-card-icon.phone {
    background: var(--accent);
    color: white;
}

.contact-card-icon.web {
    background: var(--accent);
    color: white;
}

.contact-card small {
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
}

.contact-card strong {
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 700;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #f0f4ff;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-3px) rotate(5deg);
}

.social-link.fb:hover {
    background: #1877F2;
}

.social-link.tw:hover {
    background: #000;
}

.social-link.ig:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.li:hover {
    background: #0A66C2;
}

.social-link.yt:hover {
    background: #FF0000;
}

/* ===== SIDEBAR ===== */
.sidebar-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h5 {
    color: var(--navy);
    font-weight: 800;
    margin: 0 0 16px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card h5::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--accent);
    border-radius: 4px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #94a3b8;
}

.empty-state i {
    font-size: 3rem;
    color: #cbd5e1;
    display: block;
    margin-bottom: 10px;
}

/* ===== LOGOUT TILE ===== */
.logout-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff5f5;
    border: 1px solid #fee2e2;
    border-radius: 14px;
    text-decoration: none;
    transition: 0.2s;
    margin-bottom: 20px;
}

.logout-tile:hover {
    background: #fee2e2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.logout-tile .tile-icon-box {
    width: 42px;
    height: 42px;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.logout-tile .tile-text-block {
    flex: 1;
}

.logout-tile .tile-text-block h6 {
    color: #dc2626;
    margin: 0;
    font-weight: 700;
}

.logout-tile .tile-text-block p {
    font-size: 12px;
    color: #6b7a99;
    margin: 0;
}

.logout-tile .tile-arrow {
    color: #c0cce0;
    font-size: 1.1rem;
}

/* ===== BORDER ACCENT FOR JOB STATUS ===== */
.sidebar-card.border-accent {
    border: 2px solid var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 0;
    }

    .stat-item:nth-child(3) {
        border-right: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .profile-name-row .action-buttons {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .profile-cover {
        height: 250px;
    }

    .profile-header-card {
        margin-top: -80px;
        padding: 20px;
    }

    .profile-photo-wrapper,
    .profile-photo {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }

    .profile-name-row .profile-name {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 0;
    }

    .stat-item {
        border-right: none !important;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-summary {
        flex-direction: column;
        text-align: center;
    }

    .big-rating-block {
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid rgba(0, 35, 103, 0.1);
        padding-bottom: 20px;
        width: 100%;
    }

    .profile-name-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-name-row .action-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .profile-name-row .action-buttons .btn-action {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .profile-nav {
        gap: 0;
    }

    .profile-nav a {
        padding: 12px 14px;
        font-size: 0.82rem;
    }

    .profile-name-row .action-buttons .btn-action {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}