/* ============================================
   CORE APP - MERGED STYLES
   ============================================ */

/* ---------- ACCESSIBILITY - FOCUS INDICATORS ---------- */
/* Focus indicators for accessibility - WCAG 2.1 AA compliance */

.btn:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-primary, #0d6efd);
  outline-offset: 2px;
}

.form-control:focus-visible,
.form-select:focus-visible {
  outline: 2px solid var(--brand-primary, #0d6efd);
  outline-offset: 1px;
  box-shadow: none;
}

a:focus-visible {
  outline: 2px solid var(--brand-primary, #0d6efd);
  outline-offset: 2px;
}

/* ---------- BREADCRUMB ---------- */
/* Breadcrumb Navigation Styles */

.breadcrumb-wrapper {
    background: var(--brand-grey-100);
    border-radius: var(--brand-radius-md);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--brand-shadow-sm);
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--brand-grey-600);
    padding: 0 0.5rem;
    font-weight: 600;
}

.breadcrumb-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--brand-grey-200);
    color: var(--brand-grey-800);
    text-decoration: none;
    border-radius: var(--brand-radius-sm);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--brand-transition);
    white-space: nowrap;
}

.breadcrumb-link:hover {
    background: var(--brand-grey-300);
    color: var(--brand-grey-900);
    transform: translateY(-0.0625rem);
}

.breadcrumb-link.active {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--brand-grey-900);
    font-weight: 700;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .breadcrumb-wrapper {
        padding: 0.75rem 1rem;
    }

    .breadcrumb {
        gap: 0.25rem;
    }

    .breadcrumb-link {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.25rem;
        font-size: 0.875rem;
    }
}

/* ---------- DRIVER REGISTER ---------- */
/* Driver Registration Styles */
/* MOBILE-FIRST RESPONSIVE DESIGN */

.completion-container {
    max-width: 56.25rem;
    margin: 0.75rem auto;
    padding: 0 0.5rem;
}

.completion-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 1.25rem 1rem;
    border-radius: 0.625rem 0.625rem 0 0;
    text-align: center;
}

.completion-circle {
    width: 4.375rem;
    height: 4.375rem;
    margin: 0 auto 0.5rem;
    position: relative;
}

.completion-circle svg {
    transform: rotate(-90deg);
}

.completion-circle circle {
    fill: none;
    stroke-width: 5;
}

.circle-bg {
    stroke: rgba(255, 255, 255, 0.2);
}

.circle-progress {
    stroke: #4ade80;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease;
}

.completion-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.completion-header h2 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.completion-header p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.form-card {
    background: white;
    border-radius: 0 0 0.625rem 0.625rem;
    padding: 1rem 0.75rem;
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.06);
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
}

.form-control, .form-select, .form-control textarea {
    border-radius: 0.375rem;
    border: 0.0938rem solid #e5e7eb;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.form-control:focus, .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.125rem rgba(59, 130, 246, 0.08);
}

