/* ==========================================================
   PLANET NETWORK NUSANTARA
   FORM PENDAFTARAN INTERNET
   ========================================================== */

/* ==========================
   RESET & ROOT
========================== */

* {
  box-sizing: border-box;
}

:root {
  --blue: #087fc2;
  --blue-dark: #045d94;
  --blue-soft: #eaf8ff;
  --cyan: #30c7ef;

  --white: #ffffff;
  --text: #08253b;
  --muted: #557083;

  --border: rgba(8, 127, 194, 0.34);
  --border-strong: rgba(8, 127, 194, 0.55);

  --glass: rgba(255, 255, 255, 0.76);
  --glass-strong: rgba(255, 255, 255, 0.90);

  --shadow: 0 24px 70px rgba(0, 74, 126, 0.22);
  --shadow-soft: 0 14px 35px rgba(0, 91, 145, 0.15);

  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

/* ==========================
   BASE
========================== */

html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

/* ==========================
   PAGE WRAPPER
========================== */

.page-shell {
  position: relative;
  width: min(1240px, 94%);
  margin: 0 auto;
  padding: 28px 0 20px;
}

.registration-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;

  padding: 24px;
  border-radius: var(--radius-xl);

  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.88);

  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ==========================
   GLASS CARD
========================== */

.glass {
  background:
    linear-gradient(
      135deg,
      rgba(232, 248, 255, 0.92),
      rgba(210, 241, 255, 0.86)
    );

  border: 1px solid rgba(8, 127, 194, 0.18);

  border-radius: 28px;

  box-shadow:
    0 18px 50px rgba(0, 89, 138, 0.18);

  backdrop-filter: blur(16px);
}

/* ==========================
   LEFT PANEL
========================== */

.info-panel {
  min-width: 0;
  padding: 22px;

  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.78);

  box-shadow: 0 18px 48px rgba(0, 89, 138, 0.12);
}

.brand-header {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 18px;
}

.logo {
  width: min(285px, 72vw);
  height: auto;

  filter: drop-shadow(0 10px 18px rgba(0, 65, 110, 0.14));
}

/* ==========================
   BANNER
========================== */

.banner-card {
  width: 100%;
  margin-bottom: 18px;

  border-radius: 24px;
  overflow: hidden;

  background: linear-gradient(
    135deg,
    rgba(8, 127, 194, 0.18),
    rgba(48, 199, 239, 0.16)
  );

  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(0, 91, 145, 0.16);
}

.banner-img {
  width: 100%;
  height: auto;
  min-height: 150px;

  object-fit: cover;
  display: block;
}

/* ==========================
   RIGHT PANEL
========================== */

.form-panel {
  min-width: 0;
  padding: 26px;

  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.82);

  box-shadow: 0 18px 48px rgba(0, 89, 138, 0.14);
}
/* ==========================================================
   STYLE.CSS - PART 2/4
   INTRO • BENEFIT • STEP • HEADING
========================================================== */

/* ==========================
   INTRO
========================== */

.intro-content{
    width:100%;
}

.status-pill,
.intro-content h1{
    text-align:center;
}

.status-pill{
    margin-left:auto;
    margin-right:auto;
    display:flex;
    width:fit-content;
}
.status-pill{

    display:flex;

    width:fit-content;

    margin:0 auto 16px auto;

    justify-content:center;

    align-items:center;

    padding:8px 16px;

    border-radius:999px;

    background:rgba(8,127,194,.12);

    color:var(--blue-dark);

    font-size:12px;

    font-weight:900;

    letter-spacing:.8px;

    text-transform:uppercase;

}

.intro-content h1{

    margin:0 0 12px;

    color:#063958;

    font-size:26px;

    line-height:1.25;

    font-weight:800;

    text-align:center;

}

.brand-text{

    margin:0 0 16px;

    color:#195579;

    font-size:15px;

    line-height:1.7;

    font-weight:700;

}

.intro-text{

    margin:0 0 22px;

    color:#557083;

    font-size:14px;

    line-height:1.7;

}

/* ==========================
   BENEFIT
========================== */

