@font-face {
    font-family: 'Vazir';
    src: url('https://cdn.jsdelivr.net/gh/rastikerdar/vazir-font@v30.1.0/dist/Vazir.woff2') format('woff2');
    font-display: swap;
    font-weight: 400 800;
    size-adjust: 100%;
    ascent-override: 95%;
    descent-override: 25%;
    line-gap-override: 0%;
}

/* Wrapper & Design System Base */
.saleh-form-wrapper {
    width: 100%;
    max-width: 1080px;
    margin: 32px auto;
    direction: rtl;
    font-family: 'yekanbakh', 'Vazir', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
    position: relative;
    padding: 0;
    background: transparent;
    box-shadow: none;
    contain: layout style;
}

.saleh-form-wrapper * {
    box-sizing: border-box;
}

/* Card Outer Frame */
.saleh-form-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 24px 60px -15px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.04);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.saleh-form-card-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 900px) {
    .saleh-form-card-inner {
        display: grid;
        grid-template-columns: minmax(350px, 410px) 1fr;
        align-items: stretch;
    }
}

/* Media Column — Dedicated to Vertical (Portrait 3:4) Clinic Photos */
.saleh-form-media-col {
    position: relative;
    background: #0b1324;
    display: flex;
    flex-direction: column;
}

.saleh-form-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    background: #0f172a;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .saleh-form-slider {
        border-radius: 0 28px 28px 0;
    }
}

@media (max-width: 899px) {
    .saleh-form-slider {
        min-height: auto;
        border-radius: 24px 24px 0 0;
    }
}

/* Slider Track — Portrait 3:4 Aspect Ratio Frame */
.saleh-slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    background: #0f172a;
    z-index: 1;
}

@media (max-width: 899px) {
    .saleh-slider-track {
        max-height: min(65vh, 480px);
    }
}

/* Individual Portrait Slide */
.saleh-form-wrapper .saleh-slider-slide {
    position: absolute !important;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s ease-in-out;
    z-index: 1 !important;
}

.saleh-form-wrapper .saleh-slider-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2 !important;
}

.saleh-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 7s cubic-bezier(0.1, 0.7, 0.1, 1);
    will-change: transform, opacity;
}

.saleh-slider-slide img.is-loaded {
    opacity: 1;
}

.saleh-slider-slide.is-active img.is-loaded {
    transform: scale(1);
}

/* Shimmer placeholder while vertical image is loading */
.saleh-form-slider.is-pending .saleh-slider-track::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(110deg, #0b1324 20%, #1e293b 40%, #0b1324 60%);
    background-size: 200% 100%;
    animation: salehSliderShimmer 1.8s ease-in-out infinite;
}

@keyframes salehSliderShimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Top Branding Badge over Portrait Photo */
.saleh-slider-badge-top {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.saleh-slider-badge-top .badge-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.saleh-slider-badge-top .badge-icon svg {
    width: 11px;
    height: 11px;
    stroke: #ffffff;
}

.saleh-slider-badge-top .badge-text {
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    color: #f8fafc;
}

/* Slide Counter Badge (e.g. 01 / 05) */
.saleh-slider-counter {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    pointer-events: none;
}

.saleh-slider-counter .separator {
    opacity: 0.5;
    margin: 0 2px;
}

/* Navigation Arrow Buttons for Gallery (< & >) */
.saleh-slider-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 12 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(15, 23, 42, 0.35) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    opacity: 0.75;
}

.saleh-slider-nav:hover {
    background: rgba(2, 132, 199, 0.85) !important;
    opacity: 1;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4) !important;
}

.saleh-slider-prev {
    right: 12px;
}

.saleh-slider-next {
    left: 12px;
}

.saleh-slider-nav svg {
    width: 18px !important;
    height: 18px !important;
    stroke: #ffffff !important;
}

/* Bottom Dots Bar over Portrait Image */
.saleh-form-wrapper .saleh-slider-dots {
    position: absolute !important;
    left: 50% !important;
    bottom: 92px !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 7px !important;
    z-index: 20 !important;
    padding: 5px 12px !important;
    border-radius: 999px !important;
    background: rgba(15, 23, 42, 0.55) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.saleh-slider-dot {
    width: 7px;
    height: 7px;
    padding: 0 !important;
    border: none !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.45) !important;
    cursor: pointer;
    transition: transform 0.35s ease, background 0.35s ease, width 0.35s ease;
}

.saleh-slider-dot.is-active {
    width: 20px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
}