.btn-action {
    padding: 0.6rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 600;
    border: none;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-save {
    background: #3b82f6;
    color: white;
}

.btn-save:hover {
    background: #2563eb;
    transform: translateY(-0.0625rem);
    box-shadow: 0 0.25rem 0.5rem rgba(59, 130, 246, 0.3);
}

.alert-custom {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border-left: 0.1875rem solid;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.alert-info {
    background-color: #e0f2fe;
    border-color: #0284c7;
    color: #075985;
}

.section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 0.125rem solid #e5e7eb;
}

/* TABLET RESPONSIVE (>= 48rem) */
@media (min-width: 768px) {
    .completion-container {
        margin: 1.5rem auto;
        padding: 0 1rem;
    }

    .completion-header {
        padding: 2rem 1.5rem;
    }

    .completion-circle {
        width: 5.625rem;
        height: 5.625rem;
        margin-bottom: 1rem;
    }

    .completion-text {
        font-size: 1.5rem;
    }

    .completion-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .completion-header p {
        font-size: 1rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .form-label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .form-control, .form-select {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .btn-action {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .alert-custom {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
}

/* DESKTOP RESPONSIVE (>= 64rem) */
@media (min-width: 1024px) {
    .completion-container {
        margin: 2rem auto;
    }

    .form-card {
        padding: 2rem;
    }
}

/* ---------- JOIN DRIVER ---------- */
/* Join as Driver Page Styles */

/* Hero Section */
.driver-hero {
    background: var(--brand-gradient-black-grey);
    color: var(--brand-white);
    padding: 2rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.driver-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-icon {
    width: 6.25rem;
    height: 6.25rem;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--brand-shadow-lg);
}

.hero-icon i {
    font-size: 2rem;
    color: var(--brand-grey-800);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Stats Bar */
.stats-bar {
    background: var(--brand-white);
    border-radius: var(--brand-radius-lg);
    padding: 2rem;
    box-shadow: var(--brand-shadow-lg);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-icon {
    width: 3.75rem;
    height: 3.75rem;
    background: var(--brand-gradient-yellow-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--brand-shadow-sm);
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--brand-grey-800);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-grey-800);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--brand-grey-600);
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 2rem 0;
    background: var(--brand-grey-50);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-grey-800);
    margin-bottom: 2rem;
}

.benefit-card {
    background: var(--brand-white);
    border-radius: var(--brand-radius-lg);
    padding: 2rem;
    box-shadow: var(--brand-shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: var(--brand-shadow-lg);
}

.benefit-icon {
    width: 4.375rem;
    height: 4.375rem;
    background: var(--brand-gradient-yellow-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--brand-grey-800);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-grey-800);
    margin-bottom: 1rem;
}

.benefit-text {
    color: var(--brand-grey-600);
    line-height: 1.6;
}

/* Requirements Section */
.requirements-section {
    padding: 2rem 0;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--brand-white);
    border-radius: var(--brand-radius-md);
    box-shadow: var(--brand-shadow-sm);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    box-shadow: var(--brand-shadow-md);
}

.requirement-icon {
    width: 3.125rem;
    height: 3.125rem;
    background: var(--brand-gradient-yellow-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.requirement-icon i {
    font-size: 1.5rem;
    color: var(--brand-grey-800);
}

.requirement-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-grey-800);
    margin-bottom: 0.5rem;
}

.requirement-content p {
    color: var(--brand-grey-600);
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 2rem 0;
    background: var(--brand-gradient-black-grey);
    color: var(--brand-white);
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--brand-gradient-yellow-white);
    color: var(--brand-grey-800);
    border-radius: var(--brand-radius-md);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--brand-shadow-lg);
}

.btn-cta:hover {
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.625rem 1.875rem rgba(255, 211, 59, 0.4);
    color: var(--brand-grey-800);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .stats-bar {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .benefit-card {
        margin-bottom: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}

/* ---------- PASSWORD RESET ---------- */
/* Password Reset Forms Styles */

/* Password Reset Request */
.reset-container {
    max-width: 31.25rem;
    margin: 2rem auto;
    padding: 2rem;
}

.reset-card {
    background: var(--brand-white);
    border-radius: var(--brand-radius-lg);
    box-shadow: var(--brand-shadow-md);
    padding: 2.5rem;
    border-top: 0.25rem solid var(--brand-primary);
}

.reset-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reset-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-grey-800);
    margin-bottom: 0.5rem;
}

.reset-header p {
    color: var(--brand-grey-600);
    font-size: 0.9375rem;
}

.method-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.method-option {
    padding: 1.5rem;
    border: 0.125rem solid var(--brand-grey-300);
    border-radius: var(--brand-radius-md);
    cursor: pointer;
    transition: var(--brand-transition);
    text-align: center;
}

.method-option:hover {
    border-color: var(--brand-primary);
    background: var(--brand-grey-50);
}

.method-option.active {
    border-color: var(--brand-primary);
    background: linear-gradient(135deg, rgba(255, 211, 59, 0.1) 0%, rgba(255, 200, 0, 0.1) 100%);
}

.method-option i {
    font-size: 2rem;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.method-option h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-grey-800);
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--brand-grey-700);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 0.125rem solid var(--brand-grey-300);
    border-radius: var(--brand-radius-sm);
    font-size: 1rem;
    transition: var(--brand-transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.1875rem rgba(255, 211, 59, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--brand-grey-800);
    border: none;
    border-radius: var(--brand-radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--brand-transition);
}

.btn-submit:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(255, 211, 59, 0.4);
}

