/**
 * Portal-specific styles for Vantage Bookings
 *
 * These styles apply to the client and model portal pages.
 * They complement the main style.css from the marketing site.
 *
 * @package Vantage_Bookings
 */

/* ==========================================================================
   GLOBAL BUTTON STYLES
   ========================================================================== */

/* Primary buttons (main actions) */
.btn-primary, .cd-btn-primary, [class*='btn'][class*='primary'] {
    background: #67c6b4;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover, .cd-btn-primary:hover {
    background: #5ab3a1;
    color: #fff;
}

/* Secondary buttons (back, cancel - outlined style) */
.btn-secondary, .cd-btn-secondary {
    background: transparent;
    color: #303e48;
    border: 2px solid #303e48;
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover, .cd-btn-secondary:hover {
    background: #303e48;
    color: #fff;
}

/* Small buttons (Select on event cards) */
.btn-small {
    background: #67c6b4;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-small:hover {
    background: #5ab3a1;
    color: #fff;
}

/* Large button variant */
.btn-large, .cd-btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Outline button variant */
.cd-btn-outline {
    display: inline-block;
    background: transparent;
    color: #67c6b4;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 26px;
    border: 2px solid #67c6b4;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.cd-btn-outline:hover {
    background: #67c6b4;
    color: #fff;
}

/* ==========================================================================
   TYPOGRAPHY HIERARCHY
   ========================================================================== */

.page-title, .client-dashboard-v2 h1, .event-search-page h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #303e48;
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 32px;
}

.section-title, .client-dashboard-v2 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #303e48;
    margin-bottom: 16px;
}

.card-title, .client-dashboard-v2 h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #303e48;
    margin-bottom: 8px;
}

body.vantage-portal, .vantage-portal p {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
}

/* ==========================================================================
   EVENT BADGES / STATUS BADGES
   ========================================================================== */

.event-badge, .status-badge, .cd-onesheet-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-badge--open, .badge-open, .badge-complete, .cd-status-complete {
    background: #67c6b4;
    color: #fff;
}

.event-badge--closed, .badge-closed {
    background: #6c757d;
    color: #fff;
}

.event-badge--pending, .badge-pending, .cd-status-incomplete {
    background: #ffc107;
    color: #303e48;
}

/* ==========================================================================
   PORTAL LAYOUT
   ========================================================================== */

.vantage-portal #content > .container {
    max-width: 1200px;
    margin: 0 auto;
}

.vantage-portal .entry-header {
    display: none; /* Portal pages use custom headers via shortcodes */
}

/* Client portal container - wider content area, less empty space */
.client-portal-container, .client-dashboard-v2 {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 40px;
    background: transparent;
    min-height: calc(100vh - 200px);
}

/* Remove large gap before footer */
main#content, #content {
    padding-bottom: 0;
}

.vantage-portal main#content {
    margin-bottom: 0;
}

/* ==========================================================================
   PORTAL NAVIGATION BAR (Teal bar below header)
   ========================================================================== */

.portal-nav {
    background: #67c6b4;
    padding: 0;
    margin: 0 -30px 30px;
}

@media (max-width: 767px) {
    .portal-nav {
        margin: 0 -20px 20px;
    }
}

.portal-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.portal-nav ul li {
    margin: 0;
}

.portal-nav ul li a {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 20px;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    position: relative;
}

.portal-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Active navigation state */
.portal-nav ul li a.active,
.portal-nav ul li a[aria-current='page'] {
    background: rgba(255, 255, 255, 0.15);
}

.portal-nav ul li a.active::after,
.portal-nav ul li a[aria-current='page']::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #fff;
}

@media (max-width: 767px) {
    .portal-nav ul {
        flex-wrap: wrap;
    }

    .portal-nav ul li a {
        padding: 12px 15px;
        font-size: 12px;
    }
}

/* ==========================================================================
   MAIN NAVIGATION ACTIVE STATE (Teal bar)
   ========================================================================== */

#main-navigation a {
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    position: relative;
    transition: background 0.2s ease;
}

#main-navigation a.active,
#main-navigation a[aria-current='page'] {
    background: rgba(255, 255, 255, 0.15);
}

#main-navigation a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #fff;
}

/* ==========================================================================
   DASHBOARD STYLES
   ========================================================================== */

/* Welcome section - white card on gray background */
.cd-welcome-section {
    background: #ffffff;
    padding: 24px 30px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cd-welcome-section.cd-welcome-empty {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: 0;
}

.cd-welcome-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #303e48;
    margin: 0 0 4px;
}

.cd-company-name {
    font-size: 15px;
    color: #666666;
    margin: 0;
}

.cd-welcome-header {
    background: linear-gradient(135deg, #67c6b4 0%, #4ba394 100%);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.cd-welcome-header h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 32px;
    margin: 0 0 10px;
}

.cd-welcome-header p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* ==========================================================================
   ACTION ITEMS / CARDS
   ========================================================================== */

.cd-section-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #303e48;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #67c6b4;
}

/* ==========================================================================
   EVENT CARDS
   ========================================================================== */

.cd-event-card, .event-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.cd-event-card h3, .event-card__title, .event-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #303e48;
    margin: 0 0 4px;
}

.cd-event-card .event-meta, .event-card__location, .event-location {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 12px;
}

.cd-event-card .event-meta i {
    color: #67c6b4;
    margin-right: 5px;
}

/* Event date badge on cards */
.event-date-badge {
    background: #67c6b4;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Select event button - primary teal style */
.select-event-btn {
    display: inline-block;
    background: #67c6b4;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.select-event-btn:hover, .event-card:hover .select-event-btn {
    background: #5ab3a1;
    color: #fff;
}

/* ==========================================================================
   QUICK ACTIONS
   ========================================================================== */

.cd-quick-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 0;
}

.cd-quick-action {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
}

.cd-quick-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.cd-quick-action i {
    font-size: 36px;
    color: #67c6b4;
    margin-bottom: 15px;
}

.cd-quick-action h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 10px;
}

.cd-quick-action p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ==========================================================================
   TRUST BAR - Extends past content
   ========================================================================== */

.cd-trust-bar {
    background: #303e48;
    color: #fff;
    padding: 24px 20px;
    margin: 40px -60px -40px -60px;
    width: calc(100% + 120px);
    display: flex;
    justify-content: center;
    gap: 40px;
    text-align: center;
    /* NO border-radius - should extend edge to edge */
}

.cd-trust-bar .trust-items, .cd-trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.cd-trust-bar .trust-item, .cd-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.cd-trust-bar .trust-item i, .cd-trust-item i {
    font-size: 18px;
    color: #67c6b4;
}

.cd-trust-bar .trust-item i.fa-star, .cd-trust-item i.fa-star {
    color: #ffc107;
}

.cd-trust-bar .trust-item .trust-value {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.cd-trust-bar .trust-item .trust-label {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ==========================================================================
   EMPTY STATE
   ========================================================================== */

.cd-empty-state, .empty-state {
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cd-empty-state i, .empty-state__icon {
    margin-bottom: 20px;
}

.cd-empty-state i, .empty-state__icon i {
    font-size: 64px;
    color: #67c6b4;
}

.cd-empty-icon svg, .empty-state__icon svg {
    width: 64px;
    height: 64px;
    stroke: #67c6b4;
}

.cd-empty-state h2, .cd-empty-headline, .empty-state__title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 8px;
}

.cd-empty-state p, .cd-empty-subtext, .empty-state__text {
    font-size: 15px;
    color: #6c757d;
    margin: 0 0 24px;
}

/* ==========================================================================
   HOW IT WORKS (New Client Dashboard)
   ========================================================================== */

.cd-how-it-works {
    padding: 40px;
    background: #ffffff;
    margin-bottom: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cd-how-it-works h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #303e48;
    text-align: center;
    margin: 0 0 30px 0;
}

.cd-how-it-works .steps, .cd-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cd-how-it-works .step, .cd-step {
    text-align: center;
}

.cd-how-it-works .step .step-number, .cd-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #67c6b4;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.cd-how-it-works .step h3 {
    margin-bottom: 8px;
}

.cd-how-it-works .step p, .cd-step-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.cd-step-content h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 8px;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.portal-form .form-group {
    margin-bottom: 20px;
}

.portal-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    color: #303e48;
}

.portal-form input[type="text"],
.portal-form input[type="email"],
.portal-form input[type="password"],
.portal-form input[type="tel"],
.portal-form input[type="number"],
.portal-form select,
.portal-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.portal-form input:focus,
.portal-form select:focus,
.portal-form textarea:focus {
    border-color: #67c6b4;
    outline: none;
    box-shadow: 0 0 0 3px rgba(103, 198, 180, 0.1);
}

.portal-form .form-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {
    .cd-welcome-header h1 {
        font-size: 26px;
    }

    .cd-trust-bar .trust-items, .cd-trust-items {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .client-portal-container, .client-dashboard-v2 {
        padding: 30px 20px;
    }

    .cd-welcome-header {
        padding: 20px;
    }

    .cd-welcome-header h1 {
        font-size: 22px;
    }

    .cd-section-title {
        font-size: 18px;
    }

    .cd-quick-actions {
        flex-direction: column;
        align-items: center;
    }

    .cd-how-it-works .steps, .cd-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cd-how-it-works {
        padding: 30px 20px;
    }

    /* Trust bar mobile */
    .cd-trust-bar {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        flex-direction: column;
        gap: 16px;
    }

    .cd-trust-bar .trust-items, .cd-trust-items {
        flex-direction: column;
        gap: 16px;
    }
}

/* ==========================================================================
   MODEL PORTAL STYLES
   ========================================================================== */

.model-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 20px;
}

.model-title {
    font-size: 28px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 10px 0;
}

.model-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0 0 30px 0;
}

.event-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.event-filter {
    padding: 8px 16px;
    border: 2px solid #eee;
    border-radius: 20px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.2s;
}

.event-filter:hover {
    border-color: #67c6b4;
    color: #67c6b4;
}

.event-filter.active {
    background: #67c6b4;
    border-color: #67c6b4;
    color: #fff;
}

.city-select {
    padding: 10px 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    min-width: 200px;
    margin-bottom: 20px;
}

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

.event-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.event-item:hover {
    border-color: #67c6b4;
    transform: translateY(-2px);
}

.event-info {
    flex: 1;
}

.event-name {
    font-size: 18px;
    font-weight: 700;
    color: #303e48;
    margin-bottom: 4px;
}

.event-location {
    color: #666;
    margin-bottom: 4px;
}

.event-date {
    color: #888;
    font-size: 14px;
}

.event-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
}

.status-open {
    background: #e8f5f2;
    color: #67c6b4;
}

.status-available {
    background: #303e48;
    color: #fff;
}

.status-live {
    background: #fff3cd;
    color: #856404;
}

.status-closed {
    background: #f0f0f0;
    color: #999;
}

.section-header {
    font-size: 14px;
    font-weight: 700;
    color: #303e48;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.no-events {
    text-align: center;
    padding: 40px;
    color: #888;
}

/* Model Portal Mobile */
@media (max-width: 768px) {
    .event-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* =====================================================
   MODEL PROFILE STYLES
   ===================================================== */

/* Profile Container */
.model-profile-container {
    max-width: 900px;
    padding: 20px;
}

/* Profile Header */
.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 24px;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f3f4;
}

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

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #adb5bd;
    background: #f1f3f4;
}

.profile-header-info {
    flex: 1;
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 4px 0;
}

.profile-location {
    font-size: 16px;
    color: #6c757d;
    margin: 0 0 8px 0;
}

.profile-location i {
    margin-right: 6px;
}

.profile-member-since {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Completion Bar */
.completion-container {
    margin-top: 16px;
}

.completion-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px;
    width: 200px;
}

.completion-fill {
    height: 100%;
    background: #67c6b4;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.completion-text {
    font-size: 13px;
    color: #6c757d;
}

/* Profile Cards */
.profile-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.profile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #e9ecef;
    background: #fafafa;
}

.profile-card-header:hover {
    background: #f5f5f5;
}

.profile-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #303e48;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-card-title i {
    color: #67c6b4;
    width: 20px;
}

.collapse-icon {
    font-size: 12px;
    color: #6c757d;
    transition: transform 0.2s ease;
}

.profile-card.collapsed .collapse-icon {
    transform: rotate(-90deg);
}

.profile-card-content {
    padding: 20px;
}

.profile-card.collapsed .profile-card-content {
    display: none;
}

/* Profile Fields */
.profile-field {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
}

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

.profile-field-label {
    width: 180px;
    font-weight: 600;
    color: #495057;
    flex-shrink: 0;
}

.profile-field-value {
    flex: 1;
    color: #303e48;
}

.profile-field-value.not-set {
    color: #adb5bd;
    font-style: italic;
}

/* Full width field (for bio/headline) */
.profile-field-full {
    flex-direction: column;
    gap: 8px;
}

