
:root{
  --brand:#0B5ED7; --brand-hover:#0A53BE;
  --hero-from:#020F2B; --hero-to:#0B5ED7;
  --blue-50:#EFF6FF; --blue-100:#DBEAFE;
  --green:#16A34A; --green-50:#DCFCE7; --amber:#F59E0B;
  --gray-950:#030712; --gray-900:#101828; --gray-800:#1E2939;
  --gray-700:#364153; --gray-600:#4A5565; --gray-500:#6A7282;
  --gray-400:#99A1AF; --gray-200:#E5E7EB; --gray-100:#F3F4F6;
  --gray-50:#F9FAFB;
  --container:1200px; --gutter:24px;
  --radius-card:14px; --radius-input:10px;
  --shadow-card:0 1px 2px rgba(16,24,40,.04),0 1px 3px rgba(16,24,40,.06);
  --shadow-float:0 10px 30px rgba(2,15,43,.10);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{font-family:'Poppins',system-ui,-apple-system,'Segoe UI',sans-serif;background:#fff;color:var(--gray-900);line-height:1.5}
img,svg{display:block;max-width:100%}
button{font:inherit;cursor:pointer;border:none}
a{text-decoration:none;color:inherit}
.container{max-width:var(--container);margin-inline:auto;padding-inline:var(--gutter)}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;background:var(--brand);color:#fff;font-size:13.5px;font-weight:600;border-radius:var(--radius-input);height:46px;padding:0 18px;width:100%;transition:background .2s,transform .1s}
.btn:hover{background:var(--brand-hover)}
.btn:active{transform:translateY(1px)}
.btn svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.btn-outline{display:inline-flex;align-items:center;justify-content:center;gap:7px;background:#fff;color:var(--gray-700);font-size:13px;font-weight:600;border:1px solid var(--gray-200);border-radius:var(--radius-input);height:42px;transition:border-color .2s,color .2s,background .2s}
.btn-outline:hover{border-color:var(--brand);color:var(--brand);background:var(--blue-50)}
.btn-outline svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}

/* ===================== BREADCRUMB ===================== */
.crumb-bar{padding:18px 0 6px}
.breadcrumb{display:flex;align-items:center;gap:10px;font-size:13px;color:var(--gray-500);flex-wrap:wrap}
.breadcrumb a{display:inline-flex;align-items:center;color:var(--gray-500);transition:color .2s}
.breadcrumb a:hover{color:var(--brand)}
.breadcrumb .crumb-sep svg{width:13px;height:13px;stroke:var(--gray-400);stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}
.breadcrumb .current{color:var(--brand);font-weight:600}

/* ===================== LAYOUT ===================== */
.detail{padding:14px 0 60px}
.detail-grid{display:grid;grid-template-columns:1fr 340px;gap:28px;align-items:start}

/* ===================== PROFILE HEADER ===================== */
.profile-card{border:1px solid var(--gray-100);border-radius:var(--radius-card);overflow:hidden;box-shadow:var(--shadow-card)}
.profile-banner{position:relative;background:linear-gradient(110deg,var(--hero-from) 0%,#06224f 55%,var(--hero-to) 100%);padding:26px 28px;display:flex;align-items:center;gap:20px;min-height:120px}
.avatar{position:relative;flex:0 0 84px}
.avatar img{width:84px;height:84px;border-radius:14px;object-fit:cover;border:2px solid rgba(255,255,255,.4)}
.avatar .vcheck{position:absolute;right:-6px;bottom:-6px;width:26px;height:26px;border-radius:50%;background:var(--brand);border:3px solid #0a1f44;display:flex;align-items:center;justify-content:center}
.avatar .vcheck svg{width:13px;height:13px;stroke:#fff;fill:none;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}
.profile-banner .pb-name{color:#fff;font-size:20px;font-weight:700;margin-bottom:4px}
.profile-banner .pb-role{color:#7FB3FF;font-size:13px;font-weight:500}
.avail{position:absolute;right:22px;bottom:18px;display:inline-flex;align-items:center;gap:6px;background:var(--green-50);color:var(--green);font-size:11.5px;font-weight:600;padding:5px 12px;border-radius:999px}
.avail .dot{width:7px;height:7px;border-radius:50%;background:var(--green)}

.profile-body{padding:18px 28px 24px}
.pb-meta{display:flex;flex-wrap:wrap;align-items:center;gap:8px 20px;font-size:12.5px;color:var(--gray-600);margin-bottom:14px}
.pb-meta .mi{display:inline-flex;align-items:center;gap:6px}
.pb-meta .mi svg{width:15px;height:15px;stroke:var(--gray-400);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.pb-meta .mi.rating{color:var(--gray-800);font-weight:600}
.pb-meta .mi.rating svg{fill:var(--amber);stroke:none}
.pb-meta .mi.rating .rev{color:var(--gray-500);font-weight:400}
.pb-tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px}
.pb-tags .tag{background:var(--blue-50);color:var(--brand);font-size:11.5px;font-weight:500;padding:5px 12px;border-radius:999px}
.pb-about h3{font-size:15px;font-weight:600;color:var(--gray-900);margin-bottom:8px}
.pb-about p{font-size:12.5px;color:var(--gray-500);line-height:1.75}

/* ===================== INFO GRID (Education etc) ===================== */
.info-card{border:1px solid var(--gray-100);border-radius:var(--radius-card);box-shadow:var(--shadow-card);padding:24px 28px;margin-top:24px}
.info-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px 40px}
.info-block h3{display:flex;align-items:center;gap:9px;font-size:14.5px;font-weight:600;color:var(--gray-900);margin-bottom:14px}
.info-block h3 svg{width:18px;height:18px;stroke:var(--brand);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.info-block ul{list-style:none}
.info-block li{margin-bottom:12px}
.edu-item .t{font-size:13px;font-weight:500;color:var(--gray-800)}
.edu-item .s{font-size:11.5px;color:var(--gray-500)}
.lang-item{display:flex;align-items:baseline;justify-content:space-between;gap:10px}
.lang-item .t{font-size:13px;font-weight:500;color:var(--gray-800)}
.lang-item .s{font-size:11.5px;color:var(--gray-500)}
.check-item{display:flex;align-items:flex-start;gap:9px;font-size:13px;color:var(--gray-800)}
.check-item svg{flex:0 0 16px;width:16px;height:16px;stroke:var(--green);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;margin-top:1px}
.check-item.dot::before{content:"";flex:0 0 6px;width:6px;height:6px;border-radius:50%;background:var(--brand);margin-top:6px}

/* ===================== CLIENT REVIEWS ===================== */
.reviews-card{border:1px solid var(--gray-100);border-radius:var(--radius-card);box-shadow:var(--shadow-card);padding:24px 28px;margin-top:24px}
.reviews-head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:22px}
.reviews-head h2{font-size:18px;font-weight:700;color:var(--gray-900);letter-spacing:-.01em}
.reviews-head .score{display:inline-flex;align-items:center;gap:7px;background:#FEF3C7;color:#92400E;font-size:13px;font-weight:600;padding:6px 12px;border-radius:10px}
.reviews-head .score svg{width:15px;height:15px;fill:var(--amber);stroke:none}
.reviews-head .score .rev{color:#B45309;font-weight:400;font-size:12px}
.bars{margin-bottom:24px}
.bar-row{display:flex;align-items:center;gap:12px;margin-bottom:8px}
.bar-row .lbl{font-size:12px;color:var(--gray-600);width:14px;text-align:right}
.bar-row .track{flex:1;height:8px;background:var(--gray-100);border-radius:999px;overflow:hidden}
.bar-row .fill{height:100%;background:var(--amber);border-radius:999px}
.bar-row .pct{font-size:11.5px;color:var(--gray-500);width:38px;text-align:right}

.review{padding-top:18px;border-top:1px solid var(--gray-100)}
.review:first-of-type{border-top:none;padding-top:0}
.review-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:8px}
.review-who{display:flex;align-items:center;gap:11px}
.review-ava{width:36px;height:36px;border-radius:50%;background:var(--brand);color:#fff;font-size:13px;font-weight:600;display:flex;align-items:center;justify-content:center}
.review-name{font-size:13.5px;font-weight:600;color:var(--gray-900)}
.review-date{font-size:11.5px;color:var(--gray-500)}
.review-stars{display:inline-flex;gap:2px}
.review-stars svg{width:14px;height:14px;fill:var(--amber);stroke:none}
.review p{font-size:12.5px;color:var(--gray-600);line-height:1.7}

/* ===================== OFFICE LOCATION ===================== */
.office-card{border:1px solid var(--gray-100);border-radius:var(--radius-card);box-shadow:var(--shadow-card);overflow:hidden;margin-top:24px}
.office-head{padding:22px 28px 16px}
.office-head h2{font-size:18px;font-weight:700;color:var(--gray-900);letter-spacing:-.01em;margin-bottom:3px}
.office-head p{font-size:12.5px;color:var(--gray-500)}
.office-map{height:300px;background:
  linear-gradient(135deg,#EAF1FB 0%,#F0F5FC 100%);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;border-top:1px solid var(--gray-100)}
.office-map svg{width:34px;height:34px;stroke:var(--brand);fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.office-map span{font-size:12.5px;color:var(--gray-500)}

/* ===================== SIDEBAR ===================== */
.sidebar{display:flex;flex-direction:column;gap:24px;position:sticky;top:20px}
.side-card{border:1px solid var(--gray-100);border-radius:var(--radius-card);box-shadow:var(--shadow-card);padding:22px 22px 24px}
.price{text-align:center;margin-bottom:18px}
.price .amt{font-size:26px;font-weight:700;color:var(--gray-900)}
.price .per{font-size:12.5px;color:var(--gray-500)}
.side-actions{display:flex;flex-direction:column;gap:10px;margin-bottom:18px}
.side-actions .two{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.contact-list{border-top:1px solid var(--gray-100);padding-top:16px;display:flex;flex-direction:column;gap:14px;margin-bottom:18px}
.contact-row{display:flex;gap:12px;align-items:flex-start}
.contact-row .ci{flex:0 0 34px;width:34px;height:34px;border-radius:9px;background:var(--blue-50);display:flex;align-items:center;justify-content:center}
.contact-row .ci svg{width:16px;height:16px;stroke:var(--brand);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.contact-row .cl{font-size:11px;color:var(--gray-500)}
.contact-row .cv{font-size:12.5px;font-weight:500;color:var(--gray-800);word-break:break-word}

.similar h3{font-size:15px;font-weight:600;color:var(--gray-900);margin-bottom:16px}
.sim-row{display:flex;align-items:center;gap:12px;padding:10px 0}
.sim-row + .sim-row{border-top:1px solid var(--gray-100)}
.sim-ava{flex:0 0 38px;width:38px;height:38px;border-radius:50%;background:var(--brand);color:#fff;font-size:14px;font-weight:600;display:flex;align-items:center;justify-content:center}
.sim-info{flex:1}
.sim-info .sn{font-size:13px;font-weight:600;color:var(--gray-900)}
.sim-info .sp{font-size:11.5px;color:var(--gray-500)}
.sim-rate{display:inline-flex;align-items:center;gap:4px;font-size:12px;font-weight:600;color:var(--gray-800)}
.sim-rate svg{width:13px;height:13px;fill:var(--amber);stroke:none}

/* ===================== RESPONSIVE ===================== */
@media (max-width:960px){
  .detail-grid{grid-template-columns:1fr;gap:24px}
  .sidebar{position:static;flex-direction:row;flex-wrap:wrap}
  .sidebar .side-card{flex:1 1 320px}
}
@media (max-width:680px){
  .info-grid{grid-template-columns:1fr;gap:26px}
  .profile-banner{flex-direction:column;align-items:flex-start;gap:14px;padding:22px 20px 30px}
  .avail{position:static;margin-top:4px}
  .profile-body{padding:18px 20px 22px}
  .info-card,.reviews-card,.office-head{padding-left:20px;padding-right:20px}
  .sidebar{flex-direction:column}
  .reviews-head{flex-wrap:wrap}
}
@media (max-width:520px){
  :root{--gutter:16px}
  .side-actions .two{grid-template-columns:1fr}
  .review-top{flex-wrap:wrap;gap:6px}
}
@media (prefers-reduced-motion:reduce){*,*::before,*::after{transition:none !important}html{scroll-behavior:auto}}
