/* Merchant Signup Workflow Styles */

/* Workflow Progress Bar Styles */
.workflow-progress {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 30px 20px;
}

.progress-track {
    position: absolute;
    top: 55px;
    left: calc(10% + 25px);
    right: calc(10% + 25px);
    height: 4px;
    background: var(--border-color, #e0e0e0);
    z-index: 1;
    border-radius: 2px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 80px;
}

.step-indicator {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--border-color, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted, #999);
    transition: all 0.3s ease;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.step-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.step-check i {
    display: block;
    visibility: hidden;
}

.step.completed .step-check i {
    visibility: visible;
}

.step-label {
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted, #999);
    text-align: center;
    transition: all 0.3s ease;
    max-width: 100px;
    line-height: 1.3;
}

/* Active Step */
.step.active .step-indicator {
    background: var(--primary, #007bff);
    border-color: var(--primary, #007bff);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
}

.step.active .step-number {
    color: #fff;
}

.step.active .step-label {
    color: var(--primary, #007bff);
    font-weight: 600;
}

/* Completed Step */
.step.completed .step-indicator {
    background: var(--success, #28a745);
    border-color: var(--success, #28a745);
}

.step.completed .step-number {
    display: none;
}

.step.completed .step-check {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.completed .step-label {
    color: var(--success, #28a745);
}

/* Responsive Design */
@media (max-width: 768px) {
    .workflow-progress {
        padding: 20px 10px;
        margin-bottom: 30px;
    }
    
    .progress-track {
        top: 45px;
        left: calc(5% + 20px);
        right: calc(5% + 20px);
    }
    
    .step {
        min-width: 60px;
    }
    
    .step-indicator {
        width: 40px;
        height: 40px;
    }
    
    .step-number {
        font-size: 0.95rem;
    }
    
    .step-check {
        font-size: 1rem;
    }
    
    .step-label {
        font-size: 0.7rem;
        margin-top: 8px;
        max-width: 70px;
    }
}

@media (max-width: 480px) {
    .workflow-progress {
        overflow-x: auto;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }
    
    .progress-steps {
        min-width: 450px;
        padding: 0 15px;
    }
    
    .progress-track {
        top: 42px;
        left: 40px;
        right: 40px;
    }
    
    .step {
        min-width: 70px;
    }
    
    .step-indicator {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }
    
    .step-number {
        font-size: 0.85rem;
    }
    
    .step-check {
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.65rem;
        max-width: 65px;
    }
}

/* Step Container Styles */
.step-container {
    background: var(--bg-dark, #1a1a1a);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
    border: 1px solid var(--border-color, #333);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 35px;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light, #fff);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.step-header p {
    color: var(--text-muted, #999);
    font-size: 0.95rem;
}

/* Step Navigation Styles */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color, #333);
}

.prev-btn,
.next-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    font-family: 'Michroma', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: none;
    text-transform: uppercase;
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
}

.prev-btn {
    background: transparent;
    border: 1px solid var(--primary, #b8d935);
    color: var(--primary, #b8d935);
}

.prev-btn:hover {
    background: var(--primary, #b8d935);
    color: var(--text-on-primary, #000);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow, 0 0 20px rgba(184, 217, 53, 0.3));
}

.next-btn {
    background: var(--primary, #b8d935);
    color: var(--text-on-primary, #000);
}

.next-btn:hover {
    background: var(--primary-hover, #c9e64a);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow, 0 0 20px rgba(184, 217, 53, 0.3));
}

.next-btn i,
.prev-btn i {
    transition: transform 0.3s ease;
}

.next-btn:hover i {
    transform: translateX(3px);
}

.prev-btn:hover i {
    transform: translateX(-3px);
}

/* Login Link */
.login-link {
    text-align: center;
    margin-top: 25px;
    color: var(--text-muted, #999);
    font-size: 0.9rem;
}

.login-link a {
    color: var(--primary, #b8d935);
    font-weight: 500;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Helper Text */
.helper-text {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted, #999);
    margin-top: 5px;
}

.verification-text {
    color: var(--primary, #007bff);
}

/* Responsive Step Container */
@media (max-width: 768px) {
    .step-container {
        padding: 25px 20px;
    }
    
    .step-header h3 {
        font-size: 1.3rem;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .prev-btn,
    .next-btn {
        width: 100%;
        justify-content: center;
    }
    
    .step-navigation > div:empty {
        display: none;
    }
}

/* ========================================
   Step 2: Profile Section Styles
   ======================================== */

/* Form Sections */
.form-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color, #333);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}

.form-section:last-of-type {
    margin-bottom: 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary, #b8d935);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color, #333);
}

.section-title i {
    font-size: 1rem;
}

.section-description {
    color: var(--text-muted, #999);
    font-size: 0.9rem;
    margin-top: -10px;
    margin-bottom: 20px;
}

/* Required Field Indicator */
.required {
    color: var(--error, #ff4444);
    font-weight: bold;
}

/* Map Input Wrapper */
.map-input-wrapper {
    display: flex;
    gap: 10px;
}

.map-input-wrapper .form-control {
    flex: 1;
}

.btn-map {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary, #b8d935);
    color: var(--text-on-primary, #000);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-map:hover {
    background: var(--primary-hover, #c9e64a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 217, 53, 0.3);
}

.btn-map i {
    font-size: 1.1rem;
}

/* Branches Section */
#branchesContainer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.branch-entry {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color, #444);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.branch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color, #444);
}

.branch-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-light, #fff);
    font-size: 0.95rem;
}

.branch-title i {
    color: var(--primary, #b8d935);
}

.btn-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid var(--error, #ff4444);
    color: var(--error, #ff4444);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background: var(--error, #ff4444);
    color: #fff;
}

/* Add Button */
.btn-add {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px dashed var(--primary, #b8d935);
    color: var(--primary, #b8d935);
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add:hover {
    background: rgba(184, 217, 53, 0.1);
    border-style: solid;
}

.btn-add i {
    font-size: 0.85rem;
}

/* Checkbox Group Styles */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-check {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary, #b8d935);
    cursor: pointer;
    flex-shrink: 0;
}

.form-check-input.error {
    outline: 2px solid var(--error, #ff4444);
    outline-offset: 2px;
}

.form-check-label {
    color: var(--text-light, #fff);
    font-size: 0.95rem;
    cursor: pointer;
    line-height: 1.5;
    flex: 1;
}

.form-check-label a {
    color: var(--primary, #b8d935);
    text-decoration: none;
    font-weight: 500;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.form-check .error-message {
    width: 100%;
    margin-left: 32px;
}

/* Branch entry form group adjustments */
.branch-entry .form-row {
    margin-bottom: 15px;
}

.branch-entry .form-row:last-child {
    margin-bottom: 0;
}

.branch-entry .form-group {
    margin-bottom: 0;
}

/* Responsive Styles for Step 2 */
@media (max-width: 768px) {
    .form-section {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .branch-entry {
        padding: 15px;
    }
    
    .map-input-wrapper {
        flex-direction: column;
    }
    
    .btn-map {
        width: 100%;
        height: 42px;
    }
    
    .form-check-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 15px 12px;
    }
    
    .branch-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .btn-remove {
        align-self: flex-end;
        margin-top: -35px;
    }
}

/* ========================================
   Step 3: Document Upload Styles
   ======================================== */

/* Document Upload Item */
.document-upload-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color, #444);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.document-upload-item:last-of-type {
    margin-bottom: 0;
}

.document-info {
    margin-bottom: 15px;
}

.document-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-light, #fff);
    margin-bottom: 5px;
}

.document-label i {
    color: var(--primary, #b8d935);
    font-size: 1.1rem;
}

/* Document Upload Area */
.document-upload-area {
    position: relative;
    border: 2px dashed var(--border-color, #444);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.document-upload-area.compact {
    padding: 15px;
}

.document-upload-area:hover {
    border-color: var(--primary, #b8d935);
    background: rgba(184, 217, 53, 0.05);
}

.document-upload-area.drag-over {
    border-color: var(--primary, #b8d935);
    background: rgba(184, 217, 53, 0.1);
    transform: scale(1.01);
}

/* File Input (hidden) */
.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

/* File Label */
.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted, #999);
    pointer-events: none;
    transition: all 0.3s ease;
}

.file-label.compact {
    flex-direction: row;
    justify-content: center;
}

.file-label i {
    font-size: 2rem;
    color: var(--primary, #b8d935);
}

.file-label.compact i {
    font-size: 1.2rem;
}

.file-label-text {
    font-size: 0.95rem;
}

.document-upload-area:hover .file-label {
    color: var(--text-light, #fff);
}

/* File Preview */
.file-preview {
    display: none;
}

.file-preview.has-file {
    display: block;
    position: relative;
    z-index: 3;
}

.file-preview-content {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(184, 217, 53, 0.1);
    border: 1px solid var(--primary, #b8d935);
    border-radius: 8px;
    padding: 12px 15px;
}

.file-preview-content > i {
    font-size: 1.8rem;
    color: var(--primary, #b8d935);
}

.file-details {
    flex: 1;
    text-align: left;
}

.file-name {
    display: block;
    font-weight: 500;
    color: var(--text-light, #fff);
    margin-bottom: 3px;
    word-break: break-all;
}

.file-size {
    font-size: 0.85rem;
    color: var(--text-muted, #999);
}

.btn-remove-file {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid var(--error, #ff4444);
    color: var(--error, #ff4444);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove-file:hover {
    background: var(--error, #ff4444);
    color: #fff;
}

/* Additional Document Entry */
.additional-document-entry {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color, #444);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    animation: slideIn 0.3s ease;
}

.document-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color, #444);
}

.document-entry-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-light, #fff);
    font-size: 0.95rem;
}

.document-entry-title i {
    color: var(--primary, #b8d935);
}

.additional-document-entry .form-row {
    margin-bottom: 0;
}

.additional-document-entry .form-group {
    margin-bottom: 0;
}

/* Document Upload Item Error State */
.document-upload-item .error-message {
    display: block;
    margin-top: 10px;
}

/* Responsive Styles for Step 3 */
@media (max-width: 768px) {
    .document-upload-item {
        padding: 15px;
    }
    
    .document-upload-area {
        padding: 25px 15px;
    }
    
    .file-label i {
        font-size: 1.5rem;
    }
    
    .file-preview-content {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .file-preview-content > i {
        font-size: 1.5rem;
    }
    
    .file-details {
        flex: 1 1 calc(100% - 100px);
    }
    
    .additional-document-entry .form-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .document-upload-area {
        padding: 20px 10px;
    }
    
    .file-label-text {
        font-size: 0.85rem;
    }
    
    .file-name {
        font-size: 0.9rem;
    }
}

/* ========================================
   Step 4: Discounts & Images Styles
   ======================================== */

/* Discounts Table */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color, #444);
}

.discounts-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
}

.discounts-table thead {
    background: rgba(184, 217, 53, 0.1);
}

.discounts-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    color: var(--primary, #b8d935);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--primary, #b8d935);
    white-space: nowrap;
}

.discounts-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color, #444);
    vertical-align: middle;
}

.discounts-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.discounts-table .form-control {
    padding: 8px 10px;
    font-size: 0.9rem;
    min-width: 100px;
}

.discounts-table .discount-product-name {
    min-width: 180px;
}

.discounts-table .discount-category {
    min-width: 150px;
}

.discounts-table .discount-percentage {
    min-width: 70px;
    max-width: 80px;
}

.discounts-table .discount-start-date,
.discounts-table .discount-end-date {
    min-width: 140px;
}

.discounts-table .discount-instructions {
    min-width: 150px;
}

.discounts-table .text-center {
    text-align: center;
}

.discounts-table .discount-exclude-weekends {
    width: 20px;
    height: 20px;
    accent-color: var(--primary, #b8d935);
    cursor: pointer;
}

.discounts-table .btn-remove {
    padding: 8px;
    min-width: 36px;
}

/* Image Upload Item */
.image-upload-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color, #444);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.image-upload-label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.image-upload-label > i {
    color: var(--primary, #b8d935);
    font-size: 1.2rem;
}

.image-upload-label > span:first-of-type {
    font-weight: 600;
    color: var(--text-light, #fff);
}

.image-upload-label .helper-text {
    flex-basis: 100%;
    margin-left: 32px;
    margin-top: -5px;
}

/* Image Upload Area */
.image-upload-area {
    position: relative;
    border: 2px dashed var(--border-color, #444);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.image-upload-area.compact {
    padding: 20px;
}

.image-upload-area:hover {
    border-color: var(--primary, #b8d935);
    background: rgba(184, 217, 53, 0.05);
}

.image-upload-area.drag-over {
    border-color: var(--primary, #b8d935);
    background: rgba(184, 217, 53, 0.1);
    transform: scale(1.01);
}

/* Image Preview */
.image-preview {
    display: none;
}

.image-preview.has-file {
    display: block;
    position: relative;
    z-index: 3;
}

.image-preview-content {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(184, 217, 53, 0.1);
    border: 1px solid var(--primary, #b8d935);
    border-radius: 8px;
    padding: 12px 15px;
}

.preview-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary, #b8d935);
}

.image-details {
    flex: 1;
    text-align: left;
}

.image-details .file-name {
    display: block;
    font-weight: 500;
    color: var(--text-light, #fff);
    margin-bottom: 3px;
    word-break: break-all;
}

.image-details .file-size {
    font-size: 0.85rem;
    color: var(--text-muted, #999);
}

/* Store Images Section */
.store-images-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color, #444);
}

.section-subtitle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.section-subtitle > span:first-child {
    font-weight: 600;
    color: var(--text-light, #fff);
}

#storeImagesContainer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.store-image-entry {
    animation: slideIn 0.3s ease;
}

.store-image-upload {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.store-image-upload .image-upload-area {
    flex: 1;
}

.store-image-upload .btn-remove {
    flex-shrink: 0;
    margin-top: 15px;
}

/* Submit Button */
.submit-btn {
    background: var(--success, #28a745);
    color: #fff;
}

.submit-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.3);
}

/* Responsive Styles for Step 4 */
@media (max-width: 768px) {
    .discounts-table th,
    .discounts-table td {
        padding: 10px 8px;
    }
    
    .discounts-table .form-control {
        padding: 6px 8px;
        font-size: 0.85rem;
    }
    
    .image-upload-item {
        padding: 15px;
    }
    
    .image-upload-area {
        padding: 25px 15px;
    }
    
    .preview-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .store-image-upload {
        flex-direction: column;
    }
    
    .store-image-upload .btn-remove {
        align-self: flex-end;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .image-upload-label {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .image-upload-label .helper-text {
        margin-left: 0;
    }
    
    .image-preview-content {
        flex-wrap: wrap;
    }
    
    .preview-thumbnail {
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   Step 5: Completion / Done Styles
   ======================================== */

/* Completion Container */
.completion-container {
    text-align: center;
    padding: 50px 40px;
}

/* Success Checkmark Animation */
.completion-icon {
    margin-bottom: 30px;
}

.success-checkmark {
    width: 120px;
    height: 120px;
}

.checkmark-circle {
    stroke: var(--success, #28a745);
    stroke-width: 3;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: drawCircle 0.6s ease-out forwards;
}

.checkmark-check {
    stroke: var(--success, #28a745);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: drawCheck 0.4s ease-out 0.5s forwards;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* Completion Header */
.completion-header {
    margin-bottom: 35px;
}

.completion-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--success, #28a745);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.completion-message {
    font-size: 1.1rem;
    color: var(--text-muted, #999);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Confirmation Box */
.confirmation-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success, #28a745);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.confirmation-box > i {
    font-size: 2rem;
    color: var(--success, #28a745);
    flex-shrink: 0;
    margin-top: 5px;
}

.confirmation-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-light, #fff);
    margin-bottom: 8px;
}

.confirmation-text p {
    color: var(--text-muted, #999);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.highlight-email {
    color: var(--primary, #b8d935);
    font-weight: 600;
}

/* Registration Summary */
.registration-summary {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color, #444);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.registration-summary h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary, #b8d935);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color, #444);
}

.registration-summary h4 i {
    font-size: 1.1rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-label {
    font-size: 0.8rem;
    color: var(--text-muted, #999);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 1rem;
    color: var(--text-light, #fff);
    font-weight: 500;
}

/* Next Steps Info */
.next-steps-info {
    background: rgba(184, 217, 53, 0.05);
    border: 1px solid var(--border-color, #444);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 35px;
    text-align: left;
}

.next-steps-info h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary, #b8d935);
    margin-bottom: 20px;
}

.next-steps-info h4 i {
    font-size: 1.1rem;
}

.next-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.next-steps-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light, #fff);
    font-size: 0.95rem;
}

.next-steps-list li i {
    color: var(--success, #28a745);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Completion Action Buttons */
.completion-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.completion-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: 'Michroma', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
}

.completion-btn.btn-primary {
    background: var(--primary, #b8d935);
    color: var(--text-on-primary, #000);
}

.completion-btn.btn-primary:hover {
    background: var(--primary-hover, #c9e64a);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow, 0 0 20px rgba(184, 217, 53, 0.3));
}

.completion-btn.btn-outline {
    background: transparent;
    border: 1px solid var(--primary, #b8d935);
    color: var(--primary, #b8d935);
}

.completion-btn.btn-outline:hover {
    background: var(--primary, #b8d935);
    color: var(--text-on-primary, #000);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow, 0 0 20px rgba(184, 217, 53, 0.3));
}

/* Responsive Styles for Completion */
@media (max-width: 768px) {
    .completion-container {
        padding: 35px 25px;
    }
    
    .success-checkmark {
        width: 100px;
        height: 100px;
    }
    
    .completion-header h2 {
        font-size: 1.6rem;
    }
    
    .completion-message {
        font-size: 1rem;
    }
    
    .confirmation-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .confirmation-box > i {
        font-size: 2.5rem;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .completion-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .completion-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .completion-container {
        padding: 25px 15px;
    }
    
    .success-checkmark {
        width: 80px;
        height: 80px;
    }
    
    .completion-header h2 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .completion-message {
        font-size: 0.95rem;
    }
    
    .registration-summary,
    .next-steps-info {
        padding: 20px 15px;
    }
    
    .next-steps-list li {
        font-size: 0.9rem;
    }
}
