/* ========================================================
   KONTEXT — work-travel.css
   Styles specific to pages/usa/work-travel.php
   ======================================================== */

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-mid);
  padding: 10px 60px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--gray-text);
}
.breadcrumb a { color: var(--gray-text); transition: color .2s; }
.breadcrumb a:hover { color: var(--yellow-dark); }
.breadcrumb span { color: var(--black); font-weight: 600; }

/* ── SHARED LABELS ── */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--yellow-dark); margin-bottom: 6px;
}
.section-title { font-size: 26px; font-weight: 800; color: var(--black); margin-bottom: 20px; line-height: 1.2; }
.section-text  { font-size: 14px; color: var(--gray-text); line-height: 1.8; margin-bottom: 16px; }

/* ── HERO ── */
.wt-hero { background: var(--yellow); display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; overflow: hidden; }
.wt-hero-content { padding: 52px 40px 52px 60px; display: flex; flex-direction: column; justify-content: center; }
.wt-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.4); color: var(--black);
  border: 1.5px solid rgba(0,0,0,0.2);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
  margin-bottom: 18px; width: fit-content;
}
.wt-hero-badge img { width: 14px; height: 14px; object-fit: contain; }
.wt-hero-h1 { font-size: 48px; font-weight: 800; line-height: 1.05; color: var(--black); margin-bottom: 6px; }
.wt-hero-sub { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.wt-hero-desc { font-size: 14px; color: rgba(0,0,0,0.65); margin-bottom: 28px; line-height: 1.6; max-width: 420px; }
.wt-hero-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.wt-pill { background: rgba(0,0,0,0.08); color: var(--black); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 20px; }
.wt-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.wt-hero-img { position: relative; overflow: hidden; }
.wt-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.wt-hero-img::after {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 100px;
  background: linear-gradient(to right, var(--yellow), transparent);
}

/* ── MAIN LAYOUT ── */
.wt-main { display: grid; grid-template-columns: 1fr 340px; gap: 48px; padding: 56px 60px; max-width: 1300px; margin: 0 auto; }
.wt-section { margin-bottom: 48px; }

/* ── INFO CARDS ── */
.wt-info-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 32px; }
.wt-info-card { border: 1.5px solid var(--gray-mid); border-radius: 8px; padding: 18px 16px; background: var(--white); border-bottom: 3px solid var(--yellow); }
.wt-info-card-icon { font-size: 22px; margin-bottom: 8px; }
.wt-info-card-icon img { width: 22px; height: 22px; object-fit: contain; }
.wt-info-card-title { font-size: 12px; font-weight: 700; color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.wt-info-card-value { font-size: 16px; font-weight: 800; color: var(--black); line-height: 1.2; }
.wt-info-card-sub { font-size: 11px; color: var(--gray-text); margin-top: 3px; }

/* ── PARTNER BOX ── */
.wt-partner-box { background: #FFFBF0; border: 2px solid var(--yellow); border-radius: 10px; padding: 20px 24px; margin-bottom: 24px; display: flex; align-items: flex-start; gap: 14px; }
.wt-partner-icon { font-size: 28px; flex-shrink: 0; }
.wt-partner-icon img { width: 28px; height: 28px; object-fit: contain; }
.wt-partner-title { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.wt-partner-text { font-size: 13px; color: var(--gray-text); line-height: 1.6; }

/* ── WHY GRID ── */
.wt-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 24px; }
.wt-why-item { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border: 1px solid var(--gray-mid); border-radius: 6px; font-size: 13px; color: var(--black); font-weight: 500; }
.wt-why-icon { font-size: 16px; flex-shrink: 0; }
.wt-why-icon img { width: 16px; height: 16px; object-fit: contain; }

/* ── LOCATIONS ── */
.wt-locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 24px; }
.wt-location-card { border: 1.5px solid var(--gray-mid); border-radius: 8px; overflow: hidden; }
.wt-location-header { background: var(--black); padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
.wt-location-flag { font-size: 18px; }
.wt-location-flag img { width: 18px; height: 18px; object-fit: contain; }
.wt-location-name { font-size: 14px; font-weight: 700; color: var(--white); }
.wt-location-state { font-size: 11px; color: rgba(255,255,255,0.5); }
.wt-location-body { padding: 12px 16px; }
.wt-location-employers { font-size: 12px; color: var(--gray-text); line-height: 1.8; }
.wt-location-tags { margin-top: 8px; }
.wt-location-tag {
  display: inline-block; background: #FFFBF0; border: 1px solid var(--yellow);
  color: var(--black); font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 3px; margin: 2px 2px 2px 0;
}

.wt-note-box {
  padding: 14px 18px; background: var(--gray-light);
  border-left: 3px solid var(--yellow); border-radius: 0 6px 6px 0;
  font-size: 13px; color: var(--gray-text); line-height: 1.6;
}

/* ── PROCESS ── */
.wt-process-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.wt-process-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--gray-mid); }
.wt-process-item:last-child { border-bottom: none; }
.wt-process-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--yellow); color: var(--black);
  font-size: 15px; font-weight: 800; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.wt-process-title { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.wt-process-desc { font-size: 13px; color: var(--gray-text); line-height: 1.6; }

/* ── FAQ ── */
.wt-faq-list { display: flex; flex-direction: column; gap: 8px; }
.wt-faq-item { border: 1.5px solid var(--gray-mid); border-radius: 8px; overflow: hidden; }
.wt-faq-q {
  padding: 16px 18px; font-size: 14px; font-weight: 700; color: var(--black);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  background: var(--white); transition: background .2s;
}
.wt-faq-q:hover { background: var(--gray-light); }
.wt-faq-q::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--yellow-dark); flex-shrink: 0; }
.wt-faq-item.open .wt-faq-q::after { content: '−'; }
.wt-faq-a { display: none; padding: 0 18px 16px; font-size: 13px; color: var(--gray-text); line-height: 1.7; }
.wt-faq-item.open .wt-faq-a { display: block; }

