.hizli-web-hero-section {
  background-color: rgb(24 24 24 / 50%); /* Overlay color lightened */
  background-image: url("/assets/img/hizli-web-hero-arkaplan.jpg");
  background-blend-mode: multiply;
  background-size: 85%;
  background-position: left;
  padding: 80px 0 180px 40px;
  position: relative;
  color: white;
  overflow: hidden;
  border-bottom-left-radius: 90% 20%;
  border-bottom-right-radius: 90% 20%;
}

.basarili-hizli-web-hero-section {
    background-color: rgb(24 24 24 / 50%); /* Overlay color lightened */
    background-image: url("/assets/img/hizli-web-hero-arkaplan.jpg");
    background-blend-mode: multiply;
    background-size: 85%;
    background-position: left;
    padding: 80px 0 180px 40px;
    position: relative;
    height: 100vh;
    color: white;
    overflow: hidden;
}

.orange-swoosh {
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background-color: #f6861f;
  z-index: 0;
}

.hero-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text-content {
  flex: 1;
}

.hero-text-content h1 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  border-style: none;
  outline: none;
  box-shadow: none;
}

.hero-text-content p {
  font-size: 1.1rem;
  max-width: 90%;
}

.how-it-works-container {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.how-it-works-container h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: left;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem;
  border-radius: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.step-icon {
  width: 40px;
  height: 40px;
  background-color: #f6861f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
}

.step-card p {
  font-size: 0.8rem;
  line-height: 1.1;
  margin: 0;
}

.step-card p strong {
  color: #f6861f;
  font-weight: bold;
}

.step-card p span {
  color: white;
  font-size: 0.7rem;
  font-style: italic;
}

.hero-form-card {
  flex: 1;
  background-color: white;
  color: #333;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 25px;
  max-width: 500px;
}

.form-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 12px;
}

.form-column.randevu-form {
  flex: 1.35;
}

.form-column h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
  text-align: center;
}

