/**
 * TravelBliss Users - Premium Authentication & Dashboard Styles
 *
 * @package TravelBlissUsers
 * @version 2.0.0
 */

/* ============================================
   Auth Page Layout
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 40%, #2a5ba8 70%, #1a3a6e 100%);
}

.auth-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
    animation: authOrb1 15s ease-in-out infinite;
    pointer-events: none;
}

.auth-page::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 91, 168, 0.2) 0%, transparent 70%);
    animation: authOrb2 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes authOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, 80px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 40px) scale(0.95);
    }
}

@keyframes authOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-60px, -50px) scale(1.15);
    }
}

.auth-page .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

.auth-wrapper {
    max-width: 480px;
    margin: 0 auto;
}

.auth-wrapper--wide {
    max-width: 540px;
}

/* ============================================
   Auth Card (Glass Effect)
   ============================================ */
.tbs-auth-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
    animation: authCardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translateY(20px);
    opacity: 0;
}

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

.tbs-auth-card__header {
    text-align: center;
    padding: 40px 40px 0;
    position: relative;
}

.tbs-auth-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1a3a6e 0%, #2a5ba8 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(26, 58, 110, 0.3);
    position: relative;
}

.tbs-auth-card__icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.4), rgba(26, 58, 110, 0.1));
    z-index: -1;
}

.tbs-auth-card__header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a3a6e;
    margin-bottom: 8px;
}

.tbs-auth-card__header p {
    color: #6c757d;
    font-size: 0.938rem;
    margin: 0;
    line-height: 1.5;
}

.tbs-auth-card__body {
    padding: 30px 40px;
}

.tbs-auth-card__footer {
    text-align: center;
    padding: 20px 40px 35px;
    border-top: 1px solid #f1f3f5;
    margin: 0 20px;
}

.tbs-auth-card__footer p {
    margin: 0;
    color: #6c757d;
    font-size: 0.938rem;
}

.tbs-auth-card__footer a {
    color: #1a3a6e;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}

.tbs-auth-card__footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f5a623;
    transition: width 0.3s;
}

.tbs-auth-card__footer a:hover {
    color: #2a5ba8;
}

.tbs-auth-card__footer a:hover::after {
    width: 100%;
}

/* ============================================
   Form Elements
   ============================================ */
.tbs-form .form-group {
    margin-bottom: 20px;
}

.tbs-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.tbs-form label .required {
    color: #dc3545;
    margin-left: 2px;
}

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon>i:first-child {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 15px;
    z-index: 1;
    transition: color 0.2s;
    pointer-events: none;
}

.input-icon input {
    width: 100%;
    padding: 14px 16px 14px 46px;
    font-size: 0.938rem;
    font-family: 'Inter', sans-serif;
    color: #212529;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    outline: none;
    transition: all 0.25s ease;
}

.input-icon input:hover {
    border-color: #ced4da;
}

.input-icon input:focus {
    background: #fff;
    border-color: #1a3a6e;
    box-shadow: 0 0 0 4px rgba(26, 58, 110, 0.08);
}

.input-icon:focus-within>i:first-child {
    color: #1a3a6e;
}

.input-icon input::placeholder {
    color: #adb5bd;
}

.tbs-form input:not(.input-icon input):not([type="checkbox"]):not([type="radio"]) {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.938rem;
    font-family: 'Inter', sans-serif;
    color: #212529;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    outline: none;
    transition: all 0.25s ease;
}

.tbs-form input:not(.input-icon input):not([type="checkbox"]):not([type="radio"]):focus {
    background: #fff;
    border-color: #1a3a6e;
    box-shadow: 0 0 0 4px rgba(26, 58, 110, 0.08);
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #adb5bd;
    cursor: pointer;
    padding: 4px;
    font-size: 15px;
    transition: color 0.2s;
    z-index: 2;
}

.password-toggle:hover {
    color: #1a3a6e;
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #495057;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #1a3a6e;
    flex-shrink: 0;
    cursor: pointer;
}

.form-hint {
    display: block;
    margin-top: 6px;
    color: #6c757d;
    font-size: 0.813rem;
    line-height: 1.4;
}

.forgot-password-link {
    color: #1a3a6e;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password-link:hover {
    color: #f5a623;
}

/* ============================================
   Password Strength Meter
   ============================================ */
.password-strength {
    margin-top: 8px;
}

.password-strength__bar {
    height: 4px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.password-strength__fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.4s ease, background 0.4s ease;
    width: 0;
}

.password-strength__fill[data-strength="1"] {
    width: 20%;
    background: #dc3545;
}

.password-strength__fill[data-strength="2"] {
    width: 40%;
    background: #fd7e14;
}

