/* =============================================
   MMJ CONSULTANCY SERVICES — COMPONENTS
   ============================================= */

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease-base);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-primary {
  background: var(--mmj-blue);
  color: white;
  border-color: var(--mmj-blue);
}
.btn-primary:hover {
  background: var(--mmj-navy);
  border-color: var(--mmj-navy);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--mmj-red);
  color: white;
  border-color: var(--mmj-red);
}
.btn-accent:hover {
  background: #A81D23;
  border-color: #A81D23;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,35,42,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--mmj-blue);
  border-color: var(--mmj-blue);
}
.btn-outline:hover {
  background: var(--surface-tint);
  color: var(--mmj-navy);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  color: white;
}
.btn-ghost {
  background: transparent;
  color: var(--ink-500);
  border-color: transparent;
}
.btn-ghost:hover {
  background: var(--ink-050);
  color: var(--ink-700);
}
.btn-lg {
  font-size: var(--text-base);
  padding: 0.8rem 2rem;
}
.btn-sm {
  font-size: var(--text-xs);
  padding: 0.4rem 1rem;
}
.btn-block { width: 100%; }

/* ---- Section Headers ---- */
.section-header {
  margin-bottom: var(--space-12);
}
.section-header.centered { text-align: center; }
.section-header.centered .section-divider {
  justify-content: center;
}
.section-header h2 { margin-top: var(--space-2); }
.section-header p {
  margin-top: var(--space-3);
  max-width: 560px;
  font-size: var(--text-lg);
  color: var(--ink-500);
}
.section-header.centered p { margin: var(--space-3) auto 0; }

/* ---- Cards ---- */
.card {
  background: var(--surface-card);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform var(--ease-base), box-shadow var(--ease-base);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.card-flat {
  background: var(--surface-card);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

/* Job Card */
.job-card {
  background: var(--surface-card);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--ease-base), box-shadow var(--ease-base), border-color var(--ease-base);
  position: relative;
  overflow: hidden;
}
.job-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--mmj-blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--ease-base);
}
.job-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mmj-blue-mid);
}
.job-card:hover::before { transform: scaleY(1); }

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
}
.job-card-sector {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mmj-red);
}
.job-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--ink-900);
  font-weight: 600;
  line-height: 1.2;
  margin-top: var(--space-1);
}
.job-card-summary {
  font-size: var(--text-sm);
  color: var(--ink-500);
  line-height: 1.6;
}
.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.job-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--ink-500);
}
.job-meta-item i { color: var(--mmj-blue); width: 12px; }
.job-meta-item strong { color: var(--ink-700); }

.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--ink-100);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1.4;
}
.badge-blue { background: #E3EDFC; color: var(--mmj-blue); }
.badge-red  { background: #FCE8E8; color: var(--mmj-red); }
.badge-green { background: #E3F5EC; color: var(--color-success); }
.badge-gray { background: var(--ink-050); color: var(--ink-500); }

/* ---- Service Card ---- */
.service-card {
  background: var(--surface-card);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--surface-tint);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.service-icon i {
  font-size: 1.4rem;
  color: var(--mmj-blue);
}
.service-card h4 { margin-bottom: var(--space-3); }
.service-card p  { font-size: var(--text-sm); }

/* ---- Stat Block ---- */
.stat-block {
  text-align: center;
  padding: var(--space-6);
}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--mmj-blue);
  line-height: 1;
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--ink-500);
  margin-top: var(--space-2);
  font-weight: 500;
}

/* ---- Process Steps ---- */
.process-step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}
.step-number {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--mmj-blue);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
}
.step-body h4 { margin-bottom: var(--space-2); }
.step-body p  { font-size: var(--text-sm); }

/* ---- Forms ---- */
.form-group {
  margin-bottom: var(--space-5);
}
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: var(--space-2);
}
.form-label .required { color: var(--mmj-red); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink-700);
  font-size: var(--text-sm);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--mmj-blue);
  box-shadow: 0 0 0 3px rgba(29,79,145,0.12);
}
.form-control.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(200,35,42,0.1);
}
.form-control.success {
  border-color: var(--color-success);
}
.form-control::placeholder { color: var(--ink-300); }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238FA0B4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-hint {
  font-size: var(--text-xs);
  color: var(--ink-300);
  margin-top: var(--space-1);
}
.form-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-1);
  display: none;
}
.form-group.has-error .form-error { display: block; }