/* Floating Glassmorphism Info Card at Bottom of Vertical Photo */
.saleh-form-wrapper .saleh-slider-floating-card {
    position: absolute !important;
    bottom: 12px !important;
    right: 12px !important;
    left: 12px !important;
    z-index: 15 !important;
    padding: 12px 16px !important;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.96) 100%) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45) !important;
    text-align: right !important;
    pointer-events: none !important;
}

.saleh-form-wrapper .saleh-slider-floating-card * {
    font-family: inherit !important;
}

.saleh-form-wrapper .floating-card-rating {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 4px !important;
}

.saleh-form-wrapper .floating-card-rating .stars {
    color: #fbbf24 !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
}

.saleh-form-wrapper .floating-card-rating .rating-val {
    font-size: 11.5px !important;
    font-weight: 800 !important;
    color: #38bdf8 !important;
    background: rgba(56, 189, 248, 0.15) !important;
    padding: 2px 8px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(56, 189, 248, 0.3) !important;
}

.saleh-form-wrapper .saleh-slider-floating-card h4.floating-card-title,
.saleh-form-wrapper .floating-card-title {
    font-size: 14.5px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    margin: 0 0 3px 0 !important;
    line-height: 1.35 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
    display: block !important;
}

.saleh-form-wrapper .saleh-slider-floating-card p.floating-card-sub,
.saleh-form-wrapper .floating-card-sub {
    font-size: 11.5px !important;
    font-weight: 600 !important;
    color: #e2e8f0 !important;
    -webkit-text-fill-color: #e2e8f0 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) !important;
    display: block !important;
}

/* Form Content Column */
.saleh-form-content-col {
    padding: 36px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    min-height: 460px;
}

@media (max-width: 899px) {
    .saleh-form-content-col {
        padding: 24px 20px;
        min-height: 420px;
    }
}

@media (max-width: 480px) {
    .saleh-form-content-col {
        padding: 20px 14px;
        min-height: 400px;
    }
}

/* 4-Step Timeline Infographic Section */
.saleh-timeline-section {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1.5px dashed #e0f2fe;
}

.saleh-timeline-header {
    text-align: center;
    margin-bottom: 20px;
}

.saleh-timeline-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0369a1 !important;
    border: 1px solid #bae6fd;
    border-radius: 20px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.08);
}

.saleh-timeline-header h3 {
    font-size: 17px;
    font-weight: 800;
    color: #031e3d !important;
    margin: 4px 0 0 0;
}

.saleh-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 640px) {
    .saleh-timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.saleh-timeline-step {
    background: #f8fafc;
    border: 1.5px solid #e0f2fe;
    border-radius: 14px;
    padding: 14px 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.saleh-timeline-step:hover {
    background: #ffffff;
    border-color: #38bdf8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.14);
}

.saleh-step-number {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(6, 182, 212, 0.3);
    flex-shrink: 0;
}

.saleh-step-content h4 {
    font-size: 12px;
    font-weight: 800;
    color: #06182e !important;
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.saleh-step-content p {
    font-size: 10.5px;
    color: #64748b !important;
    margin: 0;
    line-height: 1.35;
    font-weight: 600;
}

/* Header Section */
.saleh-form-header {
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.saleh-header-icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 8px 22px rgba(6, 182, 212, 0.32);
    color: #ffffff;
}

.saleh-header-icon-badge svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
}

.saleh-form-header h2 {
    font-size: 23px;
    font-weight: 800;
    color: #031e3d !important;
    margin: 0 0 6px;
    background: linear-gradient(135deg, #031e3d 0%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.saleh-form-header p {
    font-size: 14px;
    color: #475569 !important;
    margin: 0;
    line-height: 1.5;
}

/* Gamified Progress Bar */
.saleh-progress-bar-container {
    margin-bottom: 26px;
}

.saleh-progress-track {
    width: 100%;
    height: 8px;
    background: #e0f2fe;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}

.saleh-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0284c7 0%, #06b6d4 50%, #38bdf8 100%);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.saleh-steps-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.saleh-step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.saleh-step-item.active {
    opacity: 1;
}

.saleh-step-item .step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #cbd5e1;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.saleh-step-item.active .step-num {
    background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.25);
}

.saleh-step-item .step-text {
    font-size: 12.5px;
    font-weight: 700;
    color: #1e293b !important;
}

/* Wizard Steps */
.saleh-wizard-step {
    display: none;
    animation: fadeInStep 0.4s ease forwards;
}

.saleh-wizard-step.step-active {
    display: block;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.saleh-step-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16.5px;
    font-weight: 800;
    color: #0f172a !important;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px stroke #f1f5f9;
}

.saleh-step-title svg {
    width: 22px;
    height: 22px;
    color: #06b6d4;
}

.saleh-step-desc {
    font-size: 13.5px;
    color: #64748b !important;
    margin-bottom: 16px;
}

/* Input Fields with Inline Icons */
.saleh-input-group {
    margin-bottom: 20px;
}

.saleh-input-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: 6px;
}

