/* ===== CSS Variables & Theme ===== */
:root {
  /* Colors - from Figma design */
  --primary-blue: #263a87;
  --primary-orange: #f39400;
  --orange-light: #ff9e1b;
  --text-dark: #4d4d4d;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --border-orange: #f39400;
  --border-blue: #263a87;
  --error-color: #ff0004;
  --success-color: #4caf50;
  --disabled-color: #cccccc;
  --line-color: #ddd;
  --gray-bg: #e8e8e8;

  /* Typography */
  --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 25px;
  --font-size-sm: 12px;
  --font-weight-normal: 400;
  --font-weight-bold: 700;

  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;

  /* Border & Shadow */
  --border-radius: 15px;
  --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

  /* Layout */
  --left-panel-width: 45%;
  --right-panel-width: 55%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--text-dark);
  text-decoration: underline;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-blue);
}

/* ===== Layout ===== */
.main-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

/* ===== Left Panel (Instagram Story Style) ===== */
.left-panel {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--left-panel-width);
  height: 100vh;
  background-color: #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
}

/* Video Slider Container */
.story-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.story-video-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.story-video-item.active {
  opacity: 1;
  pointer-events: auto;
}

.story-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Bottom Section (Progress + Labels) */
.story-bottom-section {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
}

/* Story Progress Bars (Instagram Style) */
.story-progress-container {
  display: flex;
  gap: 4px;
  margin-bottom: var(--spacing-sm);
}

.story-progress-bar {
  flex: 1;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.story-progress-bar:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.story-progress-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--progress-width, 0%);
  background-color: var(--text-light);
  /* transition removed for smoother RAF updates */
}

/* .story-progress-bar.active::after - Controlled by JS via --progress-width */

.story-progress-bar.completed::after {
  width: 100%;
}

/* Story Labels */
.story-labels {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}

.story-label {
  flex: 1;
  font-size: var(--font-size-sm);
  color: var(--text-light);
  text-align: center;
  padding: var(--spacing-xs) 2px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.story-label:hover {
  opacity: 0.9;
}

.story-label.active {
  opacity: 1;
  font-weight: var(--font-weight-bold);
}

/* ===== Right Panel ===== */
.right-panel {
  margin-left: var(--left-panel-width);
  width: var(--right-panel-width);
  padding: var(--spacing-xl) 40px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #ffffff;
  height: 100vh;
}

.right-panel::-webkit-scrollbar {
  width: 8px;
}

.right-panel::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.right-panel::-webkit-scrollbar-thumb {
  background: var(--border-orange);
  border-radius: 4px;
}

.right-panel-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* ===== Header ===== */
.form-header {
  display: flex;
  align-items: center;
  padding: var(--spacing-md) 0;
  margin-bottom: var(--spacing-lg);
}

.header-wrapper {
  display: flex;
  align-items: center;
  /* Vertically center logo and text */
  justify-content: center;
  /* Horizontally center the whole group if needed, or keeping it left aligned but ensuring flexible space? 
                              The user says "header alanı ortalı değil". Looking at the image, the text is centered relative to the logo or the page?
                              The image shows Logo on left, Text on right, but the text itself looks centered relative to the logo's vertical axis? 
                              Or the whole block is centered in the page? 
                              "Header alanı ortalı değil. Alana ortalı olmalı." -> "Header area is not centered. It should be centered in the area."
                              This implies the entire logo+text group should be centered within the .right-panel-inner container.
                           */
  gap: var(--spacing-lg);
  max-width: 100%;
  /* Ensure it takes width */
  margin: 0 auto;
  /* Center the wrapper itself if it has a max-width less than 100%, 
                     but right now it's a flex container in a div. 
                   */
}

.header-logo {
  width: 120px;
  height: 107px;
  flex-shrink: 0;
}

.header-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-content {
  flex: 1;
  /* Takes remaining space */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Vertically center text in its container */
  align-items: center;
  /* Center text horizontally? 
                          Looking at the provided image, the text "Dönüşümü Başlat!" and "İş Fikri..." are centered relative to EACH OTHER.
                        */
  text-align: center;
  /* Ensure text is centered */
}

.form-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  margin: 0 0 var(--spacing-xs) 0;
  width: 100%;
}

.form-subtitle {
  font-size: var(--font-size-xl);
  color: var(--primary-blue);
  font-weight: var(--font-weight-bold);
  margin: 0;
  width: 100%;
}

/* ===== Information Section ===== */
.info-section {
  background-color: var(--bg-light);
  border: 1px solid var(--border-orange);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: var(--spacing-lg);
}

.info-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 0 var(--spacing-lg);
  /* Removed vertical padding to strictly follow height */
  height: 60px;
  /* Fixed height 60px */
  cursor: pointer;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  font-size: var(--font-size-lg);
  font-family: var(--font-primary);
  text-align: left;
}

.info-accordion-btn:hover {
  background-color: rgba(243, 148, 0, 0.05);
}

.accordion-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  transform: rotate(-90deg);
  /* Default Right */
}

.info-section.open .accordion-chevron {
  transform: rotate(0deg);
  /* Open Down */
}

.info-divider-line {
  height: 1px;
  background-color: #F39400;
  margin: 0 var(--spacing-lg);
  display: none;
  /* Hidden by default */
}

.info-section.open .info-divider-line {
  display: block;
  /* Show when open */
}

.info-section-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease, padding 0.4s ease;
}

.info-section.open .info-section-content {
  max-height: 2000px;
  /* Sufficiently large */
  opacity: 1;
}

.info-content-inner {
  padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
  transform: translateY(0);
}

.info-intro {
  color: var(--text-dark);
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-base);
}

.info-item {
  margin-bottom: var(--spacing-lg);
}

.info-item-title {
  font-size: var(--font-size-base);
  margin-bottom: var(--spacing-xs);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4px;
}

.arrow-icon {
  color: var(--primary-blue);
  font-weight: bold;
  margin-right: 4px;
}

.bold-text {
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
}

.highlight {
  color: var(--error-color);
  font-weight: var(--font-weight-bold);
}

.info-item-text {
  color: var(--text-dark);
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin-left: var(--spacing-lg);
}

