/* Wizard Form Styles - Premium Agency-Level Design - All prefixed with aorawizard- */

/* ============================================
   SweetAlert2 z-index override (Higher than wizard)
   ============================================ */
.swal2-container {
    z-index: 20000 !important;
}

.swal2-popup {
    z-index: 20001 !important;
}

/* ============================================
   BODY SCROLL LOCK (When wizard is open)
   ============================================ */
body.aorawizard-body-locked,
html.aorawizard-body-locked body {
    position: fixed !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 100% !important;
}

html.aorawizard-body-locked {
    overflow: hidden !important;
    height: 100% !important;
}

/* ============================================
   GLOBAL VARIABLES & RESET (Adapted from special-form)
   ============================================ */
:root {
    /* Light theme base */
    --aorawizard-body-color: #f7f7f7;

    /* Neutral grays for borders / UI */
    --aorawizard-lynch-800: #dbdbdb;
    --aorawizard-lynch-600: #cccccc;
    --aorawizard-lynch-500: #b3b3b3;
    --aorawizard-lynch-400: #999999;
    --aorawizard-lynch-900: rgba(0, 0, 0, 0.04);

    /* Brand / accent color (was yellow) */
    --aorawizard-primary: #ee2e2e;
    --aorawizard-button-bg: #ee2e2e;
    --aorawizard-button-hover: #c02020;

    /* Surfaces */
    --aorawizard-bg-dark: #ffffff;
    --aorawizard-bg-card: #ffffff;
    --aorawizard-bg-card-hover: #f7f7f7;

    /* Borders */
    --aorawizard-border: #e5e5e5;
    --aorawizard-border-hover: rgba(238, 46, 46, 0.4);

    /* Text */
    --aorawizard-text-primary: #111111;
    --aorawizard-text-secondary: #444444;
    --aorawizard-text-tertiary: #666666;

    /* Status */
    --aorawizard-error: #d93025;
    --aorawizard-success: #1a7f37;

    /* Shadows (kept but tuned for light) */
    --aorawizard-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --aorawizard-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --aorawizard-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --aorawizard-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.16);
    --aorawizard-radius-sm: 8px;
    --aorawizard-radius-md: 12px;
    --aorawizard-radius-lg: 16px;
    --aorawizard-radius-xl: 24px;
    --aorawizard-transition: all 0.35s ease;
}

/* ============================================
   MODAL OVERLAY
   ============================================ */
.aorawizard-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 78%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    box-sizing: border-box;
}

.aorawizard-overlay.aorawizard-active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   MAIN WIZARD CONTAINER
   ============================================ */
.aorawizard-container {
    position: relative;
    background: var(--aorawizard-bg-dark);
    border-radius: var(--aorawizard-radius-xl);
    padding: 50px 50px 35px 50px;
    max-width: 95%;
    max-height: 95vh;
    overflow-y: visible;
    overflow-x: visible;
    box-shadow: var(--aorawizard-shadow-xl);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    width: auto;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    /* Isolate Lottie animations from container transforms */
    isolation: isolate;
    /* Enable smooth scrolling inside container */
    scroll-behavior: smooth;
    /* Enable touch scrolling */
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

/* Ensure Lottie elements are not affected by parent transforms */
.aorawizard-container dotlottie-wc,
.aorawizard-kvkk-content dotlottie-wc {
    transform: none !important;
    will-change: auto;
    contain: layout style paint;
}

.aorawizard-overlay.aorawizard-active .aorawizard-container {
    transform: scale(1) translateY(0);
}

/* Custom Scrollbar for Wizard Container (Desktop) */
.aorawizard-container::-webkit-scrollbar {
    width: 8px;
}

.aorawizard-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.aorawizard-container::-webkit-scrollbar-thumb {
    background: rgba(238, 46, 46, 0.5);
    border-radius: 4px;
}

.aorawizard-container::-webkit-scrollbar-thumb:hover {
    background: rgba(214, 41, 41, 0.7);
}

/* ============================================
   CLOSE BUTTON (Adapted from special-form - Top Right)
   ============================================ */
.aorawizard-close {
    position: absolute;
    top: 0;
    right: 5%;
    transform: translate(50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: background 0.35s ease, transform 0.35s ease;
    padding: 0;
    color: #111111;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    pointer-events: auto;
}

.aorawizard-close:hover {
    background: #ee2e2e;
    transform: translate(50%, -50%) rotate(-180deg);
}

.aorawizard-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    fill: none;
    transition: transform 0.4s ease;
}

.aorawizard-close:hover svg {
    transform: rotate(-180deg);
}

/* ============================================
   BACK BUTTON (Same style as close button)
   ============================================ */
.aorawizard-back {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease;
    padding: 0;
    color: #111111;
    font-size: 20px;
    font-weight: 300;
}

.aorawizard-back:hover {
    background: #ee2e2e;
}

.aorawizard-back svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    fill: none;
    transform: rotate(0deg);
    transition: transform 0.25s ease;
}