.benefit-list{

    display:grid;

    gap:10px;

    margin-bottom:24px;

}

.benefit-item{

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.benefit-item span{

    width:26px;
    height:26px;

    flex-shrink:0;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:linear-gradient(
        135deg,
        var(--blue),
        var(--cyan)
    );

    color:#fff;

    font-size:13px;

    font-weight:900;

}

.benefit-item p{

    margin:2px 0 0;

    color:#295b78;

    font-size:14px;

    line-height:1.5;

}

/* ==========================
   STEP
========================== */

.steps-list{

    display:grid;

    gap:12px;

}

.step-item{

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px;

    border-radius:18px;

    background:#ffffff;

    border:1px solid rgba(8,127,194,.12);

    box-shadow:0 8px 18px rgba(0,0,0,.04);

}

.step-number{

    width:40px;
    height:40px;

    flex-shrink:0;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--blue),
        var(--cyan)
    );

    color:#fff;

    font-size:16px;

    font-weight:900;

    box-shadow:0 8px 20px rgba(8,127,194,.25);

}

.step-item p{

    margin:0;

    color:#355f77;

    font-size:14px;

    line-height:1.5;

    font-weight:700;

}

/* ==========================
   FORM HEADING
========================== */

.form-heading{

    margin-bottom:26px;

    text-align:center;

}

.form-heading h2{

    margin:0 0 8px;

    color:#063958;

    font-size:28px;

    font-weight:800;

}

.form-heading p{

    width:min(520px,100%);

    margin:0 auto;

    color:#557083;

    font-size:14px;

    line-height:1.6;

}

/* ==========================
   FORM GRID
========================== */

.registration-form{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:18px;

}

.full-width{

    grid-column:1 / -1;

}
/* ==========================================================
   STYLE.CSS - PART 3/4
   FORM INPUT • UPLOAD • DETAIL PAKET • BUTTON
========================================================== */

/* ==========================
   FORM GROUP
========================== */

.form-group label {
  display: block;
  margin: 0 0 7px;

  color: #123d57;

  font-size: 13px;
  font-weight: 900;
}

.form-group label span {
  color: #e23434;
}

/* ==========================
   INPUT ICON WRAP
========================== */

.input-icon-wrap {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;

  transform: translateY(-50%);

  z-index: 2;

  font-size: 16px;
  line-height: 1;

  pointer-events: none;
}

.textarea-wrap .field-icon {
  top: 17px;
  transform: none;
}

/* ==========================
   INPUT SELECT TEXTAREA
========================== */

.registration-form input,
.registration-form textarea,
.registration-form select {
  width: 100%;
  min-width: 0;

  border: 2px solid var(--border-strong);
  outline: none;

  border-radius: 15px;

  padding: 13px 14px 13px 43px;

  background: rgba(255, 255, 255, 0.96);

  color: var(--text);

  font-size: 14px;
  line-height: 1.35;

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);

  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.registration-form textarea {
  min-height: 96px;
  resize: vertical;

  padding-top: 13px;
}

.registration-form select {
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  padding-right: 38px;
}

.select-wrap::after {
  content: "⌄";

  position: absolute;
  right: 15px;
  top: 50%;

  transform: translateY(-56%);

  color: var(--blue-dark);

  font-size: 18px;
  font-weight: 900;

  pointer-events: none;
}

/* ==========================
   INPUT FOCUS
========================== */

.registration-form input:focus,
.registration-form textarea:focus,
.registration-form select:focus {
  border-color: var(--blue);

  box-shadow: 0 0 0 4px rgba(8, 127, 194, 0.14);
}

/* ==========================
   LOCATION
========================== */

.location-row {
  display: grid;

  grid-template-columns: 1fr auto;

  gap: 10px;
}

.location-btn {
  border: 0;

  border-radius: 15px;

  padding: 0 18px;

  background: linear-gradient(135deg, var(--blue), var(--cyan));

  color: #ffffff;

  font-size: 13px;
  font-weight: 900;

  cursor: pointer;

  white-space: nowrap;

  box-shadow: 0 12px 26px rgba(8, 127, 194, 0.22);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.location-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 16px 32px rgba(8, 127, 194, 0.30);
}

