
:root {
    /* Colors */
    --vo-primary-color: #ff8c42;
    --vo-primary-hover: #e67a35;
    --vo-background: linear-gradient(180deg, #f8e8ff 0%, #ffffff 100%);
    --vo-card-bg: #ffffff;
    --vo-text-primary: #1a1a2e;
    --vo-text-secondary: #4B5563;
    --vo-text-muted: #4B5563;
    --vo-border-color: #e5e7eb;
    --vo-input-border: #d1d5db;
    --vo-input-focus: #ff8c42;
    --vo-error-color: #dc2626;
    --vo-error-bg: #fef2f2;
    --vo-success-color: #16a34a;

    /* Spacing */
    --vo-spacing-xs: 0.25rem;
    --vo-spacing-sm: 0.5rem;
    --vo-spacing-md: 1rem;
    --vo-spacing-lg: 1.5rem;
    --vo-spacing-xl: 2rem;
    --vo-spacing-2xl: 3rem;

    /* Typography */
    --vo-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --vo-font-size-sm: 0.875rem;
    --vo-font-size-base: 1rem;
    --vo-font-size-lg: 1.125rem;
    --vo-font-size-xl: 1.5rem;
    --vo-font-size-2xl: 28px;
    --vo-line-height: 1.5;

    /* Border Radius */
    --vo-radius-sm: 0.375rem;
    --vo-radius-md: 0.5rem;
    --vo-radius-lg: 1rem;
    --vo-radius-xl: 1.5rem;

    /* Shadows */
    --vo-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --vo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --vo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* Transitions */
    --vo-transition: all 0.2s ease-in-out;
}

/* ==========================================================================
   Page Layout & Background
   ========================================================================== */
.vo-page-wrapper {
    min-height: 100vh;

    font-family: var(--vo-font-family);
    line-height: var(--vo-line-height);
    display: flex;
    padding-top: 0;
    flex-direction: column;
}
body, html {
    margin: 0 !important;
    padding: 0 !important;
     overflow-x: hidden;
}

body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
/* Decorative vertical stripes background */
.vo-page-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;

    background: #F4DBFF url('section-bg.svg') top center no-repeat;
    background-size: cover;

    pointer-events: none;
    z-index: 0;
}

.vo-header {
    position: absolute;
    max-width: calc(100% - 40px);
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
    padding: 20px;
    box-sizing: border-box;
}


.vo-header-inner {
    display: flex;
    align-items: center;
    gap: 10px;

    height: 72px;

    max-width: none;
    width: calc(100% - 64px);

    margin: 0 auto;
    padding: 0 40px;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4.35px);
    -webkit-backdrop-filter: blur(4.35px);

    border-radius: 999px;
    box-shadow: var(--vo-shadow-sm);
}


.vo-logo-text {
    font-family: 'Brush Script MT', cursive, sans-serif;
    font-size: 2rem;
    color: var(--vo-primary-color);
}


.vo-logo {
    display: inline-block;
}

.vo-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* ==========================================================================
   Content Area (below header)
   ========================================================================== */
.vo-content-area {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: center;        /* horizontal centering */
    justify-content: flex-start;/* start from top */

    flex: 1;
    width: 100%;

    padding-top: 130px;
    padding-left: var(--vo-spacing-md);
    padding-right: var(--vo-spacing-md);
    padding-bottom: var(--vo-spacing-xl);
}


/* ==========================================================================
   Main Card Container
   ========================================================================== */
.vo-card {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    background: var(--vo-card-bg);
    border-radius: var(--vo-radius-xl);
    box-shadow: var(--vo-shadow-lg);
    padding: var(--vo-spacing-2xl);
}

.vo-card-header {
    text-align: center;
    margin-bottom: var(--vo-spacing-xl);
}

.vo-card-title {
    font-size: var(--vo-font-size-2xl);
    font-weight: 600;
    color: var(--vo-text-primary);
    margin: 0 0 var(--vo-spacing-sm);
}

.vo-card-subtitle {
    font-size: 16px;
    color: #4B5563;
    margin: 0;
    font-weight: 400;
}
.vo-btn-primary{
    color: #E5E7EB;

}