.back-link {
    text-align: center;
    margin-top: 1.5rem;
}

.back-link a {
    color: var(--brand-grey-600);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--brand-transition);
}

.back-link a:hover {
    color: var(--brand-primary);
}

/* Password Reset Confirm */
.confirm-container {
    max-width: 31.25rem;
    margin: 2rem auto;
    padding: 2rem;
}

.confirm-card {
    background: var(--brand-white);
    border-radius: var(--brand-radius-lg);
    box-shadow: var(--brand-shadow-md);
    padding: 2.5rem;
    border-top: 0.25rem solid var(--brand-primary);
}

.confirm-header {
    text-align: center;
    margin-bottom: 2rem;
}

.confirm-header i {
    font-size: 2rem;
    color: #38ef7d;
    margin-bottom: 1rem;
}

.confirm-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-grey-800);
    margin-bottom: 0.5rem;
}

.confirm-header p {
    color: var(--brand-grey-600);
    font-size: 0.9375rem;
}

.password-requirements {
    background: var(--brand-grey-50);
    padding: 1rem;
    border-radius: var(--brand-radius-sm);
    margin-bottom: 1.5rem;
    border-left: 0.1875rem solid var(--brand-primary);
}

.password-requirements h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-grey-800);
    margin-bottom: 0.75rem;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    padding: 0.25rem 0;
    color: var(--brand-grey-600);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.password-requirements li i {
    color: var(--brand-grey-400);
    font-size: 0.75rem;
}

.password-requirements li.valid i {
    color: #38ef7d;
}

.btn-confirm {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--brand-grey-800);
    border: none;
    border-radius: var(--brand-radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--brand-transition);
}

.btn-confirm:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(255, 211, 59, 0.4);
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--brand-grey-500);
}

.password-input-wrapper {
    position: relative;
}

/* Password Reset Verify */
.verify-container {
    max-width: 28.125rem;
    margin: 2rem auto;
    padding: 2rem;
}

.verify-card {
    background: var(--brand-white);
    border-radius: var(--brand-radius-lg);
    box-shadow: var(--brand-shadow-md);
    padding: 2.5rem;
    border-top: 0.25rem solid var(--brand-primary);
}

.verify-header {
    text-align: center;
    margin-bottom: 2rem;
}

.verify-header i {
    font-size: 2rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.verify-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-grey-800);
    margin-bottom: 0.5rem;
}

.verify-header p {
    color: var(--brand-grey-600);
    font-size: 0.9375rem;
}

.phone-display {
    background: var(--brand-grey-50);
    padding: 1rem;
    border-radius: var(--brand-radius-sm);
    text-align: center;
    margin-bottom: 1.5rem;
    border: 0.125rem solid var(--brand-grey-200);
}

.phone-display i {
    color: var(--brand-primary);
    margin-right: 0.5rem;
}

.phone-display strong {
    color: var(--brand-grey-800);
    font-size: 1.125rem;
}

.code-input-group {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.code-input {
    width: 3.125rem;
    height: 3.75rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 0.125rem solid var(--brand-grey-300);
    border-radius: var(--brand-radius-sm);
    transition: var(--brand-transition);
}

.code-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.1875rem rgba(255, 211, 59, 0.2);
}

.form-control-full {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 0.125rem solid var(--brand-grey-300);
    border-radius: var(--brand-radius-sm);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5rem;
    transition: var(--brand-transition);
}

.form-control-full:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.1875rem rgba(255, 211, 59, 0.1);
}

.btn-verify {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--brand-grey-800);
    border: none;
    border-radius: var(--brand-radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--brand-transition);
    margin-top: 1rem;
}

.btn-verify:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(255, 211, 59, 0.4);
}

.resend-section {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--brand-grey-200);
}

.resend-section p {
    color: var(--brand-grey-600);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.btn-resend {
    background: none;
    border: none;
    color: var(--brand-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--brand-transition);
    text-decoration: underline;
}

.btn-resend:hover {
    color: var(--brand-primary-dark);
}

.timer-display {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--brand-grey-50);
    border-radius: var(--brand-radius-sm);
    color: var(--brand-grey-700);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .reset-container,
    .confirm-container,
    .verify-container {
        margin: 2rem 1rem;
        padding: 1rem;
    }

    .reset-card,
    .confirm-card,
    .verify-card {
        padding: 1.5rem;
    }

    .method-selector {
        grid-template-columns: 1fr;
    }

    .code-input {
        width: 2.5rem;
        height: 3.125rem;
        font-size: 1.25rem;
    }

    .code-input-group {
        gap: 0.5rem;
    }
}