.aorawizard-back:hover svg {
    transform: rotate(-360deg);
}

/* ============================================
   STEP CONTAINER & ANIMATIONS
   ============================================ */
.aorawizard-step {
    display: none;
    opacity: 0;
    animation: aorawizard-fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.aorawizard-step.aorawizard-active {
    display: block;
}


@keyframes aorawizard-fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.aorawizard-title {
    color: var(--aorawizard-text-primary);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 10px 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.aorawizard-subtitle {
    color: var(--aorawizard-text-secondary);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 36px 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

/* ============================================
   ENTRY SELECTION CARDS
   ============================================ */
.aorawizard-entry-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 28px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.aorawizard-entry-card {
    background: var(--aorawizard-bg-card);
    border-radius: var(--aorawizard-radius-lg);
    padding: 40px 32px;
    text-align: center;
    cursor: pointer;
    transition: var(--aorawizard-transition);
    border: 1.5px solid var(--aorawizard-border);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aorawizard-entry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
background: linear-gradient(135deg, rgb(238 46 46 / 8%) 0%, rgb(255 255 255 / 0%) 100%);
    opacity: 0;
    transition: var(--aorawizard-transition);
}

.aorawizard-entry-card:hover {
    background: var(--aorawizard-bg-card-hover);
    border-color: var(--aorawizard-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--aorawizard-shadow-lg);
}

.aorawizard-entry-card:hover::before {
    opacity: 1;
}

.aorawizard-entry-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    color: var(--aorawizard-text-primary);
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: var(--aorawizard-transition);
}

.aorawizard-entry-card:hover .aorawizard-entry-icon {
    transform: scale(1.1);
}

.aorawizard-entry-title {
    color: var(--aorawizard-text-primary);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px 0;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}

.aorawizard-entry-time {
    color: var(--aorawizard-text-tertiary);
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 4px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
    transition: var(--aorawizard-transition);
}

.aorawizard-entry-card:hover .aorawizard-entry-time {
    color: var(--aorawizard-text-secondary);
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SELECTION CARDS (Company/Personal)
   ============================================ */
.aorawizard-selection-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 28px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.aorawizard-selection-card {
    background: var(--aorawizard-bg-card);
    border-radius: var(--aorawizard-radius-lg);
    padding: 36px 28px;
    text-align: center;
    cursor: pointer;
    transition: var(--aorawizard-transition);
    border: 1.5px solid var(--aorawizard-border);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aorawizard-selection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(238 46 46 / 8%) 0%, rgb(255 255 255 / 0%) 100%);
    opacity: 0;
    transition: var(--aorawizard-transition);
}

.aorawizard-selection-card:hover {
    background: var(--aorawizard-bg-card-hover);
    border-color: var(--aorawizard-border-hover);
    transform: translateY(-3px);
    box-shadow: var(--aorawizard-shadow-md);
}

.aorawizard-selection-card:hover::before {
    opacity: 1;
}

.aorawizard-selection-card.aorawizard-selected {
    background: rgba(238, 46, 46, 0.06);
    border-color: var(--aorawizard-primary);
    box-shadow: 0 0 0 2px rgba(238, 46, 46, 0.2), var(--aorawizard-shadow-md);
}

.aorawizard-selection-card.aorawizard-selected::before {
    opacity: 1;
}

.aorawizard-selection-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--aorawizard-text-primary);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: var(--aorawizard-transition);
}