/* Radio / Checkbox */
.radio-group, .check-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-1);
}
.radio-option, .check-option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--ink-700);
}
.radio-option input, .check-option input {
  width: 16px; height: 16px;
  accent-color: var(--mmj-blue);
  cursor: pointer;
}

/* File Upload */
.upload-zone {
  border: 2px dashed var(--ink-100);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  cursor: pointer;
  transition: all var(--ease-base);
  background: var(--surface-page);
}
.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--mmj-blue);
  background: var(--surface-tint);
}
.upload-zone i {
  font-size: 1.8rem;
  color: var(--mmj-blue);
  margin-bottom: var(--space-2);
}
.upload-zone p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}
.upload-zone span {
  font-size: var(--text-xs);
  color: var(--ink-300);
}
.upload-zone input[type="file"] {
  display: none;
}
.upload-preview {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--surface-tint);
  border-radius: var(--radius-md);
  margin-top: var(--space-2);
  display: none;
}
.upload-preview.visible { display: flex; }
.upload-preview i { color: var(--mmj-red); }
.upload-preview span {
  font-size: var(--text-sm);
  color: var(--ink-700);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upload-preview button {
  color: var(--ink-300);
  font-size: var(--text-sm);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  transition: all var(--ease-fast);
}
.upload-preview button:hover { color: var(--color-error); background: #FCE8E8; }

/* Experienced-only fields */
.exp-only { display: none; }
.exp-only.visible { display: block; }

/* ---- Alerts / Banners ---- */
.alert {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  border-left: 4px solid;
}
.alert i { flex-shrink: 0; margin-top: 2px; }
.alert-info {
  background: #E8F0FB;
  border-color: var(--mmj-blue);
  color: var(--mmj-navy);
}
.alert-info i { color: var(--mmj-blue); }
.alert-success {
  background: #E3F5EC;
  border-color: var(--color-success);
  color: #134D30;
}
.alert-success i { color: var(--color-success); }
.alert-warning {
  background: #FEF3D9;
  border-color: var(--color-warning);
  color: #7A4D07;
}
.alert-warning i { color: var(--color-warning); }

/* ---- Modal ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,24,40,0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--ease-base);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(16px) scale(0.98);
  transition: transform var(--ease-spring);
  padding: var(--space-8);
  position: relative;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  background: var(--ink-050);
  color: var(--ink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-fast);
  font-size: var(--text-sm);
}
.modal-close:hover { background: var(--ink-100); color: var(--ink-900); }
.modal-header { margin-bottom: var(--space-6); padding-right: var(--space-8); }
.modal-header .job-card-sector { margin-bottom: var(--space-1); }
.modal-header h2 { font-size: var(--text-3xl); }
.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: var(--surface-page);
  border-radius: var(--radius-lg);
}
.modal-section { margin-bottom: var(--space-6); }
.modal-section h5 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--mmj-blue);
  margin-bottom: var(--space-3);
}
.modal-section ul li {
  font-size: var(--text-sm);
  color: var(--ink-500);
  padding: var(--space-1) 0 var(--space-1) var(--space-5);
  position: relative;
}
.modal-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--mmj-blue);
  font-size: var(--text-xs);
}
.modal-footer {
  border-top: 1px solid var(--ink-100);
  padding-top: var(--space-5);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ---- Hero Section ---- */
.hero {
  background: linear-gradient(145deg, var(--mmj-navy) 0%, #0D3B77 50%, #142E5C 100%);
  color: white;
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(29,79,145,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 10% 90%, rgba(200,35,42,0.15) 0%, transparent 60%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-5);
}
.hero-label span {
  width: 20px; height: 2px;
  background: var(--mmj-red);
  display: inline-block;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 700;
  color: white;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}
.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.hero-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  backdrop-filter: blur(8px);
}
.hero-stat-card .stat-number {
  font-size: var(--text-4xl);
  color: white;
}
.hero-stat-card .stat-label {
  color: rgba(255,255,255,0.6);
}
.hero-stat-card.accent {
  background: rgba(200,35,42,0.2);
  border-color: rgba(200,35,42,0.3);
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--ink-100);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink-700);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--ease-fast);
}
.faq-question:hover { color: var(--mmj-blue); }
.faq-question i {
  color: var(--mmj-blue);
  transition: transform var(--ease-base);
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--ease-slow);
}
.faq-answer-inner {
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: var(--ink-500);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ---- Video Section ---- */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: var(--radius-xl);
}

