/* ============================================== */
/* BOOKING PAGE STYLES                           */
/* ============================================== */

/* Page Header */
.booking-header {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 162, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.booking-header__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.booking-header__title span {
  color: #00ff88;
  font-weight: 900;
}

.booking-header__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ============================================== */
/* SERVICE CARDS                                 */
/* ============================================== */

.services-section {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-secondary);
  border: 2px solid #333333;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card[data-service="hire"] {
  border-color: #00a2ff;
}

.service-card[data-service="tutoring"] {
  border-color: #a855f7;
}

.service-card[data-service="assets"] {
  border-color: #ff6b6b;
}

.service-card[data-service="priority"] {
  border-color: #ffd700;
}

.service-card[data-service="quickchat"] {
  border-color: #00ff88;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.service-card__badge--priority {
  background: linear-gradient(135deg, #ffd700, #ff9500);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
}

.service-card__icon--hire {
  background: linear-gradient(135deg, rgba(0, 162, 255, 0.2), rgba(0, 162, 255, 0.1));
  color: var(--accent-primary);
}

.service-card__icon--tutoring {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(138, 43, 226, 0.1));
  color: #a855f7;
}

.service-card__icon--assets {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 107, 107, 0.1));
  color: #ff6b6b;
}

.service-card__icon--chat {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
  color: var(--accent-secondary);
}

.service-card__icon--priority {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 149, 0, 0.1));
  color: #ffd700;
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.service-card__price--free {
  color: var(--accent-secondary);
}

.service-card__description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card__features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: bold;
}

.service-card__btn {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #0088cc 100%);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.service-card__btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 162, 255, 0.3);
}