.aorawizard-selection-card:hover .aorawizard-selection-icon,
.aorawizard-selection-card.aorawizard-selected .aorawizard-selection-icon {
    transform: scale(1.1);
}

.aorawizard-selection-title {
    color: var(--aorawizard-text-primary);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}

.aorawizard-selection-desc {
    color: var(--aorawizard-text-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.aorawizard-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
    max-width: 100%;
}

.aorawizard-service-card {
    background: var(--aorawizard-bg-card);
    border-radius: var(--aorawizard-radius-lg);
    padding: 24px 20px;
    transition: var(--aorawizard-transition);
    border: 1.5px solid var(--aorawizard-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: auto;
}

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

.aorawizard-service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--aorawizard-border);
    flex-shrink: 0;
}

.aorawizard-service-icon {
    width: 44px;
    height: 44px;
    color: var(--aorawizard-text-primary);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aorawizard-service-title {
    color: var(--aorawizard-text-primary);
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.2px;
}

.aorawizard-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.aorawizard-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--aorawizard-text-secondary);
    font-size: 13px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: var(--aorawizard-radius-sm);
    transition: var(--aorawizard-transition);
}

.aorawizard-service-item:hover {
    background: rgba(238, 46, 46, 0.06);
    color: var(--aorawizard-text-primary);
}

.aorawizard-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid var(--aorawizard-border);
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: var(--aorawizard-transition);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aorawizard-checkbox:hover {
    border-color: var(--aorawizard-primary);
    background: rgba(238, 46, 46, 0.06);
}

.aorawizard-checkbox.aorawizard-checked {
    background: #ee2e2e;
    border-color: var(--aorawizard-primary);
    box-shadow: 0 0 0 3px rgba(238, 46, 46, 0.25);
}

.aorawizard-checkbox.aorawizard-checked::after {
    content: '✓';
    position: absolute;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

/* ============================================
   FORM STYLES (Adapted from special-form)
   ============================================ */
.aorawizard-form {
    margin-top: 28px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.aorawizard-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

.aorawizard-form-group {
    position: relative;
}

.aorawizard-form-group-full {
    grid-column: 1 / -1;
}

/* Form Label - Positioned on Border (Adapted from special-form) */
.aorawizard-label {
    position: absolute;
    left: 15px;
    top: 0;
    transform: translateY(-50%);
    background: var(--aorawizard-bg-dark);
    padding: 0 15px;
    color: var(--aorawizard-text-secondary);
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    z-index: 11;
    transition: all 0.35s ease;
    pointer-events: none;
    font-family: inherit;
}

/* Form Inputs (Adapted from special-form) */
.aorawizard-input,
.aorawizard-textarea,
.aorawizard-phone-input,
.aorawizard-select {
    width: 100%;
    height: 65px;
    padding: 0 25px;
    background: #ffffff !important;
    border: 0;
    border-radius: 10px;
    color: var(--aorawizard-text-primary);
    font-size: 15px;
    font-weight: 300;
    transition: box-shadow 0.35s ease;
    font-family: inherit;
    box-shadow: 0 0 0 1px var(--aorawizard-lynch-800);
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
}

.aorawizard-textarea {
    height: 120px;
    padding: 20px 25px;
    resize: none;
    outline: none;
}

.aorawizard-textarea:focus {
    background: #ffffff !important;
}

.aorawizard-input::placeholder,
.aorawizard-textarea::placeholder,
.aorawizard-phone-input::placeholder {
    color: var(--aorawizard-lynch-500);
}

/* Chrome / Edge autofill fix - Border'ları koruyarak */
.aorawizard-input:-webkit-autofill,
.aorawizard-input:-webkit-autofill:hover,
.aorawizard-input:-webkit-autofill:focus,
.aorawizard-textarea:-webkit-autofill,
.aorawizard-textarea:-webkit-autofill:hover,
.aorawizard-textarea:-webkit-autofill:focus,
.aorawizard-phone-input:-webkit-autofill,
.aorawizard-phone-input:-webkit-autofill:hover,
.aorawizard-phone-input:-webkit-autofill:focus,
.aorawizard-select:-webkit-autofill,
.aorawizard-select:-webkit-autofill:hover,
.aorawizard-select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--aorawizard-text-primary) !important;
    /* Arka plan rengi için box-shadow kullan, border shadow'u koru */
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset, 0 0 0 1px var(--aorawizard-lynch-800) !important;
    box-shadow: 0 0 0px 1000px #ffffff inset, 0 0 0 1px var(--aorawizard-lynch-800) !important;
    transition: background-color 9999s ease-in-out 0s;
}