/* ==========================================================================
   Form Elements
   ========================================================================== */
.vo-form {
    display: flex;
    flex-direction: column;
    gap: var(--vo-spacing-lg);
}

.vo-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--vo-spacing-xs);
}

.vo-label {
    font-size: var(--vo-font-size-sm);
    font-weight: 600;
    color: var(--vo-text-primary);
}

.vo-input {
    width: 100%;
    padding: var(--vo-spacing-md);
    font-size: var(--vo-font-size-base);
    font-family: var(--vo-font-family);
    color: var(--vo-text-primary);
    background: var(--vo-card-bg);
    border: 1px solid var(--vo-input-border);
    border-radius: var(--vo-radius-md);
    transition: var(--vo-transition);
    box-sizing: border-box;
}

.vo-input::placeholder {
    color: rgba(0, 0, 0, 0.15);
}

.vo-input:focus {
    outline: none;
    border-color: var(--vo-input-focus);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.15);
}

.vo-input:hover:not(:focus) {
    border-color: #9ca3af;
}

/* Password input wrapper for toggle icon */
.vo-password-wrapper {
    position: relative;
}

.vo-password-wrapper .vo-input {
    padding-right: 48px;
}

.vo-password-toggle {
    position: absolute;
    right: var(--vo-spacing-md);
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--vo-text-muted);
    padding: var(--vo-spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--vo-transition);
}

.vo-password-toggle:hover {
    color: var(--vo-text-secondary);
}

.vo-password-toggle svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */
.vo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--vo-spacing-md) var(--vo-spacing-xl);
    font-size: var(--vo-font-size-base);
    font-weight: 600;
    font-family: var(--vo-font-family);
    border-radius: var(--vo-radius-md);
    cursor: pointer;
    transition: var(--vo-transition);
    border: none;
    text-decoration: none;
}

.vo-btn-primary {
    width: 100%;
    background: var(--vo-text-muted);
    color: var(--vo-card-bg);
}

.vo-btn-primary:hover,
.vo-btn-primary:focus {
    background: var(--vo-text-secondary);
}

.vo-btn-primary.vo-btn-active {
    background: var(--vo-primary-color);
}

.vo-btn-primary.vo-btn-active:hover,
.vo-btn-primary.vo-btn-active:focus {
    background: var(--vo-primary-hover);
}

.vo-btn-primary:disabled {
    background: var(--vo-text-muted);
    cursor: not-allowed;
    opacity: 0.7;
}

/* ==========================================================================
   Error Messages
   ========================================================================== */
.vo-errors {
    background: var(--vo-error-bg);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--vo-radius-md);
    padding: var(--vo-spacing-md);
    margin-bottom: var(--vo-spacing-lg);
}

.vo-errors p {
    margin: 0;
    padding: var(--vo-spacing-xs) 0;
    color: var(--vo-error-color);
    font-size: var(--vo-font-size-sm);
}

.vo-errors p:not(:last-child) {
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    padding-bottom: var(--vo-spacing-sm);
    margin-bottom: var(--vo-spacing-sm);
}

/* ==========================================================================
   Footer Elements
   ========================================================================== */
.vo-form-footer {
    text-align: center;
    margin-top: var(--vo-spacing-md);
}

.vo-autosave-text {
    font-size: var(--vo-font-size-sm);
    color: var(--vo-text-muted);
    margin: var(--vo-spacing-md) 0;
    text-align: center;
}

.vo-divider {
    height: 1px;
    background: var(--vo-border-color);
    margin: var(--vo-spacing-lg) 0;
}

.vo-login-link {
    font-size: var(--vo-font-size-base);
    color: var(--vo-text-secondary);
}

.vo-login-link a {
    color: var(--vo-text-primary);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--vo-transition);
}

.vo-login-link a:hover {
    color: var(--vo-primary-color);
}

/* ==========================================================================
   Responsive Design - Tablet
   ========================================================================== */
