/*
 * GRANTER – Privat Jobbcoach
 * تصميم GRANTER المنقول إلى إضافة WordPress مستقلة.
 * لا تغيّر هوية العلامة أو المقاسات إلا بطلب صريح من GRANTER AB.
 */

.jc *, .jc *::before, .jc *::after { box-sizing: border-box; margin: 0; padding: 0; }

.jc {
  --red:      #ff0000;
  --red-dk:   #cc0000;
  --red-lt:   #fff0f0;
  --red-mid:  #ffe0e0;
  --black:    #111111;
  --dark:     #222222;
  --gray:     #555555;
  --border:   #e0e0e0;
  --bg:       #ffffff;
  --bg-soft:  #f8f8f8;
  --bg-card:  #ffffff;
  --white:    #ffffff;
  --radius:   10px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);

  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.65;
}

/* ─── PAID BANNER ─── */
.jc .paid-banner {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.jc .paid-banner em { font-style: normal; opacity: 0.88; font-weight: 400; margin-left: 6px; }

/* ─── HERO ─── */
.jc .hero {
  background: linear-gradient(135deg, #fff 0%, #fff5f5 60%, #fff 100%);
  border-bottom: 3px solid var(--red);
  padding: 56px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.jc .hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,0,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.jc .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-lt);
  border: 1px solid var(--red-mid);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 22px;
}
.jc .hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.12;
  margin-bottom: 16px;
  position: relative;
}
.jc .hero h1 span { color: var(--red); }
.jc .hero p {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto 32px;
}
.jc .hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.jc .badge {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow-sm);
}
.jc .badge-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* ─── MAIN ─── */
.jc .main { max-width: 980px; margin: 0 auto; padding: 52px 20px 80px; }

/* ─── SECTION TITLE ─── */
.jc .section-title { text-align: center; margin-bottom: 36px; }
.jc .section-title h2 { font-size: clamp(22px, 4vw, 32px); font-weight: 800; color: var(--black); margin-bottom: 6px; }
.jc .section-title p { color: var(--gray); font-size: 15px; }
.jc .red-line { width: 44px; height: 3px; background: var(--red); margin: 10px auto 0; border-radius: 2px; }

/* ─── PAID INFO BOX ─── */
.jc .paid-info-box {
  background: var(--red-lt);
  border: 1.5px solid var(--red-mid);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.jc .paid-info-icon { font-size: 20px; flex-shrink: 0; }
.jc .paid-info-text { font-size: 13px; color: var(--dark); line-height: 1.55; }
.jc .paid-info-text strong { color: var(--red); }

/* ─── COACHES SECTION ─── */
.jc .coaches-section { margin-bottom: 52px; }
.jc .coaches-section h3 { font-size: 22px; font-weight: 800; color: var(--black); text-align: center; margin-bottom: 6px; }
.jc .coaches-section .sub { text-align: center; color: var(--gray); font-size: 14px; margin-bottom: 28px; }
.jc .coaches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 640px) { .jc .coaches-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; } }