/* Color-matched buttons for each service type */
.service-card[data-service="hire"] .service-card__btn {
  background: linear-gradient(135deg, #00a2ff 0%, #0088cc 100%);
}

.service-card[data-service="hire"] .service-card__btn:hover {
  box-shadow: 0 8px 25px rgba(0, 162, 255, 0.4);
}

.service-card[data-service="tutoring"] .service-card__btn {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.service-card[data-service="tutoring"] .service-card__btn:hover {
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.service-card[data-service="assets"] .service-card__btn {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
}

.service-card[data-service="assets"] .service-card__btn:hover {
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.service-card[data-service="priority"] .service-card__btn--priority {
  background: linear-gradient(135deg, #ffd700 0%, #ff9500 100%);
  color: #000;
}

.service-card[data-service="priority"] .service-card__btn--priority:hover {
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.service-card[data-service="quickchat"] .service-card__btn--free {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
}

.service-card[data-service="quickchat"] .service-card__btn--free:hover {
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.service-card__btn--free {
  background: linear-gradient(135deg, var(--accent-secondary) 0%, #00cc6a 100%);
}

.service-card__btn--free:hover {
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.service-card__btn--priority {
  background: linear-gradient(135deg, #ffd700 0%, #ff9500 100%);
  color: #000;
}

.service-card__btn--priority:hover {
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Free card special styling */
.service-card--free {
  border-color: rgba(0, 255, 136, 0.3);
}

.service-card--free:hover {
  border-color: var(--accent-secondary);
}

/* Priority card special styling */
.service-card--priority {
  border-color: rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255, 215, 0, 0.02) 100%);
}

.service-card--priority:hover {
  border-color: #ffd700;
}

/* ============================================== */
/* BOOKING MODAL                                 */
/* ============================================== */

.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.booking-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.booking-modal__content {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.booking-modal.is-open .booking-modal__content {
  transform: scale(1) translateY(0);
}

.booking-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.booking-modal__close svg {
  width: 20px;
  height: 20px;
  fill: var(--text-secondary);
}

.booking-modal__close:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

.booking-modal__close:hover svg {
  fill: white;
}

/* ============================================== */
/* BOOKING FORMS                                 */
/* ============================================== */

.booking-form {
  padding: 2rem;
}

.booking-form__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.booking-form__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-form__icon svg {
  width: 32px;
  height: 32px;
}

.booking-form__icon--hire {
  background: linear-gradient(135deg, rgba(0, 162, 255, 0.2), rgba(0, 162, 255, 0.1));
  color: var(--accent-primary);
}

.booking-form__icon--tutoring {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(138, 43, 226, 0.1));
  color: #a855f7;
}

.booking-form__icon--assets {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 107, 107, 0.1));
  color: #ff6b6b;
}

.booking-form__icon--chat {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
  color: var(--accent-secondary);
}

.booking-form__icon--priority {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 149, 0, 0.1));
  color: #ffd700;
}

.booking-form__header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.booking-form__header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.booking-form__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Form elements */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(0, 162, 255, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #1a1a2e;
  color: #ffffff;
  padding: 0.75rem;
}

.form-group select option:hover,
.form-group select option:checked {
  background: #2a2a4e;
  color: #ffffff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Submit button */
.booking-form__submit {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #0088cc 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.booking-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 162, 255, 0.3);
}

.booking-form__submit--free {
  background: linear-gradient(135deg, var(--accent-secondary) 0%, #00cc6a 100%);
}

.booking-form__submit--free:hover {
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.booking-form__submit--priority {
  background: linear-gradient(135deg, #ffd700 0%, #ff9500 100%);
  color: #000;
}

.booking-form__submit--priority:hover {
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Form divider */
.form-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0.5rem 0;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}

.form-divider span {
  padding: 0 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Discord button */
.booking-form__discord {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #5865F2;
  color: white;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.booking-form__discord svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.booking-form__discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
}

/* Priority info box */
.priority-info {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 149, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.5rem;
}

.priority-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* Payment reminder */
.payment-reminder {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 0.5rem;
}

.payment-reminder h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.payment-reminder p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.payment-reminder__note {
  color: var(--text-muted) !important;
  font-size: 0.85rem !important;
  margin-bottom: 0 !important;
}

/* ============================================== */
/* PAYMENT SECTION                               */
/* ============================================== */

.payment-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
  text-align: center;
}

.payment-section__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.payment-section__subtitle {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.payment-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.payment-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
}

.payment-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-3px);
}

.payment-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.payment-card__icon svg {
  width: 36px;
  height: 36px;
}

.payment-card__icon--cashapp {
  background: linear-gradient(135deg, #00d632 0%, #00ab29 100%);
  color: white;
}

.payment-card__icon--bitcoin {
  background: linear-gradient(135deg, #f7931a 0%, #e67e00 100%);
  color: white;
}

.payment-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.payment-card__value {
  font-family: 'JetBrains Mono', monospace;
  background: var(--bg-secondary);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  word-break: break-all;
}

.payment-card__value--btc {
  font-size: 0.9rem;
}

.payment-card__copy {
  background: transparent;
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.payment-card__copy:hover {
  background: var(--accent-primary);
  color: white;
}

.payment-card__copy.copied {
  background: var(--accent-secondary);
  border-color: var(--accent-secondary);
  color: white;
}

.payment-section__note {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================== */
/* FAQ SECTION                                   */
/* ============================================== */

.booking-faq {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.booking-faq__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
}

.faq-item__question {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.faq-item__answer {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================== */
/* STRIPE PAYMENT STYLES                         */
/* ============================================== */

.stripe-payment-card {
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.1) 0%, rgba(99, 91, 255, 0.05) 100%);
  border: 2px solid rgba(99, 91, 255, 0.3);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.stripe-payment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #635BFF, #00D4FF);
}

.stripe-payment-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stripe-logo {
  width: 70px;
  height: auto;
}

.stripe-payment-card__badge {
  background: linear-gradient(135deg, #635BFF, #00D4FF);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.stripe-payment-card__description {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.stripe-payment-card__features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stripe-payment-card__features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.stripe-payment-card__features svg {
  color: #635BFF;
}

.payment-divider {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}

.payment-divider::before,
.payment-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.payment-divider span {
  padding: 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Stripe Checkout Box in Forms */
.stripe-checkout-box {
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.1) 0%, rgba(99, 91, 255, 0.05) 100%);
  border: 1px solid rgba(99, 91, 255, 0.3);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  text-align: center;
}

.stripe-checkout-box__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.1rem;
}

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

.stripe-checkout-box__note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Stripe Button Style */
.booking-form__submit--stripe {
  background: linear-gradient(135deg, #635BFF 0%, #7C75FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.booking-form__submit--stripe:hover {
  background: linear-gradient(135deg, #7C75FF 0%, #635BFF 100%);
  box-shadow: 0 10px 30px rgba(99, 91, 255, 0.4);
}

.booking-form__submit--secondary {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.booking-form__submit--secondary:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  box-shadow: none;
}

.form-divider {
  display: flex;
  align-items: center;
  margin: 1.25rem 0;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.form-divider span {
  padding: 0 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.manual-payment-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* Loading spinner for buttons */
.loading-spinner-small {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================== */
/* MANUAL PAYMENT INSTRUCTIONS SECTION            */
/* ============================================== */

.manual-payment-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.manual-payment-section__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.manual-payment-section__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Instruction Steps */
.instruction-steps {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.instruction-step {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.instruction-step__number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, #635BFF, #00D4FF);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.instruction-step__content h3 {
  margin: 0 0 0.75rem 0;
  color: var(--text-primary);
  font-size: 1.25rem;
}

.instruction-step__content p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.instruction-step__content strong {
  color: var(--text-primary);
}

.payment-note {
  background: rgba(99, 91, 255, 0.1);
  border-left: 3px solid #635BFF;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Quick Reference */
.payment-quick-ref {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.payment-quick-ref h3 {
  margin: 0 0 1.5rem 0;
  color: var(--text-primary);
  font-size: 1.5rem;
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.ref-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.ref-card h4 {
  margin: 0 0 0.75rem 0;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.ref-card p {
  margin: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.ref-card strong {
  color: var(--accent-primary);
}

/* Payment Support */
.payment-support {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.payment-support h3 {
  margin: 0 0 1rem 0;
  color: var(--text-primary);
}

.payment-support p {
  margin: 0;
  color: var(--text-secondary);
}

.payment-support a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
}

.payment-support a:hover {
  text-decoration: underline;
}

/* ============================================== */
/* RESPONSIVE                                    */
/* ============================================== */

@media (max-width: 768px) {
  .booking-header {
    padding: 5rem 0 3rem;
  }
  
  .services-section {
    padding: 3rem 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .booking-modal__content {
    width: 95%;
    max-height: 95vh;
  }
  
  .booking-form {
    padding: 1.5rem;
  }
  
  .payment-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .payment-card {
    width: 100%;
    max-width: 300px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .stripe-payment-card__features {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .instruction-step {
    flex-direction: column;
    text-align: center;
  }
  
  .instruction-step__number {
    margin: 0 auto;
  }
  
  .ref-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 1.5rem;
  }
  
  .service-card__icon {
    width: 50px;
    height: 50px;
  }
  
  .service-card__icon svg {
    width: 26px;
    height: 26px;
  }
  
  .booking-form__header {
    flex-direction: column;
    text-align: center;
  }
  
  .booking-form__icon {
    width: 50px;
    height: 50px;
  }
}

/* Scrollbar styling for modal */
.booking-modal__content::-webkit-scrollbar {
  width: 8px;
}

.booking-modal__content::-webkit-scrollbar-track {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

.booking-modal__content::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

.booking-modal__content::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