@media (max-width: 768px) {
    .vo-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--vo-border-color);
        z-index: 100;
    }

    .vo-header-inner {
        width: 100%;
        max-width: 100%;
        padding: 0;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        border-radius: 0;
        box-shadow: none;
    }

    .vo-glitta-logo {
        height: 40px;
        width: auto;
    }

    .vo-content-area {
        padding-top: 80px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 100px; /* Space for fixed bottom nav */
    }

    .vo-card {
        max-width: 100%;
        padding: 24px 20px;
        border-radius: var(--vo-radius-lg);
        margin-bottom: 0;
    }

    .vo-card.vo-card-wide {
        max-width: 100%;
        top: 0;
        bottom: 0;
    }

    /* Fixed bottom navigation */
    .vo-bottom-nav {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 16px 20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
        z-index: 9999 !important;
    }
}

/* ==========================================================================
   Responsive Design - Mobile
   ========================================================================== */
@media (max-width: 576px) {
    .vo-header {
        padding: 10px 16px;
    }

    .vo-glitta-logo {
        height: 36px;
    }

    .vo-content-area {
        padding-top: 70px;
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 90px;
    }

    .vo-card {
        padding: 20px 16px;
        border-radius: var(--vo-radius-md);
    }

    .vo-card-header {
        margin-bottom: var(--vo-spacing-lg);
    }

    .vo-card-title {
        font-size: 22px;
    }

    .vo-card-subtitle {
        font-size: 14px;
    }

    .vo-section-title {
        font-size: var(--vo-font-size-base);
    }

    .vo-form {
        gap: var(--vo-spacing-md);
    }

    .vo-form-group {
        gap: 4px;
    }

    .vo-label {
        font-size: 13px;
    }

    .vo-input,
    .vo-textarea,
    .vo-select {
        padding: 12px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    /* Bottom nav mobile */
    .vo-bottom-nav {
        padding: 12px 16px;
    }

    .vo-bottom-nav .vo-btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .vo-nav-back {
        font-size: 14px;
    }

    /* Progress bar */
    .vo-progress {
        margin-bottom: var(--vo-spacing-lg);
    }

    .vo-progress-text {
        font-size: 12px;
    }

    .vo-progress-bar {
        gap: 6px;
    }

    .vo-progress-segment {
        height: 3px;
    }

    /* Divider spacing */
    .vo-divider {
        margin: var(--vo-spacing-md) 0;
    }

    /* Auto-save text */
    .vo-autosave-text {
        font-size: 12px;
        margin: var(--vo-spacing-sm) 0;
    }

    /* Login link */
    .vo-login-link {
        font-size: 14px;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.vo-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.vo-text-center {
    text-align: center;
}

.vo-mt-sm {
    margin-top: var(--vo-spacing-sm);
}

.vo-mt-md {
    margin-top: var(--vo-spacing-md);
}

.vo-mt-lg {
    margin-top: var(--vo-spacing-lg);
}

/* ==========================================================================
   Step 2: Progress Indicator
   ========================================================================== */
.vo-progress {
    text-align: center;
    margin-bottom: var(--vo-spacing-xl);
}

.vo-progress-text {
    font-size: var(--vo-font-size-sm);
    color: var(--vo-text-secondary);
    display: block;
    margin-bottom: var(--vo-spacing-sm);
}

.vo-progress-bar {
    display: flex;
    gap: var(--vo-spacing-sm);
}

.vo-progress-segment {
    flex: 1;
    height: 4px;
    background: var(--vo-border-color);
    border-radius: 2px;
}

.vo-progress-segment.vo-progress-active {
    background: var(--vo-primary-color);
}

.vo-progress-segment.vo-progress-complete {
    background: var(--vo-primary-color);
}

/* ==========================================================================
   Step 2: Wider Card Variant
   ========================================================================== */
.vo-card.vo-card-wide {
    max-width: 720px;
    top: 115px;
    bottom: 30px;
}

/* ==========================================================================
   Step 2: Label Hint Text
   ========================================================================== */
.vo-label-hint {
    font-size: var(--vo-font-size-sm);
    color: var(--vo-text-secondary);
    margin: 0 0 var(--vo-spacing-md);
}

/* ==========================================================================
   Step 2: Services Grid
   ========================================================================== */
.vo-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vo-spacing-md);
}

@media (max-width: 768px) {
    .vo-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--vo-spacing-sm);
    }
}