/* Autofill durumunda focus state için border rengini güncelle */
.aorawizard-input:-webkit-autofill:focus,
.aorawizard-textarea:-webkit-autofill:focus,
.aorawizard-phone-input:-webkit-autofill:focus,
.aorawizard-select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset, 0 0 0 1px var(--aorawizard-primary) !important;
    box-shadow: 0 0 0px 1000px #ffffff inset, 0 0 0 1px var(--aorawizard-primary) !important;
}

/* Autofill durumunda hover state için border rengini güncelle */
.aorawizard-input:-webkit-autofill:hover,
.aorawizard-textarea:-webkit-autofill:hover,
.aorawizard-phone-input:-webkit-autofill:hover,
.aorawizard-select:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset, 0 0 0 1px var(--aorawizard-lynch-600) !important;
    box-shadow: 0 0 0px 1000px #ffffff inset, 0 0 0 1px var(--aorawizard-lynch-600) !important;
}

/* Error state ile autofill kombinasyonu */
.aorawizard-form-group.error .aorawizard-input:-webkit-autofill,
.aorawizard-form-group.error .aorawizard-input:-webkit-autofill:hover,
.aorawizard-form-group.error .aorawizard-input:-webkit-autofill:focus,
.aorawizard-form-group.error .aorawizard-textarea:-webkit-autofill,
.aorawizard-form-group.error .aorawizard-textarea:-webkit-autofill:hover,
.aorawizard-form-group.error .aorawizard-textarea:-webkit-autofill:focus,
.aorawizard-form-group.error .aorawizard-phone-input:-webkit-autofill,
.aorawizard-form-group.error .aorawizard-phone-input:-webkit-autofill:hover,
.aorawizard-form-group.error .aorawizard-phone-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset, 0 0 0 1px var(--aorawizard-error) !important;
    box-shadow: 0 0 0px 1000px #ffffff inset, 0 0 0 1px var(--aorawizard-error) !important;
}

.aorawizard-input:hover,
.aorawizard-textarea:hover,
.aorawizard-phone-wrapper:hover .aorawizard-phone-input,
.aorawizard-select:hover {
    box-shadow: 0 0 0 1px var(--aorawizard-lynch-600);
}

.aorawizard-input:focus,
.aorawizard-textarea:focus,
.aorawizard-phone-wrapper:focus-within .aorawizard-phone-input,
.aorawizard-select:focus {
    outline: none;
    background: #ffffff !important;
    box-shadow: 0 0 0 1px var(--aorawizard-primary);
}

.aorawizard-input:focus + .aorawizard-label,
.aorawizard-textarea:focus + .aorawizard-label,
.aorawizard-phone-wrapper:focus-within + .aorawizard-label,
.aorawizard-select:focus + .aorawizard-label {
    color: var(--aorawizard-primary);
    font-weight: 700;
}

/* Select Field (Adapted from special-form) */
.aorawizard-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23111111' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    padding-right: 45px;
    cursor: pointer;
    color: var(--aorawizard-text-primary) !important;
}

.aorawizard-select option {
    background: #ffffff;
    color: var(--aorawizard-text-primary) !important;
    padding: 10px;
}

.aorawizard-select option:first-child {
    color: var(--aorawizard-lynch-500) !important;
}

.aorawizard-select option:checked,
.aorawizard-select option:selected {
    color: #ffffff !important;
    background: #ee2e2e !important;
}

.aorawizard-select.has-value + .aorawizard-label {
    color: var(--aorawizard-primary);
}

/* Phone Input Wrapper (Adapted from special-form) */
.aorawizard-phone-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.aorawizard-phone-wrapper:focus-within {
    outline: none;
}