.saleh-input-group label .required {
    color: #ef4444 !important;
}

.saleh-input-with-icon {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.saleh-input-with-icon .field-icon {
    position: absolute;
    right: 14px;
    width: 20px;
    height: 20px;
    color: #94a3b8;
    pointer-events: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.saleh-input-with-icon .field-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.saleh-input-with-icon input {
    padding-right: 44px !important;
}

.saleh-input-with-icon:focus-within .field-icon {
    color: #0ea5e9;
}

.saleh-input-group input[type="text"],
.saleh-input-group input[type="tel"],
.saleh-input-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e0f2fe;
    border-radius: 14px;
    font-size: 15px;
    color: #0f172a !important;
    background: #f8fafc;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.saleh-input-group input:focus,
.saleh-input-group textarea:focus {
    background: #ffffff;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16);
}

.saleh-field-hint {
    display: block;
    font-size: 11.5px;
    color: #94a3b8 !important;
    margin-top: 5px;
}

/* Category Filter Tabs */
.saleh-category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 18px;
    scrollbar-width: thin;
}

.saleh-category-tabs::-webkit-scrollbar {
    height: 4px;
}

.saleh-category-tabs::-webkit-scrollbar-thumb {
    background: #bae6fd;
    border-radius: 4px;
}

.saleh-cat-tab {
    white-space: nowrap;
    background: #f0f9ff !important;
    border: 1px solid #e0f2fe !important;
    padding: 7px 14px !important;
    border-radius: 20px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #0369a1 !important;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit !important;
}

.saleh-cat-tab:hover {
    background: #e0f2fe !important;
    color: #0284c7 !important;
}

.saleh-cat-tab.active {
    background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3) !important;
}

/* Selection Counter Badge */
.saleh-selection-counter-badge {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    color: #0369a1 !important;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 13.5px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.saleh-selection-counter-badge strong {
    font-weight: 800;
    font-size: 14.5px;
    color: #0284c7 !important;
}

/* Interactive Service Chips Grid */
.saleh-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
    margin-bottom: 22px;
    max-height: 360px;
    overflow-y: auto;
    padding-left: 4px;
    scrollbar-width: thin;
}

.saleh-service-chip {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.saleh-service-chip input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.saleh-service-chip .chip-content {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f8fafc;
    border: 2px solid #e0f2fe;
    border-radius: 14px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 50px;
}

.saleh-service-chip:hover .chip-content {
    border-color: #38bdf8;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.15);
}

.saleh-service-chip input[type="checkbox"]:checked + .chip-content {
    background: #f0f9ff !important;
    border-color: #0ea5e9 !important;
    box-shadow: 0 6px 16px rgba(6, 182, 212, 0.22);
}

.chip-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.chip-icon svg {
    width: 13px;
    height: 13px;
}

.chip-icon .icon-check { display: none; }
.chip-icon .icon-plus { display: block; }

.saleh-service-chip input[type="checkbox"]:checked + .chip-content .chip-icon {
    background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%) !important;
    color: #ffffff !important;
}

.saleh-service-chip input[type="checkbox"]:checked + .chip-content .chip-icon .icon-check { display: block; }
.saleh-service-chip input[type="checkbox"]:checked + .chip-content .chip-icon .icon-plus { display: none; }

.chip-text {
    font-size: 12.5px;
    font-weight: 700;
    color: #334155 !important;
    line-height: 1.35;
}

.saleh-service-chip input[type="checkbox"]:checked + .chip-content .chip-text {
    color: #0369a1 !important;
}

/* Summary Box */
.saleh-summary-box {
    background: #f0f9ff;
    border: 1.5px dashed #bae6fd;
    border-radius: 16px;
    padding: 14px 18px;
    margin-bottom: 22px;
    min-height: 90px;
}

.saleh-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 7px 0;
    font-size: 13.5px;
    border-bottom: 1px solid #e0f2fe;
}

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