/* ---------- PROFILE COMPLETE ---------- */
/* Profile Complete Update Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-grey-50) 0%, var(--brand-grey-100) 100%);
    padding: 2rem 1rem;
}

.auth-card {
    background: var(--brand-white);
    border-radius: var(--brand-radius-lg);
    box-shadow: var(--brand-shadow-xl);
    max-width: 50rem;
    width: 100%;
    overflow: hidden;
}

.auth-header {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    color: var(--brand-grey-800);
}

.completion-circle-container {
    width: 7.5rem;
    height: 7.5rem;
    margin: 0 auto 1.5rem;
    position: relative;
    background: var(--brand-white);
    border-radius: 50%;
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.1);
}

.completion-circle {
    width: 100%;
    height: 100%;
    position: relative;
}

.circle-bg {
    fill: none;
    stroke: var(--brand-grey-200);
    stroke-width: 8;
}

.circle-progress {
    fill: none;
    stroke: var(--brand-primary);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.completion-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.auth-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.auth-header p {
    font-size: 0.9375rem;
    margin: 0;
    opacity: 0.9;
}

.auth-body {
    padding: 2.5rem 2rem;
}

.info-alert,
.warning-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--brand-radius-sm);
    margin-bottom: 2rem;
    border-left: 0.25rem solid;
    display: flex;
    align-items: center;
}

.info-alert {
    background: #e0e7ff;
    border-color: #667eea;
    color: #3730a3;
}

.warning-alert {
    background: #d1fae5;
    border-color: #38ef7d;
    color: #065f46;
}

.info-alert i,
.warning-alert i {
    font-size: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--brand-grey-700);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-label .text-danger {
    color: #ff6b6b;
}

.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 0.125rem solid var(--brand-grey-300);
    border-radius: var(--brand-radius-sm);
    font-size: 1rem;
    transition: var(--brand-transition);
    background: var(--brand-white);
    color: var(--brand-grey-800);
}

.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.1875rem rgba(255, 211, 59, 0.1);
}

.text-danger.small {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.btn-action {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: var(--brand-radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--brand-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.0312rem;
}

.btn-save {
    background: var(--brand-grey-700);
    color: var(--brand-white);
}

.btn-save:hover {
    background: var(--brand-grey-800);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
}

.btn-register {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--brand-grey-800);
}

.btn-register:hover:not(:disabled) {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(255, 211, 59, 0.4);
}

.btn-register:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--brand-grey-300);
    color: var(--brand-grey-600);
}

.role-selection {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.auth-footer {
    background: var(--brand-grey-50);
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 0.125rem solid var(--brand-grey-200);
}

.auth-footer p {
    margin: 0;
    color: var(--brand-grey-700);
    font-size: 0.9375rem;
}

.steps-list {
    background: var(--brand-grey-50);
    border-radius: var(--brand-radius-sm);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.steps-list h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-grey-800);
    margin-bottom: 1rem;
}

.steps-list ol {
    padding-left: 1.5rem;
    margin: 0;
}

.steps-list li {
    padding: 0.5rem 0;
    color: var(--brand-grey-700);
    font-size: 0.9375rem;
}

.btn-primary-custom {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--brand-grey-800);
    border: none;
    border-radius: var(--brand-radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.0312rem;
}

.btn-primary-custom:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(255, 211, 59, 0.4);
}

@media (max-width: 768px) {
    .auth-container {
        padding: 1rem 0.5rem;
    }

    .auth-header {
        padding: 2rem 1.5rem;
    }

    .auth-body {
        padding: 2rem 1.5rem;
    }

    .auth-footer {
        padding: 1.5rem;
    }

    .auth-header h1 {
        font-size: 1.5rem;
    }

    .completion-circle-container {
        width: 6.25rem;
        height: 6.25rem;
    }

    .completion-text {
        font-size: 1.5rem;
    }

    .role-selection {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
        justify-content: center;
    }

    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .auth-header h1 {
        font-size: 1.25rem;
    }

    .completion-circle-container {
        width: 5rem;
        height: 5rem;
    }

    .completion-text {
        font-size: 1.25rem;
    }
}

/* ---------- PROFILE SIDEBAR ---------- */
/* ===============================
   PROFILE SIDEBAR STYLES - Core App
   Minimal CSS - Using Bootstrap Classes
   =============================== */

