/* ============================================
   EXPERT ONBOARDING SETUP PAGE
   Matching Network AI Landing theme
   Premium light-theme with Petal palette
   ============================================ */

/* ========== GLOBAL RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Petal Palette */
    --color-primary: #06D6A0; /* Neon Aqua */
    --color-secondary: #7C3AED; /* Violet */
    --color-accent: #F59E0B; /* Amber */
    --color-success: #10B981; /* Emerald */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #06D6A0 100%);
    --gradient-bg: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.05) 0%, rgba(6, 214, 160, 0.05) 50%, transparent 100%);
    
    /* Neutrals */
    --color-bg: #F8FAFF;
    --color-white: #FFFFFF;
    --color-text: #1F2937;
    --color-text-light: #6B7280;
    --color-border: #E5E7EB;
    
    /* Spacing (8px grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-base: cubic-bezier(0.25, 0.1, 0.25, 1);
}

body {
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

/* ============================================
   WELCOME PAGE STYLES
   ============================================ */

.onboarding-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 100%);
    position: relative;
}

.onboarding-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.onboarding-header .logo-img {
    height: 48px;
    width: auto;
}

.skip-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    align-items: center;
    gap: var(--space-sm);
    transition: all 0.3s var(--transition-base);
    font-weight: 500;
    margin-top:20px;
}

.skip-link:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.onboarding-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.welcome-hero {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl) 0;
}

.hero-icon {
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 var(--space-lg) 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.how-it-works {
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 0 var(--space-2xl) 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-lg);
}

.step-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    transition: all 0.3s var(--transition-base);
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.step-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(6, 214, 160, 0.3);
}

.step-icon {
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0 0 var(--space-sm) 0;
}

.step-description {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

.import-info {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-2xl);
    border: 2px solid rgba(6, 214, 160, 0.1);
}

.import-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.import-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1rem;
    color: var(--color-text-dark);
}

.check-icon {
    color: var(--color-accent-emerald);
    min-width: 20px;
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-light);
    font-size: 0.9375rem;
    padding-top: var(--space-lg);
    border-top: 2px solid rgba(6, 214, 160, 0.1);
}

.btn-linkedin {
    background: #0077B5 !important;
    color: white !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: var(--space-md) !important;
    padding: var(--space-lg) var(--space-2xl) !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    border-radius: var(--radius-md) !important;
    cursor: pointer !important;
    transition: all 0.3s var(--transition-base) !important;
    box-shadow: var(--shadow-lg) !important;
}

.btn-linkedin:hover {
    background: #006097 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,119,181,0.3) !important;
}

/* Icon sizes */
.icon-xxl { width: 64px; height: 64px; }
.icon-xl { width: 48px; height: 48px; }
.icon-lg { width: 32px; height: 32px; }
.icon-md { width: 24px; height: 24px; }
.icon-sm { width: 16px; height: 16px; }
.icon-xs { width: 14px; height: 14px; }

 html {
     overflow: auto !important;
 }

 body {
     height: auto !important;
     overflow: visible !important;
 }

/* ========== EXPERT ONBOARDING WRAPPER ========== */
.expert-onboarding-wrapper {
    min-height: 100vh;
    background: var(--gradient-bg);
    width: 100%;
}

/* ========== PROGRESS HEADER ========== */
.onboarding-progress-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.progress-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.onboarding-logo {
    height: 32px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-actions .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.header-actions .btn-secondary:hover {
    transform: translateX(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-steps {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-border);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s var(--transition-base);
}

.step.completed .step-circle {
    background: var(--color-success);
    color: var(--color-white);
}

.step.active .step-circle {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.step-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.step.active .step-label {
    color: var(--color-text);
    font-weight: 600;
}

.step-line {
    width: 40px;
    height: 2px;
    background: var(--color-border);
    margin: 0 4px;
}

.step.completed + .step-line {
    background: var(--color-success);
}

/* ========== MAIN CONTENT ========== */
.onboarding-main-content {
    width: 100%;
    padding: var(--space-2xl) var(--space-lg) 0px;
    overflow: visible;
}

.onboarding-main-content .container {
    max-width: 900px;
    margin: 0 auto;
    overflow: visible;
}

/* ========== HERO SECTION ========== */
.onboarding-hero {
    text-align: center;
    /* margin-bottom: var(--space-2xl); */
}

.onboarding-hero.setup{
    margin-bottom: var(--space-2xl);
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

/* ========== ONBOARDING SECTIONS ========== */
.onboarding-section {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--transition-base);
}

.onboarding-section:hover {
    box-shadow: var(--shadow-lg);
}

.section-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.section-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 214, 160, 0.1) 100%);
    border-radius: var(--radius-lg);
    color: var(--color-secondary);
    flex-shrink: 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 var(--space-xs) 0;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

/* ========== FORM FIELDS ========== */
.form-field {
    margin-bottom: var(--space-md);
}

/* Form Grid Layouts */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

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

.field-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.label-with-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.label-with-badge .field-label {
    margin-bottom: 0;
}

.label-with-badge .text-success {
    margin-top: 0;
    white-space: nowrap;
    font-size: 1rem;
}

.required {
    color: #ef4444;
}

.field-input,
.field-textarea,
.field-select {
    width: 100%;
    padding: 14px 18px;
    font-size: 1.35rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-text);
    transition: all 0.2s var(--transition-base);
}