/* ── SIDEBAR ── */
.wt-sidebar-sticky { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 20px; }
.wt-apply-form { background: var(--white); border: 2px solid var(--yellow); border-radius: 12px; padding: 24px; }
.wt-apply-form-title { font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.wt-apply-form-sub { font-size: 12px; color: var(--gray-text); margin-bottom: 20px; line-height: 1.5; }

.wt-form-group { margin-bottom: 14px; }
.wt-form-label { font-size: 11px; font-weight: 700; color: var(--black); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 5px; display: block; }
.wt-form-input {
  width: 100%; padding: 10px 12px; border: 1.5px solid var(--gray-mid);
  border-radius: 6px; font-family: var(--font); font-size: 13px; color: var(--black);
  background: var(--white); transition: border-color .2s;
}
.wt-form-input:focus { outline: none; border-color: var(--yellow); }
.wt-form-select {
  width: 100%; padding: 10px 12px; border: 1.5px solid var(--gray-mid);
  border-radius: 6px; font-family: var(--font); font-size: 13px; color: var(--black);
  background: var(--white); cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
.wt-form-select:focus { outline: none; border-color: var(--yellow); }
.wt-btn-apply {
  width: 100%; background: var(--yellow); color: var(--black);
  font-family: var(--font); font-size: 14px; font-weight: 800;
  padding: 14px; border-radius: 6px; border: none; cursor: pointer;
  letter-spacing: 0.04em; text-transform: uppercase; transition: background .2s; margin-top: 4px;
}
.wt-btn-apply:hover    { background: var(--yellow-dark); }
.wt-btn-apply:disabled { opacity: 0.6; cursor: not-allowed; }
.wt-form-note { font-size: 11px; color: var(--gray-text); text-align: center; margin-top: 10px; line-height: 1.5; }
.wt-form-success {
  display: none; background: #F1F8F1; border: 1.5px solid var(--green);
  border-radius: 8px; padding: 16px; text-align: center;
  font-size: 14px; font-weight: 600; color: var(--green); margin-top: 12px;
}
.wt-form-error {
  display: none; background: #FFF0F0; border: 1.5px solid #E53935;
  border-radius: 8px; padding: 14px; text-align: center;
  font-size: 13px; color: #C62828; margin-top: 12px;
}

.wt-sidebar-card { background: var(--gray-light); border-radius: 10px; padding: 20px; border: 1px solid var(--gray-mid); }
.wt-sidebar-card-title { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 14px; }
.wt-sidebar-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid var(--gray-mid); font-size: 12px; gap: 8px; }
.wt-sidebar-row:last-child { border-bottom: none; }
.wt-sidebar-row-label { color: var(--gray-text); flex-shrink: 0; }
.wt-sidebar-row-val { font-weight: 600; color: var(--black); text-align: right; }

.wt-calendly-card { background: var(--black); border-radius: 10px; padding: 20px; text-align: center; }
.wt-calendly-icon { font-size: 28px; margin-bottom: 10px; }
.wt-calendly-icon img { width: 28px; height: 28px; object-fit: contain; margin: 0 auto; }
.wt-calendly-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.wt-calendly-desc { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 16px; line-height: 1.5; }
.wt-btn-calendly {
  display: block; background: var(--yellow); color: var(--black);
  font-size: 13px; font-weight: 700; padding: 11px 20px; border-radius: 6px;
  letter-spacing: 0.04em; text-transform: uppercase; transition: background .2s;
}
.wt-btn-calendly:hover { background: var(--yellow-dark); }

/* ── BOTTOM CTA ── */
.wt-bottom-cta { background: var(--yellow); padding: 28px 60px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wt-bottom-cta-icon { font-size: 22px; flex-shrink: 0; }
.wt-bottom-cta-icon img { width: 32px; height: 32px; object-fit: contain; }
.wt-bottom-cta-title { font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.wt-bottom-cta-desc { font-size: 13px; color: rgba(0,0,0,0.55); }
.wt-bottom-cta-btns { display: flex; gap: 10px; flex-shrink: 0; }
.wt-btn-cta-dark {
  background: var(--black); color: var(--white);
  font-size: 13px; font-weight: 700; padding: 12px 22px; border-radius: 4px;
  letter-spacing: 0.05em; text-transform: uppercase; display: inline-block; transition: background .2s;
}
.wt-btn-cta-dark:hover { background: #333; }
.wt-btn-cta-outline {
  background: transparent; color: var(--black);
  font-size: 13px; font-weight: 700; padding: 11px 22px; border-radius: 4px;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 2px solid rgba(0,0,0,0.3); display: inline-block; transition: border-color .2s;
}
.wt-btn-cta-outline:hover { border-color: var(--black); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .wt-main { grid-template-columns: 1fr; }
  .wt-sidebar-sticky { position: static; }
  .wt-info-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .breadcrumb        { padding: 10px 24px; font-size: 11px; }
  .wt-hero           { grid-template-columns: 1fr; min-height: auto; position: relative; }
  .wt-hero-img       { position: relative; height: 240px; order: 1; }
  .wt-hero-img::after { display: none; }
  .wt-hero-content   { order: 2; padding: 36px 24px; position: relative; z-index: 1; }
  .wt-hero-h1        { font-size: 28px; }
  .wt-hero-btns      { flex-direction: column; gap: 10px; }
  .btn-hero-dark, .btn-hero-outline { text-align: center; padding: 12px 20px; font-size: 12px; }
  .wt-main           { padding: 28px 20px; gap: 28px; }
  .wt-info-cards     { grid-template-columns: 1fr 1fr; gap: 10px; }
  .wt-info-card      { padding: 14px 12px; }
  .wt-info-card-value { font-size: 15px; }
  .section-title     { font-size: 22px; }
  .section-text      { font-size: 13px; }
  .wt-process-desc   { font-size: 12px; }
  .wt-locations-grid { grid-template-columns: 1fr; }
  .wt-why-grid       { grid-template-columns: 1fr; }
  .wt-bottom-cta     { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .wt-bottom-cta-btns { width: 100%; }
  .wt-btn-cta-dark, .wt-btn-cta-outline { text-align: center; flex: 1; }
}
@media (max-width: 540px) {
  .wt-hero-h1 { font-size: 24px; }
  .wt-info-cards { grid-template-columns: 1fr; }
}
