.booking-hero {
      padding: 110px 20px 70px;
      text-align: center;
      background: linear-gradient(135deg, #101f4d, #0c101a);
      color: #fff;
    }

    .booking-hero h1 {
      margin-bottom: 12px;
      color: #ffd700;
    }

    .booking-shell {
      max-width: 1180px;
      margin: 0 auto;
      padding: 48px 20px 80px;
    }

    .booking-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
      align-items: start;
    }

    .booking-card,
    .service-display {
      background: linear-gradient(180deg, rgba(20, 28, 44, 0.98), rgba(12, 16, 26, 0.98));
      border: 1px solid rgba(79, 110, 230, 0.25);
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    }

    .booking-card h2,
    .service-display h2 {
      margin-top: 0;
      color: #ffd700;
    }

    .service-picker {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .service-option {
      width: 100%;
      padding: 16px 18px;
      border-radius: 14px;
      border: 1px solid rgba(79, 110, 230, 0.22);
      background: rgba(255, 255, 255, 0.04);
      color: #fff;
      text-align: left;
      cursor: pointer;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .service-option:hover {
      transform: translateY(-1px);
      border-color: rgba(79, 110, 230, 0.45);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.16);
    }

    .service-option.is-active {
      border-color: rgba(255, 215, 0, 0.55);
      background: linear-gradient(135deg, rgba(79, 110, 230, 0.18), rgba(255, 215, 0, 0.08));
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
    }

    .service-option__headline {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
    }

    .service-option__title {
      font-size: 1rem;
      font-weight: 700;
      color: #ffd700;
    }

    .service-option__price {
      flex-shrink: 0;
      color: #b7c7ff;
      font-size: 0.94rem;
      font-weight: 700;
    }

    .service-option__summary {
      display: block;
      margin-top: 9px;
      color: #d6dcec;
      line-height: 1.55;
      font-size: 0.94rem;
    }

    .selected-service-block {
      margin-top: 28px;
      padding-top: 26px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .selected-service-block h3,
    .service-highlights__heading {
      margin: 0;
      color: #ffd700;
    }

    .selected-service-block > p {
      margin: 10px 0 0;
      color: #d6dcec;
      line-height: 1.65;
    }

    .service-meta {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .service-meta div {
      padding: 14px 16px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .service-meta span {
      display: block;
      font-size: 0.85rem;
      color: #a9b7d3;
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .service-summary {
      margin-top: 22px;
      color: #d6dcec;
      line-height: 1.7;
    }

    .service-outcome {
      margin-top: 18px;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid rgba(79, 110, 230, 0.3);
      background: rgba(79, 110, 230, 0.12);
    }

    .service-outcome span {
      display: inline-block;
      color: #c6d4ff;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .service-outcome p {
      margin: 8px 0 0;
      color: #f3f7ff;
      line-height: 1.65;
      font-size: 0.92rem;
    }

    .service-highlights-wrap {
      margin-top: 20px;
    }

    .service-highlights {
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .service-highlights li {
      position: relative;
      padding-left: 18px;
      color: #d6dcec;
      line-height: 1.6;
    }

    .service-highlights li::before {
      content: '';
      position: absolute;
      top: 0.72em;
      left: 0;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ffd700;
      transform: translateY(-50%);
    }

    .booking-form-note,
    .booking-empty-state p {
      color: #d6dcec;
      line-height: 1.7;
      margin-bottom: 0;
    }

    .is-hidden {
      display: none !important;
    }

    .booking-panel-rtl {
      direction: rtl;
      text-align: right;
    }

    .booking-panel-rtl .service-option,
    .booking-panel-rtl .service-meta div,
    .booking-panel-rtl .service-outcome,
    .booking-panel-rtl .form-group label,
    .booking-panel-rtl .form-group input,
    .booking-panel-rtl .form-group textarea,
    .booking-panel-rtl .terms-row,
    .booking-panel-rtl .status-message {
      text-align: right;
    }

    .booking-panel-rtl .service-option__headline {
      flex-direction: row-reverse;
    }

    .booking-panel-rtl .service-highlights li {
      padding-left: 0;
      padding-right: 18px;
    }

    .booking-panel-rtl .service-highlights li::before {
      left: auto;
      right: 0;
    }

    .booking-panel-rtl .terms-row {
      flex-direction: row-reverse;
    }

    .booking-panel-rtl .terms-row input {
      margin-top: 4px;
    }

    .booking-card p {
      color: #d6dcec;
      line-height: 1.7;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: #ffd700;
      font-weight: 600;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 13px 14px;
      border-radius: 10px;
      border: 1px solid #2e3b59;
      background: #101725;
      color: #fff;
      box-sizing: border-box;
    }

    .form-group textarea {
      min-height: 140px;
      resize: vertical;
    }

    .terms-row {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #d6dcec;
      margin-bottom: 20px;
    }

    .terms-row input {
      margin-top: 4px;
      width: auto;
    }

    .terms-row a {
      color: #4f6ee6;
    }

    .terms-row a:hover {
      color: #ffd700;
    }

    .booking-submit {
      width: 100%;
      padding: 14px 18px;
      border: 0;
      border-radius: 999px;
      background: linear-gradient(135deg, #4f6ee6, #2f53dd);
      color: #fff;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .booking-submit:hover {
      transform: translateY(-1px);
    }

    .booking-submit:disabled {
      opacity: 0.72;
      cursor: wait;
      transform: none;
    }

    .status-message {
      min-height: 24px;
      margin-top: 16px;
      font-weight: 600;
    }

    .status-message.is-error {
      color: #ff8c8c;
    }

    .status-message.is-success {
      color: #9ce3a6;
    }

    .footer-links-inline {
      margin-top: 14px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
    }

    .footer-links-inline a {
      color: #4f6ee6;
      text-decoration: none;
    }

    .footer-links-inline a:hover {
      color: #ffd700;
    }

    @media (max-width: 768px) {
      .booking-hero {
        padding-top: 96px;
      }

      .booking-card,
      .service-display {
        padding: 22px;
      }

      .service-option__headline {
        flex-direction: column;
      }

      .booking-panel-rtl .service-option__headline {
        flex-direction: column;
      }
    }