.info-divider {
  height: 1px;
  background-color: var(--line-color);
  margin: var(--spacing-lg) 0;
}

.info-important {
  font-size: var(--font-size-base);
}

.info-important-title {
  font-weight: var(--font-weight-bold);
  color: var(--error-color);
  margin-bottom: var(--spacing-sm);
}

.info-important-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-dark);
}

.info-important-list li {
  margin-bottom: var(--spacing-sm);
  line-height: 1.5;
}

.info-important-list a {
  color: var(--error-color);
}

/* ===== Progress Section (Adımlar) ===== */
.progress-section {
  margin-bottom: var(--spacing-lg);
  /* Make the section itself sticky so it persists over the following content */
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: #ffffff;
  /* Ensure background so content doesn't show through if transparent areas exist */
  padding-top: 10px;
  /* Small buffer */
}

.progress-container {
  background-color: var(--bg-light);
  /* Or white if preferred, image looks very light grey/white */
  border: 1px solid var(--border-blue);
  border-radius: 15px;
  /* Radius 15 as requested */
  padding: 0 var(--spacing-lg);
  /* Only horizontal padding here */
  height: 100px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center content vertically */
  padding-top: 0;
  box-sizing: border-box;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  /* padding-bottom: var(--spacing-md); Removed for vertical centering */
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  /* flex: 1; Removed to allow space-between to push items to edges */
  z-index: 2;
  width: 150px;
  /* Fixed width to ensure text centering doesn't shift circle too much */
}

.step-circle {
  width: 34px;
  height: 34px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pie-chart {
  width: 100%;
  height: 100%;
}

.step-check {
  position: absolute;
  color: var(--text-light);
  font-size: 14px;
  font-weight: bold;
}

.step-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

.step-label.orange {
  color: var(--primary-orange);
}

.step-label.blue {
  color: var(--primary-blue);
}

.step-sublabel {
  font-weight: var(--font-weight-normal);
  display: block;
}

/* Progress Line - Dairelerin tam ortasından geçecek */
.progress-line-container {
  position: absolute;
  top: 15px;
  /* Circle Center is at 50% of step width (75px) if width is 150px */
  left: 75px;
  right: 75px;
  height: 4px;
  z-index: 1;
}

.progress-line-dashed {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(to right,
      var(--primary-blue) 0,
      var(--primary-blue) 8px,
      transparent 8px,
      transparent 16px);
}

.progress-line-solid {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background-color: var(--primary-orange);
  border-radius: 2px;
  transition: width 0.1s ease;
}

/* ===== Step Items Accordion ===== */
.steps-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.step-item {
  background-color: var(--bg-light);
  border: 1px solid var(--border-orange);
  border-radius: 15px;
  /* Radius 15 as requested */
  overflow: hidden;
  transition: all 0.3s ease;
}

.step-item:hover {
  box-shadow: var(--box-shadow);
}

.step-item-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  gap: var(--spacing-md);
  padding: 0 var(--spacing-lg);
  /* Removed vertical padding */
  background: none;
  border: none;
  cursor: pointer;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  font-size: var(--font-size-lg);
  font-family: var(--font-primary);
  height: 60px;
  /* Fixed height 60px */
  min-height: 0;
  /* Override previous */
}

.step-item-btn:hover {
  background-color: rgba(243, 148, 0, 0.05);
}

.step-item-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #D9D9D9;
  /* Light Gray as requested */
  color: var(--primary-blue);
  /* Blue text for contrast */
  border-radius: 50%;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-base);
  flex-shrink: 0;
}

.step-item-title {
  flex: 1;
  text-align: left;
  font-size: var(--font-size-lg);
}

.step-item-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  transform: rotate(-90deg);
  /* Default Right */
}

.step-item-btn[aria-expanded="true"] .step-item-chevron {
  transform: rotate(0deg);
  /* Open Down */
}

.step-item-divider {
  height: 1px;
  background-color: #F39400;
  margin: 0 var(--spacing-lg);
  display: none;
}

.step-item-btn[aria-expanded="true"]+.step-item-divider {
  display: block;
}

.step-item-content {
  display: block;
  /* Override hidden attribute */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 var(--spacing-lg);
  /* Start with 0 vertical padding */
  transition: max-height 0.5s ease-in-out, opacity 0.4s ease, padding 0.4s ease;
  box-sizing: border-box;
  width: 100%;
}

.step-item.open .step-item-content {
  max-height: none;
  opacity: 1;
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  /* Add bottom padding when open */
  overflow: visible;
  box-sizing: border-box;
}

/* Ensure hidden attribute doesn't break layout if JS doesn't remove it (we override display) */
.step-item-content[hidden] {
  display: block;
}

/* ===== Spacer ===== */
.spacer {
  height: 100px;
}

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

/* ===== Focus Styles ===== */
:focus-visible {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}

button:focus-visible {
  outline-offset: -2px;
}

/* ===== Submit Button ===== */
.submit-button:hover {
  background-color: #e08800;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(243, 148, 0, 0.4);
}

.submit-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(243, 148, 0, 0.3);
}

/* ===== Video Cards ===== */
.video-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-card-expand:hover {
  background: #e08800;
  transform: scale(1.1);
}

/* ===== Idea Textareas ===== */
.idea-section textarea:focus {
  outline: none;
  border-color: #F39400;
  box-shadow: 0 0 0 3px rgba(243, 148, 0, 0.1);
}

/* ===== Login/Register Form Styles ===== */
.login-register-form {
  padding: var(--spacing-lg) 0 5px;
  /* Bottom 5px + Parent 20px = 25px total */
}

.form-section {
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-lg);
  color: var(--primary-blue);
  margin: 0 0 var(--spacing-sm) 0;
}

.section-description {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--text-dark);
  margin: 0 0 var(--spacing-lg) 0;
  line-height: 1.5;
}