/* Main Profile Card - Bootstrap card with custom shadow */
#core_dashboard_sidebar_profile_card {
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.07), 0 0.625rem 0.9375rem rgba(0, 0, 0, 0.1);
}

#core_dashboard_sidebar_profile_card:hover {
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1), 0 1.25rem 1.875rem rgba(0, 0, 0, 0.12);
    transform: translateY(-0.125rem);
}

/* Profile Picture - Simple size control */
.profile-picture-wrapper img {
    width: 8.75rem;
    height: 8.75rem;
    object-fit: cover;
}

/* Status Item - Vertical layout with left border accent */
.status-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0.1875rem;
    height: 100%;
    background: var(--brand-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.status-item:hover::before {
    transform: scaleY(1);
}

/* Hide icons in role badges */
.role-badge i {
    display: none;
}

/* Social icon hover effects */
.social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-color: #25d366;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: #bc1888;
}

/* Progress Bar - Custom styling for completion percentage */
.progress {
    background-color: var(--brand-grey-200);
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    transition: width 0.6s ease;
}

/* Responsive Media Queries for Profile Sidebar */
@media (max-width: 991px) {
    /* On tablet and mobile, sidebar appears above content */
    #core_dashboard_sidebar_profile_card {
        margin-bottom: 1.5rem;
    }

    /* Reduce padding on smaller screens - increased specificity replaces !important */
    #core_dashboard_sidebar_profile_card.card .card-body {
        padding: 1.5rem;
    }

    /* Make buttons more compact */
    #core_dashboard_sidebar_profile_card .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    /* Mobile - Optimize for smaller screens */
    #core_dashboard_sidebar_profile_card .profile-picture-wrapper img {
        width: 6.25rem;
        height: 6.25rem;
    }

    /* Increased specificity with parent ID replaces !important */
    #core_dashboard_sidebar_profile_card .profile-picture-wrapper .position-absolute {
        width: 2.1875rem;
        height: 2.1875rem;
    }

    /* Reduce card padding on mobile - increased specificity replaces !important */
    #core_dashboard_sidebar_profile_card.card .card-body {
        padding: 1rem;
    }

    /* Stack role badges on mobile */
    #core_dashboard_sidebar_profile_card .text-center {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Increased specificity with parent ID replaces !important */
    #core_dashboard_sidebar_profile_card .role-badge {
        display: block;
        width: 100%;
        padding: 0.5rem;
    }

    /* Smaller status items - increased specificity with parent ID replaces !important */
    #core_dashboard_sidebar_profile_card .status-item {
        padding: 0.75rem;
    }

    /* Compact social icons - increased specificity with parent ID replaces !important */
    #core_dashboard_sidebar_profile_card .social-icon {
        width: 2.8125rem;
        height: 2.8125rem;
    }
}

@media (max-width: 575px) {
    /* Extra small devices */
    #core_dashboard_sidebar_profile_card .profile-picture-wrapper img {
        width: 5rem;
        height: 5rem;
    }

    /* Increased specificity with parent ID replaces !important */
    #core_dashboard_sidebar_profile_card .profile-picture-wrapper .position-absolute {
        width: 1.875rem;
        height: 1.875rem;
    }

    /* Increased specificity replaces !important */
    #core_dashboard_sidebar_profile_card.card .card-body {
        padding: 0.75rem;
    }

    /* Smaller font sizes */
    #core_dashboard_sidebar_profile_card h5 {
        font-size: 1.1rem;
    }

    #core_dashboard_sidebar_profile_card h6 {
        font-size: 0.85rem;
    }

    /* Full width buttons with less text */
    #core_dashboard_sidebar_profile_card .btn span {
        font-size: 0.85rem;
    }

    #core_dashboard_sidebar_profile_card .btn i {
        font-size: 0.9rem;
    }
}