.location-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ==========================
   UPLOAD
========================== */

.upload-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 16px;
}

.upload-box {
  position: relative;

  padding: 15px;

  border: 2px dashed var(--border-strong);

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.86);

  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.upload-box:hover {
  border-color: var(--blue);

  box-shadow: 0 12px 28px rgba(8, 127, 194, 0.13);
}

.upload-label {
  display: grid !important;

  grid-template-columns: auto 1fr;

  grid-template-areas:
    "icon title"
    "icon desc";

  gap: 3px 12px;

  align-items: center;

  margin: 0 !important;

  cursor: pointer;
}

.upload-icon {
  grid-area: icon;

  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  background: rgba(8, 127, 194, 0.12);

  font-size: 20px;
}

.upload-title {
  grid-area: title;

  color: #123d57;

  font-size: 14px;
  font-weight: 900;
}

.upload-desc {
  grid-area: desc;

  color: #d33b3b;

  font-size: 12px;
  font-weight: 800;
}

.upload-box input[type="file"] {
  position: absolute;

  inset: 0;

  opacity: 0;

  cursor: pointer;

  padding: 0;
}

.file-name {
  margin: 10px 0 0;

  color: var(--muted);

  font-size: 12px;
  font-weight: 700;

  line-height: 1.35;

  word-break: break-word;
}

/* ==========================
   DETAIL PAKET
========================== */

.package-detail {
  padding: 14px 16px;

  border-radius: 16px;

  background: rgba(8, 127, 194, 0.08);

  border: 1px solid rgba(8, 127, 194, 0.18);
}

.package-detail strong {
  display: block;

  margin-bottom: 6px;

  color: #063958;

  font-size: 14px;
  font-weight: 900;
}

.package-detail p {
  margin: 0;

  color: #41677c;

  font-size: 13px;
  line-height: 1.5;

  font-weight: 700;
}

/* ==========================
   AGREEMENT
========================== */

.agreement-note {
  margin: 0;

  padding: 13px 15px;

  border-radius: 15px;

  background: rgba(8, 127, 194, 0.07);

  border: 1px solid rgba(8, 127, 194, 0.14);

  color: #41677c;

  font-size: 12px;
  line-height: 1.55;

  font-weight: 700;
}

/* ==========================
   SUBMIT BUTTON
========================== */

.submit-btn {
  position: relative;

  min-height: 50px;

  border: 0;

  border-radius: 16px;

  background: linear-gradient(135deg, var(--blue), var(--cyan));

  color: #ffffff;

  font-size: 15px;
  font-weight: 900;

  letter-spacing: 0.3px;

  text-transform: uppercase;

  cursor: pointer;

  box-shadow: 0 14px 30px rgba(8, 127, 194, 0.28);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 18px 38px rgba(8, 127, 194, 0.38);
}

.submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.submit-btn.is-loading .btn-text {
  opacity: 0.25;
}

.btn-loader {
  display: none;

  position: absolute;

  left: 50%;
  top: 50%;

  width: 22px;
  height: 22px;

  margin-left: -11px;
  margin-top: -11px;

  border-radius: 50%;

  border: 3px solid rgba(255, 255, 255, 0.55);
  border-top-color: #ffffff;

  animation: spin 0.7s linear infinite;
}

.submit-btn.is-loading .btn-loader {
  display: block;
}

/* ==========================
   FOOTER
========================== */

.footer-note {

  margin-top: 18px;

  text-align: center;

  color: #5f7f91;

  font-size: 11px;

  font-weight: 700;

  line-height: 1.5;

}
/* ==========================================================
   STYLE.CSS - PART 4/4
   RESPONSIVE • ANIMATION • FINAL
========================================================== */

/* ==========================
   ANIMATION
========================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fade-up {
  animation: fadeUp .6s ease both;
}

/* ==========================
   DESKTOP LARGE
========================== */

@media (min-width:1400px){

  .page-shell{
    width:min(1320px,92%);
  }

}

/* ==========================
   TABLET
========================== */