.saleh-summary-row span { color: #64748b !important; }
.saleh-summary-row strong { color: #0f172a !important; font-weight: 700; text-align: left; }

/* Actions & Buttons */
.saleh-form-wrapper .saleh-step-actions {
    display: flex !important;
    gap: 10px !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 22px !important;
}

.saleh-form-wrapper button.saleh-btn,
.saleh-form-wrapper .saleh-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 13px 22px !important;
    border-radius: 14px !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    border: none !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
}

.saleh-form-wrapper button.saleh-btn-next,
.saleh-form-wrapper .saleh-btn-next,
.saleh-form-wrapper button.saleh-btn-submit,
.saleh-form-wrapper .saleh-btn-submit {
    position: relative !important;
    overflow: hidden !important;
}

.saleh-form-wrapper button.saleh-btn-next::before,
.saleh-form-wrapper .saleh-btn-next::before,
.saleh-form-wrapper button.saleh-btn-submit::before,
.saleh-form-wrapper .saleh-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shineEffect 4s infinite ease-in-out;
}

@keyframes shineEffect {
    0% { left: -100%; }
    30% { left: 140%; }
    100% { left: 140%; }
}

.saleh-form-wrapper button.saleh-btn-next,
.saleh-form-wrapper .saleh-btn-next {
    background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%) !important;
    color: #ffffff !important;
    flex: 1 !important;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35) !important;
}

.saleh-form-wrapper button.saleh-btn-next *,
.saleh-form-wrapper .saleh-btn-next * {
    color: #ffffff !important;
}

.saleh-form-wrapper button.saleh-btn-next:hover,
.saleh-form-wrapper .saleh-btn-next:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 24px rgba(6, 182, 212, 0.45) !important;
    color: #ffffff !important;
}

.saleh-form-wrapper button.saleh-btn-prev,
.saleh-form-wrapper .saleh-btn-prev {
    background: #f1f5f9 !important;
    color: #475569 !important;
}

.saleh-form-wrapper button.saleh-btn-prev:hover,
.saleh-form-wrapper .saleh-btn-prev:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
}

.saleh-form-wrapper button.saleh-btn-submit,
.saleh-form-wrapper .saleh-btn-submit {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
    color: #ffffff !important;
    flex: 1 !important;
    font-size: 15.5px !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35) !important;
}

.saleh-form-wrapper button.saleh-btn-submit * {
    color: #ffffff !important;
}

.saleh-form-wrapper button.saleh-btn-submit:hover,
.saleh-form-wrapper .saleh-btn-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 24px rgba(16, 185, 129, 0.45) !important;
    color: #ffffff !important;
}

.saleh-btn svg {
    width: 17px !important;
    height: 17px !important;
    stroke: currentColor !important;
}

.saleh-error-message {
    background: #fef2f2;
    color: #dc2626 !important;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 600;
    margin-top: 14px;
    border: 1px solid #fecaca;
}

/* Success Celebration Screen */
.saleh-success-celebration {
    text-align: center;
    padding: 16px 10px;
    position: relative;
}

.success-icon-badge {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 10px 26px rgba(16, 185, 129, 0.35);
    animation: popSuccess 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

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

.success-icon-badge svg {
    width: 38px;
    height: 38px;
    stroke: #ffffff !important;
}

.saleh-success-celebration h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a !important;
    margin-bottom: 10px;
}

.saleh-success-celebration p {
    font-size: 14.5px;
    color: #475569 !important;
    line-height: 1.55;
    margin-bottom: 20px;
}

.saleh-tracking-badge {
    background: #f0f9ff;
    border: 2px solid #bae6fd;
    padding: 12px 18px;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.saleh-tracking-badge span {
    font-size: 12.5px;
    color: #0369a1 !important;
}

.saleh-tracking-badge strong {
    font-size: 22px;
    font-weight: 900;
    color: #0284c7 !important;
    letter-spacing: 2px;
    font-family: monospace;
}

.saleh-note-text {
    font-size: 12.5px !important;
    color: #94a3b8 !important;
    margin-bottom: 18px !important;
}

.saleh-form-wrapper button.saleh-btn-reload,
.saleh-form-wrapper .saleh-btn-reload {
    background: #f1f5f9 !important;
    color: #334155 !important;
    padding: 11px 24px !important;
}

.saleh-form-wrapper button.saleh-btn-reload:hover,
.saleh-form-wrapper .saleh-btn-reload:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
    .saleh-slider-slide,
    .saleh-slider-slide img,
    .saleh-slider-dot,
    .saleh-wizard-step {
        transition: none !important;
        animation: none !important;
    }
}