.aorawizard-phone-input {
    width: 100%;
    height: 65px;
    padding: 0 25px 0 85px;
    background: #ffffff !important;
    border: 0;
    border-radius: 10px;
    color: var(--aorawizard-text-primary);
    font-size: 15px;
    font-weight: 300;
    transition: box-shadow 0.35s ease;
    font-family: inherit;
    box-shadow: 0 0 0 1px var(--aorawizard-lynch-800);
    box-sizing: border-box;
    outline: none;
}

/* Phone Country Selector (Adapted from special-form) */
.aorawizard-phone-selector {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.35s ease;
    border-right: 1px solid var(--aorawizard-lynch-800);
}

.aorawizard-phone-selector:hover {
    opacity: 0.9;
}

.aorawizard-phone-code {
    color: var(--aorawizard-text-primary);
    font-size: 14px;
    font-weight: 300;
    white-space: nowrap;
}

.aorawizard-phone-arrow {
    color: var(--aorawizard-text-secondary);
    font-size: 10px;
    transition: transform 0.35s ease;
    margin-left: 2px;
}

.aorawizard-phone-wrapper:focus-within .aorawizard-phone-arrow,
.aorawizard-country-dropdown.active ~ .aorawizard-phone-selector .aorawizard-phone-arrow {
    transform: rotate(180deg);
}

/* Country Dropdown (Adapted from special-form) */
.aorawizard-country-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 0 1px var(--aorawizard-lynch-800), 0 8px 24px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.35s ease;
    z-index: 1001;
}

.aorawizard-country-dropdown.active {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.aorawizard-country-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.35s ease;
    border-bottom: 1px solid var(--aorawizard-lynch-800);
}

.aorawizard-country-option:last-child {
    border-bottom: none;
}

.aorawizard-country-option:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 1px var(--aorawizard-lynch-600);
}

.aorawizard-country-code {
    color: var(--aorawizard-lynch-500);
    font-size: 13px;
    font-weight: 300;
    white-space: nowrap;
}

.aorawizard-country-name {
    color: var(--aorawizard-text-primary);
    font-size: 14px;
    font-weight: 300;
    flex: 1;
}

.aorawizard-country-flag {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    display: block;
}

/* ============================================
   LANGUAGE SELECTOR (Adapted from special-form)
   ============================================ */
.aorawizard-language-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.aorawizard-language-selector {
    position: relative;
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 25px 0 60px;
    background: transparent !important;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    transition: box-shadow 0.35s ease;
    font-family: inherit;
    box-shadow: 0 0 0 1px var(--aorawizard-lynch-800);
    outline: none;
}

.aorawizard-language-selector:hover {
    box-shadow: 0 0 0 1px var(--aorawizard-lynch-600);
}

.aorawizard-language-flag-wrapper {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.aorawizard-language-flag {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 2px;
}

.aorawizard-language-input {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
    background: transparent !important;
    color: var(--aorawizard-text-primary);
    font-size: 15px;
    font-weight: 300;
    cursor: pointer;
    padding: 0;
    transition: none;
    font-family: inherit;
    outline: none;
}

.aorawizard-language-input::placeholder {
    color: var(--aorawizard-lynch-500);
}

.aorawizard-language-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--aorawizard-lynch-500);
    font-size: 10px;
    transition: transform 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.aorawizard-language-wrapper:focus-within .aorawizard-language-arrow,
.aorawizard-language-wrapper:has(.aorawizard-language-dropdown.active) .aorawizard-language-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Language Dropdown */
.aorawizard-language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--aorawizard-bg-dark);
    border-radius: 10px;
    box-shadow: 0 0 0 1px var(--aorawizard-lynch-800), 0 8px 24px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.aorawizard-language-dropdown.active {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.aorawizard-language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--aorawizard-lynch-800);
}

.aorawizard-language-option:hover {
    background-color: var(--aorawizard-lynch-900);
}

.aorawizard-language-option:last-child {
    border-bottom: none;
}