/* ---- Search & Filter Bar ---- */
.filter-bar {
  background: var(--surface-card);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  margin-bottom: var(--space-8);
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
}
.search-input-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.search-input-wrap i {
  position: absolute;
  left: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-300);
  font-size: var(--text-sm);
}
.search-input-wrap input {
  width: 100%;
  padding: 0.6rem 0.9rem 0.6rem 2.4rem;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  transition: border-color var(--ease-fast);
}
.search-input-wrap input:focus {
  outline: none;
  border-color: var(--mmj-blue);
}
.filter-selects {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.filter-select {
  padding: 0.55rem 2rem 0.55rem 0.8rem;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--ink-700);
  background: var(--white);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%238FA0B4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  transition: border-color var(--ease-fast);
}
.filter-select:focus { outline: none; border-color: var(--mmj-blue); }
.results-count {
  font-size: var(--text-sm);
  color: var(--ink-300);
  margin-left: auto;
  white-space: nowrap;
}

/* Jobs Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-6);
}
.jobs-empty {
  text-align: center;
  padding: var(--space-16);
  color: var(--ink-300);
}
.jobs-empty i { font-size: 3rem; margin-bottom: var(--space-4); display: block; }

/* ---- Success / Confirmation ---- */
.success-box {
  text-align: center;
  padding: var(--space-16) var(--space-8);
}
.success-icon {
  width: 80px; height: 80px;
  background: #E3F5EC;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}
.success-icon i { font-size: 2.2rem; color: var(--color-success); }
.success-box h2 { margin-bottom: var(--space-3); }
.success-box p  { max-width: 480px; margin: 0 auto; }

/* ---- Why Us Grid ---- */
.why-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.why-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--surface-tint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon i { color: var(--mmj-blue); }
.why-body h5 { margin-bottom: var(--space-1); }
.why-body p  { font-size: var(--text-sm); }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.contact-info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--surface-tint);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon i { color: var(--mmj-blue); }
.contact-info-body label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-300);
  margin-bottom: var(--space-1);
}
.contact-info-body p, .contact-info-body a {
  font-size: var(--text-sm);
  color: var(--ink-700);
  font-weight: 500;
}

/* Loading Spinner */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Form submit button loading state */
.btn.loading .btn-text { display: none; }
.btn.loading .spinner  { display: inline-block; }
.btn:not(.loading) .spinner { display: none; }

/* ==============================================
   NEW FEATURES — v4
   1. Testimonial Carousel
   2. Job Card Skeleton Loading
   3. Sticky Mobile Apply Bar
   4. Hire Talent Page
   5. WhatsApp Quick-Apply CTA
   6. Apply-page FAQ mini-accordion
   ============================================== */

/* ── 1. TESTIMONIAL CAROUSEL ─────────────────── */
.testimonials-section {
  background: linear-gradient(160deg, var(--mmj-navy) 0%, #112D60 100%);
  padding: var(--space-20) 0;
  overflow: hidden;
  position: relative;
}
.testimonials-section::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 6%;
  font-family: var(--font-display);
  font-size: 22rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-track-wrap {
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px var(--space-4);
}
.testimonial-track {
  display: flex;
  gap: var(--space-6);
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  backdrop-filter: blur(6px);
  transition: transform var(--ease-base), border-color var(--ease-base);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.22);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}
.testimonial-stars i { color: #FBBF24; font-size: 0.85rem; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: white;
  line-height: 1.5;
  margin-bottom: var(--space-6);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testimonial-author-info strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
}
.testimonial-author-info span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
}
.testimonial-role-badge {
  margin-left: auto;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.07);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: var(--text-sm);
  transition: all var(--ease-base);
}
.carousel-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.carousel-dots {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all var(--ease-base);
}
.carousel-dot.active {
  background: white;
  width: 22px;
  border-radius: 4px;
}