.profile-field-full .profile-field-label {
    width: 100%;
}

.bio-text {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    line-height: 1.6;
    color: #495057;
    margin: 0;
}

.char-count {
    font-size: 12px;
    color: #adb5bd;
    font-weight: normal;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 8px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
    color: #303e48;
}

.checkbox-item .check-icon {
    color: #67c6b4;
    font-weight: bold;
}

.checkbox-item.inactive {
    background: #fff;
    border: 1px solid #e9ecef;
    color: #adb5bd;
}

.checkbox-item.inactive .check-icon {
    color: #dee2e6;
}

/* Subsections */
.profile-subsection {
    margin-bottom: 24px;
}

.profile-subsection:last-child {
    margin-bottom: 0;
}

.profile-subsection-title {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subsection-hint {
    font-size: 13px;
    color: #6c757d;
    margin: -8px 0 12px 0;
    font-style: italic;
}

.no-data {
    color: #adb5bd;
    font-style: italic;
    padding: 12px 0;
}

/* Roles List */
.roles-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.role-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 6px;
}

.role-name {
    font-weight: 500;
    color: #303e48;
}

.role-level {
    font-size: 12px;
    color: #67c6b4;
    font-weight: 600;
    text-transform: uppercase;
}

/* Languages List */
.languages-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 6px;
}

.language-item.primary {
    background: #e8f5f2;
    border: 1px solid #67c6b4;
}

.lang-name {
    font-weight: 500;
    color: #303e48;
}

.lang-fluency {
    font-size: 13px;
    color: #6c757d;
}

.lang-badge {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    color: #67c6b4;
    text-transform: uppercase;
}

/* Education */
.edu-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.edu-item {
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 6px;
}

.edu-item strong {
    color: #303e48;
    display: block;
    margin-bottom: 4px;
}

.edu-item span {
    color: #6c757d;
    font-size: 14px;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.photo-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f3f4;
}

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

.photo-placeholder {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 24px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    gap: 4px;
}

.photo-placeholder span {
    font-size: 11px;
}

/* Videos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.video-item {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    gap: 8px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
}

.video-placeholder i {
    font-size: 32px;
}

/* Rates */
.rates-list {
    display: flex;
    flex-direction: column;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f1f3f4;
}

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

.rate-role {
    font-weight: 500;
    color: #303e48;
}

.rate-value {
    font-weight: 700;
    color: #67c6b4;
    font-size: 18px;
}

