
 :root { --form-primary: #667eea; --form-primary-dark: #5568d3; --form-secondary: #764ba2; --form-success: #10b981; --form-warning: #f59e0b; --form-danger: #ef4444; --form-info: #3b82f6; --form-white: #ffffff; --form-gray-50: #f9fafb; --form-gray-100: #f3f4f6; --form-gray-200: #e5e7eb; --form-gray-300: #d1d5db; --form-gray-400: #9ca3af; --form-gray-500: #6b7280; --form-gray-600: #4b5563; --form-gray-700: #374151; --form-gray-800: #1f2937; --form-gray-900: #111827; } .denizpinar-multistep-form-container { max-width: 1200px; margin: 0 auto; width: 100%; box-sizing: border-box; } .progress-container { margin-bottom: 2.5rem; background: var(--form-white); padding: 2rem; border-radius: 1.5rem; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); } .progress-steps { display: flex; justify-content: space-between; margin-bottom: 1.5rem; position: relative; } .progress-steps::before { content: ''; position: absolute; top: 2rem; left: 10%; right: 10%; height: 4px; background: var(--form-gray-200); z-index: 0; border-radius: 2px; } .progress-step { flex: 1; text-align: center; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; } .progress-step .step-number { width: 4rem; height: 4rem; border-radius: 50%; background: var(--form-gray-200); color: var(--form-gray-500); margin: 0 auto 0.75rem; font-weight: 700; font-size: 1.25rem; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: 4px solid var(--form-white); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); display: flex; align-items: center; justify-content: center; line-height: 1; padding: 0; } .progress-step .step-title { font-size: 0.875rem; color: var(--form-gray-500); font-weight: 600; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); letter-spacing: 0.025em; max-width: 120px; line-height: 1.4; } .progress-step.active .step-number { background: linear-gradient(135deg, var(--form-primary) 0%, var(--form-secondary) 100%); color: var(--form-white); box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4); transform: scale(1.15); display: flex; align-items: center; justify-content: center; } .progress-step.active .step-title { color: var(--form-primary); font-weight: 700; } .progress-step.completed .step-number { background: var(--form-success); color: transparent; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); font-size: 0; position: relative; display: flex; align-items: center; justify-content: center; } .progress-step.completed .step-number::after { content: "✓"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 1.75rem; color: var(--form-white); font-weight: 700; line-height: 1; } .progress-step.completed .step-title { color: var(--form-success); } .progress-step.completed { cursor: pointer; } .progress-step.completed:hover .step-number { transform: scale(1.05); box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35); } .progress-bar { height: 8px; background: var(--form-gray-200); border-radius: 9999px; overflow: hidden; position: relative; box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06); } .progress-bar-fill { height: 100%; background: linear-gradient(90deg, var(--form-primary) 0%, var(--form-secondary) 100%); transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 9999px; box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4); } .denizpinar-multistep-form { background: var(--form-white); border-radius: 1.5rem; padding: 3rem; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); position: relative; min-height: 600px; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; overflow-x: hidden; } .form-step { animation: fadeInSlide 0.5s cubic-bezier(0.4, 0, 0.2, 1); } .form-step.fadeOut { animation: fadeOutSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1); } @keyframes fadeInSlide { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } } @keyframes fadeOutSlide { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-30px); } } .form-step h3 { font-size: 1.75rem; color: var(--form-gray-900); margin: 0 0 0.75rem; font-weight: 700; letter-spacing: -0.025em; } .step-description { color: var(--form-gray-600); margin: 0 0 2rem; font-size: 0.9375rem; line-height: 1.6; } .form-row { margin-top: 1.5rem; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; } .form-field { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; } .form-field label { font-weight: 600; color: var(--form-gray-700); font-size: 0.875rem; letter-spacing: 0.01em; } .form-field label .required { color: var(--form-danger); margin-left: 0.25rem; } .form-field input[type="text"], .form-field input[type="email"], .form-field input[type="tel"], .form-field input[type="number"], .form-field input[type="date"], .form-field select, .form-field textarea { width: 100%; max-width: 100%; min-width: 0; padding: 0.875rem 1rem; border: 2px solid var(--form-gray-300); border-radius: 0.75rem; font-size: 0.9375rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-family: inherit; color: var(--form-gray-800); background: var(--form-white); box-sizing: border-box; height: auto !important; line-height: 1.6 !important; } .form-field input::placeholder, .form-field textarea::placeholder { color: var(--form-gray-400); } .form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--form-primary); box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1); transform: translateY(-2px); } .form-field input:hover:not(:focus), .form-field select:hover:not(:focus), .form-field textarea:hover:not(:focus) { border-color: var(--form-gray-400); } .form-field small { margin-top: 0.25rem; color: var(--form-gray-500); font-size: 0.875rem; line-height: 1.5; } .form-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; } .split-input-row { display: flex; gap: 0.75rem; } .split-input-row input { flex: 1; } .form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1.25rem; padding-right: 2.75rem; } .radio-group { display: flex; flex-direction: column; gap: 0.875rem; } .radio-group.field-error { border: 2px solid var(--form-danger); border-radius: 0.75rem; padding: 0.5rem; background: rgba(239, 68, 68, 0.05); } .radio-label { display: flex; align-items: center; padding: 1.125rem 1.25rem; border: 2px solid var(--form-gray-300); border-radius: 0.75rem; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; background: var(--form-white); } .radio-label:hover { border-color: var(--form-primary); background: var(--form-gray-50); transform: translateX(4px); } .radio-label input[type="radio"] { margin-right: 1rem; width: 1.25rem; height: 1.25rem; cursor: pointer; accent-color: var(--form-primary); } .radio-label:has(input:checked) { border-color: var(--form-primary); background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%); box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15); } .radio-label input[type="radio"]:checked + span { font-weight: 700; color: var(--form-primary); } .radio-label span { flex: 1; font-size: 1rem; color: var(--form-gray-700); line-height: 1.5; } .radio-label small { color: var(--form-gray-500); font-size: 0.875rem; margin-left: auto; padding-left: 1rem; } .info-box { background: var(--form-gray-50); border: 1px solid var(--form-gray-300); border-left: 3px solid var(--form-gray-500); padding: 1.25rem 1.5rem; border-radius: 0.5rem; margin-bottom: 1.5rem; } .info-box h4 { margin: 0 0 0.75rem; color: var(--form-gray-800); font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; } .info-box h4::before { content: 'ℹ'; font-size: 1rem; color: var(--form-gray-600); font-weight: 400; font-style: normal; } .info-box ul { margin: 0; padding-left: 1.5rem; } .info-box li { margin-bottom: 0.5rem; color: var(--form-gray-700); line-height: 1.6; font-size: 0.9375rem; } .info-box li:last-child { margin-bottom: 0; } .discount-tipbox { margin-top: 1rem; padding: 0.875rem 1rem; border-radius: 0.625rem; background: #fff7ed; border: 1px solid #fdba74; color: #9a3412; font-size: 0.9rem; line-height: 1.5; } .discount-tipbox strong { display: inline-block; margin-right: 0.25rem; } #student-discount-tipbox { margin-top: 0.625rem; } #student-discount-tipbox.discount-tipbox-success { background: #ecfdf3; border-color: #86efac; color: #166534; } #bayi-info-tipbox { margin-bottom: 0.75rem; } #bayi-school-list { display: flex; flex-direction: column; gap: 0.625rem; } .bayi-school-row { display: grid; grid-template-columns: 1fr 2.5rem; gap: 0.625rem; align-items: center; } .bayi-school-row .bayi-school-input { width: 100%; } .bayi-school-add-btn, .bayi-school-remove-btn { height: 2.5rem; border-radius: 0.5rem; border: 1px solid #cbd5e1; background: #ffffff; color: #334155; display: inline-flex; align-items: center; justify-content: center; text-align: center; vertical-align: middle; font-size: 1rem; font-weight: 600; line-height: 1; cursor: pointer; transition: all 0.18s ease; padding: 0; } .bayi-school-add-btn:hover, .bayi-school-remove-btn:hover { background: #eef2ff; border-color: #94a3b8; color: #1e293b; } .bayi-school-add-row { display: flex; justify-content: flex-end; padding-top: 0.25rem; } .bayi-school-remove-btn.is-disabled { opacity: 0.45; cursor: not-allowed; } .bayi-school-remove-btn { width: 2.5rem; font-size: 1.2rem; font-weight: 700; line-height: 1; padding-bottom: 0.08rem; } .bayi-school-add-btn { min-width: 13.5rem; padding: 0 0.9rem; background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; justify-content: center; } .bayi-school-add-btn:hover { background: #dbeafe; border-color: #93c5fd; color: #1e40af; } .bayi-school-error { display: block; color: #dc2626; margin-top: -0.25rem; margin-bottom: 0.25rem; font-size: 0.8125rem; font-weight: 600; } .bayi-school-error::before { content: '⚠'; margin-right: 0.35rem; } .student-count-error { display: block; color: #dc2626; font-size: 0.8125rem; font-weight: 600; margin-top: 0.35rem; margin-bottom: 0.25rem; } .student-count-error::before { content: '⚠'; margin-right: 0.35rem; } .existing-order-help-text { display: block; margin-top: 0.4rem; padding: 0.55rem 0.7rem; border-radius: 0.5rem; background: #ecfdf3; border: 1px solid #86efac; color: #166534; font-weight: 600; } .bayi-row-student-error { display: block; color: #dc2626; font-size: 0.8125rem; font-weight: 600; margin-top: 0.35rem; } .bayi-row-student-error::before { content: '⚠'; margin-right: 0.35rem; } #bayi-student-count-list { display: flex; flex-direction: column; gap: 0.75rem; } .bayi-student-count-row { border: 1px solid #e5e7eb; border-radius: 0.625rem; padding: 0.75rem; background: #f8fafc; } .bayi-school-title { font-weight: 600; color: #111827; margin-bottom: 0.5rem; } .bayi-student-count-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; } .bayi-student-input-group { display: flex; flex-direction: column; gap: 0.35rem; } .bayi-student-badge { display: inline-flex; align-items: center; width: fit-content; font-size: 0.75rem; font-weight: 600; color: #1e3a8a; background: #dbeafe; border: 1px solid #93c5fd; border-radius: 999px; padding: 0.15rem 0.55rem; } .total-summary { background: linear-gradient(135deg, var(--form-primary) 0%, var(--form-secondary) 100%); padding: 2rem; border-radius: 1rem; color: var(--form-white); text-align: center; margin-top: 2rem; box-shadow: 0 12px 30px rgba(102, 126, 234, 0.3); position: relative; overflow: hidden; } .total-summary::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%); pointer-events: none; } .total-summary h4 { margin: 0 0 1rem !important; font-size: 1.125rem !important; opacity: 0.95 !important; font-weight: 600 !important; letter-spacing: 0.025em !important; position: relative !important; z-index: 1 !important; color: white !important; } .total-amount { font-size: 2.5rem; font-weight: 800; margin: 0.75rem 0; letter-spacing: -0.025em; position: relative; z-index: 1; color: var(--form-white) !important; } .total-amount .amount { color: var(--form-white) !important; } .total-note { margin: 1rem 0 0; opacity: 0.85; color: var(--form-white); font-size: 0.9375rem; line-height: 1.5; position: relative; z-index: 1; } .legal-notice { margin: 1.5rem 0 0; padding: 1.25rem; background: rgba(255, 255, 255, 0.15); border-radius: 0.625rem; font-size: 0.8125rem; line-height: 1.6; text-align: left; position: relative; z-index: 1; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--form-white); } .legal-notice a { color: var(--form-white); text-decoration: underline; font-weight: 600; transition: opacity 0.2s ease; } .legal-notice a:hover { opacity: 0.8; text-decoration: none; } .legal-notice a:focus { outline: 2px solid rgba(255, 255, 255, 0.5); outline-offset: 2px; border-radius: 2px; } .payment-info-box { background: linear-gradient(135deg, var(--form-gray-50) 0%, var(--form-gray-100) 100%); border: 2px solid var(--form-gray-300); border-radius: 1rem; padding: 1.75rem; margin-bottom: 2rem; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; overflow-x: hidden; } .payment-summary h4 { margin: 0 0 1.5rem; color: var(--form-gray-900); font-size: 1.375rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; } .payment-summary h4::before { content: '💳'; font-size: 1.75rem; } .summary-section { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--form-gray-200); width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; } .summary-section:last-of-type { margin-bottom: 1rem; padding-bottom: 1rem; } .summary-section-title { margin: 0 0 1rem; color: var(--form-primary); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding-bottom: 0.5rem; border-bottom: 2px solid var(--form-primary); } .summary-row { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid var(--form-gray-200); color: var(--form-gray-700); font-size: 0.9375rem; gap: 1rem; flex-wrap: wrap; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; } .summary-row:last-child { border-bottom: none; } .summary-row .label { font-weight: 600; color: var(--form-gray-600); flex-shrink: 0; min-width: 0; flex: 0 1 auto; word-break: break-word; } .summary-row strong { font-weight: 700; color: var(--form-gray-900); text-align: right; flex: 1 1 auto; min-width: 0; word-break: break-word; overflow-wrap: break-word; } .summary-row.total { font-size: 1.25rem; padding-top: 1.5rem; margin-top: 1rem; border-top: 2px solid var(--form-primary); border-bottom: none; color: var(--form-primary); } .summary-row.total .label { color: var(--form-primary); } .summary-row.total strong { color: var(--form-primary); font-size: 1.5rem; } .form-navigation { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 2px solid var(--form-gray-200); } .btn-prev, .btn-next { padding: 1rem 2rem; border: none; border-radius: 0.75rem; font-size: 0.9375rem; font-weight: 700; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-family: inherit; display: inline-flex; align-items: center; gap: 0.5rem; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); } .btn-prev { background: var(--form-gray-200); color: var(--form-gray-700); } .btn-prev:hover:not(:disabled) { background: var(--form-gray-300); transform: translateX(-4px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); } .btn-next { background: linear-gradient(135deg, var(--form-primary) 0%, var(--form-secondary) 100%); color: var(--form-white); margin-left: auto; } .btn-next:hover:not(:disabled) { transform: translateX(4px); box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4); } .btn-prev:disabled, .btn-next:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; } .btn-prev:active:not(:disabled), .btn-next:active:not(:disabled) { transform: scale(0.98); } .form-navigation .btn-submit-bank-transfer { margin-left: auto; background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: #fff; border: none; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35); } .form-navigation .btn-submit-bank-transfer:hover:not(:disabled) { background: linear-gradient(135deg, #059669 0%, #047857 100%); transform: translateX(4px); box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45); } .form-navigation .btn-submit-bank-transfer:active:not(:disabled) { transform: scale(0.98); } .form-navigation .btn-submit-dealer-coupon { margin-left: auto; background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: #fff; border: none; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35); } .form-navigation .btn-submit-dealer-coupon:hover:not(:disabled) { background: linear-gradient(135deg, #059669 0%, #047857 100%); transform: translateX(4px); box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45); } .form-navigation .btn-submit-dealer-coupon:active:not(:disabled) { transform: scale(0.98); } .iyzipay-form-container.loading { display: flex; align-items: center; justify-content: center; min-height: 600px; } .bank-transfer-box { background: linear-gradient(135deg, var(--form-gray-50) 0%, var(--form-gray-100) 100%); border: 2px solid var(--form-gray-300); border-radius: 1rem; padding: 1.75rem; margin-bottom: 2rem; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; overflow-x: hidden; } .bank-transfer-box h4 { margin: 0 0 1rem; font-size: 1.375rem; font-weight: 700; color: var(--form-gray-900); display: flex; align-items: center; gap: 0.5rem; } .bank-transfer-box h4::before { content: '🏦'; font-size: 1.5rem; } .bank-transfer-note { margin: 0; font-size: 0.9375rem; line-height: 1.65; color: var(--form-gray-700); } .bank-transfer-reference { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; } .bank-transfer-reference .label { font-size: 0.9rem; font-weight: 600; color: var(--form-gray-600); } .bank-transfer-reference .value { display: inline-block; padding: 0.4rem 0.8rem; border-radius: 999px; background: #10b981; color: #fff; font-weight: 700; letter-spacing: 0.06em; font-size: 0.95rem; } .bank-transfer-info { margin-top: 0.25rem; font-size: 0.9rem; line-height: 1.6; white-space: normal; word-break: break-word; color: var(--form-gray-700); } .dealer-coupon-box { background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: #ecfdf5; border-radius: 0.9rem; padding: 1.5rem 1.75rem; box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3); border: 1px solid rgba(16, 185, 129, 0.6); position: relative; overflow: hidden; max-width: 100%; box-sizing: border-box; } .dealer-coupon-box::before { content: 'BAYİ KUPONU'; position: absolute; top: 12px; right: -40px; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(236, 253, 245, 0.4); transform: rotate(25deg); pointer-events: none; } .dealer-coupon-box p { margin: 0; font-size: 0.95rem; line-height: 1.6; } .dealer-coupon-box .dealer-coupon-lead { margin-bottom: 0.75rem; } .dealer-coupon-box .dealer-coupon-note { margin-bottom: 0; opacity: 0.95; } .dealer-coupon-container { margin-bottom: 0; width: 100%; max-width: 100%; box-sizing: border-box; } .dealer-coupon-box strong { font-weight: 700; } .dealer-coupon-box .button-primary, .dealer-coupon-box button.button-primary { margin-top: 0.75rem; background: #f9fafb; color: #047857; border-radius: 999px; border: none; padding: 0.75rem 1.75rem; font-weight: 700; font-size: 0.95rem; cursor: pointer; box-shadow: 0 6px 18px rgba(15, 118, 110, 0.45); transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; } .dealer-coupon-box .button-primary:hover, .dealer-coupon-box button.button-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(15, 118, 110, 0.6); background: #ffffff; } .dealer-coupon-box .button-primary:active, .dealer-coupon-box button.button-primary:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(15, 118, 110, 0.45); } .loading-payment { text-align: center; padding: 4rem 2rem; } .spinner { width: 4rem; height: 4rem; margin: 0 auto 1.5rem; border: 4px solid var(--form-gray-200); border-top: 4px solid var(--form-primary); border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .loading-payment p { color: var(--form-gray-600); font-size: 1.0625rem; font-weight: 500; } .field-error { border-color: var(--form-danger) !important; background: #fef2f2 !important; } .error-message { color: white; font-size: 0.875rem; margin-top: 0.375rem; display: flex; align-items: center; gap: 0.375rem; font-weight: 500; } .error-message::before { content: '⚠'; font-size: 1rem; } .denizpinar-yksdil-form-errors { background: var(--form-danger); border: 2px solid #dc2626; border-radius: 0.75rem; padding: 1.5rem; margin-bottom: 1.5rem; color: var(--form-white); box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3); } .denizpinar-yksdil-form-errors h4 { margin: 0 0 1rem; color: var(--form-white); font-weight: 700; display: flex; align-items: center; gap: 0.5rem; } .denizpinar-yksdil-form-errors h4::before { content: '❌'; } .denizpinar-yksdil-form-error { margin: 0.625rem 0; font-size: 0.9375rem; line-height: 1.5; padding-left: 1.5rem; position: relative; color: var(--form-white); } .denizpinar-yksdil-form-error::before { content: '•'; position: absolute; left: 0.5rem; color: var(--form-white); } .success-message { background: #d1fae5; border: 2px solid #a7f3d0; border-radius: 0.75rem; padding: 1.5rem; margin-bottom: 1.5rem; color: #065f46; text-align: center; } .success-message h4 { margin: 0 0 0.75rem; color: #065f46; font-weight: 700; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; } .success-message h4::before { content: '✅'; font-size: 1.5rem; } .coupon-section { margin-bottom: 1.5rem; margin-top: 2rem; } .toggle-coupon-btn { width: 100%; padding: 0.875rem 1.25rem; background: #fff; border: 2px dashed #dee2e6; border-radius: var(--form-radius); color: var(--form-primary); font-size: 1rem; font-weight: 600; cursor: pointer; transition: var(--form-transition); display: flex; align-items: center; justify-content: center; gap: 0.5rem; } .toggle-coupon-btn:hover { border-color: var(--form-primary); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15); } .toggle-coupon-btn .toggle-icon { font-size: 1.25rem; font-weight: 700; height: auto !important; width: auto !important; transition: transform 0.3s ease; } .toggle-coupon-btn.active .toggle-icon { transform: rotate(45deg); } .coupon-input-area { background: #f8f9fa; border: 2px dashed #dee2e6; border-top: none; border-radius: 0 0 var(--form-radius) var(--form-radius); padding: 1.25rem 1.5rem; margin-top: -0.5rem; animation: slideDown 0.3s ease; width: 100%; box-sizing: border-box; } @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } .coupon-input-area h4 { margin: 0 0 1rem; color: var(--form-primary); font-size: 1.125rem; font-weight: 600; } .coupon-input-group { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; width: 100%; box-sizing: border-box; } .coupon-input { flex: 1; padding: 0.75rem 1rem; border: 2px solid #dee2e6; border-radius: var(--form-radius-sm); font-size: 1rem; text-transform: uppercase; transition: var(--form-transition); background: #fff; min-width: 0; box-sizing: border-box; height: auto !important; } .coupon-input:focus { outline: none; border-color: var(--form-primary); box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); } .button-apply-coupon { padding: 0.3rem 1.5rem !important; background: var(--form-primary); color: #fff; border: none; border-radius: var(--form-radius-sm); font-size: 1rem; font-weight: 600; cursor: pointer; transition: var(--form-transition); white-space: nowrap; } .button-apply-coupon:hover { background: var(--form-primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3); } .button-apply-coupon:active { transform: translateY(0); } .button-apply-coupon:disabled { background: #ccc; cursor: not-allowed; transform: none; } .coupon-message { padding: 0.75rem 1rem; border-radius: var(--form-radius-sm); font-size: 0.875rem; font-weight: 500; margin-top: 0.75rem; } .coupon-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; } .coupon-message.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; } .total-summary { background: linear-gradient(135deg, var(--form-primary) 0%, var(--form-secondary) 100%); padding: 2rem; border-radius: 1rem; color: var(--form-white); text-align: center; margin-top: 2rem; box-shadow: 0 12px 30px rgba(102, 126, 234, 0.3); position: relative; overflow: hidden; } .total-summary::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%); pointer-events: none; } .total-amount-wrapper { position: relative; z-index: 1; } .coupon-discount-box { background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 0.75rem; padding: 1rem 1.25rem; margin-bottom: 1.25rem; position: relative; overflow: hidden; } .coupon-discount-box::before { content: '🎫'; position: absolute; top: -8px; right: -8px; font-size: 3.5rem; opacity: 0.1; transform: rotate(15deg); pointer-events: none; } .original-amount-display, .discount-amount-display { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; color: rgba(255, 255, 255, 0.95); position: relative; z-index: 1; } .original-amount-display { border-bottom: 1px dashed rgba(255, 255, 255, 0.25); padding-bottom: 0.625rem; margin-bottom: 0.625rem; } .original-amount-display span:first-child, .discount-amount-display span:first-child { font-size: 0.875rem; font-weight: 500; opacity: 0.9; } .original-amount-display strong { text-decoration: line-through; opacity: 0.75; font-weight: 600; font-size: 1rem; } .discount-amount-display { padding-top: 0.625rem; } .discount-amount-display strong { color: #4ade80; font-weight: 700; font-size: 1.125rem; text-shadow: 0 2px 8px rgba(74, 222, 128, 0.25); } .total-amount { font-size: 2.5rem; font-weight: 800; margin: 1rem 0 0.75rem; letter-spacing: -0.025em; position: relative; z-index: 1; color: var(--form-white) !important; padding-top: 1rem; border-top: 2px solid rgba(255, 255, 255, 0.25); } .total-amount .amount { color: var(--form-white) !important; } .total-note { margin: 1rem 0 0; opacity: 0.85; color: var(--form-white); font-size: 0.9375rem; line-height: 1.5; position: relative; z-index: 1; } .legal-notice { margin: 1.5rem 0 0; padding: 1.25rem; background: rgba(255, 255, 255, 0.15); border-radius: 0.625rem; font-size: 0.8125rem; line-height: 1.6; text-align: left; position: relative; z-index: 1; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--form-white); } .legal-notice a { color: var(--form-white); text-decoration: underline; font-weight: 600; transition: opacity 0.2s ease; } .legal-notice a:hover { opacity: 0.8; text-decoration: none; } .legal-notice a:focus { outline: 2px solid rgba(255, 255, 255, 0.5); outline-offset: 2px; border-radius: 2px; } @media (max-width: 1024px) { .denizpinar-multistep-form { padding: 2.5rem; overflow-x: hidden; } } @media (max-width: 768px) { .denizpinar-multistep-form-container { max-width: 100%; margin: 0 auto; width: 100%; } .bayi-school-add-row { justify-content: stretch; } .bayi-school-add-btn { width: 100%; min-width: 0; font-size: 0.9rem; letter-spacing: 0.01em; padding: 0 0.75rem; } .dealer-coupon-box { padding: 1.25rem 1.25rem; border-radius: 0.8rem; margin-top: 0.75rem; } .dealer-coupon-box p { font-size: 0.9rem; } .dealer-coupon-box .button-primary, .dealer-coupon-box button.button-primary { width: 100%; justify-content: center; font-size: 0.9rem; padding: 0.75rem 1.25rem; } .toggle-coupon-btn { padding: 0.75rem 1rem; font-size: 0.9375rem; } .toggle-coupon-btn .toggle-icon { font-size: 1.125rem; } .coupon-input-area { padding: 1rem; width: 100%; box-sizing: border-box; } .coupon-input-area h4 { font-size: 1rem; margin-bottom: 0.875rem; } .coupon-input-group { flex-direction: column; gap: 0.625rem; width: 100%; } .coupon-input { width: 100%; max-width: 100%; font-size: 0.9375rem; padding: 0.625rem 0.875rem; box-sizing: border-box; } .button-apply-coupon { width: 100%; padding: 0.75rem 1rem; font-size: 0.9375rem; box-sizing: border-box; } .coupon-message { font-size: 0.8125rem; padding: 0.625rem 0.875rem; width: 100%; box-sizing: border-box; } .coupon-discount-box { padding: 0.875rem 1rem; margin-bottom: 1rem; border-radius: 0.625rem; } .coupon-discount-box::before { font-size: 3rem; top: -6px; right: -6px; } .original-amount-display, .discount-amount-display { padding: 0.4rem 0; } .original-amount-display { padding-bottom: 0.5rem; margin-bottom: 0.5rem; } .original-amount-display span:first-child, .discount-amount-display span:first-child { font-size: 0.8125rem; } .original-amount-display strong { font-size: 0.9375rem; } .discount-amount-display strong { font-size: 1rem; } .total-amount { font-size: 2rem !important; margin: 0.75rem 0 0.625rem !important; padding-top: 0.875rem !important; } .total-summary { padding: 1.5rem 1.25rem; margin-top: 1.5rem; } .total-summary h4 { font-size: 1rem; } .progress-container { padding: 1.25rem 1rem; border-radius: 0.75rem; margin-bottom: 0.75rem; } .progress-steps::before { display: none; } .progress-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; } .progress-step .step-number { width: 3rem; height: 3rem; font-size: 1rem; margin-bottom: 0.5rem; display: flex; align-items: center; justify-content: center; line-height: 1; padding: 0; } .progress-step.completed .step-number::after { font-size: 1.5rem; } .progress-step .step-title { font-size: 0.75rem; max-width: 100px; } .denizpinar-multistep-form { padding: 1.75rem 1.25rem; min-height: auto; border-radius: 0.75rem; overflow-x: hidden; } .form-step h3 { font-size: 1.5rem; } .step-description { font-size: 1rem; margin-bottom: 1.5rem; } .total-amount { font-size: 2.75rem; color: var(--form-white); } .payment-summary h4 { font-size: 1.25rem; } .summary-section { margin-bottom: 1.25rem; padding-bottom: 1.25rem; } .summary-section-title { font-size: 0.9375rem; } .payment-info-box { padding: 1.5rem 1rem; overflow-x: hidden; width: 100%; max-width: 100%; box-sizing: border-box; } .bank-transfer-box { padding: 1.5rem 1rem; overflow-x: hidden; width: 100%; max-width: 100%; box-sizing: border-box; } .bank-transfer-box h4 { font-size: 1.25rem; } .bank-transfer-note { font-size: 0.9375rem; } .summary-section { width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; } .summary-row { flex-direction: row; align-items: center; gap: 0.75rem; padding: 0.875rem 0; flex-wrap: wrap; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; } .summary-row .label { min-width: 0; flex: 0 1 40%; font-size: 0.875rem; max-width: 40%; word-break: break-word; overflow-wrap: break-word; } .summary-row strong { text-align: right; flex: 1 1 55%; min-width: 0; font-size: 0.9375rem; max-width: 55%; word-break: break-word; overflow-wrap: break-word; } .summary-row.total { font-size: 1.125rem; flex-direction: row; align-items: center; flex-wrap: wrap; } .summary-row.total .label { flex: 0 1 40%; min-width: 0; max-width: 40%; } .summary-row.total strong { font-size: 1.375rem; text-align: right; min-width: 0; flex: 1 1 55%; max-width: 55%; word-break: break-word; overflow-wrap: break-word; } .form-navigation { flex-direction: column-reverse; gap: 0.75rem; } .btn-prev, .btn-next { width: 100%; justify-content: center; margin: 0 !important; } } @media (max-width: 480px) { .denizpinar-multistep-form-container { max-width: 100%; margin: 0 auto; width: 100%; } .bayi-school-add-btn { font-size: 0.82rem; height: 2.35rem; padding: 0 0.6rem; } .dealer-coupon-box { padding: 1.1rem 1rem; border-radius: 0.75rem; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35); } .dealer-coupon-box::before { font-size: 0.7rem; right: -45px; } .dealer-coupon-box p { font-size: 0.85rem; } .dealer-coupon-box .button-primary, .dealer-coupon-box button.button-primary { width: 100%; font-size: 0.9rem; padding: 0.7rem 1.1rem; } .toggle-coupon-btn { padding: 0.625rem 0.875rem; font-size: 0.875rem; } .toggle-coupon-btn .toggle-icon { font-size: 1rem; } .coupon-input-area { padding: 0.875rem; width: 100%; box-sizing: border-box; } .coupon-input { width: 100%; max-width: 100%; font-size: 0.875rem; padding: 0.625rem 0.75rem; box-sizing: border-box; } .button-apply-coupon { width: 100%; padding: 0.625rem 0.875rem; font-size: 0.875rem; box-sizing: border-box; } .coupon-message { width: 100%; box-sizing: border-box; } .coupon-discount-box { padding: 0.75rem 0.875rem; } .coupon-discount-box::before { font-size: 2.5rem; } .original-amount-display, .discount-amount-display { flex-direction: column; align-items: flex-start; gap: 0.25rem; padding: 0.375rem 0; } .original-amount-display { padding-bottom: 0.5rem; margin-bottom: 0.5rem; } .discount-amount-display { padding-top: 0.5rem; } .total-amount { font-size: 1.75rem !important; margin: 0.625rem 0 0.5rem !important; padding-top: 0.75rem !important; } .total-summary { padding: 1.25rem 1rem; } .iyzipay-form-container { margin-left: -20px !important;  margin-right: -20px !important; width: calc(100% + 40px) !important;  max-width: calc(100% + 40px) !important; padding: 0 !important; border: none !important; background: transparent !important; } .iyzipay-form-container iframe { width: 100% !important; min-width: 100% !important; display: block !important; } .denizpinar-multistep-form { overflow-x: hidden !important; } .progress-container { padding: 1rem 0.75rem; margin-bottom: 0.5rem; border-radius: 0.625rem; } .progress-step .step-number { width: 2.5rem; height: 2.5rem; font-size: 0.875rem; display: flex; align-items: center; justify-content: center; line-height: 1; padding: 0; } .progress-step.completed .step-number::after { font-size: 1.25rem; } .progress-step .step-title { font-size: 0.6875rem; } .denizpinar-multistep-form { padding: 1.5rem 1rem; border-radius: 0.625rem; overflow-x: hidden; } .form-step h3 { font-size: 1.375rem; } .step-description { font-size: 0.9375rem; } .form-field input, .form-field select, .form-field textarea { font-size: 1rem; padding: 0.75rem 0.875rem; } .split-input-row { flex-direction: column; gap: 0.625rem; } .radio-label { padding: 1rem; flex-wrap: wrap; } .radio-label small { width: 100%; margin-left: 2.25rem; margin-top: 0.5rem; padding-left: 0; } .total-summary { padding: 1.5rem; } .legal-notice { margin: 1.25rem 0 0; padding: 1rem; font-size: 0.75rem; } .payment-info-box { padding: 1.25rem 1rem; margin-bottom: 1.5rem; } .bank-transfer-box { padding: 1.25rem 1rem; margin-bottom: 1.5rem; } .bank-transfer-box h4 { font-size: 1.125rem; margin-bottom: 0.875rem; } .bank-transfer-note { font-size: 0.875rem; } .payment-summary h4 { font-size: 1.125rem; margin-bottom: 1.25rem; } .summary-section { margin-bottom: 1rem; padding-bottom: 1rem; } .summary-section-title { font-size: 0.875rem; } .payment-info-box { padding: 1rem 0.75rem; overflow-x: hidden; width: 100%; max-width: 100%; box-sizing: border-box; } .bank-transfer-box { padding: 1rem 0.75rem; overflow-x: hidden; width: 100%; max-width: 100%; box-sizing: border-box; margin-bottom: 1.5rem; } .bank-transfer-box h4 { font-size: 1.0625rem; margin-bottom: 0.75rem; } .bank-transfer-note { font-size: 0.8125rem; line-height: 1.6; } .summary-section { width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; } .summary-section-title { font-size: 0.8125rem; } .summary-row { flex-direction: row; align-items: center; gap: 0.5rem; padding: 0.75rem 0; font-size: 0.875rem; flex-wrap: wrap; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; } .summary-row .label { min-width: 0; flex: 0 1 40%; font-size: 0.8125rem; max-width: 40%; word-break: break-word; overflow-wrap: break-word; } .summary-row strong { text-align: right; flex: 1 1 55%; min-width: 0; font-size: 0.875rem; word-break: break-word; overflow-wrap: break-word; max-width: 55%; } .summary-row.total { font-size: 1rem; flex-direction: row; align-items: center; padding-top: 1rem; flex-wrap: wrap; } .summary-row.total .label { font-size: 1rem; flex: 0 1 40%; min-width: 0; max-width: 40%; } .summary-row.total strong { font-size: 1.25rem; text-align: right; min-width: 0; flex: 1 1 55%; max-width: 55%; word-break: break-word; overflow-wrap: break-word; } .total-amount { font-size: 2.5rem; color: var(--form-white); } .legal-notice { margin: 1rem 0 0; padding: 0.875rem; font-size: 0.6875rem; line-height: 1.5; } .payment-info-box { padding: 1.25rem; } .bank-transfer-box { padding: 1.25rem; } .summary-row { font-size: 0.9375rem; } .summary-row.total { font-size: 1.125rem; } .btn-prev, .btn-next { padding: 0.875rem 1.5rem; font-size: 1rem; } } @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } } .form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible, .radio-label:focus-within, .btn-prev:focus-visible, .btn-next:focus-visible { outline: 3px solid var(--form-primary); outline-offset: 2px; } @media (prefers-contrast: high) { .form-field input, .form-field select, .form-field textarea, .radio-label { border-width: 3px; } } @media print { .progress-container, .form-navigation { display: none; } .denizpinar-multistep-form { box-shadow: none; border: 1px solid var(--form-gray-300); } }