.aorawizard-language-option .aorawizard-language-flag {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.aorawizard-language-name {
    color: var(--aorawizard-text-primary);
    font-size: 14px;
    font-weight: 300;
    flex: 1;
}

.aorawizard-language-wrapper:focus-within .aorawizard-language-selector {
    outline: none;
    background: transparent !important;
    box-shadow: 0 0 0 1px var(--aorawizard-primary);
}

.aorawizard-language-wrapper:focus-within + .aorawizard-label {
    color: var(--aorawizard-primary);
    font-weight: 700;
}

.aorawizard-language-input.has-value ~ .aorawizard-label,
.aorawizard-form-group:has(.aorawizard-language-input.has-value) .aorawizard-label {
    color: var(--aorawizard-text-primary);
}

.aorawizard-form-group.error .aorawizard-language-selector {
    box-shadow: 0 0 0 1px var(--aorawizard-error);
}

.aorawizard-form-group.error .aorawizard-language-wrapper + .aorawizard-label {
    color: var(--aorawizard-error);
}

/* ============================================
   KVKK CHECKBOX (Adapted from special-form)
   ============================================ */
.aorawizard-kvkk-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.aorawizard-kvkk-checkbox-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aorawizard-kvkk-checkbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
    margin: 0;
}

.aorawizard-kvkk-checkbox-box {
    position: relative;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 0 0 1px var(--aorawizard-lynch-800);
    transition: all 0.35s ease;
}

.aorawizard-kvkk-checkbox:hover ~ .aorawizard-kvkk-checkbox-box {
    box-shadow: 0 0 0 1px var(--aorawizard-lynch-600);
}

.aorawizard-kvkk-checkbox:checked ~ .aorawizard-kvkk-checkbox-box {
    box-shadow: 0 0 0 1px var(--aorawizard-primary);
}

.aorawizard-kvkk-checkbox-box::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40%;
    height: 40%;
    border-radius: 5px;
    background: var(--aorawizard-primary);
    opacity: 0;
    transition: all 0.35s ease;
}

.aorawizard-kvkk-checkbox:checked ~ .aorawizard-kvkk-checkbox-box::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.aorawizard-kvkk-label {
    color: var(--aorawizard-text-secondary);
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    font-family: inherit;
    font-weight: 300;
}

.aorawizard-kvkk-label a,
.aorawizard-kvkk-link {
    color: var(--aorawizard-primary);
    text-decoration: underline;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.aorawizard-kvkk-label a:hover,
.aorawizard-kvkk-link:hover {
    opacity: 0.8;
}

/* ============================================
   BUTTONS (Adapted from special-form)
   ============================================ */
.aorawizard-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    width: 100%;
    max-width: 280px;
    padding: 0 60px;
    border-radius: 50px;
    background: var(--aorawizard-button-bg);
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: inset 0 0 0 1px var(--aorawizard-button-bg);
    margin-top: 24px;
    font-family: inherit;
}

.aorawizard-button-text {
    position: relative;
    z-index: 10;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: none;
    transition: color 0.35s ease;
}

.aorawizard-button:hover .aorawizard-button-text {
    color: #ffffff;
}