/* ===== Login Buttons ===== */
.login-buttons {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.login-btn {
  display: flex;
  align-items: center;
  height: 70px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 0 1 auto;
  min-width: 280px;
  max-width: 380px;
  white-space: nowrap;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.login-btn:active {
  transform: translateY(0);
}

.bgiv-btn {
  background-color: #f39400;
}

.db-btn {
  background-color: #6c41f2;
}

.btn-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 8px;
  flex-shrink: 0;
}

.btn-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.db-logo {
  width: 129px;
  padding: 10px 12px;
}

.btn-divider {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 15px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  gap: 2px;
  flex: 1;
}

.login-or {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: #000000;
  padding: 0 var(--spacing-sm);
}

/* ===== Form Separator ===== */
.form-separator {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin: var(--spacing-xl) 0;
}

.separator-line {
  flex: 1;
  height: 1px;
  background-color: #aaaaaa;
}

.separator-text {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: #aaaaaa;
  white-space: nowrap;
}

.separator-text strong {
  font-weight: 700;
}

/* ===== Register Form ===== */
.register-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.register-form .form-row {
  margin-bottom: 0;
}

.form-row {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  align-items: flex-start;
}

.form-row:last-child {
  margin-bottom: 0;
}

.form-row.single {
  flex-direction: column;
  align-items: stretch;
}

/* Form block spacing for application form */
.form-block .form-row {
  margin-bottom: var(--spacing-lg);
}

.form-row>.floating-input-group,
.form-row>.floating-select-group {
  flex: 1;
}

/* ===== Floating Input Group ===== */
.floating-input-group {
  position: relative;
  min-height: 56px;
}

.floating-input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  line-height: 56px;
  /* Match height for perfect vertical centering */
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  color: #1c1b1f;
  background-color: var(--bg-light);
  border: 1px solid #79747e;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  /* Reset browser defaults for consistent centering */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.floating-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 1px var(--primary-blue);
}

.floating-input.error {
  border-color: var(--error-color);
}

.floating-input.error:focus {
  box-shadow: 0 0 0 1px var(--error-color);
}

.floating-label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: 400;
  color: #79747e;
  background-color: transparent;
  padding: 0 4px;
  pointer-events: none;
  transition: all 0.2s ease;
}

/* Label yukarı hareket - Focus veya içerik varken */
.floating-input:focus+.floating-label,
.floating-input:not(:placeholder-shown)+.floating-label {
  top: 0;
  transform: translateY(-50%);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: #1c1b1f;
  background-color: var(--bg-light);
}

.floating-input:focus+.floating-label {
  color: var(--primary-blue);
}

.floating-input.error+.floating-label {
  color: var(--error-color);
}

/* ===== Password Toggle ===== */
.password-group {
  position: relative;
}

.password-group .floating-input {
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 28px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #313131;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: var(--primary-blue);
}

.eye-icon {
  width: 24px;
  height: 24px;
}

.eye-icon.hidden {
  display: none;
}

/* ===== Input Error ===== */
.input-error {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--error-color);
  margin-top: 4px;
  min-height: 0;
  /* Removed fixed min-height to prevent layout gaps */
}

.input-error:empty {
  display: none;
  margin-top: 0;
}

/* ===== Password Info ===== */
.password-info {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--text-dark);
  line-height: 1.5;
  margin: 4px 0;
  /* adds to 20px gap for 24px total */
}

/* ===== Form Checkbox ===== */
.form-checkbox {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  position: relative;
  padding-left: 32px;
}

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

.checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 1px solid #D9D9D9;
  border-radius: 2px;
  background-color: transparent;
  transition: all 0.2s ease;
}

.checkbox-container:hover input:not(:disabled)~.checkmark {
  border-color: var(--primary-blue);
}

.checkbox-container input[type="checkbox"]:checked~.checkmark {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.checkbox-container input[type="checkbox"]:checked~.checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-base);
  color: #313131;
  line-height: 1.5;
}

.consent-link {
  color: #ff8682;
  text-decoration: none;
  font-weight: 600;
}

.consent-link:hover {
  text-decoration: underline;
}

/* ===== Submit Button ===== */
.form-submit {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-md);
}

.submit-btn {
  width: 325px;
  height: 50px;
  background-color: var(--primary-blue);
  color: #ffffff;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-lg);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  background-color: #1e2d6b;
  box-shadow: 0 4px 12px rgba(38, 58, 135, 0.3);
}

.submit-btn:active {
  transform: translateY(1px);
}

.submit-btn:disabled {
  background-color: var(--disabled-color);
  cursor: not-allowed;
}

/* ===== Phone Input Masking Style ===== */
.floating-input[type="tel"] {
  letter-spacing: 0.5px;
}

/* ===== Application Form (Step 2) Styles ===== */
.application-form {
  padding: var(--spacing-lg) 0 5px;
}

.form-block {
  margin-bottom: var(--spacing-xl);
}

.form-block-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-lg);
  color: var(--primary-blue);
  margin: 0 0 var(--spacing-lg) 0;
}

.form-field-group {
  margin-bottom: var(--spacing-xl);
}

.field-question {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  margin: 0 0 var(--spacing-lg) 0;
}

.field-description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  margin: 0 0 var(--spacing-md) 0;
  line-height: 1.5;
}

/* ===== Floating Textarea Group ===== */
.floating-textarea-group {
  position: relative;
  min-height: 136px;
}

.floating-textarea {
  width: 100%;
  min-height: 136px;
  padding: 16px;
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  color: #1c1b1f;
  background-color: var(--bg-light);
  border: 1px solid #79747e;
  border-radius: 4px;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.5;
}

.floating-textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 1px var(--primary-blue);
}

.floating-textarea.error {
  border-color: var(--error-color);
}

.floating-textarea.error:focus {
  box-shadow: 0 0 0 1px var(--error-color);
}

.floating-textarea-label {
  position: absolute;
  left: 12px;
  top: 16px;
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: 400;
  color: #79747e;
  background-color: transparent;
  padding: 0 4px;
  pointer-events: none;
  transition: all 0.2s ease;
}

/* Label yukarı hareket - Focus veya içerik varken */
.floating-textarea:focus+.floating-textarea-label,
.floating-textarea:not(:placeholder-shown)+.floating-textarea-label {
  top: 0;
  transform: translateY(-50%);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: #313131;
  background-color: var(--bg-light);
}

.floating-textarea:focus+.floating-textarea-label {
  color: var(--primary-blue);
}

.floating-textarea.error+.floating-textarea-label {
  color: var(--error-color);
}