/* ---------- PROFILE ---------- */
/* Profile Info Card Styling */
#core_profile_card_info {
    border: none;
    border-radius: var(--brand-radius-xl);
    box-shadow: var(--brand-shadow-lg);
    background: var(--brand-white);
}

#core_profile_card_info .card-body {
    padding: var(--spacing-2xl);
}

#core_profile_card_info .row {
    padding: var(--spacing-md) 0;
}

#core_profile_card_info p:not(.text-muted) {
    font-weight: var(--brand-font-weight-semibold);
    color: var(--brand-grey-700);
    font-size: var(--brand-font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.0312rem;
}

#core_profile_card_info .text-muted {
    color: var(--brand-grey-800) !important;
    font-weight: var(--brand-font-weight-medium);
    font-size: var(--brand-font-size-base);
}

#core_profile_card_info hr {
    border-top: 0.125rem solid var(--brand-grey-100);
    margin: var(--spacing-md) 0;
}

/* Edit Button Styling */
#core_profile_section_main .btn-dark {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    border: 0.125rem solid transparent;
    color: var(--brand-grey-800);
    font-weight: var(--brand-font-weight-heavy);
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--brand-radius-md);
    transition: all 0.3s ease;
    box-shadow: var(--brand-shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

#core_profile_section_main .btn-dark:hover {
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.75rem 1.875rem rgba(255, 211, 59, 0.5);
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary) 100%);
    color: var(--brand-grey-900);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    /* Tablet and below - Stack sidebar and content */
    #core_profile_section_main .p-3 {
        padding: 1.5rem 1rem;
    }

    #core_profile_card_info .card-body {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 767px) {
    /* Mobile - Adjust spacing and typography */
    #core_profile_card_info .card-body {
        padding: var(--spacing-md);
    }

    #core_profile_card_info .row {
        padding: var(--spacing-sm) 0;
    }

    /* Stack label and value on mobile */
    #core_profile_card_info .row > div {
        margin-bottom: 0.5rem;
    }

    #core_profile_card_info .row > div:last-child {
        margin-bottom: 0;
    }

    /* Make font sizes smaller on mobile */
    #core_profile_card_info p:not(.text-muted) {
        font-size: var(--brand-font-size-xs);
    }

    #core_profile_card_info .text-muted {
        font-size: var(--brand-font-size-sm);
    }

    /* Full width button on mobile */
    #core_profile_section_main .btn-warning {
        width: 100%;
    }
}

@media (max-width: 575px) {
    /* Extra small devices */
    #core_profile_section_main .p-3 {
        padding: 1rem 0.5rem;
    }

    #core_profile_card_info {
        border-radius: var(--brand-radius-md);
    }

    #core_profile_card_info .card-body {
        padding: var(--spacing-sm);
    }

    #core_profile_card_info hr {
        margin: var(--spacing-sm) 0;
    }
}

/* ---------- ROLE SELECTION ---------- */
/* ===============================
   ROLE SELECTION STYLES - Core App
   Using Brand Kit Reference
   =============================== */

/* Page Background */
.bg-light-grey {
    background-color: var(--brand-grey-200);
}

/* Profile Avatar */
.profile-avatar {
    width: 11.25rem;
    max-width: 11.25rem;
}

/* Modern Role Selection Card Container */
.role-selection-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.98) 100%);
    border-radius: var(--brand-radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12), 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(0.625rem);
}

/* Role Selection Header */
.role-selection-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.role-selection-title {
    font-size: var(--brand-font-size-2xl);
    font-weight: var(--brand-font-weight-heavy);
    color: var(--brand-grey-800);
    margin-bottom: var(--spacing-sm);
}

.role-selection-subtitle {
    font-size: var(--brand-font-size-md);
    color: var(--brand-grey-600);
}

/* Selected Role Display (when user has already chosen a role) */
.selected-role-container {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-xl);
}

.selected-role-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--brand-grey-800);
    padding: 0.75rem 1.5rem;
    border-radius: var(--brand-radius-full);
    font-size: var(--brand-font-size-sm);
    font-weight: var(--brand-font-weight-bold);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