.password-strength__fill[data-strength="3"] {
    width: 60%;
    background: #ffc107;
}

.password-strength__fill[data-strength="4"] {
    width: 80%;
    background: #28a745;
}

.password-strength__fill[data-strength="5"] {
    width: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.password-strength__text {
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.3s;
}

.password-strength__text[data-strength="1"] {
    color: #dc3545;
}

.password-strength__text[data-strength="2"] {
    color: #fd7e14;
}

.password-strength__text[data-strength="3"] {
    color: #ffc107;
}

.password-strength__text[data-strength="4"] {
    color: #28a745;
}

.password-strength__text[data-strength="5"] {
    color: #20c997;
}

/* ============================================
   Form Messages
   ============================================ */
.form-message {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: messageIn 0.3s ease;
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.form-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #b8dabc;
}

.form-message.success::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 16px;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f1b0b7;
}

.form-message.error::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 16px;
}

/* ============================================
   Submit Button
   ============================================ */
.tbs-auth-card .btn--primary {
    position: relative;
    width: 100%;
    padding: 16px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #f5a623 0%, #e09000 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.tbs-auth-card .btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tbs-auth-card .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.tbs-auth-card .btn--primary:hover::before {
    left: 100%;
}

.tbs-auth-card .btn--primary:active {
    transform: translateY(0);
}

.tbs-auth-card .btn--primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.tbs-auth-card .btn--primary .spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.back-to-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a3a6e;
    font-weight: 500;
    font-size: 0.938rem;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: 16px;
}

.back-to-login:hover {
    color: #f5a623;
    gap: 8px;
}

.form-footer {
    text-align: center;
    margin-top: 16px;
}

/* ============================================
   Trust Badges
   ============================================ */
.auth-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    padding: 0 20px;
}

.auth-trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.813rem;
    font-weight: 500;
}

.auth-trust__item i {
    color: #f5a623;
    font-size: 16px;
}

/* ============================================
   Dashboard Layout
   ============================================ */
.dashboard-page {
    background: #f0f2f5;
    min-height: 100vh;
    padding: 100px 0 60px;
}

.tbs-dashboard {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    min-height: 600px;
}

