/* ── Hero ─────────────────────────────────────────────── */
.psk-reg-hero {
    position: relative; background: #040e26; padding: 130px 0 60px; overflow: hidden; color: #fff;
}
.psk-reg-hero__bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 12% 20%, rgba(252,94,40,0.20) 0, transparent 40%),
        radial-gradient(circle at 88% 15%, rgba(252,94,40,0.12) 0, transparent 35%),
        radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1.5px);
    background-size: auto, auto, 26px 26px;
}
.psk-reg-hero .container { position: relative; z-index: 1; }
.psk-reg-hero__breadcrumbs { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-bottom: 22px; }
.psk-reg-hero__breadcrumbs a { color: rgba(255,255,255,0.75); text-decoration: none; }
.psk-reg-hero__title { font-size: 2.3rem; font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.25; max-width: 720px; }
.psk-reg-hero__sub { color: rgba(255,255,255,0.75); font-size: 1.02rem; line-height: 1.75; max-width: 640px; margin-bottom: 26px; }
.psk-reg-hero__sub a { color: #fc5e28; font-weight: 600; text-decoration: underline; }
.psk-reg-hero__stat {
    margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.95rem; color: rgba(255,255,255,0.85);
}
.psk-reg-hero__stat .fa { color: #fc5e28; margin-right: 8px; }
.psk-reg-hero__stat strong { color: #fc5e28; font-size: 1.1rem; }

.psk-reg-benefit {
    background: #fff; border: 1px solid #e2e6ea; border-radius: 16px;
    padding: 28px 24px; height: 100%; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.psk-reg-benefit:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: #fc5e28; }
.psk-reg-benefit__icon {
    width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 1.3rem; margin-bottom: 16px;
}
.psk-reg-benefit h3 { font-size: 1rem; font-weight: 700; color: #1e2a3a; margin-bottom: 8px; }
.psk-reg-benefit p { font-size: 0.85rem; color: #6b7280; line-height: 1.6; margin: 0; }

/* ── Sidebar cards next to the form ── */
.psk-reg-checklist {
    background: #fff; border: 1px solid #e2e6ea; border-radius: 16px;
    padding: 24px; margin-bottom: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.psk-reg-checklist h4 { font-size: 0.95rem; font-weight: 700; color: #1e2a3a; margin-bottom: 14px; }
.psk-reg-checklist h4 .fa { color: #fc5e28; }
.psk-reg-checklist ul { list-style: none; margin: 0 0 14px; padding: 0; }
.psk-reg-checklist li {
    display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem;
    color: #4b5563; padding: 7px 0; line-height: 1.5;
}
.psk-reg-checklist li .fa { color: #25D366; margin-top: 3px; flex-shrink: 0; }
.psk-reg-checklist p { font-size: 0.78rem; color: #9ca3af; margin: 0; font-style: italic; }

.psk-reg-wa {
    background: linear-gradient(160deg, #25D366 0%, #1aab50 100%);
    border-radius: 16px; padding: 24px; text-align: center; color: #fff;
}
.psk-reg-wa .fa-whatsapp { font-size: 2rem; margin-bottom: 10px; display: block; }
.psk-reg-wa h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: #fff; }
.psk-reg-wa p { font-size: 0.82rem; color: rgba(255,255,255,0.85); margin-bottom: 16px; line-height: 1.5; }
.psk-reg-wa a {
    display: inline-flex; align-items: center; background: #fff; color: #1aab50 !important;
    font-weight: 700; font-size: 0.85rem; padding: 10px 20px; border-radius: 10px; text-decoration: none;
}
.psk-reg-wa a:hover { background: #f0fdf4; }

@media (max-width: 767.98px) {
    .psk-reg-hero { padding: 100px 0 40px; }
    .psk-reg-hero__title { font-size: 1.6rem; }
    .psk-reg-form-card { padding: 22px 16px 20px !important; }
}

/* ── Registration form: breathing room between fields ── */
#agent-register-form .form-group { margin-bottom: 24px; }
#agent-register-form label { margin-bottom: 8px; }
#agent-register-form .input-group-text {
    width: 44px; justify-content: center; padding: 0.375rem 0;
}
#agent-register-form small { display: block; margin-top: 6px; line-height: 1.5; }

/* ── Location modal backdrop ─────────────────────────────── */
#loc-modal-backdrop {
    display: none; position: fixed; inset: 0;
    background: rgba(4,14,38,0.60); backdrop-filter: blur(5px);
    z-index: 9999; align-items: center; justify-content: center;
}
#loc-modal-backdrop.show { display: flex; animation: fadeInBd 0.2s ease; }
@keyframes fadeInBd { from{opacity:0} to{opacity:1} }

#loc-modal {
    background: #fff; border-radius: 20px; padding: 36px 32px 28px;
    max-width: 440px; width: 92%; text-align: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.20);
    animation: slideUp 0.3s cubic-bezier(0.34,1.56,0.64,1);
    position: relative; max-height: 90vh; overflow-y: auto;
}
@keyframes slideUp {
    from{transform:translateY(40px) scale(0.95);opacity:0}
    to{transform:translateY(0) scale(1);opacity:1}
}

/* icon ring */
.loc-icon-ring {
    width:76px; height:76px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    margin: 0 auto 18px; transition: background 0.3s, border-color 0.3s;
}
.loc-icon-ring.state-ask  { background:linear-gradient(135deg,#fff3ee,#ffe0d4); border:3px solid rgba(252,94,40,0.18); animation: pulseRing 2s infinite; }
.loc-icon-ring.state-denied { background:linear-gradient(135deg,#fff0f0,#ffd6d6); border:3px solid rgba(220,53,69,0.20); }
.loc-icon-ring.state-ok   { background:linear-gradient(135deg,#e8fff2,#c8f7dc); border:3px solid rgba(37,211,102,0.25); }
@keyframes pulseRing {
    0%,100%{box-shadow:0 0 0 0 rgba(252,94,40,0.25)}
    50%    {box-shadow:0 0 0 12px rgba(252,94,40,0)}
}

#loc-modal h4 { font-size:19px; font-weight:700; color:#040e26; margin-bottom:8px; }
#loc-modal .sub { font-size:13.5px; color:#6b7280; line-height:1.65; margin-bottom:20px; }

/* steps list */
.loc-steps { background:#f9fafb; border-radius:12px; padding:14px 16px; margin-bottom:20px; text-align:left; }
.loc-steps li { font-size:13px; color:#374151; padding:5px 0; list-style:none; display:flex; align-items:flex-start; gap:10px; line-height:1.5; }
.step-dot { width:20px; height:20px; min-width:20px; border-radius:50%; color:#fff; font-size:11px; font-weight:700; display:flex; align-items:center; justify-content:center; margin-top:1px; }
.step-dot.orange { background:#fc5e28; }
.step-dot.red    { background:#dc3545; }

/* browser tabs */
.browser-tabs { display:flex; gap:6px; justify-content:center; margin-bottom:14px; flex-wrap:wrap; }
.browser-tab {
    padding:5px 12px; border-radius:20px; font-size:12px; font-weight:600;
    border:1.5px solid #e5e7eb; background:#f9fafb; cursor:pointer;
    color:#374151; transition:all 0.15s;
}
.browser-tab.active { background:#fc5e28; border-color:#fc5e28; color:#fff; }

/* unblock box */
.unblock-box { background:#fff8e1; border:1px solid #ffe082; border-radius:10px; padding:14px 16px; margin-bottom:18px; text-align:left; }
.unblock-box .ub-title { font-size:13px; font-weight:700; color:#7c5e00; margin-bottom:8px; display:flex; align-items:center; gap:6px; }
.unblock-box ol { margin:0; padding-left:18px; }
.unblock-box ol li { font-size:12.5px; color:#374151; line-height:1.6; padding:2px 0; }
.unblock-box code { background:#fff3cd; padding:1px 5px; border-radius:4px; font-size:11.5px; }

/* main btn */
#btn-modal-allow {
    width:100%; padding:14px; border:none; border-radius:10px;
    font-size:15px; font-weight:700; cursor:pointer; letter-spacing:0.3px;
    display:flex; align-items:center; justify-content:center; gap:8px;
    transition:transform 0.15s, box-shadow 0.15s, background 0.2s;
    margin-bottom:4px;
}
#btn-modal-allow.btn-orange {
    background:linear-gradient(135deg,#fc5e28,#e04d1c); color:#fff;
    box-shadow:0 4px 16px rgba(252,94,40,0.35);
}
#btn-modal-allow.btn-orange:hover { transform:translateY(-1px); box-shadow:0 6px 20px rgba(252,94,40,0.45); }
#btn-modal-allow.btn-green {
    background:linear-gradient(135deg,#25D366,#1aab50); color:#fff;
    box-shadow:0 4px 16px rgba(37,211,102,0.30);
}
#btn-modal-allow:disabled { opacity:0.5; cursor:not-allowed; transform:none !important; }

#btn-modal-dismiss { margin-top:10px; background:none; border:none; font-size:12.5px; color:#9ca3af; cursor:pointer; text-decoration:underline; }
#btn-modal-dismiss:hover { color:#dc3545; }

/* inline status bar */
#location-status { display:none; border-radius:8px; padding:13px 18px; margin-bottom:16px; text-align:center; border:1px solid; }