.rate-value.not-set {
    color: #adb5bd;
    font-weight: 400;
    font-size: 14px;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-avatar {
        width: 120px;
        height: 120px;
    }
    
    .completion-bar {
        margin: 12px auto 4px;
    }
    
    .profile-field {
        flex-direction: column;
        gap: 4px;
    }
    
    .profile-field-label {
        width: 100%;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =====================================================
   MODEL PROFILE EDIT MODE STYLES
   ===================================================== */

/* Card Header with Edit Button */
.profile-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-edit {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #67c6b4;
    background: transparent;
    border: 1px solid #67c6b4;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0;
}

.profile-card-header:hover .btn-edit,
.btn-edit:focus {
    opacity: 1;
}

.btn-edit:hover {
    background: #67c6b4;
    color: #fff;
}

/* Always show edit button on mobile */
@media (max-width: 768px) {
    .btn-edit {
        opacity: 1;
    }
}

/* Edit Mode Container */
.profile-edit-mode {
    display: none;
}

.profile-card.editing .profile-view-mode {
    display: none !important;
}

.profile-card.editing .profile-edit-mode {
    display: block !important;
}

.profile-card.editing .btn-edit {
    display: none !important;
}

/* Form Styling */
.profile-edit-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group input[type=number],
.form-group input[type=date],
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    font-size: 15px;
    color: #303e48;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #67c6b4;
    box-shadow: 0 0 0 3px rgba(103, 198, 180, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}

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

.form-group select {
    appearance: none;
    background-image: url(data:image/svg+xml,%3Csvg xmlns=http://www.w3.org/2000/svg width=12 height=12 viewBox=0 0 12 12%3E%3Cpath fill=%236c757d d=M6 8L1 3h10z/%3E%3C/svg%3E);
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* Checkbox Groups in Edit Mode */
.checkbox-edit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
}

.checkbox-edit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.checkbox-edit-item:hover {
    background: #e9ecef;
}

.checkbox-edit-item input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: #67c6b4;
    cursor: pointer;
}

.checkbox-edit-item label {
    font-size: 14px;
    color: #303e48;
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
    font-weight: normal;
}

/* Rate Input Styling */
.rate-input-group {
    display: flex;
    align-items: center;
}

.rate-input-group .currency-symbol {
    padding: 10px 12px;
    background: #e9ecef;
    border: 1px solid #dee2e6;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-weight: 600;
    color: #495057;
}

.rate-input-group input {
    border-radius: 0 6px 6px 0;
    width: 100px;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
    margin-top: 8px;
}

.btn-secondary,
.btn-primary {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary {
    color: #6c757d;
    background: #fff;
    border: 1px solid #dee2e6;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.btn-primary {
    color: #fff;
    background: #67c6b4;
    border: 1px solid #67c6b4;
}

.btn-primary:hover {
    background: #5ab5a3;
    border-color: #5ab5a3;
}

.btn-primary:disabled {
    background: #adb5bd;
    border-color: #adb5bd;
    cursor: not-allowed;
}

/* Success/Error Messages */
.form-message {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 16px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading State */
.btn-primary.loading {
    position: relative;
    color: transparent;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Character Count */
.char-counter {
    font-size: 12px;
    color: #6c757d;
    text-align: right;
    margin-top: 4px;
}

.char-counter.warning {
    color: #ffc107;
}

.char-counter.danger {
    color: #dc3545;
}

/* ============================================
   Form Validation Styles
   ============================================ */

/* Required field indicator */
.required {
    color: #dc3545;
    font-weight: normal;
}

/* Error state for inputs */
input.error,
select.error,
textarea.error {
    border-color: #dc3545 !important;
    background-color: #fff5f5;
}

/* Error message styling */
.field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Phone input formatting hint */
input[type="tel"]:focus:invalid {
    border-color: #ffc107;
}

/* Date input improvements */
input[type="date"] {
    padding: 8px 12px;
}

/* Optgroup styling for city dropdown */
optgroup {
    font-weight: bold;
    color: #303e48;
}

optgroup option {
    font-weight: normal;
    padding-left: 10px;
}

/* ============================================
   Skills/Roles/Languages Edit Modes
   ============================================ */

/* Checkbox edit grid */
.checkbox-edit-grid {
    margin-bottom: 20px;
}

.checkbox-edit-grid h4 {
    margin: 16px 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 8px;
}

.checkbox-edit-grid .checkbox-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.checkbox-label:hover {
    background: #e9ecef;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #67c6b4;
    cursor: pointer;
}

/* Role edit items */
.role-edit-list,
.roles-edit-list {
    margin-top: 10px;
}

.role-edit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.role-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 200px;
    cursor: pointer;
}

.role-checkbox-label:hover .role-name {
    color: #67c6b4;
}

.role-level-select {
    width: 160px;
    padding: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
}

.role-level-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #e9ecef;
}

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

.role-edit-item .checkbox-label {
    flex: 1;
    min-width: 200px;
    background: transparent;
    padding: 0;
}

.role-edit-item .checkbox-label:hover {
    background: transparent;
}

.role-edit-item select {
    width: 160px;
    padding: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
}

.role-edit-item select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #e9ecef;
}

/* Industry edit (checkboxes) */
.industry-edit-grid {
    margin-top: 20px;
}

.industry-edit-grid h4 {
    margin: 16px 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

.industry-edit-grid .checkbox-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
}

/* Education edit */
.education-edit-section h4 {
    margin: 16px 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

/* Language items */
.languages-edit {
    margin-top: 10px;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.language-item:last-of-type {
    border-bottom: none;
}

/* Language edit mode items */
.languages-edit-list {
    margin-bottom: 10px;
}

.language-edit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.language-edit-item:last-of-type {
    border-bottom: none;
}

.language-edit-item select {
    flex: 1;
    min-width: 120px;
    padding: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
}

.language-edit-item .language-select {
    flex: 2;
    min-width: 140px;
}

.language-edit-item .fluency-select {
    flex: 1;
    min-width: 100px;
}

.language-item select {
    flex: 1;
    min-width: 140px;
    padding: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
}

.language-item .language-select {
    flex: 2;
}

.language-item .fluency-select {
    flex: 1;
    min-width: 100px;
}

.primary-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #6c757d;
    white-space: nowrap;
}

.primary-label input[type="radio"] {
    accent-color: #67c6b4;
}

.btn-remove-language {
    width: 28px;
    height: 28px;
    border: none;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.btn-remove-language:hover {
    background: #c82333;
}

.btn-add-language {
    margin-top: 12px;
    padding: 10px 16px;
    background: none;
    border: 2px dashed #67c6b4;
    color: #67c6b4;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
}

.btn-add-language:hover {
    background: #67c6b4;
    color: white;
    border-style: solid;
}

/* Mobile adjustments for edit modes */
@media (max-width: 768px) {
    .checkbox-edit-grid .checkbox-options {
        grid-template-columns: 1fr;
    }
    
    .role-edit-item {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .role-edit-item select {
        width: 100%;
    }
    
    .language-item {
        flex-direction: column;
        align-items: stretch;
    }
    
    .language-item select {
        width: 100%;
    }
    
    .primary-label {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   PHOTO UPLOAD STYLES
   ========================================================================== */

.photo-upload-container {
    padding: 0;
}

.photo-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

#main-photo-grid {
    grid-template-columns: minmax(150px, 200px);
}

.photo-upload-slot {
    position: relative;
    aspect-ratio: 1;
    background: #f8f9fa;
    border: 2px dashed #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.photo-upload-slot:hover {
    border-color: #67c6b4;
    background: #f0faf8;
}

.photo-upload-slot.has-photo {
    border-style: solid;
    border-color: #e9ecef;
}

.photo-upload-slot.has-photo:hover {
    border-color: #67c6b4;
}

.photo-upload-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-upload-slot .photo-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.photo-upload-slot .upload-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6c757d;
    cursor: pointer;
    z-index: 1;
}

.photo-upload-slot .upload-label i {
    font-size: 24px;
    color: #67c6b4;
}

.photo-upload-slot .upload-label span {
    font-size: 12px;
    font-weight: 500;
}

.photo-upload-slot .btn-delete-photo {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.85);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 3;
}

.photo-upload-slot .btn-delete-photo:hover {
    background: #dc3545;
    transform: scale(1.1);
}

.photo-upload-slot .upload-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e9ecef;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.photo-upload-slot .upload-progress.active {
    opacity: 1;
}

.photo-upload-slot .upload-progress .progress-bar {
    height: 100%;
    background: #67c6b4;
    width: 0;
    transition: width 0.3s ease;
}

/* ==========================================================================
   VIDEO UPLOAD STYLES
   ========================================================================== */

.video-upload-container {
    padding: 0;
}

.video-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.video-upload-slot {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e9ecef;
}

.video-slot-label {
    display: block;
    font-weight: 600;
    color: #303e48;
    margin-bottom: 4px;
}

.video-slot-hint {
    font-size: 12px;
    color: #6c757d;
    margin: 0 0 12px 0;
}

.video-preview {
    position: relative;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-preview:not(.has-video) {
    border: 2px dashed #e9ecef;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.video-preview:not(.has-video):hover {
    border-color: #67c6b4;
    background: #f0faf8;
}

.video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-preview .video-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.video-preview .upload-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6c757d;
    cursor: pointer;
    z-index: 1;
}

.video-preview .upload-label i {
    font-size: 32px;
    color: #67c6b4;
}

.video-preview .upload-label span {
    font-size: 14px;
    font-weight: 500;
}

.video-preview .btn-delete-video {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 3;
}

.video-preview:hover .btn-delete-video {
    opacity: 1;
}

.video-preview .btn-delete-video:hover {
    background: #dc3545;
}

.video-upload-slot .upload-progress {
    margin-top: 12px;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.video-upload-slot .upload-progress.active {
    opacity: 1;
}

.video-upload-slot .upload-progress .progress-bar {
    height: 100%;
    background: #67c6b4;
    border-radius: 3px;
    width: 0;
    transition: width 0.3s ease;
}

.video-upload-slot .upload-progress .progress-text {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    margin-top: 4px;
}

/* Video view mode */
.video-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-player {
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.video-player video {
    width: 100%;
    display: block;
}

/* Videos grid in view mode */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.video-item {
    min-height: 120px;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
    min-height: 140px;
}

.video-placeholder i {
    font-size: 32px;
    opacity: 0.5;
}

.video-placeholder span {
    font-size: 13px;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Done buttons */
.btn-done-photos,
.btn-done-videos {
    margin-top: 16px;
}

/* Mobile responsive for photos/videos */
@media (max-width: 640px) {
    .photo-upload-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #main-photo-grid {
        grid-template-columns: 1fr;
    }

    .video-upload-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .photo-upload-slot .btn-delete-photo,
    .video-preview .btn-delete-video {
        opacity: 1;
    }
}

/* ============================================
   MY JOBS PAGE STYLES
   ============================================ */

/* Jobs container */
.my-jobs-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Jobs section */
.jobs-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.jobs-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    cursor: default;
}

.jobs-section-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #303e48;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jobs-section-header .section-icon {
    font-size: 18px;
}

.jobs-section-header .section-count {
    background: #e9ecef;
    color: #495057;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
}

/* Action needed section - highlighted */
.jobs-section.action-needed {
    border: 2px solid #f0ad4e;
}

.jobs-section.action-needed .jobs-section-header {
    background: #fff8e6;
}

.jobs-section.action-needed .section-icon {
    color: #f0ad4e;
}

.jobs-section.action-needed .section-count {
    background: #f0ad4e;
    color: #fff;
}

/* Upcoming section */
.jobs-section.upcoming .section-icon {
    color: #67c6b4;
}

.jobs-section.upcoming .section-count {
    background: #67c6b4;
    color: #fff;
}

/* Completed section - collapsible */
.jobs-section.completed .jobs-section-header {
    cursor: pointer;
}

.jobs-section.completed .section-icon {
    color: #6c757d;
}

.jobs-section.completed .toggle-icon {
    color: #6c757d;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.jobs-section.completed.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

.jobs-section.completed .jobs-list {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.jobs-section.completed.collapsed .jobs-list {
    max-height: 0;
    border-top: none;
}

/* Jobs list */
.jobs-list {
    padding: 0;
}

/* Job card */
.job-card {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.15s ease;
}

.job-card:last-child {
    border-bottom: none;
}

.job-card:hover {
    background-color: #f8f9fa;
}

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

.job-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 4px 0;
}

.job-card-client {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

/* Status badges */
.job-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-invited {
    background: #fff8e6;
    color: #c88a00;
    border: 1px solid #f0ad4e;
}

.badge-confirmed {
    background: #e6f7f4;
    color: #3d9985;
    border: 1px solid #67c6b4;
}

.badge-recap {
    background: #e8f4fc;
    color: #2b7cb3;
    border: 1px solid #5bc0de;
}

.badge-completed {
    background: #f5f5f5;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

/* Job card details */
.job-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #495057;
}

.job-detail i {
    color: #6c757d;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.job-detail.job-pay {
    font-weight: 600;
    color: #3d9985;
}

/* Job card countdown */
.job-card-countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 13px;
    color: #495057;
    margin-bottom: 16px;
}

.job-card-countdown i {
    color: #6c757d;
}

.job-card-countdown.urgent {
    background: #fff3cd;
    color: #856404;
}

.job-card-countdown.urgent i {
    color: #f0ad4e;
}

/* Job card actions */
.job-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.job-card-actions .btn {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.15s ease;
}

.job-card-actions .btn-primary {
    background: #67c6b4;
    color: #fff;
    border: none;
}

.job-card-actions .btn-primary:hover {
    background: #5ab5a3;
}

.job-card-actions .btn-secondary {
    background: #fff;
    color: #495057;
    border: 1px solid #dee2e6;
}

.job-card-actions .btn-secondary:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.job-card-actions .btn-outline-danger {
    background: #fff;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.job-card-actions .btn-outline-danger:hover {
    background: #dc3545;
    color: #fff;
}

/* Empty state */
.jobs-empty-state {
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
}

.jobs-empty-state i {
    font-size: 32px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.jobs-empty-state p {
    margin: 0;
    font-size: 14px;
}

/* My Jobs mobile responsive */
@media (max-width: 640px) {
    .job-card-header {
        flex-direction: column;
        gap: 8px;
    }

    .job-card-details {
        flex-direction: column;
        gap: 8px;
    }

    .job-card-actions {
        flex-direction: column;
    }

    .job-card-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   FIND WORK PAGE STYLES
   ============================================ */

/* Find Work card */
.find-work-card {
    padding: 24px;
}

.find-work-card .model-title {
    margin-bottom: 4px;
}

.find-work-card .model-subtitle {
    color: #6c757d;
    margin-bottom: 20px;
}

/* Find Work controls */
.find-work-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.find-work-controls .city-select {
    flex: 0 0 auto;
    min-width: 200px;
    padding: 10px 14px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    color: #495057;
    background: #fff;
    cursor: pointer;
}

.find-work-controls .city-select:focus {
    outline: none;
    border-color: #67c6b4;
    box-shadow: 0 0 0 3px rgba(103, 198, 180, 0.15);
}

/* Filter tabs */
.filter-tabs {
    display: flex;
    gap: 4px;
    background: #f8f9fa;
    padding: 4px;
    border-radius: 8px;
}

.filter-tab {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #6c757d;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.filter-tab:hover {
    color: #495057;
    background: #fff;
}

.filter-tab.active {
    color: #fff;
    background: #67c6b4;
}

/* Event list */
.find-work-card .event-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Event card */
.event-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.event-card:hover {
    border-color: #67c6b4;
    box-shadow: 0 2px 8px rgba(103, 198, 180, 0.15);
}

.event-card.event-closed {
    opacity: 0.7;
}

.event-card.event-closed:hover {
    border-color: #dee2e6;
    box-shadow: none;
}

.event-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.event-card-info {
    flex: 1;
    min-width: 0;
}

.event-card-name {
    font-size: 16px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 8px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.event-card-location,
.event-card-date {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-card-location i,
.event-card-date i {
    color: #adb5bd;
    font-size: 12px;
}

/* Event card badges */
.event-card-badges {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.badge-applied {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: #e6f7f4;
    color: #3d9985;
    border: 1px solid #67c6b4;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.badge-applied i {
    font-size: 10px;
}

.badge-open {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #67c6b4;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.badge-closed {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #f5f5f5;
    color: #6c757d;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Events empty state */
.events-empty-state {
    padding: 60px 20px;
    text-align: center;
    color: #6c757d;
}

.events-empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.4;
}

.events-empty-state p {
    margin: 0;
    font-size: 15px;
}

/* Find Work mobile responsive */
@media (max-width: 640px) {
    .find-work-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .find-work-controls .city-select {
        width: 100%;
    }

    .filter-tabs {
        width: 100%;
        justify-content: space-between;
    }

    .filter-tab {
        flex: 1;
        text-align: center;
        padding: 8px 8px;
        font-size: 12px;
    }

    .event-card-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .event-card-badges {
        width: 100%;
    }

    .event-card-badges .badge-open,
    .event-card-badges .badge-applied,
    .event-card-badges .badge-closed {
        flex: 1;
        justify-content: center;
    }
}

/* ==========================================================================
   APPLY PAGE STYLES
   ========================================================================== */

.apply-page {
    max-width: 600px;
}

.apply-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #67c6b4;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
}

.apply-back-link:hover {
    color: #5ab3a1;
}

/* Apply Cards - matching profile-card pattern */
.apply-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.apply-card-header {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #fafafa;
    display: flex;
    align-items: center;
    gap: 10px;
}

.apply-card-header i {
    color: #67c6b4;
    width: 20px;
}

.apply-card-body {
    padding: 20px;
}

/* Event Header Card */
.apply-event-header {
    padding: 20px;
}

.event-header-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.event-image-wrapper {
    flex-shrink: 0;
}

.event-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.event-image-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: linear-gradient(135deg, #67c6b4 0%, #5ab3a1 100%);
    color: white;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-header-details {
    flex: 1;
    min-width: 0;
}

.event-header-title {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.event-header-venue {
    font-size: 15px;
    color: #374151;
    margin-bottom: 8px;
}

.event-header-location,
.event-header-dates {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.event-header-location i,
.event-header-dates i {
    color: #67c6b4;
    width: 14px;
}

/* Status Badge */
.apply-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.apply-status-badge.status-available {
    background: #67c6b4;
    color: white;
}

.apply-status-badge.status-unavailable {
    background: #6b7280;
    color: white;
}

.apply-status-badge.status-closed {
    background: #e5e7eb;
    color: #6b7280;
}

/* Compensation Card */
.apply-compensation-card .apply-card-body {
    text-align: center;
    padding: 30px 20px;
}

.earnings-total {
    font-size: 36px;
    font-weight: 700;
    color: #67c6b4;
    line-height: 1;
}

.earnings-detail {
    font-size: 15px;
    color: #6b7280;
    margin-top: 8px;
}

.earnings-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 16px;
    background: #fef3cd;
    border-radius: 6px;
}

.earnings-warning i {
    color: #b45309;
    font-size: 20px;
    margin-top: 2px;
}

.earnings-warning strong {
    display: block;
    color: #92400e;
    margin-bottom: 4px;
}

.earnings-warning p {
    color: #92400e;
    font-size: 14px;
    margin: 0 0 12px 0;
}

/* Schedule Card */
.schedule-list {
    display: flex;
    flex-direction: column;
}

.schedule-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-date {
    width: 100px;
    font-weight: 600;
    color: #374151;
    flex-shrink: 0;
}

.schedule-time {
    flex: 1;
    color: #6b7280;
    font-size: 14px;
}

.schedule-hours {
    color: #67c6b4;
    font-weight: 600;
    font-size: 14px;
}

/* Role Card */
.role-name {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.role-description,
.role-responsibilities {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

/* Action Buttons */
.apply-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-action {
    flex: 1;
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: 2px solid;
}

.btn-action.btn-available {
    background: #67c6b4;
    border-color: #67c6b4;
    color: white;
}

.btn-action.btn-available:hover {
    background: #5ab3a1;
    border-color: #5ab3a1;
}

.btn-action.btn-available-selected {
    background: #d1d5db;
    border-color: #d1d5db;
    color: #9ca3af;
    cursor: default;
}

.btn-action.btn-unavailable {
    background: white;
    border-color: #d1d5db;
    color: #374151;
}

.btn-action.btn-unavailable:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.btn-action.btn-unavailable-selected {
    background: #6b7280;
    border-color: #6b7280;
    color: white;
    cursor: default;
}

.closed-message {
    text-align: center;
    color: #6b7280;
    font-size: 15px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 6px;
    width: 100%;
}

/* Apply Page Mobile Responsive */
@media (max-width: 640px) {
    .apply-page {
        max-width: 100%;
    }

    .event-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .event-header-details {
        text-align: center;
    }

    .event-header-location,
    .event-header-dates {
        justify-content: center;
    }

    .apply-status-badge {
        width: 100%;
        justify-content: center;
    }

    .earnings-total {
        font-size: 32px;
    }

    .schedule-row {
        flex-wrap: wrap;
        gap: 4px;
    }

    .schedule-date {
        width: 100%;
        margin-bottom: 2px;
    }

    .schedule-time {
        flex: none;
    }

    .apply-actions {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
        padding: 16px;
    }
}

/* ==========================================================================
   MODEL DASHBOARD STYLES
   ========================================================================== */

/* Dashboard Welcome */
.dashboard-welcome {
    margin-bottom: 24px;
}

.dashboard-welcome-title {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 4px 0;
}

.dashboard-welcome-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

/* Dashboard Stats Row */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.dashboard-stat {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dashboard-stat.has-action {
    border: 2px solid #f0ad4e;
    background: #fffcf5;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f1f3f4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 20px;
    color: #6c757d;
}

.dashboard-stat.has-action .stat-icon {
    background: #fff3cd;
}

.dashboard-stat.has-action .stat-icon i {
    color: #f0ad4e;
}

.stat-content {
    flex: 1;
    min-width: 0;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #303e48;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dashboard Sections */
.dashboard-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
    overflow: hidden;
}

.dashboard-section.action-needed {
    border: 2px solid #f0ad4e;
}

.dashboard-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-section.action-needed .dashboard-section-header {
    background: #fff8e6;
}

.dashboard-section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #303e48;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-section-title i {
    font-size: 18px;
}

.dashboard-section.action-needed .dashboard-section-title i {
    color: #f0ad4e;
}

.dashboard-section.upcoming .dashboard-section-title i {
    color: #67c6b4;
}

.section-link {
    font-size: 14px;
    font-weight: 500;
    color: #67c6b4;
    text-decoration: none;
}

.section-link:hover {
    color: #5ab3a1;
    text-decoration: underline;
}

.dashboard-section-content {
    padding: 0;
}

/* Dashboard Action Cards */
.dashboard-action-card {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-action-card:last-child {
    border-bottom: none;
}

.action-card-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.action-card-info {
    flex: 1;
    min-width: 0;
}

.action-card-title {
    font-size: 17px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 8px 0;
}

.action-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 8px;
}

.action-card-meta .meta-item {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.action-card-meta .meta-item i {
    color: #adb5bd;
    font-size: 12px;
}

.action-card-meta .meta-pay {
    font-weight: 600;
    color: #3d9985;
}

.action-card-meta .meta-pay i {
    color: #67c6b4;
}

.action-card-countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #856404;
    background: #fff3cd;
    padding: 4px 10px;
    border-radius: 4px;
}

.action-card-countdown i {
    font-size: 12px;
}

.action-card-action {
    flex-shrink: 0;
}

/* Dashboard Upcoming Cards */
.dashboard-upcoming-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.dashboard-upcoming-card:last-child {
    border-bottom: none;
}

.dashboard-upcoming-card:hover {
    background-color: #f8f9fa;
}

.upcoming-card-content {
    flex: 1;
    min-width: 0;
}

.upcoming-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 8px 0;
}

.upcoming-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 8px;
}

.upcoming-card-meta .meta-item {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.upcoming-card-meta .meta-item i {
    color: #adb5bd;
    font-size: 12px;
}

.upcoming-card-countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #495057;
    background: #f1f3f4;
    padding: 4px 10px;
    border-radius: 4px;
}

.upcoming-card-countdown i {
    color: #6c757d;
    font-size: 12px;
}

.upcoming-card-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    transition: color 0.15s ease;
}

.dashboard-upcoming-card:hover .upcoming-card-link {
    color: #67c6b4;
}

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

.dashboard-empty-state i {
    font-size: 40px;
    color: #adb5bd;
    margin-bottom: 16px;
}

.dashboard-empty-state p {
    font-size: 15px;
    color: #6c757d;
    margin: 0 0 20px 0;
}

/* Dashboard Quick Actions */
.dashboard-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.quick-action-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.quick-action-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #67c6b4 0%, #5ab3a1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-action-icon i {
    font-size: 20px;
    color: #fff;
}

.quick-action-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 4px 0;
}

.quick-action-content p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

/* Dashboard Mobile Responsive */
@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-stat {
        padding: 16px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-icon i {
        font-size: 18px;
    }

    .stat-number {
        font-size: 24px;
    }

    .action-card-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .action-card-action {
        width: 100%;
    }

    .action-card-action .btn-primary {
        width: 100%;
        text-align: center;
    }

    .action-card-meta {
        flex-direction: column;
        gap: 6px;
    }

    .upcoming-card-meta {
        flex-direction: column;
        gap: 6px;
    }

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

    .quick-action-card {
        padding: 16px;
    }

    .quick-action-icon {
        width: 40px;
        height: 40px;
    }

    .quick-action-icon i {
        font-size: 18px;
    }
}

/* ==========================================================================
   DASHBOARD STATS - 4 COLUMN LAYOUT
   ========================================================================== */

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

@media (max-width: 992px) {
    .dashboard-stats-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .dashboard-stats-4 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PROFILE COMPLETION STAT CARD
   ========================================================================== */

.dashboard-stat.profile-stat {
    text-decoration: none;
    cursor: pointer;
}

.dashboard-stat.profile-stat:hover {
    border-color: #67c6b4;
}

.dashboard-stat.profile-stat .stat-icon {
    background: #e8f5f2;
}

.dashboard-stat.profile-stat .stat-icon i {
    color: #67c6b4;
}

.dashboard-stat.profile-stat.needs-attention .stat-icon {
    background: #fff3cd;
}

.dashboard-stat.profile-stat.needs-attention .stat-icon i {
    color: #f0ad4e;
}

.dashboard-stat.profile-stat.complete .stat-icon {
    background: #d4edda;
}

.dashboard-stat.profile-stat.complete .stat-icon i {
    color: #28a745;
}

/* Progress bar in stat card */
.stat-progress-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 8px;
    width: 100%;
}

.stat-progress-fill {
    height: 100%;
    background: #67c6b4;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.dashboard-stat.profile-stat.needs-attention .stat-progress-fill {
    background: #f0ad4e;
}

.dashboard-stat.profile-stat.complete .stat-progress-fill {
    background: #28a745;
}

/* Updated text */
.stat-updated {
    font-size: 11px;
    color: #adb5bd;
    margin-top: 4px;
}

/* ==========================================================================
   FEATURE SPOTLIGHT BANNER
   ========================================================================== */

.dashboard-spotlight {
    background: linear-gradient(135deg, #f0faf8 0%, #e8f5f2 100%);
    border: 2px solid #67c6b4;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.spotlight-dismiss {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 14px;
    transition: all 0.2s ease;
}

.spotlight-dismiss:hover {
    background: #fff;
    color: #303e48;
    transform: scale(1.1);
}

.spotlight-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.spotlight-icon {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
}

.spotlight-text {
    flex: 1;
    min-width: 0;
}

.spotlight-title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 8px 0;
}

.spotlight-description {
    font-size: 14px;
    color: #495057;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.spotlight-tips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 16px;
}

.spotlight-tips li {
    font-size: 13px;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 6px;
}

.spotlight-tips li i {
    color: #67c6b4;
    font-size: 10px;
}

.spotlight-action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.spotlight-action .btn-primary {
    white-space: nowrap;
}

/* Spotlight Mobile Responsive */
@media (max-width: 768px) {
    .dashboard-spotlight {
        padding: 20px;
    }

    .spotlight-content {
        flex-direction: column;
        text-align: center;
    }

    .spotlight-icon {
        align-self: center;
    }

    .spotlight-tips {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .spotlight-tips li {
        justify-content: flex-start;
    }

    .spotlight-action {
        width: 100%;
        margin-top: 16px;
    }

    .spotlight-action .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   EARNINGS PAGE STYLES
   ========================================================================== */

.earnings-header {
    margin-bottom: 24px;
}

.earnings-header .page-title {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #303e48;
    margin: 0;
}

/* Earnings Cards */
.earnings-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
    overflow: hidden;
}

.earnings-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.earnings-card-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #303e48;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.earnings-card-title i {
    color: #67c6b4;
    font-size: 18px;
}

.jobs-count {
    font-size: 13px;
    color: #6c757d;
    background: #e9ecef;
    padding: 4px 10px;
    border-radius: 12px;
}

.earnings-card-content {
    padding: 24px;
}

/* Payment Info Card */
.payment-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.payment-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #67c6b4 0%, #5ab3a1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-info-icon i {
    font-size: 28px;
    color: #fff;
}

.payment-info-text {
    flex: 1;
}

.payment-info-text h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 8px 0;
}

.payment-info-text p {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.payment-note {
    background: #fff8e6;
    padding: 10px 12px;
    border-radius: 6px;
    border-left: 3px solid #f0ad4e;
    font-size: 13px !important;
}

.payment-actions {
    margin-bottom: 20px;
}

.payment-actions .btn-primary i {
    margin-right: 8px;
}

.payment-contact {
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.payment-contact p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-contact a {
    color: #67c6b4;
    text-decoration: none;
}

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

/* Completed Jobs List */
.completed-jobs-list {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.completed-job-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.15s ease;
}

.completed-job-row:last-child {
    border-bottom: none;
}

.completed-job-row:hover {
    background-color: #f8f9fa;
}

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

.job-name {
    font-size: 15px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 6px 0;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.job-meta .meta-item {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-meta .meta-item i {
    font-size: 11px;
    color: #adb5bd;
}

.job-pay {
    text-align: right;
    flex-shrink: 0;
    margin-left: 20px;
}

.pay-details {
    display: flex;
    gap: 12px;
    margin-bottom: 4px;
}

.pay-rate,
.pay-hours {
    font-size: 12px;
    color: #6c757d;
}

.pay-total {
    font-size: 16px;
    font-weight: 700;
    color: #28a745;
}

.pay-pending {
    font-size: 13px;
    color: #6c757d;
    font-style: italic;
}

/* Earnings Empty State */
.earnings-empty-state {
    text-align: center;
    padding: 48px 24px;
}

.earnings-empty-state .empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f1f3f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earnings-empty-state .empty-icon i {
    font-size: 32px;
    color: #adb5bd;
}

.earnings-empty-state h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 8px 0;
}

.earnings-empty-state p {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 20px 0;
}

/* Earnings Footer Note */
.earnings-footer-note {
    text-align: center;
    padding: 16px;
}

.earnings-footer-note p {
    font-size: 13px;
    color: #adb5bd;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.earnings-footer-note i {
    font-size: 14px;
}

/* Earnings Mobile Responsive */
@media (max-width: 768px) {
    .payment-info {
        flex-direction: column;
        text-align: center;
    }

    .payment-info-icon {
        margin: 0 auto;
    }

    .payment-actions {
        text-align: center;
    }

    .payment-contact p {
        flex-direction: column;
        text-align: center;
    }

    .completed-job-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .job-pay {
        text-align: left;
        margin-left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .pay-details {
        margin-bottom: 0;
    }
}

/* ==========================================================================
   SETTINGS PAGE STYLES
   ========================================================================== */

.settings-page {
    max-width: 800px;
}

.settings-page-header {
    margin-bottom: 32px;
}

.settings-page-header h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 8px 0;
}

.settings-page-header p {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

/* Settings Section */
.settings-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
    overflow: hidden;
}

.settings-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    background: #fafbfc;
}

.settings-section-header i {
    font-size: 20px;
    color: #67c6b4;
}

.settings-section-header h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #303e48;
    margin: 0;
}

.settings-section-body {
    padding: 24px;
}

/* Settings Form */
.settings-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Row Layouts */
.settings-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.settings-form .form-row-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.settings-form .form-row-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .settings-form .form-row-2col,
    .settings-form .form-row-3col {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
    color: #303e48;
}

.form-group input:focus {
    outline: none;
    border-color: #67c6b4;
    box-shadow: 0 0 0 3px rgba(103, 198, 180, 0.1);
}

.form-group input:disabled {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.form-hint {
    font-size: 12px;
    color: #6c757d;
}

.form-hint i {
    margin-right: 4px;
}

/* Current Email Display */
.current-email-display {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 16px;
}

.current-email-display i {
    font-size: 20px;
    color: #67c6b4;
}

.current-email-display span {
    font-size: 15px;
    color: #303e48;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-save {
    background: #67c6b4;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-save:hover {
    background: #5ab3a1;
}

.btn-save:disabled {
    background: #adb5bd;
    cursor: not-allowed;
}

/* Save Status Indicator */
.save-status {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #6c757d;
}

.save-status.saving {
    color: #6c757d;
}

.save-status.success {
    color: #28a745;
}

.save-status.error {
    color: #dc3545;
}

/* Settings Message */
.settings-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.settings-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.settings-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Notification Toggle */
.notification-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
}

.notification-option:last-child {
    border-bottom: none;
}

.notification-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 4px 0;
}

.notification-info p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #67c6b4;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Form Feedback Messages */
.form-message {
    display: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 12px;
}

.form-message.success {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #d1f2eb;
    color: #0d6c5d;
}

.form-message.error {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fdecea;
    color: #c0392b;
}

/* Settings Card (alternate class names) */
.settings-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
    overflow: hidden;
}

.settings-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
}

.settings-card-header i {
    font-size: 20px;
    color: #67c6b4;
}

.settings-card-title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #303e48;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.settings-card-title i {
    font-size: 18px;
    color: #67c6b4;
}

.settings-card-content {
    padding: 24px;
}

/* Checkbox styling for settings */
.checkbox-group {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
}

.checkbox-group:last-of-type {
    margin-bottom: 0;
}

.settings-card .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 0;
    background: transparent;
}

.settings-card .checkbox-label:hover {
    background: transparent;
}

.settings-card .checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #67c6b4;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkbox-text strong {
    font-size: 15px;
    font-weight: 600;
    color: #303e48;
}

.checkbox-description {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
}

/* Settings Mobile Responsive */
@media (max-width: 768px) {
    .settings-page-header h1 {
        font-size: 24px;
    }

    .settings-section-header,
    .settings-card-header {
        padding: 16px 20px;
    }

    .settings-section-body,
    .settings-card-content {
        padding: 20px;
    }

    .settings-card-title {
        font-size: 16px;
    }

    .notification-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .checkbox-group {
        padding: 14px;
    }

    .checkbox-text strong {
        font-size: 14px;
    }

    .checkbox-description {
        font-size: 12px;
    }

    .form-actions {
        flex-direction: column;
    }

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

/* ==========================================================================
   COMING SOON PAGE STYLES
   ========================================================================== */

.coming-soon-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

/* Header with page title */
.coming-soon-header {
    text-align: center;
    margin-bottom: 24px;
}

.coming-soon-header .page-title {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #303e48;
    margin: 0;
}

/* Card container */
.coming-soon-card {
    text-align: center;
    max-width: 480px;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.coming-soon-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 12px 0;
}

.coming-soon-text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Legacy class support */
.coming-soon-content {
    text-align: center;
    max-width: 480px;
    padding: 40px;
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #67c6b4 0%, #5ab3a1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px auto;
    box-shadow: 0 8px 32px rgba(103, 198, 180, 0.25);
}

.coming-soon-icon i {
    font-size: 44px;
    color: #fff;
}

.coming-soon-content h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 16px 0;
}

.coming-soon-content p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.coming-soon-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.coming-soon-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.coming-soon-feature i {
    font-size: 18px;
    color: #67c6b4;
}

.coming-soon-feature span {
    font-size: 14px;
    color: #495057;
}

.coming-soon-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #67c6b4;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.coming-soon-cta:hover {
    background: #5ab3a1;
    color: #fff;
}