/* Sidebar */
.tbs-dashboard__sidebar {
    background: linear-gradient(180deg, #1a3a6e 0%, #0f2544 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 0;
    height: fit-content;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.dashboard-user {
    text-align: center;
    padding: 32px 24px 24px;
    background: linear-gradient(180deg, rgba(42, 91, 168, 0.3) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-user img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 14px;
    border: 3px solid rgba(245, 166, 35, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dashboard-user h3 {
    margin: 0 0 4px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.dashboard-user p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.813rem;
}

.dashboard-nav {
    padding: 16px 12px;
}

.dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.25s ease;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 0.938rem;
}

.dashboard-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.dashboard-nav a.active {
    background: linear-gradient(135deg, #f5a623 0%, #e09000 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.dashboard-nav a i {
    width: 20px;
    text-align: center;
    font-size: 15px;
}

.dashboard-nav .badge {
    margin-left: auto;
    background: rgba(245, 166, 35, 0.2);
    color: #f5a623;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dashboard-nav a.active .badge {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.dashboard-nav .logout-link {
    color: rgba(220, 53, 69, 0.8);
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

.dashboard-nav .logout-link:hover {
    background: rgba(220, 53, 69, 0.12);
    color: #dc3545;
}

/* Content area */
.tbs-dashboard__content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 32px;
}

.dashboard-section h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f3f5;
    color: #1a3a6e;
    font-size: 1.5rem;
}

.dashboard-section h3 {
    font-family: 'Outfit', sans-serif;
    color: #343a40;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

/* Stats Grid */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 14px;
    border: 1px solid #f1f3f5;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.stat-card i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-card:nth-child(1) i {
    background: linear-gradient(135deg, #1a3a6e, #2a5ba8);
    color: #fff;
}

.stat-card:nth-child(2) i {
    background: linear-gradient(135deg, #f5a623, #ffc107);
    color: #fff;
}

.stat-card:nth-child(3) i {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
}

.stat-card:nth-child(4) i {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #212529;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    color: #6c757d;
    font-size: 0.813rem;
    margin-top: 2px;
}

/* Inquiry List */
.inquiry-list {
    margin-bottom: 24px;
}

.inquiry-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f3f5;
    transition: background 0.2s;
}

.inquiry-item:hover {
    background: #fafbfc;
    margin: 0 -16px;
    padding: 16px;
    border-radius: 8px;
}

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

.inquiry-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    flex-shrink: 0;
}

.status-new {
    background: #fff0f0;
    color: #dc3545;
}

.status-in_progress {
    background: #fef8ee;
    color: #e09000;
}

.status-quoted {
    background: #edf5fc;
    color: #2271b1;
}

.status-confirmed {
    background: #ecf7ed;
    color: #28a745;
}

.status-completed {
    background: #f0f0f1;
    color: #3c434a;
}

.status-cancelled {
    background: #f8f8f9;
    color: #999;
}

.inquiry-info {
    flex-grow: 1;
    min-width: 0;
}

.inquiry-info strong {
    display: block;
    margin-bottom: 3px;
    font-size: 0.938rem;
    color: #212529;
}

.inquiry-info span {
    color: #6c757d;
    font-size: 0.813rem;
}

.inquiry-date {
    color: #adb5bd;
    font-size: 0.813rem;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Saved Packages */
.saved-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.saved-package-card {
    border: 1px solid #f1f3f5;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.saved-package-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.saved-package-card__image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.saved-package-card__image .remove-saved {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #dc3545;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.saved-package-card__image .remove-saved:hover {
    background: #dc3545;
    color: #fff;
}

.saved-package-card__body {
    padding: 16px;
}

.saved-package-card__body h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #212529;
}

.saved-package-card__body h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.saved-package-card__body h4 a:hover {
    color: #1a3a6e;
}

.saved-package-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.saved-package-card__price {
    font-weight: 700;
    color: #f5a623;
    font-family: 'Outfit', sans-serif;
}

.saved-package-card__duration {
    font-size: 0.813rem;
    color: #6c757d;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 56px;
    color: #dee2e6;
    margin-bottom: 20px;
    display: block;
}

.empty-state h3 {
    margin-bottom: 10px;
    color: #495057;
    font-size: 1.25rem;
}

.empty-state p {
    color: #6c757d;
    margin-bottom: 24px;
    font-size: 0.938rem;
}

/* ============================================
   Dashboard Form Styles
   ============================================ */
.tbs-dashboard__content .tbs-form input:not([type="checkbox"]):not([type="radio"]) {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.938rem;
    font-family: 'Inter', sans-serif;
    color: #212529;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    outline: none;
    transition: all 0.25s ease;
}

.tbs-dashboard__content .tbs-form input:not([type="checkbox"]):not([type="radio"]):focus {
    background: #fff;
    border-color: #1a3a6e;
    box-shadow: 0 0 0 4px rgba(26, 58, 110, 0.08);
}

.tbs-dashboard__content .tbs-form input:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.tbs-dashboard__content .tbs-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 6px;
}

.tbs-dashboard__content .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tbs-dashboard__content .form-hint {
    display: block;
    margin-top: 6px;
    color: #6c757d;
    font-size: 0.813rem;
}

.tbs-dashboard__content .form-message {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: messageIn 0.3s ease;
}

.tbs-dashboard__content .form-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #b8dabc;
}

.tbs-dashboard__content .form-message.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f1b0b7;
}

.tbs-dashboard__content .btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.938rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #f5a623 0%, #e09000 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tbs-dashboard__content .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

.tbs-dashboard__content .btn--primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.tbs-dashboard__content .btn--outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.938rem;
    font-weight: 600;
    color: #1a3a6e;
    background: transparent;
    border: 2px solid #1a3a6e;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tbs-dashboard__content .btn--outline:hover {
    background: #1a3a6e;
    color: #fff;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991px) {
    .tbs-dashboard {
        grid-template-columns: 1fr;
    }

    .tbs-dashboard__sidebar {
        order: -1;
        position: static;
    }

    .dashboard-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        padding: 12px;
    }

    .dashboard-nav a {
        flex: 1;
        min-width: auto;
        justify-content: center;
        padding: 10px 14px;
        font-size: 0.813rem;
    }

    .dashboard-user {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 20px 24px;
    }

    .dashboard-user img {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
    }

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

@media (max-width: 767px) {
    .auth-page {
        padding: 100px 16px 40px;
    }

    .tbs-auth-card__header {
        padding: 30px 24px 0;
    }

    .tbs-auth-card__body {
        padding: 24px;
    }

    .tbs-auth-card__footer {
        padding: 16px 24px 28px;
        margin: 0 12px;
    }

    .tbs-auth-card__icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 14px;
    }

    .tbs-auth-card__header h2 {
        font-size: 1.5rem;
    }

    .auth-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .tbs-dashboard__content {
        padding: 20px;
    }

    .tbs-dashboard__content .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .dashboard-page {
        padding: 90px 0 40px;
    }

    .saved-packages-grid {
        grid-template-columns: 1fr;
    }
}