@media (max-width: 400px) {
    .vo-services-grid {
        gap: 8px;
    }

    .vo-service-card-inner {
        padding: var(--vo-spacing-md) var(--vo-spacing-sm);
        min-height: 80px;
    }

    .vo-service-icon {
        width: 28px;
        height: 28px;
    }

    .vo-service-name {
        font-size: 12px;
    }
}

/* ==========================================================================
   Step 2: Service Cards
   ========================================================================== */
.vo-service-card {
    cursor: pointer;
}

.vo-service-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.vo-service-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--vo-spacing-lg) var(--vo-spacing-md);
    background: var(--vo-card-bg);
    border: 2px solid var(--vo-border-color);
    border-radius: var(--vo-radius-lg);
    transition: var(--vo-transition);
    text-align: center;
    min-height: 100px;
}

.vo-service-card:hover .vo-service-card-inner {
    border-color: var(--vo-primary-color);
}

.vo-service-card input[type="checkbox"]:checked + .vo-service-card-inner {
    border-color: var(--vo-primary-color);
    background: rgba(255, 140, 66, 0.05);
}

.vo-service-card input[type="checkbox"]:focus + .vo-service-card-inner {
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.15);
}

.vo-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-bottom: var(--vo-spacing-sm);
    color: var(--vo-primary-color);
}

.vo-service-icon svg {
    width: 100%;
    height: 100%;
}

.vo-service-name {
    font-size: var(--vo-font-size-sm);
    font-weight: 500;
    color: var(--vo-text-primary);
}

/* ==========================================================================
   Step 2: Bottom Navigation
   ========================================================================== */
/* Bottom navigation with border container */
.vo-bottom-nav {
    position: absolute;
    z-index: 10;
    display: flex;

    justify-content: space-between;
    align-items: center;

    width: calc(100% + var(--vo-spacing-md));
    margin-left: calc(var(--vo-spacing-md) * -1);

    margin-top: var(--vo-spacing-xl);
    padding: var(--vo-spacing-sm) var(--vo-spacing-md);

    background: var(--vo-card-bg);
    border: 1px solid var(--vo-border-color);
    box-sizing: border-box;
}


/* Fix button width inside bottom nav */
.vo-bottom-nav .vo-btn-primary {
    width: auto;
    min-width: 100px;
    padding: var(--vo-spacing-sm) var(--vo-spacing-lg);
}

.vo-nav-back {
    font-size: var(--vo-font-size-base);
    font-weight: 500;
    color: var(--vo-text-primary);
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: var(--vo-transition);
}

.vo-nav-back:hover {
    color: var(--vo-primary-color);
}

.vo-btn-next {
    min-width: 120px;
}

/* ==========================================================================
   Hidden Submit Button
   ========================================================================== */
.vo-hidden-submit {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ==========================================================================
   Step 2.2: Section Titles
   ========================================================================== */
.vo-section {
    margin-bottom: var(--vo-spacing-lg);
}

.vo-section-title {
    font-size: var(--vo-font-size-lg);
    font-weight: 600;
    color: var(--vo-text-primary);
    margin: 0 0 var(--vo-spacing-md);
}

/* ==========================================================================
   Step 2.2: Textarea with Character Counter
   ========================================================================== */
.vo-textarea-wrapper {
    position: relative;
}

.vo-textarea {
    width: 100%;
    padding: var(--vo-spacing-md);
    font-size: var(--vo-font-size-base);
    font-family: var(--vo-font-family);
    color: var(--vo-text-primary);
    background: var(--vo-card-bg);
    border: 1px solid var(--vo-input-border);
    border-radius: var(--vo-radius-md);
    transition: var(--vo-transition);
    box-sizing: border-box;
    resize: vertical;
    min-height: 100px;
}

.vo-textarea::placeholder {
    color: var(--vo-text-muted);
}

.vo-textarea:focus {
    outline: none;
    border-color: var(--vo-input-focus);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.15);
}