/* Coming Soon Mobile Responsive */
@media (max-width: 768px) {
    .coming-soon-header .page-title {
        font-size: 24px;
    }

    .coming-soon-card {
        padding: 24px;
        margin: 0 16px;
    }

    .coming-soon-title {
        font-size: 20px;
    }

    .coming-soon-text {
        font-size: 14px;
    }

    .coming-soon-content {
        padding: 24px;
    }

    .coming-soon-icon {
        width: 80px;
        height: 80px;
    }

    .coming-soon-icon i {
        font-size: 36px;
    }

    .coming-soon-content h1 {
        font-size: 26px;
    }

    .coming-soon-content p {
        font-size: 15px;
    }
}

/* ==========================================================================
   MY JOBS PAGE STYLES (Redesigned)
   ========================================================================== */

.myjobs-page {
    max-width: 900px;
}

/* Page Header */
.myjobs-header {
    margin-bottom: 32px;
}

.myjobs-header .page-title {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 8px 0;
}

.myjobs-header .page-subtitle {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

/* Section Cards */
.myjobs-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
    overflow: hidden;
}

/* Section Headers */
.myjobs-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #fafbfc;
    border-bottom: 1px solid #e9ecef;
}

.section-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-group i {
    font-size: 20px;
    color: #67c6b4;
}