/* Mobile: single card */
@media (max-width: 900px) {
  .testimonial-card { flex: 0 0 calc(100% - 2rem); }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .testimonial-card { flex: 0 0 calc(50% - 0.75rem); }
}

/* ── 2. JOB CARD SKELETON LOADING ──────────────── */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.skeleton-base {
  background: linear-gradient(90deg, #e8eef5 25%, #f4f7fa 50%, #e8eef5 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: var(--radius-md);
}
.job-card-skeleton {
  background: var(--surface-card);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.skel-line {
  height: 14px;
  border-radius: 4px;
}
.skel-line.skel-lg  { height: 22px; }
.skel-line.skel-sm  { height: 10px; }
.skel-line.skel-w25 { width: 25%; }
.skel-line.skel-w40 { width: 40%; }
.skel-line.skel-w60 { width: 60%; }
.skel-line.skel-w75 { width: 75%; }
.skel-line.skel-w100{ width: 100%; }
.skel-row { display: flex; gap: var(--space-3); align-items: center; }
.skel-badge { width: 64px; height: 24px; border-radius: var(--radius-full); }
.skel-btn   { height: 32px; border-radius: var(--radius-md); }
.skel-spacer { flex: 1; }

/* ── 3. STICKY MOBILE APPLY BAR ─────────────────── */
.sticky-apply-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--white);
  border-top: 1px solid var(--ink-100);
  padding: var(--space-3) var(--space-4);
  box-shadow: 0 -4px 20px rgba(13,43,94,0.12);
  gap: var(--space-3);
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-apply-bar.visible {
  transform: translateY(0);
}
.sticky-bar-info {
  flex: 1;
  overflow: hidden;
}
.sticky-bar-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-bar-salary {
  font-size: var(--text-xs);
  color: var(--mmj-blue);
  font-weight: 600;
}
.sticky-bar-actions {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sticky-apply-bar { display: flex; }
  /* Push modal content up so sticky bar doesn't cover bottom */
  .modal { padding-bottom: 5rem; }
}

/* ── 4. HIRE TALENT PAGE ───────────────────────── */
.hire-hero {
  background: linear-gradient(145deg, #0B2545 0%, var(--mmj-navy) 60%, #1D4F91 100%);
  color: white;
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}
.hire-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,35,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hire-hero h1 { color: white; margin-bottom: var(--space-4); }
.hire-hero p  { color: rgba(255,255,255,0.75); font-size: var(--text-lg); max-width: 560px; }
.hire-hero-actions { margin-top: var(--space-8); display: flex; gap: var(--space-4); flex-wrap: wrap; }

.process-timeline {
  position: relative;
  padding-left: 2.5rem;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--mmj-blue), var(--mmj-red));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: var(--space-8);
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mmj-blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--mmj-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-dot i { color: white; font-size: 0.55rem; }
.timeline-item h5 { margin-bottom: var(--space-2); }
.timeline-item p  { font-size: var(--text-sm); }

.sector-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--surface-tint);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-700);
  margin: var(--space-1);
}
.sector-pill i { color: var(--mmj-blue); font-size: 0.8rem; }

/* Hire form */
.hire-form-panel {
  background: var(--surface-card);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
}
.hire-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.hire-form-grid .full-width { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .hire-form-grid { grid-template-columns: 1fr; }
  .hire-form-panel { padding: var(--space-6); }
}

/* ── 5. WHATSAPP QUICK-APPLY ───────────────────── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #25D366;
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.4rem 0.9rem;
  font-size: var(--text-xs);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease-base);
  white-space: nowrap;
}
.btn-wa:hover {
  background: #1ebe5a;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.btn-wa i { font-size: 0.9rem; }

/* ── 6. APPLY-PAGE FAQ MINI-ACCORDION ─────────── */
.apply-faq {
  background: var(--surface-tint);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  margin-bottom: var(--space-8);
}
.apply-faq-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mmj-blue);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.apply-faq .faq-question {
  font-size: var(--text-sm);
  padding: var(--space-3) 0;
}
.apply-faq .faq-answer-inner {
  font-size: var(--text-xs);
  padding-bottom: var(--space-3);
  color: var(--ink-500);
}