.vo-char-count {
    text-align: right;
    font-size: var(--vo-font-size-sm);
    color: var(--vo-text-muted);
    margin-top: var(--vo-spacing-xs);
}

/* ==========================================================================
   Step 2.2: Form Row (Two Columns)
   ========================================================================== */
.vo-form-row {
    display: flex;
    gap: var(--vo-spacing-lg);
}

.vo-form-group-half {
    flex: 1;
}

@media (max-width: 768px) {
    .vo-form-row {
        flex-direction: column;
        gap: var(--vo-spacing-md);
    }

    .vo-tags-input-wrapper {
        min-height: 44px;
    }

    .vo-tags-input {
        min-width: 100px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    .vo-tag {
        font-size: 13px;
    }
}

/* ==========================================================================
   Step 2.2: Select Dropdown
   ========================================================================== */
.vo-select {
    width: 100%;
    padding: var(--vo-spacing-md);
    font-size: var(--vo-font-size-base);
    font-family: var(--vo-font-family);
    color: var(--vo-text-primary);
    background: var(--vo-card-bg);
    border: 1px solid var(--vo-input-border);
    border-radius: var(--vo-radius-md);
    transition: var(--vo-transition);
    box-sizing: border-box;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.vo-select:focus {
    outline: none;
    border-color: var(--vo-input-focus);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.15);
}

/* ==========================================================================
   Step 2.2: Tags Input (Multi-select with tags)
   ========================================================================== */
.vo-tags-input-outer {
    position: relative;
}

.vo-tags-input-wrapper {
    border: 1px solid var(--vo-input-border);
    border-radius: var(--vo-radius-md);
    padding: var(--vo-spacing-sm);
    background: var(--vo-card-bg);
    min-height: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--vo-spacing-xs);
}

.vo-tags-input-wrapper:focus-within {
    border-color: var(--vo-input-focus);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.15);
}

.vo-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vo-spacing-xs);
}

.vo-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--vo-spacing-xs);
    padding: var(--vo-spacing-xs) var(--vo-spacing-sm);
    background: #f3f4f6;
    border: 1px solid var(--vo-border-color);
    border-radius: var(--vo-radius-sm);
    font-size: var(--vo-font-size-sm);
    color: var(--vo-text-primary);
}

.vo-tag-remove {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    color: var(--vo-text-muted);
    transition: var(--vo-transition);
}

.vo-tag-remove:hover {
    color: var(--vo-error-color);
}

.vo-tags-input {
    flex: 1;
    min-width: 120px;
    border: none;
    outline: none;
    padding: var(--vo-spacing-xs);
    font-size: var(--vo-font-size-base);
    font-family: var(--vo-font-family);
    background: transparent;
}

.vo-tags-input::placeholder {
    color: var(--vo-text-muted);
}

.vo-tags-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--vo-card-bg);
    border: 1px solid var(--vo-border-color);
    border-radius: var(--vo-radius-md);
    box-shadow: var(--vo-shadow-lg);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.vo-tags-dropdown.vo-dropdown-open {
    display: block;
}

.vo-dropdown-item {
    padding: var(--vo-spacing-sm) var(--vo-spacing-md);
    cursor: pointer;
    transition: var(--vo-transition);
}

.vo-dropdown-item:hover {
    background: #f3f4f6;
}

/* ==========================================================================
   Step 2.2: Service Category Subcategories
   ========================================================================== */
.vo-service-category {
    margin-bottom: var(--vo-spacing-lg);
}

.vo-service-category-title {
    font-size: var(--vo-font-size-sm);
    font-weight: 600;
    color: var(--vo-text-primary);
    margin: 0 0 var(--vo-spacing-sm);
}

.vo-tags-select {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vo-spacing-sm);
}

.vo-tag-checkbox {
    cursor: pointer;
}

.vo-tag-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.vo-tag-label {
    display: inline-block;
    padding: var(--vo-spacing-sm) var(--vo-spacing-md);
    background: var(--vo-card-bg);
    border: 1px solid var(--vo-border-color);
    border-radius: var(--vo-radius-md);
    font-size: var(--vo-font-size-sm);
    color: var(--vo-text-primary);
    transition: var(--vo-transition);
}