/* ===== Character Counter ===== */
.character-counter {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 400;
  color: #79747e;
  margin-top: 4px;
}

.character-counter .counter-number {
  color: #F39400;
  font-weight: 600;
}

/* ===== Floating Select Group ===== */
.floating-select-group {
  position: relative;
  min-height: 56px;
}

.floating-select {
  width: 100%;
  height: 56px;
  padding: 0 40px 0 16px;
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  color: #1c1b1f;
  background-color: var(--bg-light);
  border: 1px solid #79747e;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.floating-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 1px var(--primary-blue);
}

.floating-select.error {
  border-color: var(--error-color);
}

.floating-select.error:focus {
  box-shadow: 0 0 0 1px var(--error-color);
}

.floating-select-label {
  position: absolute;
  left: 12px;
  top: -8px;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: #313131;
  background-color: var(--bg-light);
  padding: 0 4px;
  pointer-events: none;
}

.floating-select:focus+.floating-select-label {
  color: var(--primary-blue);
}

.floating-select.error+.floating-select-label {
  color: var(--error-color);
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.university-select-group .select-arrow {
  top: 28px;
}

/* ===== Form Block Divider ===== */
.form-block-divider {
  height: 1px;
  background-color: var(--primary-orange);
  margin: var(--spacing-xl) 0;
}

/* ===== Custom Multi Select ===== */
.custom-multi-select {
  cursor: pointer;
}

.selected-tags-container {
  height: auto !important;
  min-height: 48px;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 14px 35px 4px 12px !important;
  /* Right padding for arrow */
}

.selected-tags-container:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 1px var(--primary-blue);
}

.placeholder-text {
  color: #79747e;
  /* Placeholder grey */
}

.tag-chip {
  background-color: var(--primary-blue);
  color: white;
  padding: 0px 8px;
  border-radius: 12px;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  line-height: 1;
}

.tag-chip-close {
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: background-color 0.2s;
}

.tag-chip-close:hover {
  background-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.tags-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #79747e;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tags-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tag-item {
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  transition: background-color 0.2s;
}

.tag-item:last-child {
  border-bottom: none;
}

.tag-item:hover {
  background-color: #f5f5f5;
  color: var(--primary-blue);
}

.tag-item.disabled {
  color: #ccc;
  pointer-events: none;
  cursor: not-allowed;
  background-color: #fafafa;
}

.tag-item.selected {
  background-color: rgba(38, 58, 135, 0.1);
  color: var(--primary-blue);
  font-weight: 600;
}

/* ===== Date Picker Styles ===== */
.date-picker-group {
  position: relative;
}

.date-picker-group .floating-input {
  padding-right: 48px;
  cursor: pointer;
}

.date-picker-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #79747e;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
  font-family: var(--font-primary);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
}

.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after {
  border-bottom-color: var(--primary-blue);
}

.flatpickr-months {
  background-color: var(--primary-blue);
  border-radius: 8px 8px 0 0;
}

.flatpickr-months .flatpickr-month {
  color: #ffffff;
  fill: #ffffff;
}

.flatpickr-current-month {
  color: #ffffff;
  font-weight: 600;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.flatpickr-current-month input.cur-year {
  color: #ffffff;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  fill: #ffffff;
  color: #ffffff;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  fill: var(--primary-orange);
  color: var(--primary-orange);
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  fill: #ffffff;
}

.flatpickr-weekdays {
  background-color: #f5f5f5;
}

.flatpickr-weekday {
  color: var(--primary-blue);
  font-weight: 600;
}

.flatpickr-day {
  color: #333;
  border-radius: 4px;
}

.flatpickr-day:hover {
  background-color: rgba(243, 148, 0, 0.2);
  border-color: var(--primary-orange);
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #ffffff;
}

.flatpickr-day.today {
  border-color: var(--primary-blue);
}

.flatpickr-day.today:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.numInputWrapper span {
  border-color: rgba(255, 255, 255, 0.5);
}

.numInputWrapper:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== City Select Styles ===== */
.city-select-group {
  cursor: pointer;
  position: relative;
}

.city-select-group .floating-select-label {
  top: 0;
  transform: translateY(-50%);
}

.selected-city-container {
  height: 56px !important;
  display: flex !important;
  align-items: center;
  padding: 0 40px 0 16px !important;
}

.selected-city-container:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 1px var(--primary-blue);
}

.city-placeholder-text {
  color: #79747e;
}

.selected-city-text {
  color: #1c1b1f;
  font-size: var(--font-size-lg);
}

.city-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #79747e;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.city-search-input {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  outline: none;
  background-color: #f9f9f9;
}

.city-search-input:focus {
  background-color: #ffffff;
}

.city-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
}

.city-item {
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  transition: background-color 0.2s;
}

.city-item:last-child {
  border-bottom: none;
}

.city-item:hover {
  background-color: #f5f5f5;
  color: var(--primary-blue);
}

.city-item.selected {
  background-color: rgba(38, 58, 135, 0.1);
  color: var(--primary-blue);
  font-weight: 600;
}

.city-item.hidden {
  display: none;
}

/* TC Kimlik No Input */
#tcKimlikNo {
  letter-spacing: 1px;
}

/* ===== Gender Dropdown Styles (Matching City) ===== */
.gender-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #79747e;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gender-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
}

.gender-item {
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  transition: background-color 0.2s;
}

.gender-item:last-child {
  border-bottom: none;
}

.gender-item:hover {
  background-color: #f5f5f5;
  color: var(--primary-blue);
}

.gender-item.selected {
  background-color: rgba(38, 58, 135, 0.1);
  color: var(--primary-blue);
  font-weight: 600;
}

.selected-gender-container {
  display: flex;
  align-items: center;
}

/* ===== Radio Button Styles ===== */
.radio-group {
  display: flex;
  gap: 24px;
  margin-bottom: var(--spacing-lg);
}

