/* Reset and Base Styles */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

:root {
    --primary-color: #da7b36;
    --primary-hover: #c56b2a;
    --primary-light: rgba(218, 123, 54, 0.1);
    --bg-dark: #111111;
    --bg-darker: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #b8b8b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --error-color: #ff4444;
    --success-color: #4caf50;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Start Screen */
.start-screen {
    position: relative;
    /* top: 0;
    left: 0; */
    width: 100%;
    /* min-height: 90vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--bg-dark);
    z-index: 1000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    margin-top: 100px;
}

.start-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Pulsating Start Button */
.start-button {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 40px rgba(218, 123, 54, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(218, 123, 54, 0.6);
}

.start-button:active {
    transform: scale(0.98);
}

/* Pulse Animation */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 150%;
        height: 150%;
        opacity: 0;
    }
}

.main-apply-container {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    background-color: var(--bg-dark);
    padding: 100px 0;
}

/* Form Container */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px 100px 20px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-container:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin-bottom: 48px;
    padding-top: 20px;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-darker);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 0 20px rgba(218, 123, 54, 0.5);
}

.step-label {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-gray);
    white-space: nowrap;
    transition: color 0.3s ease;
    text-align: center;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--text-white);
}

.progress-line {
    position: relative;
    width: 48px;
    height: 3px;
    background: var(--border-color);
    border-radius: 2px;
    margin: 0 4px;
    display: block;
    overflow: hidden;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
}

.progress-step.completed + .progress-line::after {
    width: 100%;
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.form-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Form Sections */
.form-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-note {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-style: italic;
}

/* Form Groups */
.form-group-apply {
    margin-bottom: 25px;
}

.form-group-apply label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
    font-family: 'DM Sans', sans-serif;
}

.form-group-apply input,
.form-group-apply select,
.form-group-apply textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group-apply input:focus,
.form-group-apply select:focus,
.form-group-apply textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(218, 123, 54, 0.05);
    box-shadow: 0 0 0 3px rgba(218, 123, 54, 0.1);
}

.form-group-apply textarea {
    min-height: 100px;
    line-height: 1.5;
}

.form-group-apply textarea::placeholder {
    color: var(--text-gray);
}

.form-group-apply input::placeholder {
    color: var(--text-gray);
}

.form-group-apply select option {
    background-color: var(--bg-darker);
    color: var(--text-white);
}

/* Date Input Calendar Icon Color */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg) brightness(0.8);
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg) brightness(1);
}

/* Multi-Select Dropdown */
.multi-select-container-apply {
    position: relative;
}

.selected-items-apply {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    min-height: 20px;
}

.selected-item {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
}