.vo-tag-checkbox:hover .vo-tag-label {
    border-color: var(--vo-primary-color);
}

.vo-tag-checkbox input[type="checkbox"]:checked + .vo-tag-label {
    background: rgba(255, 140, 66, 0.1);
    border-color: var(--vo-primary-color);
    color: var(--vo-primary-color);
}

.vo-tag-checkbox input[type="checkbox"]:focus + .vo-tag-label {
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.15);
}

@media (max-width: 768px) {
    .vo-service-category {
        margin-bottom: var(--vo-spacing-md);
    }

    .vo-service-category-title {
        font-size: 13px;
        margin-bottom: var(--vo-spacing-xs);
    }

    .vo-tags-select {
        gap: 6px;
    }

    .vo-tag-label {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 20px;
    }
}

/* ==========================================================================
   Step 2.2: Gallery Upload
   ========================================================================== */
.vo-gallery-preview {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--vo-spacing-md);
    margin-bottom: var(--vo-spacing-md);
}

@media (max-width: 768px) {
    .vo-gallery-preview {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--vo-spacing-sm);
    }

    .vo-upload-area {
        padding: var(--vo-spacing-lg);
    }

    .vo-upload-text {
        font-size: 14px;
    }

    .vo-upload-hint {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .vo-gallery-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vo-gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--vo-radius-md);
    overflow: hidden;
}

.vo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vo-gallery-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    transition: var(--vo-transition);
}

.vo-gallery-remove:hover {
    background: rgba(220, 38, 38, 0.8);
}

.vo-upload-area {
    position: relative;
    border: 2px dashed var(--vo-border-color);
    border-radius: var(--vo-radius-lg);
    padding: var(--vo-spacing-xl);
    text-align: center;
    cursor: pointer;
    transition: var(--vo-transition);
}

.vo-upload-area:hover,
.vo-upload-area.vo-upload-dragover {
    border-color: var(--vo-primary-color);
    background: rgba(255, 140, 66, 0.02);
}

.vo-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.vo-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--vo-spacing-sm);
    pointer-events: none;
}

.vo-upload-icon {
    width: 32px;
    height: 32px;
    color: var(--vo-text-muted);
}

.vo-upload-icon svg {
    width: 100%;
    height: 100%;
}

.vo-upload-text {
    font-size: var(--vo-font-size-base);
    font-weight: 500;
    color: var(--vo-text-primary);
}

.vo-upload-hint {
    font-size: var(--vo-font-size-sm);
    color: var(--vo-text-muted);
}

/* ==========================================================================
   Step 3: Review Page Sections
   ========================================================================== */
.vo-review-section {
    border: 1px solid var(--vo-border-color);
    border-radius: var(--vo-radius-lg);
    padding: var(--vo-spacing-lg);
    margin-bottom: var(--vo-spacing-lg);
}

.vo-review-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--vo-spacing-md);
}

.vo-review-section-title {
    font-size: var(--vo-font-size-base);
    font-weight: 600;
    color: var(--vo-text-primary);
    margin: 0;
}

.vo-edit-link {
    font-size: var(--vo-font-size-sm);
    color: var(--vo-text-secondary);
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--vo-transition);
}

.vo-edit-link:hover {
    color: var(--vo-primary-color);
}

.vo-review-section-content {
    padding-top: var(--vo-spacing-sm);
    border-top: 1px solid var(--vo-border-color);
}

/* ==========================================================================
   Step 3: Review Rows (Label/Value pairs)
   ========================================================================== */
.vo-review-row {
    display: flex;
    padding: var(--vo-spacing-sm) 0;
}

.vo-review-label {
    flex: 0 0 140px;
    font-size: var(--vo-font-size-sm);
    color: var(--vo-text-secondary);
}

.vo-review-value {
    flex: 1;
    font-size: var(--vo-font-size-sm);
    color: var(--vo-text-primary);
}

.vo-review-text {
    font-size: var(--vo-font-size-sm);
    color: var(--vo-text-primary);
    line-height: 1.6;
    margin: 0;
}

.vo-text-muted {
    color: var(--vo-text-muted);
    font-style: italic;
}