@media (max-width:1024px){

  .registration-shell{

    grid-template-columns:1fr;

    gap:22px;

    padding:20px;

  }

  .info-panel{

    order:1;

  }

  .form-panel{

    order:2;

  }

}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

  .page-shell{

    width:95%;

    padding:16px 0;

  }

  .registration-shell{

    grid-template-columns:1fr;

    gap:16px;

    padding:14px;

    border-radius:22px;

  }

  .info-panel,
  .form-panel{

    padding:16px;

    border-radius:18px;

  }

  .brand-header{

    margin-bottom:12px;

  }

  .logo{

    width:min(220px,72vw);

  }

  .banner-card{

    margin-bottom:14px;

    border-radius:18px;

  }

  .banner-img{

    min-height:120px;

  }

  .status-pill{

    font-size:10px;

    padding:7px 12px;

    margin-bottom:12px;

  }

  .intro-content h1{

    font-size:24px;

    line-height:1.3;

    margin-bottom:10px;

  }

  .brand-text{

    font-size:13px;

    line-height:1.6;

    margin-bottom:10px;

  }

  .intro-text{

    font-size:13px;

    line-height:1.55;

    margin-bottom:18px;

  }

  .benefit-list{

    gap:8px;

    margin-bottom:18px;

  }

  .benefit-item{

    gap:10px;

  }

  .benefit-item span{

    width:22px;
    height:22px;

    font-size:11px;

  }

  .benefit-item p{

    font-size:13px;

  }

  .steps-list{

    gap:8px;

  }

  .step-item{

    padding:10px;

    gap:10px;

    border-radius:14px;

  }

  .step-number{

    width:30px;
    height:30px;

    font-size:13px;

  }

  .step-item p{

    font-size:12px;

    line-height:1.4;

  }

  .form-heading{

    margin-bottom:18px;

  }

  .form-heading h2{

    font-size:22px;

  }

  .form-heading p{

    font-size:12px;

  }

  .registration-form{

    grid-template-columns:1fr;

    gap:14px;

  }

  .upload-grid{

    grid-template-columns:1fr;

    gap:12px;

  }

  .location-row{

    grid-template-columns:1fr;

    gap:8px;

  }
.location-btn{
    min-height:42px;
    padding:0 18px;
    border-radius:13px;
    font-size:13px;
}
  .registration-form input,
  .registration-form textarea,
  .registration-form select{

    font-size:13px;

    padding:12px 12px 12px 40px;

  }

  .field-icon{

    left:12px;

    font-size:15px;

  }

  .upload-box{

    padding:12px;

  }

  .upload-title{

    font-size:13px;

  }

  .upload-desc{

    font-size:11px;

  }

  .file-name{

    font-size:11px;

  }

  .package-detail{

    padding:12px;

  }

  .package-detail strong{

    font-size:13px;

  }

  .package-detail p{

    font-size:12px;

  }

  .agreement-note{

    padding:12px;

    font-size:11px;

    line-height:1.45;

  }

  .submit-btn{

    min-height:48px;

    font-size:13px;

  }

}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width:480px){

  .page-shell{

    width:96%;

  }

  .logo{

    width:190px;

  }

  .intro-content h1{

    font-size:21px;

  }

  .registration-shell{

    padding:10px;

  }

  .info-panel,
  .form-panel{

    padding:14px;

  }

  .step-item{

    align-items:flex-start;

  }

}
/* ==========================================================
   VALIDATION
========================================================== */

.validation-message{

display:none;

margin-top:7px;

padding-left:2px;

font-size:12px;

font-weight:700;

line-height:1.45;

}

.validation-message.show{

display:block;

}

.validation-message.success{

color:#16a34a;

}

.validation-message.error{

color:#dc2626;

}

/* ==========================================================
   INPUT VALID
========================================================== */

.registration-form input.valid,
.registration-form textarea.valid,
.registration-form select.valid{

border-color:#16a34a !important;

box-shadow:0 0 0 3px rgba(22,163,74,.12);

}

/* ==========================================================
   INPUT INVALID
========================================================== */

.registration-form input.invalid,
.registration-form textarea.invalid,
.registration-form select.invalid{

border-color:#dc2626 !important;

box-shadow:0 0 0 3px rgba(220,38,38,.12);

}
/* ==========================================================
   POPUP
========================================================== */

