/* =========================================================
JourneyChoice Operator Profile CSS
FILE: /assets/css/operator_profile.css
========================================================= */

:root{
  --ink:#0f172a;
  --mut:#475569;
  --bg:#f6f7fb;
  --card:#ffffff;
  --line: rgba(15,23,42,.10);
  --shadow: 0 18px 55px rgba(15,23,42,.10);

  --wa1:#22c55e;
  --wa2:#16a34a;
  --brand2:#e2e8f0;
}

body{
  background: var(--bg) !important;
}

/* ===== Wrapper ===== */

.opWrap{
  max-width:1120px;
  margin:0 auto;
  padding:16px 14px 26px;
}

.opProfile{
  margin-top:14px;
  border:1px solid var(--line);
  border-radius:26px;
  background:var(--card);
  box-shadow:var(--shadow);
  overflow:hidden;
}

/* ===== HERO ===== */

.heroWrap{
  position:relative;
}

.cover{
  height:240px;
  position:relative;
  background:
    radial-gradient(1200px 400px at 20% 10%, rgba(59,130,246,.22), transparent 55%),
    radial-gradient(900px 380px at 80% 20%, rgba(16,185,129,.18), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,.88), rgba(15,23,42,.65));
}

.coverImg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.coverShade{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.60));
}

.heroContent{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:18px 18px 16px;
  display:flex;
  gap:16px;
  align-items:flex-end;
  flex-wrap:wrap;
}

/* ===== Logo ===== */

.logo{
  width:88px;
  height:88px;
  border-radius:22px;
  border:3px solid rgba(255,255,255,.92);
  background:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,.28);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  font-size:28px;
}

.logo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ===== Text ===== */

.heroText{
  min-width:260px;
  flex:1;
}

.h1{
  margin:0;
  font-size:28px;
  font-weight:1000;
  color:#fff;
}

.sub{
  margin-top:6px;
  color:rgba(255,255,255,.92);
  font-weight:900;
  font-size:13px;
}

/* ===== Badges ===== */

.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 12px;
  border-radius:999px;
  font-weight:1000;
  font-size:12px;
  color:#fff;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
}

.badge.ver{
  background:rgba(16,185,129,.22);
  border-color:rgba(16,185,129,.35);
}

/* ===== Trust box ===== */

.trustBox{
  min-width:260px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.65);
  border-radius:18px;
  padding:12px 12px 10px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.trustTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.trustTitle{
  font-weight:1000;
}

.trustPct{
  font-weight:1000;
}

.trustBar{
  margin-top:8px;
  height:10px;
  border-radius:999px;
  background:rgba(15,23,42,.10);
  overflow:hidden;
}

.trustBar i{
  display:block;
  height:100%;
  width:0;
  background:linear-gradient(90deg,#22c55e,#3b82f6);
}

.trustNote{
  margin-top:6px;
  font-size:12px;
  color:rgba(15,23,42,.70);
}

/* ===== Buttons ===== */

.opBtns{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg,#fff,rgba(255,255,255,.92));
}

.btn2{
  display:inline-flex;
  gap:8px;
  align-items:center;
  justify-content:center;
  padding:11px 16px;
  border-radius:999px;
  font-weight:1000;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  text-decoration:none;
}

.btn2.wa{
  border:none;
  background:linear-gradient(135deg,var(--wa1),var(--wa2));
}

.btn2.primary{
  border:none;
  background:linear-gradient(135deg,var(--brand2),#ffffff);
}

.btn2:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 30px rgba(15,23,42,.10);
}

/* ===== Body ===== */

.opBody{
  padding:18px 16px 20px;
}

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

@media(max-width:820px){
  .grid2{
    grid-template-columns:1fr;
  }
}

.k{
  font-weight:1000;
  font-size:12px;
  color:rgba(15,23,42,.60);
  margin-top:14px;
}

.v{
  margin-top:8px;
  font-weight:900;
  line-height:1.7;
}

.link{
  color:#0f172a;
  font-weight:1000;
  text-decoration:underline;
}

.pills{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
}

.pill{
  padding:7px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:1000;
  font-size:12px;
}

/* Footer */

.footerNote{
  margin-top:12px;
  text-align:center;
  font-size:12px;
  color:rgba(15,23,42,.65);
}