.aorawizard-button-circle {
    position: absolute;
    width: 0;
    height: 0;
    background: var(--aorawizard-button-hover);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.aorawizard-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.aorawizard-button-center {
    display: block;
    margin: 32px auto 0;
}

/* ============================================
   SUCCESS SCREEN
   ============================================ */
.aorawizard-success {
    text-align: center;
    padding: 60px 40px;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aorawizard-success-message {
    color: var(--aorawizard-text-primary);
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 50px 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    letter-spacing: -0.3px;
    max-width: 450px;
}

.aorawizard-success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    background: var(--aorawizard-text-primary);
    border-radius: var(--aorawizard-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--aorawizard-shadow-lg);
}

.aorawizard-success-checkmark {
    width: 70px;
    height: 70px;
    border: 5px solid var(--aorawizard-primary);
    border-radius: 50%;
    position: relative;
    animation: aorawizard-checkmarkScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

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

.aorawizard-success-checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 12px;
    border: 5px solid var(--aorawizard-primary);
    border-top: none;
    border-right: none;
    transform: translate(-50%, -70%) rotate(-45deg);
    animation: aorawizard-checkmarkDraw 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}

@keyframes aorawizard-checkmarkDraw {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    100% {
        width: 24px;
        height: 12px;
        opacity: 1;
    }
}

/* ============================================
   KVKK POPUP
   ============================================ */
.aorawizard-kvkk-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.aorawizard-kvkk-popup.aorawizard-active {
    opacity: 1;
    visibility: visible;
}

.aorawizard-kvkk-content {
    background: var(--aorawizard-bg-dark);
    border-radius: var(--aorawizard-radius-xl);
    padding: 0;
    max-width: 700px;
    font-family: 'Montserrat', sans-serif;
    max-height: 85vh;
    position: relative;
    margin: 20px;
    box-shadow: var(--aorawizard-shadow-xl);
    border: 1px solid var(--aorawizard-border);
    overflow: visible;
    display: flex;
    flex-direction: column;
}

/* Scrollable content area inside KVKK popup */
.aorawizard-kvkk-scrollable {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 50px 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--aorawizard-lynch-600) var(--aorawizard-lynch-800);
    /* Enable touch scrolling */
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .aorawizard-kvkk-popup { 
        width: auto;
    }
    
    .aorawizard-kvkk-content {
        max-height: 70vh;
        margin: 10px;
    }

    .aorawizard-kvkk-scrollable {
        padding: 50px 28px 40px 28px;
    }

    .aorawizard-kvkk-popup .aorawizard-kvkk-close {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
    }

    .aorawizard-kvkk-popup .aorawizard-kvkk-close svg {
        width: 16px !important;
        height: 16px !important;
    }
}

@media (max-width: 480px) {
    .aorawizard-kvkk-content {
        max-height: 70vh;
        margin: 10px;
    }

    .aorawizard-kvkk-scrollable {
        padding: 45px 20px 35px 20px;
    }

    .aorawizard-kvkk-popup .aorawizard-kvkk-close {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
    }

    .aorawizard-kvkk-popup .aorawizard-kvkk-close svg {
        width: 16px !important;
        height: 16px !important;
    }
}

/* Custom Scrollbar for KVKK Scrollable Content (Webkit browsers) */
.aorawizard-kvkk-scrollable::-webkit-scrollbar {
    width: 8px;
}

.aorawizard-kvkk-scrollable::-webkit-scrollbar-track {
    background: var(--aorawizard-lynch-800);
    border-radius: 10px;
}

.aorawizard-kvkk-scrollable::-webkit-scrollbar-thumb {
    background: var(--aorawizard-lynch-600);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.aorawizard-kvkk-scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--aorawizard-lynch-500);
}

.aorawizard-kvkk-close {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translate(50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: background 0.35s ease, transform 0.35s ease;
    padding: 0;
    color: #111111;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    pointer-events: auto;
}

.aorawizard-kvkk-close:hover {
    background: #ee2e2e;
    transform: translate(50%, -50%) rotate(-180deg);
}

.aorawizard-kvkk-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    fill: none;
    transition: transform 0.4s ease;
}

.aorawizard-kvkk-close:hover svg {
    transform: rotate(-180deg);
}

.aorawizard-kvkk-title {
    color: var(--aorawizard-text-primary);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 30px 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    line-height: normal !important;
}

.aorawizard-kvkk-text, .aorawizard-kvkk-text p {
    color: var(--aorawizard-text-secondary);
    font-size: 15px;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}

.aorawizard-kvkk-text h2 {
    color: var(--aorawizard-text-primary);
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 16px 0;
    font-family: 'Montserrat', sans-serif;
}

.aorawizard-kvkk-text h3 {
    color: var(--aorawizard-text-primary);
    font-size: 17px;
    font-weight: 600;
    margin: 24px 0 12px 0;
    font-family: 'Montserrat', sans-serif;
}

.aorawizard-kvkk-text ul,
.aorawizard-kvkk-text ol {
    margin: 16px 0;
    padding-left: 28px;
}

.aorawizard-kvkk-text li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* ============================================
   ERROR MESSAGES (Adapted from special-form)
   ============================================ */
.aorawizard-error {
    color: var(--aorawizard-error);
    font-size: 12px;
    margin-top: 8px;
    display: none;
    font-family: inherit;
    font-weight: 300;
    line-height: 1.4;
}