.radio-container {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.radio-container input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.radio-checkmark {
  width: 15px;
  height: 15px;
  border: 1.5px solid #79747e;
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-container:hover .radio-checkmark {
  border-color: var(--primary-blue);
}

.radio-container input[type="radio"]:checked~.radio-checkmark {
  border-color: var(--primary-blue);
}

.radio-container input[type="radio"]:checked~.radio-checkmark::after {
  content: '';
  width: 7px;
  height: 7px;
  background-color: var(--primary-blue);
  border-radius: 50%;
}

.radio-label {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 400;
  color: #000000;
}

/* ===== Conditional Fields ===== */
.conditional-fields {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.conditional-fields .field-question {
  margin-bottom: var(--spacing-md);
}

/* ===== Program Select Styles ===== */
.program-select-group,
.student-program-select-group {
  cursor: pointer;
  position: relative;
}

.program-select-group .floating-select-label,
.student-program-select-group .floating-select-label {
  top: 0;
  transform: translateY(-50%);
}

.selected-program-container,
.selected-student-program-container {
  height: 56px !important;
  display: flex !important;
  align-items: center;
  padding: 0 40px 0 16px !important;
}

.selected-program-container:focus,
.selected-student-program-container:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 1px var(--primary-blue);
}

.program-placeholder-text,
.student-program-placeholder-text {
  color: #79747e;
}

.selected-program-text,
.selected-student-program-text {
  color: #1c1b1f;
  font-size: var(--font-size-lg);
}

.program-dropdown,
.student-program-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #79747e;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.program-list,
.student-program-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-item,
.student-program-item {
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  transition: background-color 0.2s;
}

.program-item:last-child,
.student-program-item:last-child {
  border-bottom: none;
}

.program-item:hover,
.student-program-item:hover {
  background-color: #f5f5f5;
  color: var(--primary-blue);
}

.program-item.selected,
.student-program-item.selected {
  background-color: rgba(38, 58, 135, 0.1);
  color: var(--primary-blue);
  font-weight: 600;
}

/* ===== Sector Select Styles ===== */
.sector-select-group {
  cursor: pointer;
  position: relative;
}

.sector-select-group .floating-select-label {
  top: 0;
  transform: translateY(-50%);
}

.selected-sector-container {
  height: 56px !important;
  display: flex !important;
  align-items: center;
  padding: 0 40px 0 16px !important;
}

.selected-sector-container:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 1px var(--primary-blue);
}

.sector-placeholder-text {
  color: #79747e;
}

.selected-sector-text {
  color: #1c1b1f;
  font-size: var(--font-size-lg);
}

.sector-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #79747e;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sector-search-input {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  outline: none;
  background-color: #f9f9f9;
}

.sector-search-input:focus {
  background-color: #ffffff;
}

.sector-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
}

.sector-item {
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  transition: background-color 0.2s;
}

.sector-item:last-child {
  border-bottom: none;
}

.sector-item:hover {
  background-color: #f5f5f5;
  color: var(--primary-blue);
}

.sector-item.selected {
  background-color: rgba(38, 58, 135, 0.1);
  color: var(--primary-blue);
  font-weight: 600;
}

/* ===== Class Year Select Styles ===== */
.class-year-select-group {
  cursor: pointer;
  position: relative;
}

.class-year-select-group .floating-select-label {
  top: 0;
  transform: translateY(-50%);
}

.selected-class-year-container {
  height: 56px !important;
  display: flex !important;
  align-items: center;
  padding: 0 40px 0 16px !important;
}

.selected-class-year-container:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 1px var(--primary-blue);
}

.class-year-placeholder-text {
  color: #79747e;
}

.selected-class-year-text {
  color: #1c1b1f;
  font-size: var(--font-size-lg);
}

.class-year-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #79747e;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.class-year-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.class-year-item {
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  transition: background-color 0.2s;
}

.class-year-item:last-child {
  border-bottom: none;
}

.class-year-item:hover {
  background-color: #f5f5f5;
  color: var(--primary-blue);
}

.class-year-item.selected {
  background-color: rgba(38, 58, 135, 0.1);
  color: var(--primary-blue);
  font-weight: 600;
}



.sector-item.hidden {
  display: none;
}

/* ===== University Select Styles ===== */
.university-select-group {
  cursor: pointer;
  position: relative;
}

.university-select-group .floating-select-label {
  top: 0;
  transform: translateY(-50%);
}

.selected-university-container {
  height: 56px !important;
  display: flex !important;
  align-items: center;
  padding: 0 40px 0 16px !important;
}

.selected-university-container:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 1px var(--primary-blue);
}

.university-placeholder-text {
  color: #79747e;
}

.selected-university-text {
  color: #1c1b1f;
  font-size: var(--font-size-lg);
}

.university-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #79747e;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.university-search-input {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  outline: none;
  background-color: #f9f9f9;
}

.university-search-input:focus {
  background-color: #ffffff;
}

.university-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
}

.university-item {
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  transition: background-color 0.2s;
}

.university-item:last-child {
  border-bottom: none;
}

.university-item:hover {
  background-color: #f5f5f5;
  color: var(--primary-blue);
}

.university-item.selected {
  background-color: rgba(38, 58, 135, 0.1);
  color: var(--primary-blue);
  font-weight: 600;
}

.university-item.hidden {
  display: none;
}

.field-helper-text {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  font-family: var(--font-primary);
}

/* ===== Education Type Select Styles ===== */
.education-type-select-group {
  cursor: pointer;
  position: relative;
}

.education-type-select-group .floating-select-label {
  top: 0;
  transform: translateY(-50%);
}

.selected-education-type-container {
  height: 56px !important;
  display: flex !important;
  align-items: center;
  padding: 0 40px 0 16px !important;
}

.selected-education-type-container:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 1px var(--primary-blue);
}

.education-type-placeholder-text {
  color: #79747e;
}

.selected-education-type-text {
  color: #1c1b1f;
  font-size: var(--font-size-lg);
}

.education-type-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #79747e;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.education-type-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.education-type-item {
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  transition: background-color 0.2s;
}

.education-type-item:last-child {
  border-bottom: none;
}

.education-type-item:hover {
  background-color: #f5f5f5;
  color: var(--primary-blue);
}

.education-type-item.selected {
  background-color: rgba(38, 58, 135, 0.1);
  color: var(--primary-blue);
  font-weight: 600;
}

/* ===== Team Count Selector Styles ===== */
.team-count-section {
  background-color: rgba(38, 58, 135, 0.15);
  border-radius: 5px;
  padding: 16px;
  margin-bottom: 30px;
}