/* ==========================================================================
   Step 3: Review Services
   ========================================================================== */
.vo-review-service-group {
    margin-bottom: var(--vo-spacing-md);
}

.vo-review-service-group:last-child {
    margin-bottom: 0;
}

.vo-review-service-category {
    font-size: var(--vo-font-size-sm);
    font-weight: 500;
    color: var(--vo-text-primary);
    margin: 0 0 var(--vo-spacing-sm);
}

.vo-review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vo-spacing-sm);
}

.vo-review-tag {
    display: inline-block;
    padding: var(--vo-spacing-xs) var(--vo-spacing-md);
    background: var(--vo-card-bg);
    border: 1px solid var(--vo-border-color);
    border-radius: var(--vo-radius-md);
    font-size: var(--vo-font-size-sm);
    color: var(--vo-text-primary);
}

/* ==========================================================================
   Step 3: Review Gallery
   ========================================================================== */
.vo-review-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vo-spacing-md);
}

@media (max-width: 768px) {
    .vo-review-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--vo-spacing-sm);
    }

    .vo-review-section {
        padding: var(--vo-spacing-md);
        margin-bottom: var(--vo-spacing-md);
    }

    .vo-review-section-header {
        margin-bottom: var(--vo-spacing-sm);
    }

    .vo-review-section-title {
        font-size: 14px;
    }

    .vo-review-row {
        flex-direction: column;
        gap: 4px;
        padding: var(--vo-spacing-xs) 0;
    }

    .vo-review-label {
        flex: none;
        font-size: 12px;
        color: var(--vo-text-muted);
    }

    .vo-review-value {
        font-size: 14px;
    }

    .vo-review-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .vo-review-tags {
        gap: var(--vo-spacing-xs);
    }

    .vo-review-tag {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .vo-review-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vo-review-gallery-item {
    aspect-ratio: 1;
    border-radius: var(--vo-radius-md);
    overflow: hidden;
}

.vo-review-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Step 3: Finish Button Variant
   ========================================================================== */
.vo-btn-finish {
    background: var(--vo-primary-color);
    text-decoration: none;
}

.vo-btn-finish:hover {
    background: var(--vo-primary-hover);
}

/* ==========================================================================
   Step 3: Inline Edit Styles (for AJAX editing)
   ========================================================================== */
.vo-review-section textarea {
    width: 100%;
    padding: var(--vo-spacing-sm);
    font-size: var(--vo-font-size-sm);
    font-family: var(--vo-font-family);
    color: var(--vo-text-primary);
    background: var(--vo-card-bg);
    border: 1px solid var(--vo-input-border);
    border-radius: var(--vo-radius-sm);
    resize: vertical;
    min-height: 80px;
    margin-bottom: var(--vo-spacing-sm);
}

.vo-review-section textarea:focus {
    outline: none;
    border-color: var(--vo-input-focus);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.15);
}

.vo-save {
    display: inline-block;
    padding: var(--vo-spacing-xs) var(--vo-spacing-md);
    background: var(--vo-primary-color);
    color: #fff;
    border: none;
    border-radius: var(--vo-radius-sm);
    font-size: var(--vo-font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--vo-transition);
}

.vo-save:hover {
    background: var(--vo-primary-hover);
}
.vo-glitta-logo{
    height: 65px;
    width: 102.27px;
    top: 13.01px;
    left: none;
    display: block;
}
.vo-terms-label{
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 14px;
}
.vo-tandc-header {
    text-align: left;
    margin-bottom: var(--vo-spacing-xl);
}

.vo-tandc-title {
    font-size: var(--vo-font-size-2xl);
    font-weight: 600;
    width: 360;
    height: 44px;
    color: var(--vo-text-primary);
    margin: 0 0 var(--vo-spacing-sm);
}