.field-input[readonly],
.field-textarea[readonly] {
    cursor: not-allowed;
}

#countryInput.field-input[readonly] {
    background: #f8fafc;
    color: #64748b;
    border-color: #e2e8f0;
}

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

.field-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions-sticky {
    position: sticky;
    bottom: 0;
    background: white;
    padding: 1.5rem 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 2rem;
    text-align: center;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--transition-base);
}

.btn-icon:hover {
    background: var(--color-border);
    color: var(--color-secondary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.section-icon-secondary {
    background: linear-gradient(135deg, rgba(6, 214, 160, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: var(--color-primary);
}

.section-title-group {
    flex: 1;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

/* ============================================
   Pricing Grid
   ============================================ */

/* ========== PRICING GRID ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.pricing-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-card-header {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 214, 160, 0.1) 100%);
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-duration {
    font-size: 1.125rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-badge {
    background: var(--color-success);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card-body {
    padding: var(--space-md);
}

/* ============================================
   Timezone Card
   ============================================ */

.timezone-card {
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
 
}

/* ========== AVAILABILITY SECTION ========== */
.availability-section {
    margin-top: var(--space-md);
}

.availability-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.availability-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.availability-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0.25rem 0 0 0;
}

.availability-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.availability-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.availability-day-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    transition: all 0.3s var(--transition-base);
}

.availability-day-row:hover {
    box-shadow: var(--shadow-sm);
}

.day-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    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: var(--color-border);
    transition: 0.3s var(--transition-base);
    border-radius: var(--radius-full);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s var(--transition-base);
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-primary);
}

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

.day-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
}

.day-times {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.time-select {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    background: var(--color-white);
    color: var(--color-text);
    transition: all 0.3s var(--transition-base);
    cursor: pointer;
}

.time-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.time-separator {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.day-unavailable {
    display: flex;
    align-items: center;
    justify-content: center;
}

.unavailable-text {
    color: #94a3b8;
    font-size: 0.875rem;
    font-style: italic;
}

/* ============================================
   Category Select
   ============================================ */

.category-select-wrapper {
    margin-top: 2rem;
}

.input-xl {
    padding: 1rem 1.25rem;
    font-size: 1rem;
}

/* ============================================
   Slot Selection Grid
   ============================================ */

/* ========== COMBINED SLOT SELECTION + PRICING GRID ========== */
.slot-pricing-combined-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xl);
}

.slot-pricing-card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.slot-pricing-card {
    position: relative;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--transition-base);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}

.slot-pricing-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.slot-pricing-card-selected {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.02) 0%, rgba(6, 214, 160, 0.02) 100%);
    box-shadow: var(--shadow-md);
}

.slot-pricing-header {
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slot-pricing-duration-wrapper {
    text-align: left;
}

.slot-pricing-duration {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.slot-pricing-unit {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.slot-pricing-checkbox {
    position: relative;
    width: 24px;
    height: 24px;
}

.slot-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    z-index: 2;
}

.slot-checkbox-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    background: var(--color-white);
    transition: all 0.2s var(--transition-base);
}

.slot-checkbox-input:checked ~ .slot-checkbox-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.slot-checkbox-input:checked ~ .slot-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.slot-pricing-badge-outside {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
}

.slot-pricing-recommended {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.slot-pricing-input-wrapper {
    padding: 0 var(--space-lg) var(--space-lg);
    border-top: 1px solid var(--color-border);
    /* margin-top: var(--space-sm); */
    padding-top: var(--space-md);
}

.slot-pricing-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.slot-pricing-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.slot-pricing-currency {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    pointer-events: none;
    z-index: 1;
}

.slot-pricing-input {
    width: 100%;
    padding: 14px 18px 14px 42px;
    font-size: 1.125rem;
    font-weight: 500;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-text);
    transition: all 0.2s var(--transition-base);
}

.slot-pricing-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(6, 214, 160, 0.1);
}