.team-count-selector {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.team-count-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--bg-light);
  border-radius: 4px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  flex: 1;
  min-width: 120px;
}

.team-count-option:hover {
  border-color: var(--primary-blue);
}

.team-count-option.selected {
  border: 1px solid var(--primary-orange);
  background-color: #fff;
}

.team-count-icons {
  display: flex;
  align-items: flex-end;
  height: 45px;
}

.team-count-icons svg {
  height: 45px;
  width: auto;
}

.team-count-option.selected .team-count-icons svg circle,
.team-count-option.selected .team-count-icons svg path {
  stroke: var(--primary-blue);
}

.team-count-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.count-number {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.count-label {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
}

/* ===== Team Member Form Styles ===== */
#teamFields {
  overflow: visible;
}

#teamMembersContainer {
  overflow: visible;
}

.team-member-form {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  overflow: visible;
}

.team-member-form:first-child {
  margin-top: 0;
}

.team-member-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.team-member-title .member-number {
  margin-right: 5px;
}

.team-member-subtitle {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-blue);
  margin: 25px 0 15px 0;
}

.team-member-form .form-row {
  margin-bottom: var(--spacing-lg);
}

.team-member-form .radio-group {
  margin-bottom: var(--spacing-md);
}

.team-member-form .conditional-fields {
  margin-top: 10px;
  padding-top: 10px;
}

/* Checkbox grid for responsibilities in team member form */
.team-member-form .checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  max-width: 400px;
}

/* ===== Step 3 Form Styles ===== */
.step-3-form-content {
  padding: 24px 0;
}

/* Step 3 Intro */
.step3-intro {
  margin-bottom: 24px;
}

.step3-intro-text {
  font-size: 14px;
  color: #4d4d4d;
  line-height: 1.6;
  margin-bottom: 10px;
}

.text-danger {
  color: #FF0004;
  font-weight: 600;
}

.text-primary {
  color: #263a87;
}

/* Step 3 Divider */
.step3-divider {
  width: 100%;
  height: 1px;
  background-color: #AEAEAE;
  margin: 24px 0;
}

/* Step 3 Section Title */
.step3-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #263a87;
  margin-bottom: 24px;
}

.step3-section-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #4d4d4d;
  margin-bottom: 16px;
}

.step3-section-subtitle-bold {
  font-size: 14px;
  font-weight: 700;
  color: #4d4d4d;
}

/* Step 3 Video Grid */
.step3-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.step3-video-card {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.step3-video-card:hover {
  transform: translateY(-2px);
}

.step3-video-thumb {
  border: 2px solid #797474;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 955 / 538;
  position: relative;
  transition: border-color 0.3s ease;
}

.step3-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step3-video-thumb.watched {
  border: 2px solid #00A800;
}

.step3-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 56px;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.2s ease;
  opacity: 0.5;
}

.step3-play-icon svg {
  width: 100%;
  height: 100%;
}

.step3-video-card:hover .step3-play-icon,
.step3-video-card-small:hover .step3-play-icon,
.step3-video-card-horizontal:hover .step3-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

.step3-video-info {
  padding: 10px 0;
  text-align: center;
}

.step3-video-info p {
  font-size: 14px;
  color: #4d4d4d;
  margin: 0;
  line-height: 1.4;
}

/* Step 3 Question Row */
.step3-question-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  max-width: 100%;
  overflow: hidden;
}

.step3-question-left {
  flex: 1;
  max-width: calc(100% - 237px);
  min-width: 0;
}

.step3-question-right {
  flex: 0 0 213px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  max-width: 213px;
}

.step3-question-title {
  font-size: 14px;
  font-weight: 700;
  color: #4d4d4d;
  margin-bottom: 10px;
}

.step3-question-desc {
  font-size: 14px;
  font-weight: 400;
  color: #4d4d4d;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Small Video Cards */
.step3-video-card-small {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  max-width: 213px;
  width: 100%;
}

.step3-video-thumb-small {
  border: 2px solid #797474;
  border-radius: 4px;
  overflow: hidden;
  width: 213px;
  height: 120px;
  position: relative;
  transition: border-color 0.3s ease;
}

.step3-video-thumb-small.watched {
  border: 2px solid #00A800;
}

.step3-video-thumb-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step3-video-info-small p {
  font-size: 14px;
  color: #4d4d4d;
  text-align: center;
  margin: 0;
}

/* Horizontal Video Cards */
.step3-video-card-horizontal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  max-width: 213px;
}

.step3-video-card-horizontal .step3-video-thumb {
  width: 177px;
  height: 100px;
  aspect-ratio: auto;
  flex-shrink: 0;
}

.step3-video-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.step3-video-row .step3-video-card-horizontal {
  flex: 0 0 213px;
  width: 213px;
  max-width: 213px;
}

/* Desktop: Potansiyel Etki video row - 2 cards each 50%, thumbnail left + info right */
@media (min-width: 768px) {
  .step3-video-row {
    gap: 24px;
  }

  .step3-video-row .step3-video-card-horizontal {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
    width: calc(50% - 12px);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .step3-video-row .step3-video-card-horizontal .step3-video-thumb {
    flex-shrink: 0;
    width: auto;
    height: 116px;
    aspect-ratio: 955 / 538;
  }

  .step3-video-row .step3-video-card-horizontal .step3-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .step3-video-row .step3-video-card-horizontal .step3-video-info {
    flex: 1;
    min-width: 0;
    text-align: left;
    padding: 0;
  }

  .step3-video-row .step3-video-card-horizontal .step3-video-info p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
  }
}

/* Step 3 Floating Textarea */
.step3-floating-textarea {
  position: relative;
  margin-bottom: 20px;
}

.step3-floating-textarea textarea {
  width: 100%;
  min-height: 136px;
  padding: 16px;
  padding-top: 24px;
  border: 1px solid #79747e;
  border-radius: 4px;
  background-color: #f9f9f9;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  resize: vertical;
  color: #4d4d4d;
}

.step3-floating-textarea textarea:focus {
  outline: none;
  border-color: #263a87;
}