.vo-tandc-subtitle {
    font-size: 16px;
    color: #262626;
    margin: 0;
    font-weight: 400;
}
.vo-tandc-update{
    font-size: 10px;
    color: #313D44;
    margin: 0;
    font-weight: 400;
}
.vo-tandc-header2 {
    text-align: left;
    font-size: 20px;
    color: #0F0E0E;
    margin: 0;
    margin-bottom: 10px;
    font-weight: 400;
}
.vo-tandc-header3 {
    text-align: left;
    font-size: 16px;
    color: #0F0E0E;
    margin: 0;
    margin-bottom: 10px;
    font-weight: 400;
}
.vo-tandc-para{
    text-align: left;
    font-size: 16px;
    color: #0F0E0E;
    margin: 0;
    font-weight: 200;
}
/* =========================
   Glitta Footer
   ========================= */

.glitta-footer {
    background: #0c0c0c;
    color: #cfcfcf;
    font-family: inherit;
}

.glitta-footer-inner {
    max-width: none;
    margin: 0 auto;
    padding: 80px 40px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 18px;
    line-height: 1.6;
    color: #bdbdbd;
}

.footer-col h4.footer-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
    font-size: 16px;
}

.footer-col ul li,
.footer-col ul li a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

/* Bottom bar */

.glitta-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0c0c0c;
}

.footer-bottom-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #a8a8a8;
}

.footer-legal-links a {
    color: #cfcfcf;
    margin-left: 24px;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1024px) {
    .glitta-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .glitta-footer-inner {
        grid-template-columns: 1fr;
        padding: 60px 24px 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-legal-links a {
        margin-left: 12px;
        margin-right: 12px;
    }
}

/* ==========================================================================
   Terms & Conditions / Privacy Policy Page Styles

   These styles are SEPARATE from the main vo-* styles to avoid breaking
   existing onboarding pages. Uses tc-* prefix for Terms/Privacy pages.
   ========================================================================== */

/*
 * TC Page Wrapper - Full width layout for T&C and Privacy Policy pages
 * Replaces vo-page-wrapper for these pages to allow full-width content
 */
.tc-page-wrapper {
    /* Break out of any WordPress container */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -40vw !important;
    margin-right: -50vw !important;
    width: 80vw !important;
    max-width: 100vw !important;

    min-height: 100vh;
    font-family: var(--vo-font-family);
    line-height: var(--vo-line-height);
    display: block;
    padding: 0;
    overflow: clip;
    /* overflow-x: hidden; */
}

/* TC background - same as vo-page-wrapper but for tc pages */
.tc-page-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: #F4DBFF url('section-bg.svg') top center no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

/*
 * TC Content Wrapper - Full width content area
 */
.tc-content-wrapper {
    position: relative;
    z-index: 1;
    flex: 1;

    /* Full width */
    max-width: 100% !important;
    width: 100% !important;

    margin: 0;
    padding-top: 130px;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.tc-card {
    position: sticky;
    z-index: 1;
    background: var(--vo-card-bg);
    border-radius: var(--vo-radius-xl);
    box-shadow: var(--vo-shadow-lg);
    padding: 20px; /* More horizontal padding inside */

    /* Card fills the wrapper width */
    max-width: 100% !important;
    width: 100% !important;
}

/*
 * Footer Fix for T&C / Privacy Policy pages
 * Footer takes FULL WIDTH of the page (100%)
 * Content inside has padding for spacing
 */
.glitta-footer {
    position: absolute;
    z-index: 2; /* Higher than the vo-page-wrapper::before (z-index: 0) */
    width: 100% !important;
    max-width: 100% !important;
}

/* Footer inner - FULL WIDTH with internal padding */
.glitta-footer .glitta-footer-inner {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 80px 60px 60px !important;
    box-sizing: border-box;
}

.glitta-footer .footer-bottom-inner {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 20px 60px !important;
    box-sizing: border-box;
}

/* Responsive adjustments for TC pages */
@media (max-width: 768px) {
    .tc-content-wrapper {
        width: calc(100% - 24px) !important;
        padding: 80px 12px 40px; /* Top padding for fixed header */
    }

    .tc-card {
        padding: var(--vo-spacing-xl) var(--vo-spacing-lg);
    }

    .glitta-footer .glitta-footer-inner {
        padding: 60px 24px 40px !important;
    }

    .glitta-footer .footer-bottom-inner {
        padding: 20px 24px !important;
    }
}