.confirm-modal{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

display:flex;

justify-content:center;

align-items:center;

padding:20px;

background:rgba(0,0,0,.45);

backdrop-filter:blur(5px);

visibility:hidden;

opacity:0;

transition:.25s;

z-index:999999;

}

.confirm-modal.show{

visibility:visible;

opacity:1;

}

.confirm-box{

width:min(470px,100%);

padding:34px;

background:#fff;

border-radius:28px;

text-align:center;

box-shadow:0 30px 80px rgba(0,0,0,.25);

animation:popupShow .25s;

}

.confirm-icon{

font-size:56px;

margin-bottom:18px;

}

.confirm-box h3{

margin:0;

margin-bottom:12px;

font-size:28px;

color:#063958;

}

.confirm-box p{

margin:0;

color:#567488;

font-size:15px;

font-weight:700;

line-height:1.7;

}

.confirm-box small{

display:block;

margin-top:16px;

color:#6d8797;

font-size:12px;

line-height:1.6;

}
.confirm-buttons{

display:flex;

gap:14px;

margin-top:26px;

}

.confirm-buttons button{

flex:1;

height:50px;

border:none;

border-radius:15px;

font-size:14px;

font-weight:900;

cursor:pointer;

transition:.2s;

}

.btn-cancel{

background:#edf2f7;

color:#3f5b6f;

}

.btn-cancel:hover{

background:#dfe7ef;

}

.btn-confirm{

background:linear-gradient(135deg,var(--blue),var(--cyan));

color:#fff;

box-shadow:0 14px 30px rgba(8,127,194,.28);

}

.btn-confirm:hover{

transform:translateY(-2px);

}

@keyframes popupShow{

from{

opacity:0;

transform:scale(.9);

}

to{

opacity:1;

transform:scale(1);

}

}

@media(max-width:768px){

.confirm-box{

padding:24px;

border-radius:22px;

}

.confirm-buttons{

flex-direction:column;

}

.confirm-buttons button{

width:100%;

}
}

/* ==========================================================
   REAL TIME VALIDATION
========================================================== */

.validation-message{

    display:none;

    margin-top:8px;

    font-size:12px;

    font-weight:700;

    line-height:1.5;

    animation:fadeValidation .25s ease;

}

.validation-message.show{

    display:block;

}

.validation-message.valid{

    color:#1b8d3d;

}

.validation-message.error{

    color:#d92b2b;

}

/* ==========================
   INPUT VALID
========================== */

.input-valid{

    border:2px solid #25b14c !important;

    box-shadow:
    0 0 0 4px rgba(37,177,76,.12);

}

/* ==========================
   INPUT ERROR
========================== */

.input-error{

    border:2px solid #e03b3b !important;

    box-shadow:
    0 0 0 4px rgba(224,59,59,.12);

}

/* ==========================
   VALIDATION ANIMATION
========================== */