.section-title-group h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #303e48;
    margin: 0;
}

.section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: #67c6b4;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
}

/* Action Needed Section - Special Styling */
.action-needed-section {
    border: 2px solid #f0ad4e;
}

.action-needed-header {
    background: #fffbf0;
}

.action-needed-header .section-title-group i {
    color: #f0ad4e;
}

.action-needed-header .section-count,
.action-count {
    background: #f0ad4e;
}

/* Upcoming Section */
.upcoming-section .section-title-group i {
    color: #67c6b4;
}

/* Completed Section */
.completed-section .section-title-group i {
    color: #6c757d;
}

.completed-section .section-count,
.completed-count {
    background: #6c757d;
}

/* Collapsible Header */
.collapsible-header {
    cursor: pointer;
    transition: background 0.2s ease;
}

.collapsible-header:hover {
    background: #f0f2f4;
}

.collapse-toggle {
    color: #6c757d;
    font-size: 14px;
    padding: 4px;
}

.collapse-toggle i {
    transition: transform 0.2s ease;
}

/* Section Body */
.myjobs-section-body {
    padding: 0;
}

/* Job Cards */
.myjob-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.15s ease;
}

.myjob-card:last-child {
    border-bottom: none;
}

.myjob-card:hover {
    background-color: #f8f9fa;
}

.myjob-card-main {
    flex: 1;
    min-width: 0;
}

/* Card Header */
.myjob-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.myjob-event-name {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #303e48;
    margin: 0;
}

/* Status Badges */
.myjob-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.myjob-badge.badge-invited {
    background: #fff3cd;
    color: #856404;
}

.myjob-badge.badge-confirmed {
    background: #d4edda;
    color: #155724;
}

.myjob-badge.badge-recap {
    background: #cce5ff;
    color: #004085;
}

.myjob-badge.badge-completed {
    background: #e9ecef;
    color: #495057;
}

.myjob-badge.badge-default {
    background: #f8f9fa;
    color: #6c757d;
}

/* Job Details Grid */
.myjob-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.myjob-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #495057;
}

.myjob-detail i {
    color: #adb5bd;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Deadline/Countdown */
.myjob-deadline,
.myjob-countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.myjob-deadline {
    background: #fff3cd;
    color: #856404;
}

.myjob-deadline i {
    color: #f0ad4e;
}

.myjob-countdown {
    background: #e8f7f5;
    color: #0d6c5d;
}

.myjob-countdown i {
    color: #67c6b4;
}

/* Card Actions */
.myjob-card-actions {
    flex-shrink: 0;
    margin-left: 24px;
}

.myjob-card-actions .btn-primary,
.myjob-card-actions .btn-secondary {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.myjob-card-actions .btn-primary {
    background: #67c6b4;
    color: #fff;
    border: none;
}

.myjob-card-actions .btn-primary:hover {
    background: #5ab3a1;
}

.myjob-card-actions .btn-secondary {
    background: transparent;
    color: #303e48;
    border: 2px solid #303e48;
}

.myjob-card-actions .btn-secondary:hover {
    background: #303e48;
    color: #fff;
}

/* Empty State */
.myjobs-empty-state {
    text-align: center;
    padding: 48px 24px;
}

.myjobs-empty-state .empty-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #67c6b4 0%, #5ab3a1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.myjobs-empty-state .empty-icon i {
    font-size: 32px;
    color: #fff;
}

.myjobs-empty-state h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 8px 0;
}

.myjobs-empty-state p {
    font-size: 15px;
    color: #6c757d;
    margin: 0 0 24px 0;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.myjobs-empty-state .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #67c6b4;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.myjobs-empty-state .btn-primary:hover {
    background: #5ab3a1;
}

/* Compact Empty State */
.myjobs-empty-state.compact {
    padding: 24px;
}

.myjobs-empty-state.compact p {
    margin-bottom: 0;
    max-width: none;
}

/* Earnings Link Row */
.earnings-link-row {
    padding: 16px 24px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.earnings-link-row a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #67c6b4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.earnings-link-row a:hover {
    color: #5ab3a1;
    text-decoration: underline;
}

.earnings-link-row a i {
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .myjobs-header .page-title {
        font-size: 24px;
    }

    .myjobs-section-header {
        padding: 16px 20px;
    }

    .section-title-group h2 {
        font-size: 16px;
    }

    .myjob-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
    }

    .myjob-card-main {
        width: 100%;
    }

    .myjob-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .myjob-event-name {
        font-size: 16px;
    }

    .myjob-details {
        flex-direction: column;
        gap: 8px;
    }

    .myjob-card-actions {
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
    }

    .myjob-card-actions .btn-primary,
    .myjob-card-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .myjobs-empty-state {
        padding: 32px 20px;
    }

    .myjobs-empty-state .empty-icon {
        width: 60px;
        height: 60px;
    }

    .myjobs-empty-state .empty-icon i {
        font-size: 26px;
    }
}

/* ==========================================================================
   FIND WORK PAGE STYLES
   ========================================================================== */

/* Page container */
.findwork-page {
    padding: 0;
}

/* Page header */
.findwork-header {
    margin-bottom: 24px;
}

.findwork-header .page-title {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.findwork-header .page-title i {
    color: #67c6b4;
    font-size: 24px;
}

.findwork-header .page-subtitle {
    color: #6b7b8a;
    font-size: 15px;
    margin: 0;
}

/* Main card */
.findwork-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Controls bar */
.findwork-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #e8ecef;
    background: #fafbfc;
    gap: 16px;
    flex-wrap: wrap;
}

/* City select */
.findwork-city-select {
    display: flex;
    align-items: center;
    gap: 10px;
}

.findwork-city-select label {
    color: #67c6b4;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.findwork-city-select .city-select {
    padding: 8px 32px 8px 12px;
    border: 1px solid #d1d9de;
    border-radius: 6px;
    font-size: 14px;
    color: #303e48;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7b8a' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-size: 10px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    min-width: 180px;
}

.findwork-city-select .city-select:focus {
    outline: none;
    border-color: #67c6b4;
    box-shadow: 0 0 0 2px rgba(103, 198, 180, 0.15);
}

/* Filter tabs */
.findwork-filter-tabs {
    display: flex;
    gap: 8px;
}

.findwork-filter-tabs .filter-tab {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7b8a;
    text-decoration: none;
    background: #fff;
    border: 1px solid #d1d9de;
    transition: all 0.2s ease;
}

.findwork-filter-tabs .filter-tab:hover {
    color: #303e48;
    border-color: #303e48;
}

.findwork-filter-tabs .filter-tab.active {
    background: #67c6b4;
    color: #fff;
    border-color: #67c6b4;
}

/* Results header */
.findwork-results-header {
    padding: 12px 24px;
    border-bottom: 1px solid #e8ecef;
}

.findwork-results-header .results-count {
    font-size: 13px;
    color: #6b7b8a;
    font-weight: 500;
}

/* Event list */
.findwork-event-list {
    /* Container for event rows */
}

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

.findwork-empty-state .empty-icon {
    width: 72px;
    height: 72px;
    background: #f0f4f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.findwork-empty-state .empty-icon i {
    font-size: 30px;
    color: #9ba8b3;
}

.findwork-empty-state h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 8px 0;
}

.findwork-empty-state p {
    color: #6b7b8a;
    font-size: 14px;
    margin: 0;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* Event row */
.findwork-event-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #e8ecef;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
}

.findwork-event-row:last-child {
    border-bottom: none;
}

.findwork-event-row:hover {
    background: #f8fafb;
}

.findwork-event-row.event-closed {
    opacity: 0.6;
}

.findwork-event-row.event-applied {
    background: rgba(103, 198, 180, 0.04);
}

.findwork-event-row.event-applied:hover {
    background: rgba(103, 198, 180, 0.08);
}

/* Event row main (left side) */
.event-row-main {
    flex: 1;
    min-width: 0;
}

.event-row-name {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-row-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.event-detail {
    font-size: 13px;
    color: #6b7b8a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-detail i {
    font-size: 12px;
    color: #9ba8b3;
}

.event-countdown {
    font-size: 12px;
    font-weight: 600;
    color: #e88b4d;
    background: rgba(232, 139, 77, 0.1);
    padding: 3px 10px;
    border-radius: 10px;
}

/* Event row action (right side) */
.event-row-action {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
    flex-shrink: 0;
}

.event-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.event-badge.badge-applied {
    background: #e8f6f3;
    color: #67c6b4;
}

.event-badge.badge-applied i {
    font-size: 10px;
}

.event-badge.badge-open {
    background: #67c6b4;
    color: #fff;
}

.event-badge.badge-closed {
    background: #e8ecef;
    color: #6b7b8a;
}

.event-row-arrow {
    color: #c5cdd3;
    font-size: 14px;
    transition: transform 0.15s ease;
}

.findwork-event-row:hover .event-row-arrow {
    transform: translateX(3px);
    color: #67c6b4;
}

/* ==========================================================================
   FIND WORK PAGE - RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 768px) {
    .findwork-header .page-title {
        font-size: 24px;
    }

    .findwork-header .page-title i {
        font-size: 20px;
    }

    .findwork-controls {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px;
    }

    .findwork-city-select {
        width: 100%;
    }

    .findwork-city-select .city-select {
        flex: 1;
        width: 100%;
    }

    .findwork-filter-tabs {
        overflow-x: auto;
        padding-bottom: 4px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .findwork-filter-tabs .filter-tab {
        flex-shrink: 0;
        padding: 8px 14px;
    }

    .findwork-results-header {
        padding: 12px 20px;
    }

    .findwork-event-row {
        padding: 14px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .event-row-main {
        width: 100%;
    }

    .event-row-name {
        white-space: normal;
        font-size: 15px;
    }

    .event-row-details {
        gap: 12px;
    }

    .event-row-action {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
    }

    .findwork-empty-state {
        padding: 40px 20px;
    }

    .findwork-empty-state .empty-icon {
        width: 60px;
        height: 60px;
    }

    .findwork-empty-state .empty-icon i {
        font-size: 26px;
    }
}

/* ==========================================================================
   CLIENT BOOKING FLOW STYLES
   ========================================================================== */

.booking-flow-page {
    font-family: 'Lato', sans-serif;
    max-width: 900px;
    margin: 0 auto;
}

/* Progress Bar */
.booking-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.progress-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    background: #e0e0e0;
    color: #999;
    transition: all 0.2s ease;
}

.progress-step.active .progress-circle {
    background: #67c6b4;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(103, 198, 180, 0.2);
}

.progress-step.completed .progress-circle {
    background: #67c6b4;
    color: #fff;
}

.progress-label {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-step.active .progress-label {
    color: #67c6b4;
}

.progress-step.completed .progress-label {
    color: #67c6b4;
}

.progress-line {
    width: 60px;
    height: 3px;
    background: #e0e0e0;
    margin: 0 8px;
    margin-bottom: 20px;
}

.progress-line.completed {
    background: #67c6b4;
}

/* Booking Card */
.booking-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 32px;
    margin-bottom: 24px;
}

.booking-title {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #303e48;
    text-align: center;
    margin: 0 0 8px 0;
}

.booking-subtitle {
    font-size: 15px;
    color: #6c757d;
    text-align: center;
    margin: 0 0 24px 0;
}