.selected-item .remove {
    cursor: pointer;
    font-weight: bold;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.selected-item .remove:hover {
    opacity: 1;
}

.dropdown-toggle-apply {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.dropdown-toggle-apply:hover {
    border-color: var(--primary-color);
}

.dropdown-icon-apply {
    transition: transform 0.3s ease;
}

.dropdown-toggle-apply.active .dropdown-icon-apply {
    transform: rotate(180deg);
}

.dropdown-menu-apply {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    background-color: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.checkbox-item-apply {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: 'DM Sans', sans-serif;
}

.checkbox-item-apply:hover {
    background-color: rgba(218, 123, 54, 0.1);
}

.checkbox-item-apply input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

/* Checkbox Group */
.checkbox-group-apply {
    margin-bottom: 30px;
}

.checkbox-label-apply {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.checkbox-label-apply input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-text-apply {
    flex: 1;
    line-height: 1.6;
}

/* Error Messages */
.error-message {
    display: block;
    color: var(--error-color);
    font-size: 14px;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.error-message.show {
    opacity: 1;
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.nav-button {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.back-button {
    background-color: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
}

.back-button:not(:disabled):hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.back-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.next-button {
    background-color: var(--primary-color);
    color: var(--text-white);
    margin-left: auto;
}

.next-button:hover {
    background-color: var(--primary-hover);
    transform: translateX(5px);
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    font-family: 'DM Sans', sans-serif;
}

.submit-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(218, 123, 54, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

/* Error Message */
.form-error-message {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
    padding: 100px 20px;
    opacity: 0;
    visibility: visible;
    transition: all 0.5s ease;
}

.error-content {
    text-align: center;
    animation: errorBounce 0.6s ease;
    max-width: 500px;
}

@keyframes errorBounce {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.error-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.error-content h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--error-color);
}

.error-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: 'DM Sans', sans-serif;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-retry-btn,
.error-contact-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.error-retry-btn {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.error-retry-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.error-contact-btn {
    background-color: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
}

.error-contact-btn:hover {
    border-color: var(--text-gray);
    color: var(--text-white);
}

/* Loading State */
.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Warning Message */
.form-warning-message {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
    padding: 100px 20px;
    opacity: 0;
    visibility: visible;
    transition: all 0.5s ease;
}

.warning-content {
    text-align: center;
    animation: warningBounce 0.6s ease;
    max-width: 500px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ffa500;
}

@keyframes warningBounce {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.warning-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.form-warning-message h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffa500;
}

.form-warning-message p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: 'DM Sans', sans-serif;
}

.warning-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.warning-contact-btn,
.warning-ok-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.warning-contact-btn {
    background-color: #ffa500;
    color: var(--text-white);
}

.warning-contact-btn:hover {
    background-color: #e69500;
    transform: translateY(-2px);
}

.warning-ok-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.warning-ok-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Success Message */
.success-message {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
    padding: 100px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.success-message:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
    animation: successBounce 0.6s ease;
}

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

.success-icon {
    margin-bottom: 30px;
}

.success-icon svg {
    animation: drawCheck 0.8s ease 0.3s forwards;
}

@keyframes drawCheck {
    from {
        stroke-dasharray: 0 100;
    }
    to {
        stroke-dasharray: 100 0;
    }
}

.success-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.success-text {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 500px;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
}

.countdown-message {
    font-size: 16px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
    animation: countdownPulse 1s ease-in-out infinite;
    font-family: 'DM Sans', sans-serif;
}

.countdown-message #countdownTimer {
    font-weight: 700;
    font-size: 18px;
}

@keyframes countdownPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.success-button {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    margin-top: 20px;
}

.success-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(218, 123, 54, 0.4);
}

/* Modal */
.modal-apply {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-apply:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal-content-apply {
    background-color: var(--bg-darker);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--border-color);
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-title-apply {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-white);
    font-family: 'Bricolage Grotesque', sans-serif;
}

.modal-input-apply {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
    margin-bottom: 30px;
    font-family: 'DM Sans', sans-serif;
}

.modal-input-apply:focus {
    outline: none;
    border-color: var(--primary-color);
}

.modal-buttons-apply {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.modal-button-apply {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.modal-button-apply.cancel {
    background-color: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
}

.modal-button-apply.cancel:hover {
    border-color: var(--text-gray);
    color: var(--text-white);
}

.modal-button-apply.confirm {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.modal-button-apply.confirm:hover {
    background-color: var(--primary-hover);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 20px 15px;
    }

    .progress-bar {
        gap: 8px;
    }

    .progress-step {
        min-width: 50px;
    }
    .progress-line {
        width: 28px;
        height: 3px;
        margin: 0 2px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-label {
        font-size: 12px;
        margin-top: 6px;
    }

    .form-title {
        font-size: 32px;
    }

    .form-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 20px;
    }

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

    .nav-button {
        width: 100%;
        justify-content: center;
    }

    .back-button {
        order: 2;
    }

    .next-button {
        order: 1;
        margin-left: 0;
    }

    .start-button {
        width: 150px;
        height: 150px;
        font-size: 18px;
    }

    .modal-content-apply {
        padding: 30px 20px;
    }
    
    .success-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .success-message {
        min-height: 60vh;
        padding: 60px 15px;
    }
    
    .form-error-message {
        min-height: 60vh;
        padding: 60px 15px;
    }
    
    .error-content h3 {
        font-size: 24px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-retry-btn,
    .error-contact-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .form-warning-message {
        min-height: 60vh;
        padding: 60px 15px;
    }
    
    .warning-content h3 {
        font-size: 24px;
    }
    
    .warning-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .warning-contact-btn,
    .warning-ok-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .progress-bar {
        gap: 8px;
    }
    .progress-step {
        min-width: 40px;
    }
    .progress-line {
        width: 20px;
        height: 3px;
        margin: 0 2px;
        display: block;
    }

    .step-label {
        margin-top: 4px;
        font-size: 10px;
    }

    .form-title {
        font-size: 28px;
    }

    .selected-items {
        max-height: 100px;
        overflow-y: auto;
    }
    
    .success-message {
        min-height: 50vh;
        padding: 40px 10px;
    }
    
    .success-title {
        font-size: 28px;
    }
    
    .success-text {
        font-size: 16px;
    }
    
    .countdown-message {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .countdown-message #countdownTimer {
        font-size: 16px;
    }
    
    .form-error-message {
        min-height: 50vh;
        padding: 40px 10px;
    }
    
    .error-content h3 {
        font-size: 20px;
    }
    
    .error-content p {
        font-size: 14px;
    }
    
    .form-warning-message {
        min-height: 50vh;
        padding: 40px 10px;
    }
    
    .warning-content h3 {
        font-size: 20px;
    }
    
    .warning-content p {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .progress-bar {
        gap: 6px;
    }
    .progress-step {
        min-width: 35px;
    }
    .progress-line {
        width: 15px;
        height: 3px;
        margin: 0 1px;
    }
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .step-label {
        font-size: 9px;
        margin-top: 3px;
    }
}

/* Fix scroll-to-top button icon centering */
.tm-scrollup {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

.tm-scrollup i {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}