.jc .coach-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: block;
}
.jc .coach-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.jc .coach-card.selected { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,0,0,0.15), var(--shadow-lg); }
.jc .coach-card input[type="checkbox"] { display: none; }
.jc .coach-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: top center; display: block; }
.jc .coach-info { padding: 18px; }
.jc .coach-name { font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 2px; }
.jc .coach-title { font-size: 11px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 8px; }
.jc .coach-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }
.jc .coach-langs { font-size: 11px; color: var(--red); font-weight: 700; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border); }
.jc .coach-check {
  position: absolute; top: 10px; right: 10px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: transparent;
  transition: all 0.2s; box-shadow: var(--shadow-sm);
  z-index: 2;
}
.jc .coach-card.selected .coach-check { background: var(--red); border-color: var(--red); color: #fff; }

/* ─── MEETING & CONTACT INFO ─── */
.jc .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 44px; }
@media (max-width: 560px) { .jc .info-grid { grid-template-columns: 1fr; } }
.jc .info-block {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.jc .info-block-title {
  font-size: 12px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 7px;
}
.jc .info-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; font-size: 13px; color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.jc .info-item:last-child { border-bottom: none; }
.jc .info-item-icon { font-size: 16px; flex-shrink: 0; width: 22px; text-align: center; }
.jc .contact-channels { display: flex; flex-wrap: wrap; gap: 8px; }
.jc .channel-tag {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 6px; padding: 5px 12px;
  font-size: 12px; color: var(--dark);
  font-weight: 600; box-shadow: var(--shadow-sm);
}

/* ─── STEP INDICATOR ─── */
.jc .steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 32px; }
.jc .step { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.jc .step-num {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #aaa;
  transition: all 0.3s;
}
.jc .step.active .step-num { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 0 0 4px rgba(255,0,0,0.15); }
.jc .step.done .step-num { background: var(--red-dk); border-color: var(--red-dk); color: #fff; }
.jc .step-label { font-size: 10px; color: #aaa; text-align: center; white-space: nowrap; }
.jc .step.active .step-label { color: var(--red); font-weight: 700; }
.jc .step.done .step-label { color: var(--red-dk); }
.jc .step-line { flex: 1; height: 2px; background: var(--border); min-width: 30px; max-width: 70px; margin-bottom: 20px; transition: background 0.3s; }
.jc .step-line.done { background: var(--red-dk); }

/* ─── PROGRESS BAR ─── */
.jc .progress-bar { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 32px; overflow: hidden; }
.jc .progress-fill { height: 100%; background: var(--red); border-radius: 2px; transition: width 0.4s ease; }

/* ─── FORM CARD ─── */
.jc .form-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow);
}
@media (max-width: 600px) { .jc .form-card { padding: 22px 16px; } }

/* ─── FORM SECTION ─── */
.jc .form-section { margin-bottom: 28px; }
.jc .form-section-title {
  font-size: 12px; font-weight: 800; color: var(--red);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 2px solid var(--red-mid);
}

/* ─── SERVICE CARDS ─── */
.jc .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-bottom: 10px; }
.jc .packages-grid { display: flex; flex-direction: column; gap: 20px; margin-bottom: 10px; }
.jc .package-card {
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  cursor: pointer;
  transition: all 0.22s;
  position: relative;
  user-select: none;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0 28px;
  align-items: start;
}
.jc .package-card:hover { border-color: var(--red); background: var(--red-lt); box-shadow: var(--shadow); }
.jc .package-card.selected { border-color: var(--red); background: var(--red-lt); box-shadow: 0 0 0 3px rgba(255,0,0,0.12), var(--shadow); }
.jc .package-card input[type="radio"] { display: none; }
.jc .package-left { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 90px; }
.jc .package-icon { font-size: 36px; }
.jc .package-price-block { text-align: center; }
.jc .package-price-big { font-size: 32px; font-weight: 900; color: var(--red); line-height: 1; }
.jc .package-price-unit { font-size: 13px; color: var(--gray); font-weight: 600; }
.jc .package-middle { border-left: 2px solid var(--border); padding-left: 28px; }
.jc .package-card.selected .package-middle { border-left-color: var(--red-mid); }
.jc .package-name { font-size: 20px; font-weight: 900; color: var(--black); margin-bottom: 4px; }
.jc .package-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 9px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.jc .package-desc { font-size: 14px; color: var(--gray); margin-bottom: 16px; line-height: 1.55; }
.jc .package-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; }
@media (max-width: 600px) { .jc .package-features { grid-template-columns: 1fr; } }
.jc .package-features li { font-size: 13px; color: var(--dark); display: flex; align-items: flex-start; gap: 7px; line-height: 1.45; }
.jc .package-features li::before { content: "✓"; color: var(--red); font-weight: 900; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.jc .package-highlight {
  background: linear-gradient(135deg, #fff0f0, #fff8f8);
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.jc .package-highlight-icon { font-size: 22px; flex-shrink: 0; }
.jc .package-highlight-text { font-size: 13px; color: var(--black); line-height: 1.5; }
.jc .package-highlight-text strong { color: var(--red); font-size: 14px; display: block; margin-bottom: 2px; }
.jc .premium-extras {
  margin-top: 18px;
  background: var(--black);
  border-radius: 10px;
  padding: 18px 20px;
  border: 1.5px solid #2a2a2a;
}
.jc .premium-extras-title {
  font-size: 11px; font-weight: 800; color: #ffd700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px;
}
.jc .premium-extra-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.jc .premium-extra-item:last-child { border-bottom: none; padding-bottom: 0; }
.jc .premium-extra-icon {
  font-size: 20px; flex-shrink: 0;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.jc .premium-extra-name { font-size: 13px; font-weight: 800; color: #ffffff; margin-bottom: 4px; }
.jc .premium-extra-desc { font-size: 12px; color: #999999; line-height: 1.6; }
.jc .package-right { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; min-width: 60px; }
.jc .package-check {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: transparent;
  transition: all 0.2s; box-shadow: var(--shadow-sm);
}
.jc .package-card.selected .package-check { background: var(--red); border-color: var(--red); color: #fff; }
.jc .package-popular {
  position: absolute; top: -11px; right: 16px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; padding: 3px 12px;
  border-radius: 10px; text-transform: uppercase; letter-spacing: 0.5px;
  z-index: 2;
}
@media (max-width: 640px) {
  .jc .package-card { grid-template-columns: 1fr; gap: 16px; }
  .jc .package-middle { border-left: none; border-top: 2px solid var(--border); padding-left: 0; padding-top: 16px; }
  .jc .package-left { flex-direction: row; justify-content: space-between; align-items: center; min-width: unset; }
  .jc .package-right { flex-direction: row; justify-content: flex-end; }
}
.jc .service-card {
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--radius); padding: 18px;
  cursor: pointer; transition: all 0.22s;
  position: relative; user-select: none;
  box-shadow: var(--shadow-sm);
  display: block;
}
.jc .service-card:hover { border-color: var(--red); background: var(--red-lt); transform: translateY(-2px); box-shadow: var(--shadow); }
.jc .service-card.selected { border-color: var(--red); background: var(--red-lt); box-shadow: 0 0 0 3px rgba(255,0,0,0.12), var(--shadow); }
.jc .service-card input[type="radio"] { display: none; }
.jc .service-popular {
  position: absolute; top: -11px; right: 12px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: 10px; text-transform: uppercase; letter-spacing: 0.5px;
  z-index: 2;
}
.jc .service-type-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; padding: 2px 9px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 9px;
}
.jc .badge-once    { background: #fff3e0; color: #e65100; border: 1px solid #ffcc80; }
.jc .badge-monthly { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.jc .badge-free    { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }
.jc .service-icon { font-size: 26px; margin-bottom: 8px; }
.jc .service-name { font-size: 15px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.jc .service-desc { font-size: 12px; color: var(--gray); margin-bottom: 10px; line-height: 1.5; }
.jc .service-price { display: flex; align-items: baseline; gap: 6px; }
.jc .price-current { font-size: 22px; font-weight: 900; color: var(--red); }
.jc .price-old { font-size: 13px; color: #aaa; text-decoration: line-through; }
.jc .price-free { font-size: 18px; font-weight: 900; color: #1565c0; }
.jc .price-unit { font-size: 12px; color: var(--gray); }
.jc .service-includes { margin-top: 10px; list-style: none; }
.jc .service-includes li { font-size: 11px; color: var(--gray); padding: 2px 0; display: flex; align-items: center; gap: 6px; }
.jc .service-includes li::before { content: '✓'; color: var(--red); font-weight: 800; font-size: 11px; }
.jc .service-check {
  position: absolute; top: 12px; right: 12px;
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; box-shadow: var(--shadow-sm);
  z-index: 2;
}
.jc .service-card.selected .service-check { background: var(--red); border-color: var(--red); }
.jc .service-card.selected .service-check::after { content: '✓'; color: #fff; font-size: 11px; font-weight: 800; }

/* ─── FORM FIELDS ─── */
.jc .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .jc .form-row { grid-template-columns: 1fr; } }
.jc .form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.jc .form-group:last-child { margin-bottom: 0; }
.jc label { font-size: 13px; font-weight: 700; color: var(--dark); }
.jc label .req { color: var(--red); margin-left: 2px; }
.jc input[type="text"], .jc input[type="email"], .jc input[type="tel"], .jc input[type="date"], .jc select, .jc textarea {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--black);
  font-size: 14px; padding: 11px 14px; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; font-family: inherit;
}
.jc input:focus, .jc select:focus, .jc textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,0,0,0.10); background: #fff; }
.jc input::placeholder, .jc textarea::placeholder { color: #bbb; }
.jc textarea { resize: vertical; min-height: 90px; }

/* ─── UPLOAD ─── */
.jc .upload-area {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 26px; text-align: center; cursor: pointer;
  transition: all 0.2s; background: var(--bg-soft);
}
.jc .upload-area:hover, .jc .upload-area.dragover { border-color: var(--red); background: var(--red-lt); }
.jc .upload-icon { font-size: 28px; margin-bottom: 6px; }
.jc .upload-text { font-size: 13px; color: var(--gray); }
.jc .upload-text span { color: var(--red); font-weight: 700; }
.jc .upload-hint { font-size: 11px; color: #aaa; margin-top: 4px; }
.jc .upload-filename { margin-top: 8px; font-size: 13px; color: var(--dark); }
.jc #cv-file { display: none; }

/* ─── TIME SLOTS ─── */
.jc .time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 8px; margin-top: 10px; }
.jc .time-slot {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 9px 6px;
  text-align: center; cursor: pointer; font-size: 13px;
  font-weight: 700; color: var(--dark); transition: all 0.2s; user-select: none;
  box-shadow: var(--shadow-sm);
}
.jc .time-slot:hover { border-color: var(--red); color: var(--red); background: var(--red-lt); }
.jc .time-slot.selected { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 2px 8px rgba(255,0,0,0.25); }
.jc .time-slot.unavailable { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

/* ─── SUMMARY ─── */
.jc .summary-box { background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.jc .summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; gap: 16px; }
.jc .summary-row:last-child { border-bottom: none; }
.jc .summary-label { color: var(--gray); flex-shrink: 0; }
.jc .summary-value { color: var(--black); font-weight: 700; text-align: right; }
.jc .summary-total { display: flex; justify-content: space-between; align-items: center; padding: 14px 0 0; font-size: 18px; font-weight: 900; }
.jc .summary-total .label { color: var(--dark); }
.jc .summary-total .amount { color: var(--red); }

/* ─── CONSENT ─── */
.jc .consent-group {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; background: var(--bg-soft);
  border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 12px;
}
.jc .consent-group input[type="checkbox"] { width: 17px; height: 17px; min-width: 17px; accent-color: var(--red); cursor: pointer; margin-top: 2px; }
.jc .consent-text { font-size: 12px; color: var(--gray); line-height: 1.55; }
.jc .consent-text a { color: var(--red); text-decoration: none; }
.jc .consent-text a:hover { text-decoration: underline; }

/* ─── BUTTONS ─── */
.jc .btn-row { display: flex; gap: 10px; justify-content: space-between; align-items: center; margin-top: 26px; flex-wrap: wrap; }
.jc .btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 14px; font-weight: 800; cursor: pointer;
  border: none; transition: all 0.2s; text-decoration: none; font-family: inherit;
}
.jc .btn-primary { background: var(--red); color: #fff; }
.jc .btn-primary:hover { background: var(--red-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,0,0,0.30); }
.jc .btn-secondary { background: #fff; color: var(--dark); border: 1.5px solid var(--border); }
.jc .btn-secondary:hover { border-color: var(--red); color: var(--red); }
.jc .btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ─── SUCCESS ─── */
.jc .success-screen { text-align: center; padding: 48px 20px; }
.jc .success-icon { width: 80px; height: 80px; background: var(--red-lt); border: 3px solid var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 22px; }
.jc .success-screen h2 { font-size: 28px; font-weight: 900; color: var(--black); margin-bottom: 10px; }
.jc .success-screen p { color: var(--gray); font-size: 15px; max-width: 440px; margin: 0 auto 24px; }
.jc .success-details { background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; max-width: 420px; margin: 0 auto 24px; text-align: left; }

/* ─── ERROR ─── */
.jc .error-msg { font-size: 12px; color: var(--red); margin-top: 4px; }
.jc .field-error input, .jc .field-error select, .jc .field-error textarea { border-color: var(--red); }

/* ─── INFO NOTE ─── */
.jc .info-note { background: var(--red-lt); border-left: 3px solid var(--red); border-radius: 0 var(--radius) var(--radius) 0; padding: 10px 14px; font-size: 13px; color: var(--gray); margin-bottom: 16px; }

/* ─── CONTACT BANNER ─── */
.jc .contact-banner {
  background: var(--black);
  border-radius: 14px;
  padding: 32px 36px;
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}
.jc .contact-banner-left h3 { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.jc .contact-banner-left p { font-size: 13px; color: #aaa; }
.jc .contact-banner-right { display: flex; flex-direction: column; gap: 12px; }
.jc .contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #e0e0e0; }
.jc .contact-item-icon { font-size: 18px; }
.jc .contact-item a { color: #e0e0e0; text-decoration: none; }
.jc .contact-item a:hover { color: var(--red); }

/* ─── DISCLAIMER (juridiskt förtydligande) ─── */
/* تصميم هادئ ومحايد: خلفية رمادية فاتحة، بلا لون أحمر صارخ.
   الهدف الحماية القانونية دون إزعاج بصري أو صرف الانتباه عن الحجز. */
.jc .disclaimer {
  margin-top: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid #bdbdbd;
  border-radius: 12px;
  padding: 26px 30px;
}
.jc .disclaimer-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.jc .disclaimer-icon { font-size: 14px; opacity: 0.7; line-height: 1; }
.jc .disclaimer-head h4 {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.jc .disclaimer p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--gray);
}
.jc .disclaimer p + p { margin-top: 11px; }
.jc .disclaimer strong { color: var(--dark); font-weight: 700; }
@media (max-width: 560px) {
  .jc .disclaimer { padding: 22px 20px; }
}

/* ─── DIVIDER ─── */
.jc .divider { border: none; border-top: 1.5px solid var(--border); margin: 44px 0; }

@media (max-width: 480px) {
  .jc .steps { gap: 0; }
  .jc .step-line { min-width: 14px; }
  .jc .btn-row { flex-direction: column-reverse; }
  .jc .btn { width: 100%; justify-content: center; }
}


/* WordPress plugin integration */
.jc .gjc-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.jc .submission-error {
  display: none;
  margin: 0 0 14px;
  padding: 11px 14px;
  border: 1px solid #ffb3b3;
  border-radius: 8px;
  background: #fff3f3;
  color: #a00000;
  font-size: 13px;
  line-height: 1.5;
}
.jc .submission-error.visible { display: block; }
.jc .btn:disabled { opacity: 0.65; cursor: wait; transform: none; }