@keyframes fadeValidation{

    from{

        opacity:0;

        transform:translateY(-5px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ==========================================================
   PNN PREMIUM NAVBAR FINAL
========================================================== */

.pnn-navbar{
  width:100%;
  position:relative;
  z-index:999;
  background:linear-gradient(135deg,rgba(4,93,148,.96),rgba(8,127,194,.96),rgba(48,199,239,.88));
  box-shadow:0 12px 32px rgba(0,60,120,.22);
}

.pnn-navbar-inner{
  max-width:1240px;
  margin:0 auto;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.pnn-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
  font-size:14px;
  font-weight:900;
  letter-spacing:.4px;
  white-space:nowrap;
  text-shadow:0 2px 8px rgba(0,0,0,.25);
}

.pnn-brand img{
  height:42px;
  width:auto;
  max-width:none;
}

.pnn-nav-menu{
  display:flex;
  align-items:center;
  gap:7px;
  flex-wrap:nowrap;
}

.pnn-nav-menu a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:40px;
  padding:10px 13px;
  border-radius:999px;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
  line-height:1;
  white-space:nowrap;
  transition:.25s;
}

.pnn-nav-menu a i{
  width:14px;
  min-width:14px;
  text-align:center;
  font-size:12.5px;
  flex-shrink:0;
}

.pnn-nav-menu a:hover{
  color:#045d94;
  background:linear-gradient(135deg,#fff,#e8f8ff);
  box-shadow:0 8px 18px rgba(8,127,194,.25);
  transform:translateY(-1px);
}

.pnn-nav-menu a.nav-login{
  margin-left:8px;
  min-height:40px;
  padding:10px 16px;
  color:#fff;
  background:linear-gradient(135deg,#0ea5e9,#087fc2);
  border:1px solid rgba(255,255,255,.28);
  box-shadow:0 10px 24px rgba(0,80,150,.28);
}

.pnn-nav-menu a.nav-login:hover{
  color:#fff;
  background:linear-gradient(135deg,#087fc2,#034f92);
  transform:translateY(-1px);
}

.pnn-menu-toggle{
  display:none;
  width:42px;
  height:42px;
  padding:0;
  margin:0;
  border-radius:13px;
  border:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.22);
  cursor:pointer;
  box-shadow:0 8px 18px rgba(8,127,194,.25);
}

.pnn-menu-toggle span{
  display:block;
  width:21px;
  height:2px;
  margin:4.5px auto;
  background:#fff;
  border-radius:99px;
  transition:.25s;
}

.pnn-menu-toggle:hover{
  transform:none;
  box-shadow:0 8px 18px rgba(8,127,194,.25);
}

@media(max-width:768px){

  .pnn-navbar{
    position:sticky;
    top:0;
    z-index:9999;
  }

  .pnn-navbar-inner{
    padding:11px 14px;
  }

  .pnn-brand img{
    height:38px;
  }

  .pnn-brand span{
  font-size:12px;
  max-width:190px;
  line-height:1.25;
}

  .pnn-menu-toggle{
    display:block;
    flex-shrink:0;
  }

  .pnn-nav-menu{
    display:none;
    position:absolute;
    top:100%;
    left:14px;
    right:14px;
    flex-direction:column;
    gap:8px;
    padding:12px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 18px 35px rgba(0,40,90,.16);
  }

  .pnn-nav-menu.active{
    display:flex;
  }

  .pnn-nav-menu a{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
    min-height:46px;
    padding:13px 16px;
    border-radius:14px;
    color:#063b73;
    background:linear-gradient(135deg,#fff,#eaf8ff);
    border:1px solid rgba(8,127,194,.18);
    font-size:13px;
    font-weight:900;
    line-height:1.2;
    white-space:nowrap;
    box-shadow:0 6px 14px rgba(0,70,130,.08);
  }

  .pnn-nav-menu a:hover,
  .pnn-nav-menu a:focus,
  .pnn-nav-menu a:active{
    color:#fff;
    background:linear-gradient(135deg,#087fc2,#034f92);
    box-shadow:0 10px 24px rgba(0,80,150,.25);
  }

  .pnn-nav-menu a.nav-login{
    width:100%;
    margin-left:0;
    margin-top:0;
    color:#fff;
    background:linear-gradient(135deg,#087fc2,#034f92);
    box-shadow:0 6px 14px rgba(0,70,130,.08);
  }

  .pnn-nav-menu a.nav-login:hover,
  .pnn-nav-menu a.nav-login:focus,
  .pnn-nav-menu a.nav-login:active{
    color:#fff;
    background:linear-gradient(135deg,#034f92,#087fc2);
    box-shadow:0 10px 24px rgba(0,80,150,.28);
    transform:translateY(-1px);
  }

  .pnn-menu-toggle.active span:nth-child(1){
    transform:translateY(6.5px) rotate(45deg);
  }

  .pnn-menu-toggle.active span:nth-child(2){
    opacity:0;
  }

  .pnn-menu-toggle.active span:nth-child(3){
    transform:translateY(-6.5px) rotate(-45deg);
  }

  .logo{
    display:none;
  }
}
/* ==========================================================
   HP KECIL
========================================================== */

@media(max-width:420px){

  .pnn-brand span{
    font-size:11px;
    max-width:155px;
  }


  .pnn-brand img{
    height:34px;
  }


  .pnn-menu-toggle{
    width:40px;
    height:40px;
  }

}
/* ==========================================================
   FIX BENEFIT & STEP MOBILE ALIGN
========================================================== */

@media (max-width: 768px){

  .benefit-item{
    align-items: flex-start;
  }

  .benefit-item span{
    margin-top: 1px;
    flex-shrink: 0;
  }

  .benefit-item p{
    margin: 0;
    padding-top: 1px;
  }

  .step-item{
    align-items: center;
  }

  .step-number{
    flex-shrink: 0;
  }

  .step-item p{
    margin: 0;
  }

}

@media (max-width: 480px){

  .step-item{
    align-items: center;
  }

}
/* ==========================================================
   GOOGLE MAPS PREVIEW - DAFTAR
========================================================== */

.location-auto-box{
  display: grid;
  gap: 10px;
}

.map-preview{
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(8,127,194,.18);
  background: #eef7ff;
  box-shadow: 0 10px 24px rgba(8,127,194,.10);
}

.map-preview iframe{
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.map-empty{
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  text-align: center;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.map-empty i{
  font-size: 34px;
  color: var(--blue);
}

@media (max-width: 520px){

  .map-preview,
  .map-empty{
    min-height: 190px;
  }

  .map-preview iframe{
    height: 190px;
  }

}
/* ==========================================================
   FINAL FIX MOBILE NAVBAR - MATCH LUPA BILLING
========================================================== */

@media (max-width: 768px){

  .pnn-navbar-inner{
    padding: 12px 14px;
    min-height: 64px;
  }

  .pnn-brand{
    gap: 10px;
  }

  .pnn-brand img{
    height: 38px;
  }

  .pnn-brand span{
    font-size: 12px;
    max-width: 190px;
    line-height: 1.25;
    letter-spacing: .25px;
  }

  .pnn-menu-toggle{
    width: 43px;
    height: 43px;
  }

  .pnn-menu-toggle span{
    width: 21px;
    height: 2px;
    margin: 5px auto;
  }

  .pnn-nav-menu{
    left: 14px;
    right: 14px;
    padding: 12px;
    gap: 8px;
    border-radius: 18px;
  }

  .pnn-nav-menu a{
    min-height: 46px;
    padding: 13px 16px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.2;
  }

  .pnn-nav-menu a.nav-login{
    min-height: 46px;
    padding: 13px 16px;
    border-radius: 14px;
  }

}
/* ==========================================================
   FINAL FIX DESKTOP NAVBAR - MATCH LUPA BILLING
========================================================== */

@media (min-width: 769px){

  .pnn-navbar-inner{
    max-width: 1280px;
    padding: 12px 18px;
    gap: 14px;
  }

  .pnn-brand{
    gap: 10px;
    font-size: 14px;
    letter-spacing: .4px;
  }

  .pnn-brand img{
    height: 42px;
  }

  .pnn-nav-menu{
    gap: 6px;
  }

  .pnn-nav-menu a{
    gap: 7px;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 800;
  }

  .pnn-nav-menu a.nav-login{
    margin-left: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 900;
  }
}
/* ==========================================================
   FIX VALIDATION MESSAGE - HIDE SUCCESS, ERROR DI BAWAH
========================================================== */

/* Pesan valid/sukses disembunyikan */
.validation-message.show.valid,
.validation-message.show.success{
  display:none;
}

/* Pesan error tetap tampil */
.validation-message.show.error{
  display:block;
  width:100%;
  margin-top:7px;
  padding-left:2px;
  color:#dc2626;
  font-size:12px;
  font-weight:700;
  line-height:1.45;
}

/* FIX ICON INPUT AGAR TIDAK TURUN */
.input-icon-wrap{
  position:relative;
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
}

.textarea-wrap{
  align-items:flex-start;
}

.field-icon{
  top:50%;
  transform:translateY(-50%);
}

.textarea-wrap .field-icon{
  top:17px;
  transform:none;
}
/* ==========================
   END OF FILE
========================== */