.slot-pricing-input::placeholder {
    color: var(--color-text-light);
    opacity: 0.6;
}

.slot-pricing-input-disabled {
    background: var(--color-bg);
    color: var(--color-text-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.slot-pricing-input:disabled {
    background: var(--color-bg);
    color: var(--color-text-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.slot-pricing-input-group:has(.slot-pricing-input:disabled) .slot-pricing-currency {
    color: var(--color-text-light);
    opacity: 0.6;
}

/* ========== OLD SLOT SELECTION GRID (DEPRECATED) ========== */
.slot-selection-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.slot-card {
    position: relative;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    cursor: pointer;
    transition: all 0.3s var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.slot-card-selected {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(6, 214, 160, 0.05) 100%);
    box-shadow: var(--shadow-md);
}

.slot-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.slot-card-content {
    text-align: center;
    position: relative;
}

.slot-duration {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.slot-unit {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.slot-check {
    position: absolute;
    top: var(--space-xs);
    right: var(--space-xs);
    width: 24px;
    height: 24px;
    background: var(--color-success);
    border-radius: 50%;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s var(--transition-base);
}

.slot-card-selected .slot-check {
    opacity: 1;
    transform: scale(1);
}

.slot-check svg {
    width: 14px;
    height: 14px;
}

.slot-card-footer {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.slot-recommended {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   Configuration Cards
   ============================================ */

.slot-config-section {
    border-left: 4px solid #8b5cf6;
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.config-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.config-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.config-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}

.config-card-body {
    padding: 1.5rem;
}

/* ============================================
   Form Elements
   ============================================ */

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
}

.form-group.flex-2 {
    flex: 2;
}

.form-group.flex-1 {
    flex: 1;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    transition: all 0.2s ease;
}

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

.input-lg {
    padding: 0.875rem 1.125rem;
    font-size: 1rem;
}

.input-xl {
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .form-input {
    padding-left: 2.75rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    width: 18px;
    height: 18px;
}

/* ============================================
   Availability Section
   ============================================ */

.availability-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
}

.availability-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.availability-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.availability-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0.25rem 0 0 0;
}

.availability-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.availability-day-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.day-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    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: #cbd5e1;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #3b82f6;
}

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

.day-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #64748b;
}

.day-label-active {
    color: #0f172a;
    font-weight: 600;
}

.day-times {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.time-select {
    flex: 1;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
}

.time-separator {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.day-unavailable {
    display: flex;
    align-items: center;
    justify-content: center;
}

.unavailable-text {
    font-size: 0.875rem;
    color: #94a3b8;
    font-style: italic;
}

/* ============================================
   Category Selection
   ============================================ */

.category-select-wrapper {
    max-width: 600px;
}

/* ========== SUBMIT SECTION ========== */


.submit-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.submit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.submit-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg) !important;
    line-height: 1.6;
}

/* ============================================
   Buttons
   ============================================ */

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 14px 28px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 14px 28px;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s var(--transition-base);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-secondary);
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 14px 22px;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s var(--transition-base);
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-ai {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 10px 16px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, 0.35);
    color: #4c1d95;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(6, 214, 160, 0.10) 100%);
    box-shadow: 0 8px 18px rgba(124, 58, 237, 0.12);
    cursor: pointer;
    transition: all 0.2s var(--transition-base);
}

.btn-ai:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(124, 58, 237, 0.16);
    border-color: rgba(124, 58, 237, 0.55);
}

.btn-ai:disabled,
.btn-ai[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.btn-ai i,
.btn-ai svg {
    width: 1.1em;
    height: 1.1em;
}

.btn svg {
    transition: transform 0.3s var(--transition-base);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ============================================
   Utilities
   ============================================ */

.spinner-sm {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.w-4 {
    width: 1rem;
    height: 1rem;
}

.w-5 {
    width: 1.25rem;
    height: 1.25rem;
}

.w-6 {
    width: 1.5rem;
    height: 1.5rem;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

/* ============================================
   Responsive Design
   ============================================ */

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .progress-header-content {
        padding: var(--space-sm) var(--space-md);
    }
    
    .step-label {
        display: none;
    }
    
    .step-line {
        width: 24px;
    }
    
    .onboarding-main-content {
        padding: var(--space-xl) var(--space-md);
    }
    
    .onboarding-section {
        padding: var(--space-lg);
    }
    
    .section-header {
        gap: var(--space-sm);
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
    }
    
    .slot-pricing-combined-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .slot-pricing-duration {
        font-size: 2.5rem;
    }
    
    .slot-selection-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }
    
    .slot-card {
        padding: var(--space-md);
    }
    
    .slot-duration {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .availability-day-row {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .day-times {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .slot-pricing-combined-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .slot-pricing-duration {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1.125rem;
    }
    
    .slot-selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
    

/* ========== PROCESSING PAGE STYLES ========== */
.success-hero {
    text-align: center;
    padding: var(--space-2xl) 0 var(--space-xl);
}

.success-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.success-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--color-success);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse-success 2s ease-in-out infinite;
}

@keyframes pulse-success {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.15;
    }
}

.success-icon {
    position: relative;
    width: 80px;
    height: 80px;
    color: var(--color-success);
    stroke-width: 2;
    animation: scale-in 0.5s ease-out;
}

@keyframes scale-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.success-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.created-section {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.section-header-center {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.created-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.created-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all 0.3s var(--transition-base);
    position: relative;
}

.created-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.created-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 214, 160, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--color-secondary);
}

.created-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.created-card-description {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.created-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--color-success);
    color: var(--color-white);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
}

.next-steps-section {
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
    margin-top: var(--space-xl);
}

.timeline-step {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 56px;
    width: 2px;
    height: calc(100% + 8px);
    background: var(--color-border);
}

.timeline-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    flex: 1;
    padding-top: 4px;
}

.timeline-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.timeline-description {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.cta-section {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.btn-xl {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.btn-outline {
    background: var(--color-white);
    color: var(--color-secondary);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
}

.help-section {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.help-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.help-icon {
    width: 24px;
    height: 24px;
    color: var(--color-text-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.help-content {
    flex: 1;
}

.help-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.help-text {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.help-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.help-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .success-title {
        font-size: 1.75rem;
    }
    
    .success-subtitle {
        font-size: 1rem;
    }
    
    .created-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .timeline-step {
        gap: var(--space-md);
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .timeline-step:not(:last-child)::after {
        left: 19px;
    }
}

/* ========== AI AND PROFILE COMPONENTS ========== */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.ai-suggestion-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(6, 214, 160, 0.05) 100%);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-top: var(--space-md);
}

.ai-suggestion-header {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.ai-suggestion-text {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.tags-display {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
    min-height: 40px;
}

/* If tags exist, add a clearer separation from the hint above */
.tags-display:not(:empty) {
    margin-top: var(--space-sm);
}

.tag {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.tag-remove {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.125rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
}

.tag-remove:hover {
    opacity: 0.8;
}

.experience-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.experience-header h4 {
    margin: 0 0 4px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.experience-header p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--color-text-light);
}

.tenure-text {
    margin-top: var(--space-xs) !important;
    font-size: 0.95rem !important;
    color: var(--color-text-light) !important;
    font-style: italic;
}

.form-inline-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-md);
}

.form-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.optional-badge {
    color: var(--color-text-light);
    font-size: 1.05rem;
    font-weight: 400;
}

.field-success {
    border-color: var(--color-success) !important;
    background-color: rgba(16, 185, 129, 0.05);
}

.text-success {
    color: var(--color-success);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.required {
    color: #ef4444;
}

/* Google Places Autocomplete Styling */
.pac-container {
    z-index: 99999 !important;
    background: white !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    margin-top: 4px !important;
    position: absolute !important;
}

.pac-container .pac-item {
    padding: 8px 12px !important;
    cursor: pointer !important;
    line-height: 1.5 !important;
    display: block !important;
    visibility: visible !important;
}

.pac-container .pac-item:hover {
    background-color: #f3f4f6 !important;
}

.pac-container .pac-item-query {
    font-size: 14px !important;
    color: #111827 !important;
}

.pac-icon {
    margin-right: 8px !important;
}

/* Cancel/Link button */
.btn-link {
    background: none;
    border: none;
    color: #64748b;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.4rem;
    transition: color 0.2s;
}

.btn-link:hover {
    color: #1e293b;
    text-decoration: underline;
}

.field-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.4rem;
    color: #64748b;
}

/* Autocomplete dropdown */
.autocomplete-wrapper {
    position: relative;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.autocomplete-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 1.4rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

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

.autocomplete-item:hover {
    background: #f8fafc;
}

/* ============================================
   Profile Image Upload Component
   ============================================ */

.profile-image-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

/* Center-aligned profile image upload (for profile page) */
.profile-image-upload-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 0;
    margin: 0 auto;
    max-width: 100%;
    background: transparent;
}

.image-preview-container {
    position: relative;
}

.image-preview {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 3px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-preview.has-image {
border-color: #10b981;
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.image-preview.has-image:hover {
border-color: #059669;
box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.image-preview.uploading {
border-color: #3b82f6;
background: #eff6ff;
pointer-events: none;
}

.image-preview.uploading .preview-placeholder {
color: #3b82f6;
}

.image-preview:hover {
border-color: #3b82f6;
box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

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

.preview-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-align: center;
    padding: 1rem;
}

.preview-placeholder p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.camera-button {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.camera-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.camera-button:active {
    transform: scale(0.95);
}

.image-upload-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

/* Spinner animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.info-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.info-text.text-success {
    color: #10b981;
    font-weight: 500;
}

.info-text i {
    flex-shrink: 0;
}

.required-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
    .image-preview {
        width: 150px;
        height: 150px;
    }
    
    .camera-button {
        width: 38px;
        height: 38px;
        bottom: 4px;
        right: 4px;
    }
}

/* ============================================
   AI ASSISTANT CONFIGURATION PAGE
   ============================================ */

.ai-assistant-section {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
}

.hero-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-md);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.benefit-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all 0.3s var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #3b82f6;
}

.benefit-icon {
    margin-bottom: var(--space-md);
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.benefit-description {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Creation Progress Card */
.creation-progress-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.progress-content {
    text-align: center;
}

.progress-icon {
    margin-bottom: var(--space-md);
    display: flex;
    justify-content: center;
}

.spinner-large {
    width: 64px;
    height: 64px;
    border: 4px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.progress-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.progress-description {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

/* Progress Steps List */
.progress-steps-list {
    max-width: 500px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: transparent;
    transition: all 0.4s ease;
}

.progress-step.completed {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #10b981;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.progress-step.completed::before {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.progress-step.active {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #3b82f6;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
    animation: pulse-border 2s ease-in-out infinite;
}

.progress-step.active::before {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
}

.progress-step.failed {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.progress-step.failed::before {
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}

.step-indicator {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: white;
    border: 3px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-step.completed .step-indicator {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
    color: white;
    animation: success-pop 0.5s ease-out;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.progress-step.completed .step-indicator i {
    width: 24px;
    height: 24px;
    animation: check-draw 0.5s ease-out 0.2s both;
}

.progress-step.active .step-indicator {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: #3b82f6;
    color: white;
    animation: ai-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
}

.progress-step.failed .step-indicator {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: #ef4444;
    color: white;
    animation: shake 0.5s ease-out;
}

.progress-step.failed .step-indicator i {
    width: 24px;
    height: 24px;
}

.step-number {
    font-size: 18px;
    font-weight: 700;
    color: #6b7280;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.step-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
}

.progress-step.completed .step-label {
    color: #059669;
}

.progress-step.active .step-label {
    color: #1e40af;
}

.spinner-sm {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Success Card */
.success-card {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.success-content {
    text-align: center;
}

.success-icon {
    margin-bottom: var(--space-md);
    display: flex;
    justify-content: center;
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: var(--space-sm);
}

.success-description {
    font-size: 16px;
    color: #047857;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Failed State */
.progress-step.failed .step-indicator {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.step-error {
    font-size: 13px;
    color: #ef4444;
    font-weight: 400;
    margin-top: 2px;
}

.btn-retry {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 6px;
    align-self: flex-start;
}

.btn-retry:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.btn-retry:active {
    transform: translateY(0);
}

/* .skip-link {
    display: inline-block;
    margin-top: var(--space-lg);
    padding: var(--space-sm) 0;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.skip-link:hover {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
} */

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

/* AI-Themed Animations */
@keyframes ai-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4),
                    0 4px 12px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0),
                    0 4px 20px rgba(59, 130, 246, 0.4);
    }
}

@keyframes pulse-border {
    0%, 100% {
        border-color: #3b82f6;
    }
    50% {
        border-color: #60a5fa;
    }
}

@keyframes success-pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes check-draw {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

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

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
    }
    
    .creation-progress-card,
    .success-card {
        padding: var(--space-lg);
    }
}