.aorawizard-form-group.error .aorawizard-error {
    display: block;
}

/* Error State (Adapted from special-form) */
.aorawizard-form-group.error .aorawizard-input,
.aorawizard-form-group.error .aorawizard-textarea,
.aorawizard-form-group.error .aorawizard-phone-input {
    box-shadow: 0 0 0 1px var(--aorawizard-error);
}

.aorawizard-form-group.error .aorawizard-label {
    color: var(--aorawizard-error);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .aorawizard-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .aorawizard-container {
        padding: 0;
        max-width: 98%;
        max-height: 70vh;
        border-radius: var(--aorawizard-radius-lg);
        overflow: visible;
    }

    /* Make steps scrollable on mobile */
    .aorawizard-container > .aorawizard-step {
        padding: 50px 28px 35px 28px;
        overflow-y: auto;
        overflow-x: hidden;
        max-height: 70vh;
        scrollbar-width: thin;
        scrollbar-color: var(--aorawizard-lynch-600) var(--aorawizard-lynch-800);
        /* Enable touch scrolling */
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }

    /* Custom scrollbar for mobile wizard steps */
    .aorawizard-container > .aorawizard-step::-webkit-scrollbar {
        width: 8px;
    }

    .aorawizard-container > .aorawizard-step::-webkit-scrollbar-track {
        background: var(--aorawizard-lynch-800);
        border-radius: 10px;
    }

    .aorawizard-container > .aorawizard-step::-webkit-scrollbar-thumb {
        background: var(--aorawizard-lynch-600);
        border-radius: 10px;
        transition: background 0.3s ease;
    }

    .aorawizard-container > .aorawizard-step::-webkit-scrollbar-thumb:hover {
        background: var(--aorawizard-lynch-500);
    }

    .aorawizard-title {
        font-size: 26px;
    }

    .aorawizard-subtitle {
        font-size: 16px;
        margin-bottom: 36px;
    }

    .aorawizard-entry-cards,
    .aorawizard-selection-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aorawizard-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .aorawizard-form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .aorawizard-button {
        width: 100%;
        padding: 16px 32px;
    }

    .aorawizard-close,
    .aorawizard-back {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .aorawizard-close {
        top: 0;
        right: 16px;
    }

    .aorawizard-back {
        top: 0;
    }

    .aorawizard-phone-input {
        flex-direction: column;
    }

    .aorawizard-phone-country {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .aorawizard-container {
        padding: 0;
        max-height: 70vh;
        border-radius: var(--aorawizard-radius-md);
        overflow: visible;
    }

    .aorawizard-container > .aorawizard-step {
        padding: 45px 20px 30px 20px;
        overflow-y: auto;
        overflow-x: hidden;
        max-height: 70vh;
        scrollbar-width: thin;
        scrollbar-color: var(--aorawizard-lynch-600) var(--aorawizard-lynch-800);
    }

    /* Custom scrollbar for mobile wizard steps (480px) */
    .aorawizard-container > .aorawizard-step::-webkit-scrollbar {
        width: 8px;
    }

    .aorawizard-container > .aorawizard-step::-webkit-scrollbar-track {
        background: var(--aorawizard-lynch-800);
        border-radius: 10px;
    }

    .aorawizard-container > .aorawizard-step::-webkit-scrollbar-thumb {
        background: var(--aorawizard-lynch-600);
        border-radius: 10px;
        transition: background 0.3s ease;
    }

    .aorawizard-container > .aorawizard-step::-webkit-scrollbar-thumb:hover {
        background: var(--aorawizard-lynch-500);
    }

    .aorawizard-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .aorawizard-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .aorawizard-entry-card,
    .aorawizard-selection-card {
        padding: 32px 24px;
    }

    .aorawizard-entry-icon {
        width: 64px;
        height: 64px;
        font-size: 40px;
    }

    .aorawizard-entry-title {
        font-size: 20px;
    }

    .aorawizard-form {
        margin-top: 28px;
    }

    .aorawizard-form-row {
        gap: 16px;
        margin-bottom: 18px;
    }

    .aorawizard-kvkk-content {
        padding: 40px 28px;
    }

    .aorawizard-service-card {
        padding: 20px 18px;
    }
}