/* Event Summary */
.event-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
    text-align: center;
}

.event-summary-name {
    font-weight: 700;
    font-size: 17px;
    color: #303e48;
    margin-bottom: 4px;
}

.event-summary-details {
    font-size: 14px;
    color: #6c757d;
}

/* Selection Summary */
.selection-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f7fa;
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 14px;
}

.selected-count {
    color: #67c6b4;
}

.estimated-cost {
    color: #303e48;
}

/* Model Grid */
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.model-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.model-card:hover {
    border-color: #67c6b4;
    box-shadow: 0 4px 12px rgba(103, 198, 180, 0.15);
}

.model-card.selected {
    border-color: #67c6b4;
    background: #f0faf8;
}

.model-card.preinvite {
    border-color: #67c6b4;
    background: #f0faf8;
}

.model-select {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.model-checkbox {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #67c6b4;
}

.model-image {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f0f0f0;
}

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

.instant-book-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: #ffd700;
    color: #333;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.model-info {
    margin-bottom: 12px;
}

.model-name {
    font-size: 17px;
    font-weight: 700;
    color: #303e48;
    margin-bottom: 4px;
}

.model-headline {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 8px;
    line-height: 1.4;
}

.model-stats {
    font-size: 13px;
    color: #999;
}

.model-pricing {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-top: 1px solid #e9ecef;
    margin-bottom: 12px;
}

.model-rate {
    font-size: 18px;
    font-weight: 700;
    color: #67c6b4;
}

.model-rate span {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.model-total {
    font-size: 13px;
    color: #6c757d;
}

.view-profile-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #495057;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-profile-btn:hover {
    background: #f8f9fa;
    border-color: #67c6b4;
    color: #67c6b4;
}

/* No Models Message */
.no-models-message {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

/* Role Options (Step 2) */
.role-option {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.role-option:hover {
    border-color: #67c6b4;
}

.role-option.selected {
    border-color: #67c6b4;
    background: #f0faf8;
}

.role-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.role-radio {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: #67c6b4;
}

.role-content {
    flex: 1;
}

.booking-flow-page .role-name {
    font-weight: 700;
    font-size: 16px;
    color: #303e48;
    margin-bottom: 6px;
}

.role-description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 12px;
}

.role-price {
    display: inline-block;
    background: #e8f5f3;
    color: #2c7a6f;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.role-price.custom {
    background: #fff3e0;
    color: #f57c00;
}

/* Booking Actions */
.booking-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
}

.booking-btn {
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.booking-btn-back {
    background: transparent;
    color: #303e48;
    border: 2px solid #303e48;
}

.booking-btn-back:hover {
    background: #303e48;
    color: #fff;
}

.booking-btn-next {
    background: #67c6b4;
    color: #fff;
}

.booking-btn-next:hover {
    background: #5ab3a1;
    color: #fff;
}

.booking-btn-next:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.booking-error {
    color: #dc3545;
    text-align: center;
    margin-bottom: 16px;
}

/* Booking Flow Mobile Responsive */
@media (max-width: 768px) {
    .booking-card {
        padding: 20px;
    }

    .booking-title {
        font-size: 22px;
    }

    .booking-progress {
        gap: 0;
    }

    .progress-step {
        flex: 0 0 auto;
    }

    .progress-label {
        display: none;
    }

    .progress-line {
        width: 30px;
        margin-bottom: 0;
    }

    .selection-summary {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .model-grid {
        grid-template-columns: 1fr;
    }

    .booking-actions {
        flex-direction: column;
    }

    .booking-btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   PROFILE MODAL
   ============================================ */

/* ============================================
   COMPREHENSIVE PROFILE MODAL (Step 3)
   ============================================ */

.profile-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.profile-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.profile-modal-panel {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.profile-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    color: #303e48;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.profile-modal-close:hover {
    background: #fff;
    transform: scale(1.1);
}

.profile-modal-body {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 100px;
}

/* Loading State */
.profile-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #6b7b8a;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e8ecef;
    border-top-color: #67c6b4;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 16px;
}

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

/* Hero Section */
.profile-hero {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafb 0%, #f0f4f7 100%);
    border-bottom: 1px solid #e8ecef;
}

.profile-hero-image {
    position: relative;
    width: 160px;
    flex-shrink: 0;
}

.profile-hero-image img {
    width: 160px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.instant-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: #67c6b4;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.profile-hero-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-name {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 8px 0;
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7b8a;
    font-size: 14px;
    margin: 0 0 12px 0;
}

.profile-location svg {
    color: #67c6b4;
    flex-shrink: 0;
}

.profile-quick-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.quick-stat {
    font-size: 13px;
    color: #6b7b8a;
}

.quick-stat strong {
    color: #303e48;
}

.profile-rate-display {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rate-amount {
    font-size: 24px;
    font-weight: 700;
    color: #67c6b4;
}

.rate-estimate {
    font-size: 13px;
    color: #6b7b8a;
}

/* Profile Sections */
.profile-section {
    padding: 20px 24px;
    border-bottom: 1px solid #e8ecef;
}

.profile-section h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #303e48;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}

.profile-headline {
    color: #4a5a68;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Details Grid */
.profile-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 12px;
    color: #6b7b8a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #303e48;
}

/* Tags Container */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lang-tag, .skill-tag, .industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f4f7;
    color: #4a5a68;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
}

.lang-primary {
    background: #67c6b4;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.skill-tag {
    background: #e8f5f2;
    color: #2a8a7a;
}

.industry-tag {
    background: #f5f0e8;
    color: #8a6a2a;
}

/* Roles List */
.roles-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.role-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f5f7fa;
    border-radius: 8px;
    font-size: 14px;
    color: #303e48;
}

.role-exp {
    font-size: 12px;
    color: #67c6b4;
    font-weight: 600;
}

/* Photo Gallery */
.profile-gallery {
    padding: 20px 24px;
    border-bottom: 1px solid #e8ecef;
}

.profile-gallery h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #303e48;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}

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

.gallery-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item.active {
    border-color: #67c6b4;
}

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

/* Video Section */
.profile-video {
    padding: 20px 24px;
    border-bottom: 1px solid #e8ecef;
}

.profile-video h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #303e48;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-container.video-extra {
    margin-top: 12px;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-container video {
    object-fit: contain;
}

/* Sticky Footer */
.profile-modal-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #fff;
    border-top: 1px solid #e8ecef;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
}

.footer-pricing {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-rate {
    font-size: 13px;
    color: #6b7b8a;
}

.footer-total {
    font-size: 18px;
    font-weight: 700;
    color: #303e48;
}

.btn-select-talent {
    background: #67c6b4;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-select-talent:hover {
    background: #5ab3a2;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(103, 198, 180, 0.3);
}

/* Selected state for button */
.btn-select-talent.selected {
    background: #48a892;
    cursor: pointer;
}

.btn-select-talent.selected:hover {
    background: #3d9480;
}

/* Hero image expand icon */
.hero-expand-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-hero-image:hover .hero-expand-icon {
    opacity: 1;
}

/* Gallery expand icon */
.gallery-item {
    position: relative;
}

.gallery-expand-icon {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-item:hover .gallery-expand-icon {
    opacity: 1;
}

/* Photo Lightbox */
.photo-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 16px;
    border-radius: 20px;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .lightbox-counter {
        bottom: -35px;
        font-size: 12px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .profile-modal {
        justify-content: center;
        align-items: flex-end;
    }

    .profile-modal-panel {
        max-width: 100%;
        height: 95vh;
        border-radius: 20px 20px 0 0;
        animation: slideUp 0.3s ease;
    }

    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }

    .profile-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .profile-hero-image {
        width: 140px;
    }

    .profile-hero-image img {
        width: 140px;
        height: 180px;
    }

    .profile-name {
        font-size: 22px;
    }

    .profile-quick-stats {
        justify-content: center;
    }

    .profile-rate-display {
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .profile-modal-footer {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .footer-pricing {
        align-items: center;
    }

    .btn-select-talent {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .profile-section {
        padding: 16px;
    }

    .profile-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .tags-container {
        gap: 6px;
    }

    .lang-tag, .skill-tag, .industry-tag {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* ============================================
   ATTIRE SELECTION (Step 4)
   ============================================ */

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

.attire-option {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
}

.attire-option:hover {
    border-color: #67c6b4;
    box-shadow: 0 4px 12px rgba(103, 198, 180, 0.15);
}

.attire-option.selected {
    border-color: #67c6b4;
    background: #f0faf8;
}

.attire-option.selected .attire-select-indicator {
    opacity: 1;
}

.attire-icon {
    color: #67c6b4;
    margin-bottom: 12px;
}

.attire-name {
    font-size: 18px;
    font-weight: 700;
    color: #303e48;
    margin-bottom: 8px;
}

.attire-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.attire-select-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #67c6b4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.attire-select-indicator .checkmark {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.other-attire-input {
    background: #f5f7fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.other-attire-input label {
    display: block;
    font-weight: 600;
    color: #303e48;
    margin-bottom: 10px;
}

.other-attire-input textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
    box-sizing: border-box;
}

.other-attire-input textarea:focus {
    outline: none;
    border-color: #67c6b4;
    box-shadow: 0 0 0 3px rgba(103, 198, 180, 0.15);
}

.char-counter {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .attire-grid {
        grid-template-columns: 1fr;
    }

    .attire-option {
        padding: 20px;
    }
}

/* ==========================================================================
   STEP 5 - REVIEW PAGE STYLES
   ========================================================================== */

/* Review Page - Two-column layout container */
.review-page .review-container {
    display: grid !important;
    grid-template-columns: 1fr 380px !important;
    gap: 32px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 16px !important;
}

/* Left column - Booking details */
.review-page .review-left-column {
    min-width: 0;
}

.review-page .review-page-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #303e48 !important;
    margin: 0 0 8px 0 !important;
}

.review-page .review-page-subtitle {
    font-size: 16px !important;
    color: #666 !important;
    margin: 0 0 24px 0 !important;
}

/* Section cards */
.review-page .review-section {
    background: #fff !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-bottom: 16px !important;
    border: 1px solid #e9ecef !important;
}

.review-page .review-section-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 12px !important;
}

.review-page .review-section-header h3 {
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #6c757d !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.review-page .edit-link {
    color: #67c6b4 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.review-page .edit-link:hover {
    color: #5ab3a2 !important;
    text-decoration: underline !important;
}

.review-page .review-section-content {
    color: #303e48 !important;
}

/* Event details */
.review-page .review-event-name {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #303e48 !important;
    margin-bottom: 8px !important;
}

.review-page .review-event-location,
.review-page .review-event-dates {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    color: #666 !important;
    margin-bottom: 4px !important;
}

.review-page .review-event-location svg,
.review-page .review-event-dates svg,
.review-page .review-event-times svg {
    flex-shrink: 0 !important;
    color: #999 !important;
}

.review-page .review-event-times {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    font-size: 14px !important;
    color: #666 !important;
    margin-bottom: 4px !important;
}

.review-page .review-event-times svg {
    margin-top: 2px !important;
}

/* Role and Attire */
.review-page .review-role-name,
.review-page .review-attire-name {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #303e48 !important;
}

/* Attire inline dropdown selector */
.review-page .review-attire-selector {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.review-page .review-attire-dropdown {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #303e48 !important;
    background: #fff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 6px !important;
    padding: 10px 36px 10px 14px !important;
    min-width: 200px !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.review-page .review-attire-dropdown:hover {
    border-color: #67c6b4 !important;
}

.review-page .review-attire-dropdown:focus {
    outline: none !important;
    border-color: #67c6b4 !important;
    box-shadow: 0 0 0 3px rgba(103, 198, 180, 0.15) !important;
}

/* Attire update status indicator */
.review-page .attire-update-status {
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: opacity 0.2s ease !important;
}

.review-page .attire-update-status.saving {
    color: #6c757d !important;
}

.review-page .attire-update-status.success {
    color: #28a745 !important;
}

.review-page .attire-update-status.error {
    color: #dc3545 !important;
}

/* Talent section */
.review-page .review-talent-section {
    padding: 20px !important;
}

.review-page .review-talent-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

/* CRITICAL: Talent card with horizontal layout */
.review-page .review-talent-card {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 16px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    border: 1px solid #e9ecef !important;
    margin-bottom: 12px !important;
}

.review-page .review-talent-card:hover {
    border-color: #67c6b4 !important;
}

/* CRITICAL: Image must be small thumbnail */
.review-page .review-talent-card img,
.review-page .review-talent-card .review-talent-photo,
.review-page .review-talent-photo {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
}

.review-page .review-talent-info {
    flex: 1 !important;
    min-width: 0 !important;
}

.review-page .review-talent-name {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #303e48 !important;
    margin-bottom: 4px !important;
}

.review-page .review-talent-location {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 13px !important;
    color: #666 !important;
    margin-bottom: 4px !important;
}

.review-page .review-talent-location svg {
    flex-shrink: 0 !important;
    color: #999 !important;
}

.review-page .review-talent-rate {
    font-size: 14px !important;
    color: #67c6b4 !important;
    font-weight: 600 !important;
}

/* Talent cost display */
.review-page .review-talent-cost {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
}

.review-page .cost-equals {
    font-size: 16px !important;
    color: #999 !important;
}

.review-page .cost-amount {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #303e48 !important;
}

/* Remove talent button */
.review-page .remove-talent-btn {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    width: 24px !important;
    height: 24px !important;
    border: none !important;
    background: rgba(0, 0, 0, 0.1) !important;
    color: #666 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 18px !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.2s, background 0.2s, color 0.2s !important;
    padding: 0 !important;
}

.review-page .review-talent-card {
    position: relative !important;
}

.review-page .review-talent-card:hover .remove-talent-btn {
    opacity: 1 !important;
}

.review-page .remove-talent-btn:hover {
    background: #dc3545 !important;
    color: #fff !important;
}

/* No talent state */
.review-page .review-no-talent {
    text-align: center !important;
    padding: 32px !important;
    background: #f9fafb !important;
    border-radius: 10px !important;
    border: 2px dashed #e5e7eb !important;
}

.review-page .review-no-talent p {
    color: #666 !important;
    margin: 0 0 16px 0 !important;
}

.review-page .btn-select-talent-link {
    display: inline-block !important;
    padding: 12px 24px !important;
    background: #67c6b4 !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
}

.review-page .btn-select-talent-link:hover {
    background: #5ab3a2 !important;
}

/* Right column - Order Summary */
.review-page .review-right-column {
    position: sticky !important;
    top: 100px !important;
    height: fit-content !important;
}

.review-page .order-summary-card {
    background: #f8f9fa !important;
    border-radius: 12px !important;
    padding: 24px !important;
    border: 1px solid #e9ecef !important;
}

.review-page .order-summary-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #303e48 !important;
    margin: 0 0 16px 0 !important;
    padding-bottom: 16px !important;
    border-bottom: 1px solid #e9ecef !important;
}

/* Order line items */
.review-page .order-line-items {
    margin-bottom: 16px !important;
}

.review-page .order-line-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 8px 0 !important;
    font-size: 14px !important;
    color: #303e48 !important;
    border-bottom: 1px solid #e9ecef !important;
}

.review-page .order-line-item:last-child {
    border-bottom: none !important;
}

.review-page .line-item-desc {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.review-page .item-name {
    font-weight: 500 !important;
    color: #303e48 !important;
}

.review-page .item-detail {
    font-size: 12px !important;
    color: #999 !important;
}

.review-page .line-item-amount {
    font-weight: 600 !important;
    color: #303e48 !important;
    white-space: nowrap !important;
}

.review-page .order-summary-divider {
    height: 1px !important;
    background: #e9ecef !important;
    margin: 8px 0 !important;
}

/* Subtotals */
.review-page .order-subtotals {
    margin-bottom: 16px !important;
}

.review-page .order-line-item.subtotal-line {
    border-bottom: none !important;
    padding: 6px 0 !important;
}

.review-page .subtotal-label {
    color: #666 !important;
}

.review-page .subtotal-amount {
    color: #303e48 !important;
    font-weight: 500 !important;
}

.review-page .line-detail {
    font-size: 11px !important;
    color: #999 !important;
}

/* Total row */
.review-page .order-total-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 0 0 !important;
    border-top: 2px solid #303e48 !important;
    margin-top: 8px !important;
}

.review-page .total-label {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #303e48 !important;
}

.review-page .total-amount {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #67c6b4 !important;
}

/* Terms section */
.review-page .review-terms-section {
    margin-top: 20px !important;
}

.review-page .review-terms-checkbox {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    cursor: pointer !important;
    user-select: none !important;
    padding: 12px !important;
    background: #fff !important;
    border-radius: 8px !important;
    border: 1px solid #e9ecef !important;
}

.review-page .review-terms-checkbox:hover {
    border-color: #67c6b4 !important;
}

.review-page .review-terms-checkbox input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    cursor: pointer !important;
    height: 0 !important;
    width: 0 !important;
}

.review-page .custom-checkbox {
    width: 20px !important;
    height: 20px !important;
    background: #fff !important;
    border: 2px solid #d0d5dd !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.review-page .review-terms-checkbox input:checked + .custom-checkbox {
    background: #67c6b4 !important;
    border-color: #67c6b4 !important;
}

.review-page .review-terms-checkbox input:checked + .custom-checkbox::after {
    content: "" !important;
    width: 6px !important;
    height: 10px !important;
    border: solid white !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg) !important;
}

