body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .organization-step .booking-step {
    display: none;
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative; /* Back butonunu konumlandırmak için */
  }
  
  .organization-step .booking-step.active {
    display: block;
  }
  
  .organization-step h2 {
    color: #1a73e8;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
  }
  
  /* Animated Gradient Text */
  .organization-step .gradient-text {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient 15s ease infinite;
  }
  
  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  /* Step 0, Step 1, Step 2, Step 4: Cards */
  .organization-step .cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .organization-step .card.hidden {
    display: none;
  }
  
  .organization-step .card {
    flex: 0 0 auto;
    width: 300px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    margin: 10px;
  }
  
  .organization-step .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }
  
  /* Card Slider Styles */
  .organization-step .card-slider {
    position: relative;
    width: 100%;
    height: 335px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    background-color: #f8f9fa;
  }
  
  .organization-step .card-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
  }
  
  .organization-step .card-slide {
    flex: 0 0 100%;
    width: 300px;
    height: 335px;
    object-fit: cover;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  }
  
  .organization-step .card-prev-btn, .card-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
  }
  
  .organization-step .card-prev-btn {
    left: 10px;
  }
  
  .organization-step .card-next-btn {
    right: 10px;
  }
  
  .organization-step .card-prev-btn:hover, .organization-step .card-next-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .organization-step .card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .organization-step .card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    color: #1a73e8;
  }
  
  .organization-step .card-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-align: center;
    width: 100%;
    line-height: 1.5;
  }
  
  .organization-step .priceText {
    display: block;
    margin-top: 5px;
    color: #1a73e8;
    font-weight: 600;
  }
  
  .organization-step .details-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
    padding: 5px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .organization-step .details {
    font-size: 14px;
    color: #1a73e8;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .organization-step .details:hover {
    color: #0d47a1;
    text-decoration: none;
  }
  
  .organization-step .experiences {
    font-size: 13px;
    color: #1a73e8;
    background-color: rgba(26, 115, 232, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .organization-step .experiences:hover {
    background-color: rgba(26, 115, 232, 0.15);
  }
  
  .organization-step .step0-location {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  
  .organization-step .step0-location::before {
    content: '📍';
  }
  
  .organization-step .card .select-btn {
    float: none;
    margin: 0 auto;
    min-width: 140px;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 25px;
    background: linear-gradient(45deg, #1a73e8, #0d47a1);
    transition: all 0.3s ease;
  }
  
  .organization-step .card .select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
    background: linear-gradient(45deg, #0d47a1, #1a73e8);
  }
  
  /* Modal (Pop-up) Styles */
  .organization-step .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .organization-step .modal-content {
    background-color: #fff;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    height: 90vh;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .organization-step .slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
  }
  
  .organization-step .slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
  }
  
  .organization-step .slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .organization-step .prev-btn,
  .organization-step .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a73e8;
    z-index: 2;
    transition: all 0.3s ease;
  }
  
  .organization-step .prev-btn {
    left: 20px;
  }
  
  .organization-step .next-btn {
    right: 20px;
  }
  
  .organization-step .prev-btn:hover,
  .organization-step .next-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .organization-step .modal-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
  }
  
  .organization-step .modal-header {
    margin-bottom: 20px;
    text-align: center;
  }
  
  .organization-step #modal-title,
  .organization-step #yacht-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    margin: 0 0 10px;
  }
  
  .organization-step #modal-description,
  .organization-step #yacht-modal-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 30px;
  }
  
  .organization-step .reviews {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
  }
  
  .organization-step .reviews h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px;
  }
  
  .organization-step .review {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
  }
  
  .organization-step .review:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
  
  .organization-step .review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .organization-step .review-user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .organization-step .review-user {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px;
  }
  
  .organization-step .review-source {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }
  
  .organization-step .review-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
  }
  
  .organization-step .back-btn-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: rotate(0deg);
  }
  
  .organization-step .back-btn-modal::before,
  .organization-step .back-btn-modal::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: #1a73e8;
    transition: all 0.3s ease;
  }
  
  .organization-step .back-btn-modal::before {
    transform: rotate(45deg);
  }
  
  .organization-step .back-btn-modal::after {
    transform: rotate(-45deg);
  }
  
  .organization-step .back-btn-modal:hover {
    background-color: #1a73e8;
    transform: rotate(180deg);
  }
  
  .organization-step .back-btn-modal:hover::before,
  .organization-step .back-btn-modal:hover::after {
    background-color: #fff;
  }
  
  .organization-step .modal-select-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 30px auto 0;
    padding: 15px 30px;
    background: linear-gradient(45deg, #1a73e8, #0d47a1);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .organization-step .modal-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
    background: linear-gradient(45deg, #0d47a1, #1a73e8);
  }
  
  /* Standard Button Style */
  .organization-step .standard-btn {
    width: auto;
    float: right;
    max-width: 200px;
    width: 100%;
    background-color: #40C4FF;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .organization-step .standard-btn:hover {
    background-color: #00B0FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  .organization-step .standard-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .organization-step .standard-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(64, 196, 255, 0.3);
  }
  
  /* Minimal Back Button Style */
  .organization-step .minimal-back-btn {
    background-color: transparent;
    color: #40C4FF;
    border: 2px solid #40C4FF;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 10px;
  }
  
  .organization-step .minimal-back-btn:hover {
    background-color: rgba(64, 196, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .organization-step .minimal-back-btn:active {
    transform: translateY(0);
  }
  
  .organization-step .minimal-back-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(64, 196, 255, 0.3);
  }
  
  /* Navigation Button Style (for sliders) */
  .organization-step .card-prev-btn,
  .organization-step .card-next-btn,
  .organization-step .prev-btn,
  .organization-step .next-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #40C4FF;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  
  .organization-step .card-prev-btn,
  .organization-step .prev-btn {
    left: 10px;
  }
  
  .organization-step .card-next-btn,
  .organization-step .next-btn {
    right: 10px;
  }
  
  .organization-step .card-prev-btn:hover,
  .organization-step .card-next-btn:hover,
  .organization-step .prev-btn:hover,
  .organization-step .next-btn:hover {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
  }
  
  .organization-step .card-prev-btn:active,
  .organization-step .card-next-btn:active,
  .organization-step .prev-btn:active,
  .organization-step .next-btn:active {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .organization-step .card-prev-btn:focus,
  .organization-step .card-next-btn:focus,
  .organization-step .prev-btn:focus,
  .organization-step .next-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(64, 196, 255, 0.3);
  }
  
  /* Step 3: Guest Count */
  .organization-step .guest-count-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 30px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  
  .organization-step .guest-count-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  
  .organization-step .guest-count-group:last-child {
    border-bottom: none;
  }
  
  .organization-step .guest-count-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .organization-step .guest-count-controls {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .organization-step .guest-count-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #f0f7ff;
    color: #1a73e8;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  
  .organization-step .guest-count-btn:hover {
    background: #e4f0ff;
    transform: scale(1.05);
  }
  
  .organization-step .guest-count-btn:active {
    transform: scale(0.95);
  }
  
  .organization-step .guest-count-value {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    min-width: 30px;
    text-align: center;
  }
  
  .organization-step .guest-count-info {
    font-size: 14px;
    color: #666;
    margin: 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    line-height: 1.5;
  }
  
  .organization-step #total-count-label {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #1a73e8;
    margin: 20px 0;
    padding: 15px;
    background: #f0f7ff;
    border-radius: 8px;
  }
  
  /* Step 5: Additional Services */
  .organization-step .additional-services {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 30px auto;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  
  .organization-step .additional-services label {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    user-select: none;
    border: 1px solid #eee;
    margin-bottom: 10px;
  }
  
  .organization-step .additional-services label:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.1);
  }
  
  .organization-step .additional-services input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .organization-step .additional-services label::before {
    content: '';
    position: relative;
    display: inline-block;
    min-width: 52px;
    height: 28px;
    margin-right: 15px;
    background-color: #e9ecef;
    border-radius: 14px;
    transition: all 0.3s ease;
  }
  
  .organization-step .additional-services label::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .organization-step .additional-services label:has(input[type="checkbox"]:checked) {
    border-color: #1a73e8;
    background-color: #f0f7ff;
  }
  
  .organization-step .additional-services label:has(input[type="checkbox"]:checked)::before {
    background-color: #1a73e8;
  }
  
  .organization-step .additional-services label:has(input[type="checkbox"]:checked)::after {
    transform: translateY(-50%) translateX(24px);
    background-color: #fff;
  }
  
  .organization-step .additional-services label:has(input[type="checkbox"]:checked) span {
    background: #1a73e8;
    color: #fff;
  }
  
  .organization-step .additional-services label span {
    margin-left: auto;
    padding: 6px 12px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 20px;
    font-size: 14px;
    color: #1a73e8;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  /* Hover effects */
  .organization-step .additional-services label:hover::before {
    background-color: #dee2e6;
  }
  
  .organization-step .additional-services input[type="checkbox"]:checked + label:hover::before {
    background-color: #1557b0;
  }
  
  /* Focus styles for accessibility */
  .organization-step .additional-services input[type="checkbox"]:focus + label::before {
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
  }
  
  /* Disabled state */
  .organization-step .additional-services input[type="checkbox"]:disabled + label {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .organization-step .additional-services label {
      padding: 12px 15px;
      font-size: 14px;
    }
  
    .organization-step .additional-services label::before {
      min-width: 44px;
      height: 24px;
    }
  
    .organization-step .additional-services label::after {
      width: 16px;
      height: 16px;
      left: 22px;
    }
  
    .organization-step .additional-services input[type="checkbox"]:checked + label::after {
      transform: translateY(-50%) translateX(20px);
    }
  }
  
  /* Step 6: Contact & Summary */
  .organization-step form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 auto;
    max-width: 800px;
    padding: 20px;
  }
  
  .organization-step .form-row {
    display: flex;
    gap: 20px;
  }
  
  .organization-step .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .organization-step .form-group.full-width {
    flex: 2;
  }
  
  .organization-step input, 
  .organization-step textarea,
  .organization-step select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  }
  
  .organization-step select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff url('data:image/svg+xml;utf8,<svg fill="gray" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>') no-repeat right 1rem center/1.5em;
  }
  
  .organization-step input:focus,
  .organization-step textarea:focus {
    border-color: #40C4FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(64, 196, 255, 0.1);
  }
  
  .organization-step input::placeholder,
  .organization-step textarea::placeholder {
    color: #999;
    font-size: 14px;
  }
  
  .organization-step textarea {
    resize: vertical;
    min-height: 120px;
    grid-column: span 2;
  }
  
  .organization-step input[type="date"],
  .organization-step input[type="time"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    cursor: pointer;
  }
  
  .organization-step input[type="date"]::-webkit-calendar-picker-indicator,
  .organization-step input[type="time"]::-webkit-calendar-picker-indicator {
    background-color: transparent;
    cursor: pointer;
    padding: 0 8px;
    color: #666;
  }
  
  .organization-step .form-buttons {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
  }
  
  .organization-step .form-buttons .standard-btn {
    margin: 0;
    max-width: 200px;
  }
  
  .organization-step .form-buttons .minimal-back-btn {
    margin: 0;
  }
  
  .organization-step .submit-btn.blue-btn {
    background: linear-gradient(45deg, #1a73e8, #40C4FF);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 0;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(64, 196, 255, 0.15);
    transition: all 0.3s;
    text-transform: uppercase;
  }
  
  .organization-step .submit-btn.blue-btn:hover {
    background: linear-gradient(45deg, #40C4FF, #1a73e8);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 16px rgba(64, 196, 255, 0.25);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .organization-step .form-row {
      flex-direction: column;
      gap: 10px;
    }
    .organization-step form {
      padding: 10px;
    }
  }
  
  /* Form validation styles */
  .organization-step input:invalid,
  .organization-step textarea:invalid {
    border-color: #e0e0e0;
  }
  
  .organization-step input:invalid:focus,
  .organization-step textarea:invalid:focus {
    border-color: #40C4FF;
    box-shadow: 0 0 0 3px rgba(64, 196, 255, 0.1);
  }
  
  /* Only show validation styles after user interaction */
  .organization-step input:not(:placeholder-shown):invalid,
  .organization-step textarea:not(:placeholder-shown):invalid {
    border-color: #ff4444;
  }
  
  .organization-step input:not(:placeholder-shown):invalid:focus,
  .organization-step textarea:not(:placeholder-shown):invalid:focus {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
  }
  
  .organization-step .booking-summary {
    margin: 0 auto 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    max-width: 800px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  }
  
  .organization-step .booking-summary h3 {
    margin: 0 0 15px;
    color: #1a73e8;
    font-size: 18px;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 8px;
  }
  
  .organization-step .booking-summary .summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }
  
  .organization-step .booking-summary .summary-item:last-child {
    border-bottom: none;
  }
  
  .organization-step .booking-summary .summary-label {
    font-weight: 600;
    color: #333;
    flex: 0 0 40%;
  }
  
  .organization-step .booking-summary .summary-value {
    color: #666;
    text-align: right;
    flex: 0 0 60%;
  }
  
  .organization-step .booking-summary .total-price {
    margin-top: 15px;
    padding: 12px;
    background-color: #40C4FF;
    color: white;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(64, 196, 255, 0.2);
  }
  
  /* Progress Bar Styles */
  .organization-step .progress-container {
    margin: 20px 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .organization-step .progress {
    list-style: none;
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: 0;
    margin: 0;
  }
  
  .organization-step .progress li {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .organization-step .progress li::before {
    content: attr(data-step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #ccc;
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .organization-step .progress li.active::before {
    background-color: #40C4FF;
  }
  
  .organization-step .progress li.completed::before {
    background-color: #40C4FF;
    content: '✔';
  }
  
  .organization-step .progress li .step-label {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 5px;
    transition: color 0.3s ease;
  }
  
  .organization-step .progress li.active .step-label {
    color: #40C4FF;
    font-weight: bold;
  }
  
  .organization-step .progress li.completed .step-label {
    color: #40C4FF;
  }
  
  .organization-step .progress::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ccc;
    z-index: 0;
  }
  
  .organization-step .progress::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #40C4FF;
    transition: width 0.3s ease;
    z-index: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    body {
      padding: 10px;
    }
  
    .organization-step .booking-step {
      padding: 15px;
    }
  
    .organization-step h2 {
      font-size: 20px;
    }
  
    .organization-step .card {
      width: 100%;
      max-width: 300px;
    }
  
    .organization-step .card-slider {
      height: 250px;
    }
  
    .organization-step .card-slide {
      width: 100%;
      height: 250px;
    }
  
    .organization-step .card-prev-btn, .organization-step .card-next-btn {
      width: 25px;
      height: 25px;
      font-size: 14px;
    }
  
    .organization-step .card-content {
      padding: 15px;
    }
  
    .organization-step .card-title {
      font-size: 18px;
    }
  
    .organization-step .card-info, .organization-step .step0-location, .organization-step .details {
      font-size: 13px;
    }
  
    .organization-step .experiences {
      font-size: 12px;
      padding: 4px 10px;
    }
  
    .organization-step .standard-btn {
      width: auto;
      float: right;
      max-width: 200px;
      width: 100%;
      padding: 10px 20px;
      font-size: 14px;
    }
  
    .organization-step .minimal-back-btn {
      padding: 6px 16px;
      font-size: 12px;
    }
  
    .organization-step .card-prev-btn,
    .organization-step .card-next-btn,
    .organization-step .prev-btn,
    .organization-step .next-btn,
    .organization-step .back-btn-modal {
      width: 32px;
      height: 32px;
      font-size: 16px;
    }
  
    .organization-step .modal-content {
      width: 95%;
      height: 95vh;
    }
  
    .organization-step .slider {
      height: 300px;
    }
  
    .organization-step .modal-scroll-content {
      padding: 20px;
    }
  
    .organization-step #modal-title, .organization-step #yacht-modal-title {
      font-size: 24px;
    }
  
    .organization-step #modal-description, .organization-step #yacht-modal-description {
      font-size: 14px;
    }
  
    .organization-step .review {
      padding: 15px;
    }
  
    .organization-step .review-user-img {
      width: 40px;
      height: 40px;
    }
  
    .organization-step .review-user {
      font-size: 14px;
    }
  
    .organization-step .review-text {
      font-size: 13px;
    }
  
    .organization-step input[type="number"] {
      width: 80px;
      font-size: 14px;
    }
  
    .organization-step #guest-count-label {
      font-size: 16px;
    }
  
    .organization-step .additional-services label {
      padding: 12px 15px;
      font-size: 14px;
    }
  
    .organization-step .additional-services label::before {
      width: 20px;
      height: 20px;
      margin-right: 12px;
    }
  
    .organization-step .additional-services label::after {
      left: 24px;
      width: 12px;
      height: 12px;
    }
  
    .organization-step .additional-services label span {
      padding: 4px 10px;
      font-size: 13px;
    }
  
    .organization-step .booking-summary {
      padding: 15px;
      font-size: 14px;
      margin: 0 15px 20px;
    }
  
    .organization-step .booking-summary h3 {
      font-size: 16px;
    }
  
    .organization-step .booking-summary .summary-label {
      flex: 0 0 45%;
    }
  
    .organization-step .booking-summary .summary-value {
      flex: 0 0 55%;
    }
  
    .organization-step .booking-summary .total-price {
      font-size: 15px;
      padding: 10px;
    }
  
    .organization-step .progress li .step-label {
      font-size: 10px;
    }
  
    .organization-step .progress li::before {
      width: 25px;
      height: 25px;
      font-size: 12px;
    }
  
    .organization-step form {
      grid-template-columns: 1fr;
      padding: 15px;
    }
  
    .organization-step form .form-group.full-width {
      grid-column: span 1;
    }
  
    .organization-step textarea {
      grid-column: span 1;
    }
  
    .organization-step .form-buttons {
      grid-column: span 1;
      flex-direction: column-reverse;
      gap: 15px;
    }
  
    .organization-step .form-buttons .standard-btn,
    .organization-step .form-buttons .minimal-back-btn {
      width: 100%;
      max-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .organization-step .card {
      max-width: 100%;
    }
  
    .organization-step .slider {
      height: 250px;
    }
  
    .organization-step .prev-btn,
    .organization-step .next-btn {
      width: 35px;
      height: 35px;
      font-size: 16px;
    }
  
    .organization-step .modal-scroll-content {
      padding: 15px;
    }
  
    .organization-step .progress li .step-label {
      font-size: 8px;
    }
  }

  /* Disabled State */
  .organization-step .standard-btn:disabled,
  .organization-step .minimal-back-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
  }

  /* Loading State */
  .organization-step .standard-btn.loading {
    position: relative;
    color: transparent;
  }

  .organization-step .standard-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: button-loading-spinner 0.6s linear infinite;
  }

  @keyframes button-loading-spinner {
    from {
      transform: rotate(0turn);
    }
    to {
      transform: rotate(1turn);
    }
  }

  /* Dubstep Submit Button */
  .submit-btn {
    position: relative;
    width: 200px;
    height: 60px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: sans-serif;
    box-sizing: border-box;
    background: #111;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.5s;
    z-index: 2;
  }

  .submit-btn:before,
  .submit-btn:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    transition: all 0.3s;
  }

  .submit-btn:before {
    transform: rotateX(90deg);
  }

  .submit-btn:after {
    transform: rotateY(90deg);
  }

  .submit-btn:hover:before {
    transform: rotateX(0deg);
    background: #f0f;
    filter: brightness(1.5);
    mix-blend-mode: difference;
  }

  .submit-btn:hover:after {
    transform: rotateY(0deg);
    background: #0ff;
    filter: brightness(1.5);
    mix-blend-mode: difference;
  }

  .submit-btn:hover {
    color: #111;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: submit-btn-glitch 0.3s linear infinite;
  }

  @keyframes submit-btn-glitch {
    0% {
      transform: translate(0);
    }
    20% {
      transform: translate(-2px, 2px);
    }
    40% {
      transform: translate(-2px, -2px);
    }
    60% {
      transform: translate(2px, 2px);
    }
    80% {
      transform: translate(2px, -2px);
    }
    100% {
      transform: translate(0);
    }
  }

  /* Modal Header with Image Slider */
  .organization-step .slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
  }

  .organization-step .slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
  }

  .organization-step .slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .organization-step .prev-btn,
  .organization-step .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a73e8;
    z-index: 2;
    transition: all 0.3s ease;
  }

  .organization-step .prev-btn {
    left: 20px;
  }

  .organization-step .next-btn {
    right: 20px;
  }

  .organization-step .prev-btn:hover,
  .organization-step .next-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  @media (max-width: 768px) {
    .organization-step .slider {
      height: 300px;
    }
    
    .organization-step .prev-btn,
    .organization-step .next-btn {
      width: 36px;
      height: 36px;
      font-size: 18px;
    }
  }

  @media (max-width: 480px) {
    .organization-step .slider {
      height: 250px;
    }
    
    .organization-step .prev-btn,
    .organization-step .next-btn {
      width: 32px;
      height: 32px;
      font-size: 16px;
    }
  }

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