.step3-floating-textarea label {
  position: absolute;
  left: 12px;
  top: 16px;
  background-color: transparent;
  padding: 0 4px;
  font-size: 14px;
  font-weight: 400;
  color: #79747e;
  pointer-events: none;
  transition: all 0.2s ease;
}

.step3-floating-textarea textarea:focus+label,
.step3-floating-textarea textarea:not(:placeholder-shown)+label {
  top: -8px;
  font-size: 14px;
  font-weight: 600;
  color: #313131;
  background-color: #f9f9f9;
}

.step3-floating-textarea textarea:focus+label {
  color: #263a87;
}

.step3-char-hint {
  display: block;
  font-size: 12px;
  color: #79747e;
  margin-top: 4px;
}

.step3-char-hint .counter-number {
  color: #f4a500;
  font-weight: 600;
}

/* Small Floating Textarea */
.step3-floating-textarea-small {
  position: relative;
}

.step3-floating-textarea-small textarea {
  width: 100%;
  min-height: 150px;
  padding: 16px;
  border: 1px solid #79747e;
  border-radius: 4px;
  background-color: #f9f9f9;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  resize: vertical;
  color: #4d4d4d;
}

.step3-floating-textarea-small textarea:focus {
  outline: none;
  border-color: #263a87;
}

.step3-floating-textarea-small textarea.error {
  border-color: #dc3545;
  background-color: #fff5f5;
}

.step3-floating-textarea-small.disabled textarea {
  background-color: #d9d9d9;
}

.step3-floating-textarea-small .step3-char-hint {
  margin-top: 4px;
}

/* Medium Floating Textarea */
.step3-floating-textarea-medium {
  position: relative;
  width: 100%;
}

.step3-floating-textarea-medium textarea {
  width: 100%;
  min-height: 150px;
  padding: 16px;
  border: 1px solid #79747e;
  border-radius: 4px;
  background-color: #f9f9f9;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  resize: vertical;
  color: #4d4d4d;
}

.step3-floating-textarea-medium textarea:focus {
  outline: none;
  border-color: #263a87;
}

/* Step 3 Floating Input */
.step3-floating-input {
  position: relative;
  margin-bottom: 20px;
}

.step3-floating-input.full-width {
  width: 100%;
}

.step3-floating-input input {
  width: 100%;
  height: 55px;
  padding: 16px;
  padding-top: 24px;
  border: 1px solid #79747e;
  border-radius: 4px;
  background-color: #f9f9f9;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  color: #4d4d4d;
}

.step3-floating-input input:focus {
  outline: none;
  border-color: #263a87;
}

.step3-floating-input label {
  position: absolute;
  left: 12px;
  top: 16px;
  background-color: transparent;
  padding: 0 4px;
  font-size: 14px;
  font-weight: 400;
  color: #79747e;
  pointer-events: none;
  transition: all 0.2s ease;
}

.step3-floating-input input:focus+label,
.step3-floating-input input:not(:placeholder-shown)+label {
  top: -8px;
  font-size: 14px;
  font-weight: 600;
  color: #313131;
  background-color: #f9f9f9;
}

.step3-floating-input input:focus+label {
  color: #263a87;
}

.step3-floating-input input.error {
  border-color: #dc3545;
  background-color: #fff5f5;
}

.step3-error-message {
  display: block;
  font-size: 12px;
  color: #dc3545;
  margin-top: 4px;
}

/* Step 3 Stage Items */
.step3-stage-item {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.step3-stage-left {
  flex: 1;
}

.step3-stage-right {
  flex: 1;
}

.step3-stage-desc {
  font-size: 14px;
  color: #4d4d4d;
  line-height: 1.5;
  margin-top: 10px;
  padding-left: 22px;
}

/* Step 3 Radio Button */
.step3-radio-container {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  cursor: pointer;
  margin-bottom: 8px;
}

.step3-radio-container input[type="radio"] {
  display: none;
}

.step3-radio-checkmark {
  width: 15px;
  height: 15px;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  background-color: #fff;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.step3-radio-container input[type="radio"]:checked+.step3-radio-checkmark {
  border-color: #263a87;
  background-color: #263a87;
}

.step3-radio-container input[type="radio"]:checked+.step3-radio-checkmark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
}

.step3-radio-label-bold {
  font-size: 14px;
  font-weight: 700;
  color: #4d4d4d;
}

/* Step 3 Question Block */
.step3-question-block {
  margin-bottom: 24px;
}

/* Video Note */
.step3-video-note {
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 4px;
  opacity: 0.8;
}

.step3-video-note p {
  font-size: 14px;
  color: #4d4d4d;
  line-height: 1.6;
  margin-bottom: 10px;
}

.step3-video-note p:last-child {
  margin-bottom: 0;
}

.step3-video-note a {
  color: #263a87;
  text-decoration: underline;
}

/* Step 3 Section Header */
.step3-section-header {
  margin-bottom: 24px;
}

/* Step 3 Two Column Layout */
.step3-two-column {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.step3-column-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.step3-column-right {
  flex: 1;
}

/* Step 3 Section Row */
.step3-section-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  flex-wrap: nowrap;
  overflow: hidden;
}