.review-page .terms-text {
    font-size: 13px !important;
    color: #666 !important;
    line-height: 1.5 !important;
}

.review-page .terms-text a {
    color: #67c6b4 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.review-page .terms-text a:hover {
    text-decoration: underline !important;
}

/* Submit button - STYLED */
.review-page .review-submit-btn {
    width: 100% !important;
    margin-top: 20px !important;
    padding: 16px 24px !important;
    background: #67c6b4 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: background 0.2s !important;
}

.review-page .review-submit-btn:hover:not(:disabled) {
    background: #5ab3a2 !important;
}

.review-page .review-submit-btn:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
}

.review-page .review-submit-btn.enabled {
    background: #67c6b4 !important;
}

.review-page .review-submit-btn.loading {
    pointer-events: none !important;
}

.review-page .review-submit-btn.loading svg {
    animation: review-spin 1s linear infinite !important;
}

.review-page .review-submit-btn.success {
    background: #22c55e !important;
}

@keyframes review-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Back link */
.review-page .review-back-link {
    display: block !important;
    text-align: center !important;
    margin-top: 16px !important;
    color: #666 !important;
    font-size: 14px !important;
    text-decoration: none !important;
}

.review-page .review-back-link:hover {
    color: #67c6b4 !important;
}

/* Error message */
.review-page .booking-error {
    display: none !important;
    padding: 12px 16px !important;
    background: #fef2f2 !important;
    border: 1px solid #fecaca !important;
    border-radius: 8px !important;
    color: #dc2626 !important;
    font-size: 14px !important;
    margin-bottom: 20px !important;
}

.review-page .booking-error.visible {
    display: block !important;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .review-page .review-container {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .review-page .review-right-column {
        position: static !important;
        order: -1 !important;
    }

    .review-page .review-page-title {
        font-size: 24px !important;
    }
}

@media (max-width: 600px) {
    .review-page .review-container {
        padding: 0 12px !important;
    }

    .review-page .review-talent-card {
        flex-wrap: wrap !important;
    }

    .review-page .review-talent-cost {
        width: 100% !important;
        justify-content: flex-end !important;
        margin-top: 12px !important;
        padding-top: 12px !important;
        border-top: 1px solid #e9ecef !important;
    }

    .review-page .order-summary-card {
        padding: 20px !important;
    }

    .review-page .total-amount {
        font-size: 20px !important;
    }
}

/* ==========================================================================
   EVENT SEARCH PAGE - REDESIGNED (Jan 2026)
   ========================================================================== */

.event-search-page {
    max-width: 1000px;
    margin: 0 auto;
}

/* Search Hero Section */
.event-search-hero {
    text-align: center;
    padding: 28px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin-bottom: 32px;
}

.event-search-hero h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 6px 0;
}

.event-search-hero .search-subtitle {
    font-size: 15px;
    color: #6c757d;
    margin: 0 0 20px 0;
}

/* Search Bar */
.search-bar-container {
    display: flex;
    max-width: 560px;
    margin: 0 auto 14px;
    gap: 12px;
}

.event-search-hero .search-input-wrapper {
    flex: 1;
    position: relative;
}

.event-search-hero .search-input-wrapper .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.event-search-hero #event-search-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.event-search-hero #event-search-input:focus {
    border-color: #67c6b4;
    outline: none;
    box-shadow: 0 0 0 3px rgba(103, 198, 180, 0.15);
}

.event-search-hero #event-search-input::placeholder {
    color: #9ca3af;
}

/* Create Custom Link */
.create-custom-link {
    color: #6c757d;
    font-size: 14px;
}

.create-custom-link a {
    color: #67c6b4;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.create-custom-link a:hover {
    color: #5ab3a1;
    text-decoration: underline;
}

/* Upcoming Events Section */
.event-search-page .upcoming-events-section {
    margin-bottom: 40px;
}

.event-search-page .upcoming-events-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 24px 0;
}