.form-switcher {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

.form-switcher a {
  color: #f6861f;
  font-weight: bold;
  text-decoration: none;
}

.form-switcher a:hover {
  text-decoration: underline;
}

/*Logged-in view styles */
.logged-in-view {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: start;
  text-align: left;
  gap: 20px;
}

.user-info-header {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  flex-wrap: wrap;
}

.user-avatar {
  position: relative;
  font-size: 2.2rem;
  color: #f6861f;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #fde8d4;
}

.user-avatar-check {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 28px;
  height: 28px;
  background-color: #4caf50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-details h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.user-details p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.info-box {
  background-color: #eef8ff;
  border-left: 4px solid #2196f3;
  padding: 15px;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #333;
  margin: 0.5rem 0;
}

.info-box p a:hover {
  color: #0035c9;
}

.logged-in-actions {
  margin-top: auto;
}

.btn-logout {
  width: 100%;
  padding: 15px;
  border: 2px solid #ccc;
  border-radius: 8px;
  color: #555;
  background-color: transparent;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-logout:hover {
  background-color: #f1f1f1;
  border-color: #aaa;
}

.password-rules-plain {
  margin-bottom: 16px;
  color: #666;
  font-size: 0.7rem;
  line-height: 0.8rem;
  text-align: start;
  font-family: inherit;
}

.password-rules-plain > div {
  margin-top: 6px;
  margin-bottom: 0;
  padding-left: 0;
  letter-spacing: 0.01em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 2.2rem;
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

.form-group .disabled-input {
  opacity: 0.5;
}

.form-column .form-group input,
.form-column .form-group textarea {
  width: 100% !important;
  padding: 12px 15px !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  background-color: #f9f9f9 !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.form-column .form-group .rz-datepicker {
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
  display: block !important;
}

.form-column .form-group input:focus,
.form-column .form-group textarea:focus {
  outline: none !important;
  border-color: #6a0dad !important;
  box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.15) !important;
  background-color: white !important;
}

.form-column .form-group .rz-datepicker:focus-within {
  outline: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.form-column .rz-datepicker {
  width: 100% !important;
  padding: 0 !important;
  background-color: transparent !important;
}

.form-column textarea {
  resize: none;
  height: 120px;
}

.form-group .rz-inputtext {
  box-sizing: border-box !important;
  height: 40px !important;
  width: 100% !important;
  padding: 8px 10px !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  background-color: #f9f9f9 !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.form-group .rz-inputtext:focus {
  outline: none !important;
  border-color: #6a0dad !important;
  box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.15) !important;
  background-color: white !important;
}

.form-column button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  position: relative;
}

.form-column.randevu-form button {
  margin-top: 20px;
}

.form-column button:active {
  transform: translateY(2px);
}
.btn-basvuru {
  background-color: #6a0dad;
  box-shadow: 4px 4px 0 0 black;
  border: 2px solid black;
}

.btn-basvuru:hover {
  background-color: #fff;
  color: #1a1a1a;
}

.btn-randevu {
  background-color: #f6861f;
  box-shadow: 4px 4px 0 0 black;
  border: 2px solid black;
}

.btn-randevu:disabled {
  opacity: 0.6;
  box-shadow: none;
  cursor: not-allowed;
}

.btn-randevu:hover {
  background-color: #fff;
  color: #1a1a1a;
}

.datepicker-group {
  margin-bottom: 1rem;
}

.datepicker-label-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.calendar-icon {
  display: flex;
  align-items: center;
  height: 24px;
}

.calendar-icon i {
  font-size: 1.2rem;
  color: #555;
}

/* Tab Styles */
.form-tabs {
  display: none;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.tab-button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: background-color 0.3s, color 0.3s;
  width: 50%;
  font-size: 1rem;
  font-weight: 500;
  color: #888;
  border-bottom: 2px solid transparent;
}

.tab-button.active {
  color: #000;
  font-weight: bold;
  border-bottom-color: #f6861f;
}

.form-column-wrapper {
  display: flex;
  gap: 25px;
  width: 100%;
}

/* Styles for disabled form elements */
.form-group .rz-state-disabled .rz-inputtext {
  background-color: #f5f5f5 !important;
  cursor: not-allowed;
}

.btn-basvuru:disabled {
  background-color: #9e9e9e;
  box-shadow: none;
  cursor: not-allowed;
}

.btn-basvuru:disabled:hover {
  background-color: #9e9e9e;
  color: white;
}

.phone-input-group {
  display: flex;
}

.phone-input-group .rz-dropdown {
  width: 120px;
  flex-shrink: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: unset;
}

.phone-input-group .rz-dropdown .rz-dropdown-label-container {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 15px;
}

.phone-input-group .rz-inputtext {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-radius: unset !important;
}

/* Responsive Styles */
@media (max-width: 1450px) {
  .hero-form-card {
    margin-right: 2rem;
  }

  .phone-input-group .rz-dropdown {
    width: 100px;
  }
}

@media (max-width: 1200px) {
  .hero-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .hizli-web-hero-section {
    background-size: cover;
    background-position: center;
    padding: 60px 20px 90px 20px;
    border-bottom-left-radius: 90% 15%;
    border-bottom-right-radius: 90% 15%;
  }

  .password-rules-plain {
    line-height: 1.2rem;
  }

  .hero-text-content {
    margin-bottom: 0;
    padding: 0 20px;
  }

  .hero-form-card {
    max-width: 100%;
    min-width: 800px;
    margin-right: 0;
  }

  .hero-text-content h1 {
    font-size: 2.8rem;
    margin: 0 4rem 0 4rem;
  }

  .orange-swoosh {
    display: none; /* Hide the swoosh on smaller screens */
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-input-group .rz-dropdown {
    width: 120px;
  }
}

@media (max-width: 992px) {
  .hero-text-content h1 {
    font-size: 2.8rem;
    margin: 0;
  }

  .hero-text-content {
    margin-bottom: 0;
  }

  .hizli-web-hero-section {
    padding: 40px 15px 80px 15px;
    border-bottom-left-radius: 90% 10%;
    border-bottom-right-radius: 90% 10%;
  }

  .hero-form-card {
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 600px;
    margin-right: 0;
  }

 .form-tabs {
    display: flex;
    border-radius: 12px 12px 0 0;
    background-color: white;
    padding: 10px 20px 0 20px;
  }

  .tab-button {
    padding: 14px 0;
    margin: 0 10px;
    font-size: 0.9rem;
  }

  .form-column-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    background-color: white; /* Match card background */
    border-radius: 12px; /* Rounded bottom corners for content */
    padding: 20px; /* Padding for the content area */
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Keep shadow on wrapper */
  }

  .form-column {
    grid-column: 1;
    grid-row: 1;
    /*display: none; /* Hide columns by default */
    border: none; /* Remove individual column borders */
    padding: 0; /* Remove padding from column itself */
    width: 100% !important; /* Force full width of grid cell */
    min-width: 100% !important; /* Ensure minimum width is also 100% */
    max-width: 100% !important; /* Prevent any shrinking */
    box-sizing: border-box;
    flex: none !important; /* Remove flex properties that might cause shrinking */
  }

  .form-column.active {
    display: block !important; /* Use block to avoid flex shrinking issues */
    width: 100% !important; /* Force full width */
    min-width: 100% !important; /* Ensure minimum width */
    max-width: 100% !important; /* Prevent shrinking */
  }

  /* Ensure all form elements take full width in mobile */
  .form-column .form-group,
  .form-column .form-group input,
  .form-column .form-group textarea,
  .form-column .password-rules-plain,
  .form-column button {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-form-card {
    gap: 0;
    margin-right: 0;
  }

  .hero-text-content h1 {
    font-size: 2.2rem;
    margin: 0;
  }

  .hero-text-content p {
    font-size: 1rem;
  }

  .form-column h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-form-card {
    min-width: 400px;
    max-width: 600px;
  }
}

@media (max-width: 480px) {
    .hizli-web-hero-section {
        padding: 30px 10px 80px 10px;
        border-bottom-left-radius: 90% 5%;
        border-bottom-right-radius: 90% 5%;
    }

  .hero-text-content h1 {
    font-size: 1.8rem;
    margin: 0;
  }

  .form-column {
    padding: 15px 0 0 0;
  }

  .form-column .form-group input,
  .form-column .form-group textarea,
  .form-group .rz-inputtext {
    padding: 10px 12px !important;
    font-size: 0.9rem !important;
  }

  .form-column button {
    padding: 12px;
    font-size: 1rem;
  }

  .hero-form-card {
    min-width: 355px;
    max-width: 500px;
    margin-right: 0;
  }
}

/* Demo loading overlay styles */
.new-expo-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