.selected-role-icon {
    width: 7.5rem;
    height: 7.5rem;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    border-radius: var(--brand-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.375rem 1.25rem rgba(255, 211, 59, 0.4);
}

.selected-role-icon i {
    font-size: 3.5rem;
    color: var(--brand-grey-800);
}

.selected-role-title {
    font-size: var(--brand-font-size-4xl);
    font-weight: var(--brand-font-weight-heavy);
    color: var(--brand-grey-800);
    margin-bottom: var(--spacing-md);
}

.selected-role-description {
    font-size: var(--brand-font-size-md);
    color: var(--brand-grey-600);
    max-width: 31.25rem;
    margin: 0 auto var(--spacing-xl);
    line-height: var(--brand-line-height-relaxed);
}

/* Role Selection Cards Grid */
.role-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

/* Individual Role Card */
.role-card {
    background: var(--brand-white);
    border: 0.1875rem solid var(--brand-grey-200);
    border-radius: var(--brand-radius-xl);
    padding: var(--spacing-2xl) var(--spacing-xl);
    text-align: center;
    transition: var(--brand-transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

/* Top gradient bar that appears on hover */
.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    transform: scaleX(0);
    transition: transform var(--brand-transition);
}

.role-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-0.5rem);
    box-shadow: 0 0.625rem 1.875rem rgba(255, 211, 59, 0.3);
}

.role-card:hover::before {
    transform: scaleX(1);
}

/* Role Card Icon Container */
.role-card-icon {
    width: 6.25rem;
    height: 6.25rem;
    margin: 0 auto var(--spacing-lg);
    background: var(--brand-grey-100);
    border-radius: var(--brand-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--brand-transition);
}

.role-card:hover .role-card-icon {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    transform: scale(1.1);
}

.role-card-icon i {
    font-size: 2rem;
    color: var(--brand-grey-600);
    transition: color var(--brand-transition);
}

.role-card:hover .role-card-icon i {
    color: var(--brand-grey-800);
}

/* Role Card Text */
.role-card-title {
    font-size: var(--brand-font-size-xl);
    font-weight: var(--brand-font-weight-heavy);
    color: var(--brand-grey-800);
    margin-bottom: 0.75rem;
}

.role-card-description {
    font-size: var(--brand-font-size-base);
    color: var(--brand-grey-600);
    line-height: var(--brand-line-height-relaxed);
    margin-bottom: var(--spacing-lg);
}

/* Role Card Button */
.role-card-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--brand-grey-800);
    padding: 0.875rem 1.5rem;
    border-radius: var(--brand-radius-md);
    font-weight: 700;
    font-size: var(--brand-font-size-base);
    border: none;
    transition: var(--brand-transition);
    text-transform: uppercase;
    letter-spacing: 0.0312rem;
}

.role-card:hover .role-card-button {
    transform: scale(1.05);
    box-shadow: 0 0.375rem 1.25rem rgba(255, 211, 59, 0.4);
}

/* Dashboard Button (for selected role view) */
.dashboard-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--brand-grey-800);
    padding: 1rem 2rem;
    border-radius: var(--brand-radius-md);
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    text-decoration: none;
    transition: var(--brand-transition);
    text-transform: uppercase;
    letter-spacing: 0.0312rem;
}

.dashboard-button:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(255, 211, 59, 0.4);
    color: var(--brand-grey-800);
}

/* Responsive Design */
@media (max-width: 768px) {
    .role-options {
        grid-template-columns: 1fr;
    }

    .role-selection-title {
        font-size: var(--brand-font-size-xl);
    }

    .selected-role-title {
        font-size: var(--brand-font-size-2xl);
    }

    .role-selection-card {
        padding: var(--spacing-lg);
    }
}

/* ===============================
   ROLE UPDATE PAGE STYLES
   Using Brand Kit Reference
   =============================== */

/* Page Background */
#core_role_update_section_main {
    background: linear-gradient(180deg, var(--brand-grey-50) 0%, var(--brand-grey-100) 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

/* Profile Card */
#core_role_update_card_profile {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--brand-radius-xl);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12), 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.98) 100%);
    backdrop-filter: blur(0.625rem);
}

#core_role_update_card_profile .card-body {
    padding: var(--spacing-2xl);
}

#core_role_update_card_profile img {
    border: 0.375rem solid var(--brand-grey-100);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.15);
    transition: var(--brand-transition);
}