/* Events List - Vertical stack of horizontal cards */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Horizontal Event Card */
.event-card-horizontal {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.event-card-horizontal:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Image Section - Fixed width */
.event-card-horizontal .event-card-image {
    width: 200px;
    min-width: 200px;
    height: 140px;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: none;
}

/* Teal gradient only shows when no image */
.event-card-horizontal .event-card-image.no-image {
    background: linear-gradient(135deg, #67c6b4 0%, #4eb5a2 100%);
}

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

/* Placeholder shown when image fails to load */
.event-card-horizontal .event-card-image.no-image img {
    display: none;
}

.event-card-horizontal .event-card-image .event-placeholder {
    display: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 16px;
    line-height: 1.4;
}

.event-card-horizontal .event-card-image.no-image .event-placeholder {
    display: block;
}

/* Content Section - Flexible width */
.event-card-body {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-card-body .event-name {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.event-card-body .event-details {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.event-card-body .event-location,
.event-card-body .event-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

.event-card-body .event-location svg,
.event-card-body .event-date svg {
    flex-shrink: 0;
    color: #9ca3af;
}

/* Select Event Button */
.btn-select-event {
    align-self: flex-start;
    padding: 10px 20px;
    background: #67c6b4;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-select-event:hover {
    background: #5ab3a1;
}

/* Mobile Responsive - Stack cards vertically */
@media (max-width: 640px) {
    .event-card-horizontal {
        flex-direction: column;
    }

    .event-card-horizontal .event-card-image {
        width: 100%;
        height: 160px;
    }

    .event-card-body .event-details {
        flex-direction: column;
        gap: 8px;
    }

    .btn-select-event {
        width: 100%;
        text-align: center;
    }
}

/* Request Event Section */
.event-search-page .request-event-section {
    text-align: center;
    padding: 48px 32px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 40px;
}

.event-search-page .request-event-section h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 12px 0;
}

.event-search-page .request-event-section p {
    color: #6c757d;
    font-size: 15px;
    margin: 0 0 24px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.event-search-page .request-btn {
    display: inline-block;
    background: #67c6b4;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.event-search-page .request-btn:hover {
    background: #5ab3a1;
    color: #fff;
}

/* Event Confirmation Card */
.event-confirm-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 40px auto;
}

.confirm-title {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #67c6b4;
    margin: 0 0 32px 0;
}

.confirm-event-details {
    margin-bottom: 32px;
}

.confirm-event-name {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #303e48;
    margin-bottom: 16px;
}

.confirm-event-venue,
.confirm-event-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 8px;
}

.confirm-event-venue svg,
.confirm-event-date svg {
    color: #9ca3af;
}

.confirm-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.confirm-yes-btn {
    background: #67c6b4;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.confirm-yes-btn:hover {
    background: #5ab3a1;
}

.confirm-no-btn {
    background: #fff;
    color: #6c757d;
    border: 2px solid #dee2e6;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.confirm-no-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #495057;
}

/* jQuery UI Autocomplete Styling */
.event-search-page .ui-autocomplete,
.ui-autocomplete {
    max-height: 350px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1000;
}

.ui-menu-item {
    padding: 0;
}

.ui-menu-item .ui-menu-item-wrapper {
    padding: 14px 18px;
    font-size: 14px;
    color: #303e48;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.ui-menu-item:last-child .ui-menu-item-wrapper {
    border-bottom: none;
}

.ui-menu-item .ui-menu-item-wrapper:hover,
.ui-menu-item .ui-menu-item-wrapper.ui-state-active,
.ui-state-focus {
    background: #f0faf8 !important;
    color: #303e48 !important;
    border-color: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
    .event-search-hero {
        padding: 32px 20px;
    }

    .event-search-hero h1 {
        font-size: 26px;
    }

    .search-bar-container {
        flex-direction: column;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .event-card-image {
        height: 120px;
    }

    .event-confirm-card {
        padding: 32px 24px;
        margin: 20px auto;
    }

    .confirm-title {
        font-size: 22px;
    }

    .confirm-event-name {
        font-size: 20px;
    }

    .confirm-buttons {
        flex-direction: column;
    }

    .confirm-yes-btn,
    .confirm-no-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .event-search-hero h1 {
        font-size: 22px;
    }

    .event-search-hero .search-subtitle {
        font-size: 14px;
    }

    .event-search-page .event-card-content .event-name {
        font-size: 16px;
    }

    .event-search-page .request-event-section {
        padding: 32px 20px;
    }
}

/* ==========================================================================
   LOGIN PAGE STYLES
   Modern split-screen login design (Stripe/Linear/Notion inspired)
   ========================================================================== */

.login-page {
    display: flex;
    min-height: 100vh;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Left Panel - Hero Section */
.login-hero {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #303e48 0%, #1a252d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    overflow: hidden;
}

.login-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(103,198,180,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(103,198,180,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 1;
    pointer-events: none;
}

.login-hero-overlay {
    display: none; /* Reserved for future background image use */
}

.login-hero-content {
    position: relative;
    z-index: 1;
    max-width: 440px;
    color: #ffffff;
}

.login-hero-logo {
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.login-hero-tagline {
    font-size: 18px;
    font-weight: 500;
    color: #67c6b4;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.login-hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
}

.login-hero-stats {
    display: flex;
    gap: 32px;
}

.login-hero-stat {
    display: flex;
    flex-direction: column;
}

.login-hero-stat .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #67c6b4;
    line-height: 1.2;
}

.login-hero-stat .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Right Panel - Form Section */
.login-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 40px;
}

.login-form-container {
    width: 100%;
    max-width: 420px;
}

.login-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 48px 40px;
}

.login-title {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #303e48;
    margin: 0 0 8px 0;
    text-align: center;
}

.login-subtitle {
    font-size: 15px;
    color: #666666;
    text-align: center;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

/* Alert Messages */
.login-alert {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.login-alert-info {
    background: #e8f5f2;
    color: #1a5c4e;
    border: 1px solid #67c6b4;
}

.login-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form-group {
    display: flex;
    flex-direction: column;
}

.login-label {
    font-size: 14px;
    font-weight: 600;
    color: #303e48;
    margin-bottom: 8px;
}

.login-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    color: #303e48;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.login-input::placeholder {
    color: #9ca3af;
}

.login-input:focus {
    outline: none;
    border-color: #67c6b4;
    box-shadow: 0 0 0 3px rgba(103, 198, 180, 0.15);
}

/* Options Row (Remember Me + Forgot Password) */
.login-options {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.login-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #4b5563;
}

.login-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #67c6b4;
    cursor: pointer;
}

.login-forgot-link {
    font-size: 14px;
    color: #67c6b4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.login-forgot-link:hover {
    color: #4ba897;
    text-decoration: underline;
}

/* Submit Button */
.login-button {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #67c6b4;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: 8px;
}

.login-button:hover {
    background: #5ab3a1;
}

.login-button:active {
    transform: scale(0.99);
}

.login-button:disabled {
    background: #9dd5c9;
    cursor: not-allowed;
}

/* Footer Links */
.login-footer {
    margin-top: 32px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.login-footer p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.login-link {
    color: #67c6b4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.login-link:hover {
    color: #4ba897;
    text-decoration: underline;
}

/* ==========================================================================
   LOGIN PAGE - RESPONSIVE STYLES
   ========================================================================== */

/* Tablet and below - stack layout */
@media (max-width: 991px) {
    .login-page {
        flex-direction: column;
    }

    .login-hero {
        flex: none;
        min-height: auto;
        padding: 48px 32px;
    }

    .login-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .login-hero-description {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .login-hero-stats {
        justify-content: center;
        gap: 24px;
    }

    .login-hero-stat .stat-number {
        font-size: 24px;
    }

    .login-form-panel {
        flex: 1;
        padding: 32px 24px;
    }

    .login-card {
        padding: 32px 24px;
    }
}

/* Mobile - hide hero panel */
@media (max-width: 767px) {
    .login-hero {
        display: none;
    }

    .login-form-panel {
        min-height: 100vh;
        background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    }

    .login-card {
        box-shadow: none;
        background: transparent;
        padding: 24px 0;
    }

    /* Show a compact header on mobile */
    .login-card::before {
        content: '';
        display: block;
        width: 48px;
        height: 48px;
        background: #67c6b4;
        border-radius: 12px;
        margin: 0 auto 24px;
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"/></svg>');
        background-size: 24px 24px;
        background-position: center;
        background-repeat: no-repeat;
    }

    .login-title {
        font-size: 24px;
    }

    .login-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .login-forgot-link {
        align-self: flex-end;
        margin-top: -8px;
    }
}

/* Small mobile */
@media (max-width: 375px) {
    .login-form-panel {
        padding: 24px 16px;
    }

    .login-input {
        padding: 12px 14px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    .login-button {
        padding: 14px 20px;
    }
}

/* ==========================================================================
   ANONYMOUS USER NAVIGATION
   Booking Flow Restructure - Phase 1
   ========================================================================== */

.portal-nav-anonymous {
    justify-content: space-between;
}

.portal-nav-anonymous ul {
    width: 100%;
    justify-content: flex-start;
}

/* CTA button in anonymous nav (e.g., "Get a Quote") */
.portal-nav ul li a.nav-cta {
    background: #fff;
    color: #67c6b4;
    border-radius: 4px;
    margin: 6px 12px;
    padding: 8px 16px;
}

.portal-nav ul li a.nav-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #5ab3a1;
}

/* Push CTA to right side on desktop */
@media (min-width: 768px) {
    .portal-nav-anonymous ul li:last-child {
        margin-left: auto;
    }
}

/* Anonymous user info banner (optional - for Step 3) */
.anonymous-info-banner {
    background: #f0f9f7;
    border: 1px solid #d1ebe6;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.anonymous-info-banner svg {
    flex-shrink: 0;
    color: #67c6b4;
}

.anonymous-info-banner p {
    margin: 0;
    font-size: 14px;
    color: #1a5c4e;
}

.anonymous-info-banner a {
    color: #67c6b4;
    font-weight: 600;
    text-decoration: none;
}

.anonymous-info-banner a:hover {
    text-decoration: underline;
}

/* Anonymous topbar auth buttons */
.portal-topbar-auth {
    display: flex;
    align-items: center;
    gap: 16px;
}

.portal-topbar-link {
    color: #303e48;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.portal-topbar-link:hover {
    color: #67c6b4;
}

.portal-topbar-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #67c6b4;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.portal-topbar-btn:hover {
    background: #5ab3a1;
    color: #fff;
}

/* Anonymous sidebar CTA styling */
.portal-nav-cta {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px;
    margin: 8px;
}

.portal-nav-cta:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* Subtle link style - used during checkout to minimize distraction */
.portal-nav-subtle {
    font-size: 12px !important;
    opacity: 0.7;
    padding: 8px 16px !important;
}
.portal-nav-subtle:hover {
    opacity: 1;
}
.portal-nav-subtle .portal-nav-icon {
    width: 14px;
    height: 14px;
}
.portal-nav-subtle .portal-nav-label {
    font-size: 12px;
}

/* ==========================================================================
   CUSTOM QUOTE FORM
   Page: /client/?action=requestquote
   ========================================================================== */

.quote-form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 32px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.quote-form-title {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 8px 0;
    text-align: center;
}

.quote-form-event {
    font-size: 18px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 4px 0;
    text-align: center;
}

.quote-form-location {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px 0;
    text-align: center;
}

.quote-form-intro {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 24px 0;
    text-align: center;
    line-height: 1.5;
}

/* Form layout */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.quote-form .form-group {
    margin-bottom: 20px;
}

.quote-form .form-row {
    display: flex;
    flex-direction: column;
}

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

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

/* Labels */
.quote-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #303e48;
    margin-bottom: 6px;
}

.quote-form .required {
    color: #dc3545;
}

/* Inputs and textarea */
.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #fff;
    color: #303e48;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.quote-form input[type="text"]:focus,
.quote-form input[type="email"]:focus,
.quote-form input[type="tel"]:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #67c6b4;
    box-shadow: 0 0 0 3px rgba(103, 198, 180, 0.15);
}

.quote-form textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

/* Form actions */
.quote-form .form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.quote-form .btn-primary {
    flex: 1;
    padding: 14px 24px;
    background: #67c6b4;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}

.quote-form .btn-primary:hover {
    background: #5ab3a1;
}

.quote-form .btn-primary:disabled {
    background: #a0d4c9;
    cursor: not-allowed;
}

.quote-form .btn-secondary {
    padding: 14px 24px;
    background: transparent;
    color: #67c6b4;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #67c6b4;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    text-align: center;
}

.quote-form .btn-secondary:hover {
    background: #67c6b4;
    color: #fff;
}

/* Phone CTA */
.quote-form-phone-cta {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.quote-form-phone-cta p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 8px 0;
}

.quote-form-phone-cta a {
    font-size: 24px;
    font-weight: 700;
    color: #67c6b4;
    text-decoration: none;
}

.quote-form-phone-cta a:hover {
    color: #5ab3a1;
}

/* Success and error states */
.quote-form-success {
    display: none;
    text-align: center;
    padding: 24px;
}

.quote-form-success.show {
    display: block;
}

.quote-form-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: #67c6b4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-form-success-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.quote-form-success h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #303e48;
    margin: 0 0 8px 0;
}

.quote-form-success p {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.quote-form-success .btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: #67c6b4;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.quote-form-success .btn-primary:hover {
    background: #5ab3a1;
}

.quote-form-error {
    display: none;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #dc2626;
    font-size: 14px;
}

.quote-form-error.show {
    display: block;
}

/* ==========================================================================
   AUTH FORMS (Login/Registration)
   Pages: /client/?action=login, login prompts during booking flow
   ========================================================================== */

/* Wrapper - full page centered layout */
.auth-wrapper {
    min-height: 100vh;
    background: #ecedf1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Container card */
.auth-container {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 48px;
}

/* Logo */
.auth-logo {
    text-align: center;
    margin-bottom: 24px;
}

.auth-logo-text {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #303e48;
    margin: 0;
    letter-spacing: -0.5px;
}

.auth-logo-tagline {
    font-size: 13px;
    color: #67c6b4;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Title and subtitle */
.auth-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #303e48;
    text-align: center;
    margin: 0 0 8px 0;
}

.auth-subtitle {
    font-size: 15px;
    color: #666666;
    text-align: center;
    margin: 0 0 24px 0;
}

/* Alert messages */
.auth-alert {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}

.auth-alert.show,
.auth-alert:not(:empty) {
    display: block;
}

.auth-alert-info {
    background: #e8f5f2;
    color: #1a5c4e;
    border: 1px solid #67c6b4;
    display: block;
}

.auth-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.auth-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

/* Tabs */
.auth-tabs {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 24px;
}

.auth-tab {
    flex: 1;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #666666;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Lato', sans-serif;
}

.auth-tab:hover {
    color: #303e48;
}

.auth-tab.active {
    color: #67c6b4;
    border-bottom-color: #67c6b4;
}

/* Panels */
.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
}

/* Form styling */
.auth-form .form-group {
    margin-bottom: 16px;
}

.auth-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #303e48;
    margin-bottom: 6px;
}

.auth-form .required {
    color: #dc3545;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    color: #303e48;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: 'Lato', sans-serif;
}

.auth-form input:focus {
    outline: none;
    border-color: #67c6b4;
    box-shadow: 0 0 0 3px rgba(103, 198, 180, 0.15);
}

.auth-form input::placeholder {
    color: #9ca3af;
}

.field-hint {
    font-size: 12px;
    color: #666666;
    margin-top: 4px;
    display: block;
}

/* Form row with split content (remember me / forgot password) */
.form-row-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #4b5563;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #67c6b4;
}

.forgot-password {
    font-size: 14px;
    color: #67c6b4;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    color: #4ba897;
    text-decoration: underline;
}

/* Buttons */
.auth-form .btn-primary,
.auth-container .btn-primary {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #67c6b4;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Lato', sans-serif;
}

.auth-form .btn-primary:hover {
    background: #5ab3a1;
}

.auth-form .btn-primary:disabled {
    background: #9dd5c9;
    cursor: not-allowed;
}

.btn-full {
    width: 100%;
}

/* Terms text */
.terms-text {
    font-size: 12px;
    color: #666666;
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

.terms-text a {
    color: #67c6b4;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* Social login section */
.social-login-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.social-login-divider::before,
.social-login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.social-login-divider span {
    padding: 0 16px;
    font-size: 14px;
    color: #666666;
}

.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Lato', sans-serif;
}

.btn-social:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-social svg {
    flex-shrink: 0;
}

.btn-google {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #303e48;
}

.btn-google:not(:disabled):hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.btn-apple {
    background: #000000;
    border: 1px solid #000000;
    color: #ffffff;
}

.btn-apple:not(:disabled):hover {
    background: #1a1a1a;
}

/* Trust stats */
.auth-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.auth-trust-item {
    text-align: center;
}

.auth-trust-number {
    font-size: 20px;
    font-weight: 700;
    color: #67c6b4;
}

.auth-trust-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .auth-container {
        padding: 32px 24px;
    }

    .form-row-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .auth-trust {
        gap: 16px;
    }

    .auth-trust-number {
        font-size: 18px;
    }
}