.step3-section-row .step3-section-subtitle-bold {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .step3-section-row .step3-video-card-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex: 0 0 320px;
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    overflow: hidden;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  .step3-section-row .step3-video-card-horizontal .step3-video-thumb {
    width: 206px;
    min-width: 206px;
    max-width: 206px;
    height: 116px;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  .step3-section-row .step3-video-card-horizontal .step3-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .step3-section-row .step3-video-card-horizontal .step3-video-info {
    flex: 1;
    min-width: 0;
    padding: 0;
    text-align: left;
  }

  .step3-section-row .step3-video-card-horizontal .step3-video-info p {
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
    word-wrap: break-word;
  }
}

.step3-section-row.step3-align-to-input {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.step3-section-row.step3-align-to-input .step3-section-subtitle-bold {
  flex: unset;
  width: auto;
}

.step3-section-row.step3-align-to-input .step3-video-card-horizontal {
  justify-self: center;
  width: auto;
}

/* Step 3 Team Count Section */
.step3-team-count-section {
  background-color: rgba(38, 58, 135, 0.15);
  border-radius: 5px;
  padding: 16px;
  margin-bottom: 24px;
}

.step3-team-count-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.step3-team-count-item {
  cursor: pointer;
  flex: 1;
  min-width: 120px;
}

.step3-team-count-item input {
  display: none;
}

.step3-team-count-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #f9f9f9;
  border-radius: 4px;
  padding: 10px 15px;
  min-width: 90px;
  width: 100%;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.step3-team-count-item:hover .step3-team-count-box {
  border-color: #263a87;
}

.step3-team-count-item.active .step3-team-count-box,
.step3-team-count-item input:checked+.step3-team-count-box {
  border: 1px solid #f39400;
  background-color: #fff;
}

.step3-team-count-box img {
  height: 45px;
  width: auto;
}

.step3-team-count-label {
  display: flex;
  flex-direction: column;
}

.step3-team-count-label .count {
  font-size: 20px;
  font-weight: 700;
  color: #4d4d4d;
}

.step3-team-count-label .text {
  font-size: 16px;
  color: #4d4d4d;
}

/* Step 3 Team Count Item Selected */
.step3-team-count-item.selected .step3-team-count-box {
  border: 1px solid #f39400;
  background-color: #fff;
}

/* Step 3 Team Members Container */
.step3-team-members-container {
  margin-top: 24px;
}

/* Step 3 Team Member Form */
.step3-team-member-form {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.step3-team-member-title {
  font-size: 16px;
  font-weight: 600;
  color: #263a87;
  margin-bottom: 20px;
}

.step3-team-member-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #263a87;
  margin: 20px 0 15px 0;
}

/* Step 3 Form Row */
.step3-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.step3-form-row .step3-floating-input,
.step3-form-row .step3-floating-select-wrapper {
  flex: 1;
}

/* Step 3 Floating Select Wrapper */
.step3-floating-select-wrapper {
  position: relative;
}

.step3-floating-select {
  width: 100%;
  height: 55px;
  padding: 16px;
  padding-top: 24px;
  border: 1px solid #79747e;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  color: #4d4d4d;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'%3E%3Cpath d='M5 7L0.669873 0.25L9.33013 0.25L5 7Z' fill='%231C1B1F'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.step3-floating-select:focus {
  outline: none;
  border-color: #263a87;
}

.step3-floating-select-wrapper label {
  position: absolute;
  left: 12px;
  top: -8px;
  background-color: #fff;
  padding: 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #313131;
  pointer-events: none;
}

/* Step 3 Radio Group Inline */
.step3-radio-group-inline {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

/* Step 3 Checkbox Grid */
.step3-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* Step 3 Date Picker */
.step3-date-picker {
  cursor: pointer;
}

/* Step 3 Edu Fields */
.step3-edu-fields {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.step3-university-fields {
  margin-top: 15px;
}

/* Step 3 Upload Area */
.step3-upload-area {
  border: 1px dashed #aeaeae;
  border-radius: 5px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.step3-upload-area:hover {
  border-color: #263a87;
}

.step3-upload-area p {
  font-size: 14px;
  color: #4d4d4d;
  text-align: center;
  margin-bottom: 5px;
}

.upload-content {
  text-align: center;
}

.upload-info {
  font-size: 12px !important;
  color: #777 !important;
  margin-top: 5px;
}

/* Upload Preview */
.upload-preview {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  margin-bottom: 16px;
  background-color: #f9f9f9;
}

.upload-preview img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.preview-info {
  flex: 1;
}

.preview-info p {
  margin: 5px 0;
  font-size: 13px;
  color: #4d4d4d;
}

.remove-image-btn {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 6px 15px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.remove-image-btn:hover {
  background-color: #c82333;
}

/* Upload Error */
.upload-error {
  padding: 10px 15px;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
  margin-bottom: 16px;
  font-size: 13px;
}

/* Step 3 Yes/No Section */
.step3-yesno-section {
  margin-bottom: 24px;
}

.step3-yesno-item {
  background-color: rgba(38, 58, 135, 0.15);
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 24px;
}

.step3-yesno-item.expanded {
  padding-bottom: 20px;
}

.step3-yesno-question {
  font-size: 14px;
  font-weight: 700;
  color: #4d4d4d;
  margin-bottom: 10px;
}

.step3-yesno-options {
  display: flex;
  gap: 20px;
}

.step3-yesno-subdesc {
  font-size: 14px;
  color: #4d4d4d;
  margin: 15px 0 10px 0;
}

.step3-yesno-detail {
  margin-top: 15px;
  transition: all 0.3s ease;
}

/* Step 3 Source Section */
.step3-source-section {
  margin-bottom: 24px;
}

.step3-source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.step3-source-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Step 3 Checkbox */
.step3-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  cursor: pointer;
  line-height: 1.6;
}

.step3-checkbox-container input[type="checkbox"] {
  display: none;
}

.step3-checkbox-checkmark {
  width: 15px;
  height: 15px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  flex-shrink: 0;
  position: relative;
  margin-top: 3px;
}

.step3-checkbox-container input[type="checkbox"]:checked+.step3-checkbox-checkmark {
  background-color: #263a87;
  border-color: #263a87;
}

.step3-checkbox-container input[type="checkbox"]:checked+.step3-checkbox-checkmark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.step3-checkbox-container span {
  font-size: 14px;
  color: #000;
}

.hint-text {
  font-size: 12px;
  color: #000;
  font-weight: 300;
}

/* Step 3 Terms */
.step3-terms {
  margin-bottom: 40px;
}

.step3-terms p {
  font-size: 14px;
  color: #4d4d4d;
  line-height: 1.6;
}

.step3-terms a {
  color: #263a87;
  text-decoration: underline;
}

/* Step 3 Action Buttons */
.step3-action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.step3-btn-update {
  background-color: #f39400;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  height: 50px;
  width: 325px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.step3-btn-update:hover {
  background-color: #e08800;
}

.step3-btn-submit {
  background-color: #0b1e63;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  height: 50px;
  width: 325px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.step3-btn-submit:hover {
  background-color: #0a1a55;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-modal.hidden {
  display: none;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background-color: #000;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.video-modal-close:hover {
  opacity: 0.7;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}