#core_role_update_card_profile img:hover {
    transform: scale(1.02);
    box-shadow: 0 0.9375rem 2.5rem rgba(0, 0, 0, 0.2);
}

#core_role_update_card_profile h5 {
    color: var(--brand-grey-800);
    font-weight: var(--brand-font-weight-bold);
    margin-top: 1.5rem;
}

/* Form Card */
#core_role_update_card_form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.98) 100%);
    border-radius: var(--brand-radius-xl);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12), 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: var(--spacing-2xl);
    backdrop-filter: blur(0.625rem);
}

/* Role Selection Buttons */
.btn-check:checked + .btn-outline-dark {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    border-color: var(--brand-primary);
    color: var(--brand-grey-800);
}

/* Submit Button */
#core_role_update_btn_submit {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    border: 0.125rem solid transparent;
    color: var(--brand-grey-800);
    font-weight: var(--brand-font-weight-heavy);
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--brand-radius-md);
    transition: all 0.3s ease;
    box-shadow: var(--brand-shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    font-size: var(--brand-font-size-base);
    margin-top: var(--spacing-lg);
}

#core_role_update_btn_submit:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.625rem 1.5625rem rgba(255, 211, 59, 0.5);
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary) 100%);
    color: var(--brand-grey-900);
}

/* Join Buttons */
.joinbtn {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    border: 0.125rem solid transparent;
    color: var(--brand-grey-800);
    font-weight: var(--brand-font-weight-heavy);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--brand-radius-md);
    transition: all 0.3s ease;
    box-shadow: var(--brand-shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

.joinbtn:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.625rem 1.5625rem rgba(255, 211, 59, 0.5);
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary) 100%);
    color: var(--brand-grey-900);
}

/* Job Title Section */
#pills-tab {
    padding: var(--spacing-xl) 0;
}

#pills-tab .h3 {
    color: var(--brand-grey-800);
    font-weight: var(--brand-font-weight-bold);
    margin-bottom: var(--spacing-lg);
}

/* Error Messages */
#core_role_update_card_form > div {
    color: #ff6b6b;
    background: #fee2e2;
    padding: var(--spacing-md);
    border-radius: var(--brand-radius-md);
    border-left: 0.25rem solid #ff6b6b;
    margin-bottom: var(--spacing-md);
    font-weight: var(--brand-font-weight-medium);
}

/* Responsive Design for Role Update Page */
@media (max-width: 768px) {
    #core_role_update_section_main {
        padding: 1rem 0;
    }

    #core_role_update_card_profile .card-body,
    #core_role_update_card_form {
        padding: var(--spacing-lg);
    }

    #pills-tab li {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* ---------- VERIFICATION PENDING ---------- */
/* Verification Pending Page Styles */

.pending-container {
    max-width: 43.75rem;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

.pending-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem 2rem;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.1);
}

.status-icon {
    width: 7.5rem;
    height: 7.5rem;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.status-icon i {
    font-size: 3.5rem;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 0.9375rem rgba(251, 191, 36, 0);
    }
}

.status-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.status-message {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.info-box {
    background: #f3f4f6;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.info-box h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    padding: 0.5rem 0;
    color: #6b7280;
}

.info-box li i {
    color: #10b981;
    margin-right: 0.75rem;
    width: 1.25rem;
}

.btn-home {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--brand-grey-800);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-home:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.75rem rgba(102, 126, 234, 0.4);
    color: white;
}

.profile-summary {
    background: #eff6ff;
    border: 0.125rem solid #3b82f6;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.profile-summary h5 {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #bfdbfe;
}

.profile-detail:last-child {
    border-bottom: none;
}

.profile-detail strong {
    color: #374151;
}

.profile-detail span {
    color: #6b7280;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.contact-support {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    border-left: 0.25rem solid #6366f1;
}

.contact-support h5 {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.contact-support p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-support a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.contact-support a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .pending-container {
        margin: 2rem auto;
    }

    .pending-card {
        padding: 2rem 1.5rem;
    }

    .status-icon {
        width: 6.25rem;
        height: 6.25rem;
    }

    .status-icon i {
        font-size: 2rem;
    }

    .status-title {
        font-size: 1.5rem;
    }

    .status-message {
        font-size: 1rem;
    }
}
