@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Poppins:ital,wght@1,600;1,700&display=swap');

:root{
  --navy-deep:#16265c;
  --navy:#1f3a8f;
  --navy-light:#3a5bc7;
  --gold:#f5a623;
  --gold-soft:#f7b955;
  --white:#ffffff;
  --ink:#1b2440;
  --muted:#6b7390;
  --bg:#f6f7fb;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;font-family:'Poppins',sans-serif;background:transparent;color:var(--ink);}
a{text-decoration:none;color:inherit;}

/* ---------- Top bar ---------- */
.topbar{
  background:var(--navy-deep);
  color:var(--white);
  padding:18px 6vw;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{font-weight:800;font-size:1.2rem;letter-spacing:.3px;}
.brand span{color:var(--gold);}
.back-link{
  font-weight:600;
  font-size:.95rem;
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--gold-soft);
  transition:transform .2s ease;
}
.back-link:hover{transform:translateX(-4px);}

/* ---------- Services section (cards) ---------- */
.services{
  padding:80px 6vw 100px;
  max-width:1200px;
  margin:0 auto;
}
.services-head{
  text-align:center;
  max-width:620px;
  margin:0 auto 56px;
}
.services-head .eyebrow{
  color:var(--gold);
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-size:.8rem;
  margin:0 0 10px;
}
.services-head h2{
  font-size:clamp(1.8rem,4vw,2.6rem);
  font-weight:800;
  margin:0 0 14px;
  color:var(--navy-deep);
}
.services-head p{
  color:var(--muted);
  line-height:1.6;
  margin:0;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
@media (max-width:980px){
  .card-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:560px){
  .card-grid{grid-template-columns:1fr;}
}

.card{
  background:var(--white);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 6px 22px rgba(22,38,92,.08);
  display:flex;
  flex-direction:column;
  transition:transform .35s ease, box-shadow .35s ease;
  position:relative;
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 36px rgba(22,38,92,.18);
}
.card-img{
  height:170px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.card-img::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(22,38,92,0) 40%, rgba(22,38,92,.55));
}
.card-num{
  position:absolute;
  top:14px;
  left:14px;
  z-index:2;
  background:var(--gold);
  color:var(--navy-deep);
  font-weight:800;
  font-size:.75rem;
  padding:5px 11px;
  border-radius:20px;
}
.card-body{
  padding:22px 22px 26px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.card-body h3{
  margin:0 0 10px;
  font-size:1.25rem;
  font-weight:700;
  color:var(--navy-deep);
}
.card-body p{
  margin:0 0 20px;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.55;
  flex:1;
}
.card-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  font-size:.9rem;
  color:var(--navy);
  transition:gap .25s ease, color .25s ease;
}
.card-link .arrow{transition:transform .25s ease;}
.card:hover .card-link{color:var(--gold);}
.card:hover .card-link .arrow{transform:translateX(5px);}

/* ================= Responsive Detail ================= */

@media (max-width: 992px){

    .detail-hero{
        height: 40vh;
        min-height: 280px;
    }

    .detail-hero-content{
        padding: 0 30px 30px;
    }

    .detail-hero-content h1{
        font-size: 2.5rem;
    }

    .detail-body{
        padding: 50px 30px 80px;
    }

}

/* Tablet */
@media (max-width: 768px){

    .detail-hero{
        height: 38vh;
        min-height: 260px;
        background-attachment: scroll;
    }

    .detail-hero-content{
        padding: 0 20px 25px;
    }

    .detail-hero-content .tag{
        font-size: .7rem;
        padding: 5px 12px;
    }

    .detail-hero-content h1{
        font-size: 2rem;
        line-height: 1.25;
    }

    .detail-body{
        padding: 40px 20px 70px;
    }

    .detail-body h2{
        font-size: 1.25rem;
    }

    .detail-body p{
        font-size: .95rem;
    }

    .stat-row{
        grid-template-columns: repeat(2,1fr);
        gap: 15px;
    }

    .cta-bar{
        flex-direction: column;
    }

    .btn{
        width: 100%;
        justify-content: center;
    }

}

/* HP */
@media (max-width: 480px){

    .detail-hero{
        height: 34vh;
        min-height: 220px;
    }

    .detail-hero-content{
        padding: 0 15px 20px;
    }

    .detail-hero-content h1{
        font-size: 1.7rem;
    }

    .detail-body{
        padding: 35px 15px 60px;
    }

    .detail-body h2{
        font-size: 1.15rem;
    }

    .detail-body p{
        font-size: .92rem;
        line-height: 1.7;
    }

    .stat-row{
        grid-template-columns: 1fr;
    }

    .stat{
        padding: 16px;
    }

    .btn{
        padding: 14px 20px;
        font-size: .9rem;
    }

}

/* ================= ABOUT HERO ================= */

.about-hero{
    background:
        linear-gradient(rgba(30,64,175,.75),rgba(30,64,175,.75)),
        url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1600&q=80');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    height:100vh;
    position:relative;
    overflow:hidden;
}

/* Container */
.hero-content{
    width:100%;
    height:100%;
    position:relative;
}

/* Tentang Kami */
.about-hero .eyebrow{
    position:absolute;
    top:20%;
    left:8%;

    color:#F5B342;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* Judul */
.about-hero h1{
    position:absolute;
    top:28%;
    left:18%;

    width:700px;

    color:#fff;
    font-size:clamp(3rem,5vw,4.8rem);
    line-height:1.15;
    font-weight:800;
}

/* Garis bawah */
.about-hero h1::after{
    content:"";
    display:block;
    width:120px;
    height:6px;
    background:#F5B342;
    border-radius:20px;
    margin-top:20px;
}

/* Deskripsi */
.about-hero .desc{
    position:absolute;
    top:60%;
    left:8%;

    width:500px;

    color:#fff;
    font-size:1.1rem;
    line-height:1.9;
}


/* ================= BODY ================= */

.about-body{
    width:100%;
    background:#16265C;
    padding:80px 0 100px;
}

.about-container{
    max-width:1200px;
    margin:auto;
    padding:0 40px;
}


/* ================= STORY ================= */

.about-story{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:90px;
}

.about-story img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.about-story h2{
    color:#fff;
    font-size:2rem;
    margin-bottom:20px;
}

.about-story p{
    color:rgba(255,255,255,.85);
    line-height:1.8;
}


/* ================= HEAD ================= */

.services-head{
    text-align:center;
    margin-bottom:40px;
}

.services-head .eyebrow{
    color:var(--gold-soft);
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
}

.services-head h2{
    color:#fff;
    margin-top:10px;
}


/* ================= VALUES ================= */

.value-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:90px;
}

.value-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.value-card .icon{
    width:55px;
    height:55px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.5rem;
    background:#FFF3D8;
    margin-bottom:18px;
}

.value-card h3{
    color:#16265C;
    margin-bottom:12px;
}

.value-card p{
    color:#666;
    line-height:1.7;
}


/* ================= STATS ================= */

.stats-band{
    background:linear-gradient(135deg,#203b91,#16265C);
    border-radius:20px;
    padding:50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    text-align:center;
    margin-bottom:90px;
}

.stats-band .num{
    font-size:2.5rem;
    font-weight:bold;
    color:var(--gold-soft);
}

.stats-band .label{
    color:#fff;
    margin-top:10px;
}


/* ================= TEAM ================= */

.team-grid{
    display:flex;
    justify-content:center;
}

.team-card{
    text-align:center;
}

.team-card img{
    width:260px;
    height:260px;
    border-radius:18px;
    object-fit:cover;
    margin-bottom:15px;
}

.team-card h4{
    color:#fff;
    margin-bottom:8px;
}

.team-card span{
    color:rgba(255,255,255,.8);
}


/* ================= RESPONSIVE ================= */

@media (max-width:768px){

    .about-container{
        padding:0 20px;
    }

    .about-story{
        grid-template-columns:1fr;
    }

    .value-grid{
        grid-template-columns:1fr;
    }

    .stats-band{
        grid-template-columns:repeat(2,1fr);
        padding:35px 20px;
    }
}
 
/* ---------- Detail page ---------- */
.detail-hero{
  position:relative;
  height:46vh;
  min-height:320px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
}
.detail-hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(18,30,75,.35), rgba(18,30,75,.92));
}
.detail-hero-content{
  position:relative;
  z-index:2;
  color:var(--white);
  padding:0 6vw 40px;
  max-width:900px;
}
.detail-hero-content .tag{
  display:inline-block;
  background:var(--gold);
  color:var(--navy-deep);
  font-weight:700;
  font-size:.75rem;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:14px;
}
.detail-hero-content h1{
  font-size:clamp(2.2rem,5vw,3.4rem);
  font-weight:800;
  margin:0;
}
 
.detail-body{
  max-width:900px;
  margin:0 auto;
  padding:56px 6vw 100px;
}
.detail-body h2{
  font-size:1.4rem;
  font-weight:700;
  color:var(--navy-deep);
  margin:36px 0 14px;
}
.detail-body h2:first-of-type{margin-top:0;}
.detail-body p{
  color:var(--muted);
  line-height:1.75;
  margin:0 0 16px;
}
.stat-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:30px 0 10px;
}
@media (max-width:600px){.stat-row{grid-template-columns:1fr;}}
.stat{
  background:var(--white);
  border:1px solid #e9ebf3;
  border-radius:14px;
  padding:18px 20px;
}
.stat .label{font-size:.78rem;color:var(--muted);font-weight:600;text-transform:uppercase;letter-spacing:.5px;}
.stat .value{font-size:1.15rem;font-weight:800;color:var(--navy-deep);margin-top:4px;}
 
.list{
  list-style:none;
  margin:0 0 20px;
  padding:0;
  display:grid;
  gap:12px;
}
.list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--ink);
  line-height:1.5;
  font-size:.96rem;
}
.list li::before{
  content:'✓';
  flex:none;
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--gold);
  color:var(--navy-deep);
  font-weight:800;
  font-size:.75rem;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:2px;
}
 
.cta-bar{
  margin-top:40px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 28px;
  border-radius:40px;
  font-weight:700;
  font-size:.95rem;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary{
  background:var(--gold);
  color:var(--navy-deep);
  border:2px solid var(--gold);
}
.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(245,166,35,.35);
  background:var(--gold-soft);
}
.btn-outline{
  background:transparent;
  color:var(--navy-deep);
  border:2px solid var(--navy-deep);
}
.btn-outline:hover{
  transform:translateY(-3px);
  background:rgba(22,38,92,.06);
}

/* ---------- Contact page ---------- */
.contact-hero{
  position:relative;
  padding:90px 6vw 20px;  
  text-align:center;
  color:var(--white);
}
.contact-hero .eyebrow{
  color:var(--gold-soft);
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-size:.8rem;
  margin:0 0 12px;
}
.contact-hero h1{
  font-size:clamp(2.2rem,5vw,3.2rem);
  font-weight:800;
  margin:0 0 16px;
}
.contact-hero p{
  max-width:560px;
  margin:0 auto;
  line-height:1.7;
  opacity:.92;
}
 
.contact-body{
  max-width:1100px;
  margin:0 auto;
  padding:0 6vw 100px;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:50px;
}
@media (max-width:860px){
  .contact-body{grid-template-columns:1fr;}
}
 
.contact-info h2{
  font-size:1.5rem;
  font-weight:800;
  color:var(--navy-deep);
  margin:0 0 14px;
}
.contact-info > p{
  color:var(--muted);
  line-height:1.7;
  margin:0 0 30px;
}
 
.info-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  margin-bottom:24px;
}
.info-item .ico{
  flex:none;
  width:46px;
  height:46px;
  border-radius:12px;
  background:rgba(245,166,35,.14);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.25rem;
}
.info-item h4{
  margin:0 0 4px;
  font-size:.98rem;
  font-weight:700;
  color:var(--navy-deep);
}
.info-item p, .info-item a{
  margin:0;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.55;
}
.info-item a:hover{color:var(--navy);}
 
.social-row{
  display:flex;
  gap:12px;
  margin-top:30px;
}
.social-row a{
  width:42px;
  height:42px;
  border-radius:50%;
  border:2px solid var(--navy-deep);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.05rem;
  color:var(--navy-deep);
  transition:all .25s ease;
}
.social-row a:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--navy-deep);
  transform:translateY(-3px);
}
 
.contact-form{
  background:var(--white);
  border-radius:20px;
  padding:36px;
  box-shadow:0 18px 40px rgba(22,38,92,.1);
}
.contact-form h2{
  font-size:1.3rem;
  font-weight:800;
  color:var(--navy-deep);
  margin:0 0 22px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:16px;
}
@media (max-width:520px){
  .form-row{grid-template-columns:1fr;}
}
.field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:16px;
}
.field label{
  font-size:.82rem;
  font-weight:600;
  color:var(--navy-deep);
}
.field input,
.field select,
.field textarea{
  border:1.5px solid #e3e6f0;
  border-radius:10px;
  padding:12px 14px;
  font-family:'Poppins',sans-serif;
  font-size:.92rem;
  color:var(--ink);
  background:#fbfbfd;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(245,166,35,.15);
  background:var(--white);
}
.field textarea{resize:vertical;min-height:110px;}
 
.submit-btn{
  width:100%;
  border:none;
  font-family:'Poppins',sans-serif;
}
 
.map-wrap{
  margin-top:60px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(22,38,92,.1);
}
.map-wrap iframe{
  width:100%;
  height:340px;
  border:0;
  display:block;
}
 
.form-success{
  display:none;
  align-items:center;
  gap:10px;
  background:rgba(76,175,80,.12);
  color:#2e7d32;
  border-radius:10px;
  padding:14px 16px;
  font-size:.9rem;
  font-weight:600;
  margin-bottom:16px;
}
.form-success.show{display:flex;}
 
/* ---------- Detail page ---------- */
.detail-hero{
  position:relative;
  height:46vh;
  min-height:320px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
}
.detail-hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(18,30,75,.35), rgba(18,30,75,.92));
}
.detail-hero-content{
  position:relative;
  z-index:2;
  color:var(--white);
  padding:0 6vw 40px;
  max-width:900px;
}
.detail-hero-content .tag{
  display:inline-block;
  background:var(--gold);
  color:var(--navy-deep);
  font-weight:700;
  font-size:.75rem;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:14px;
}
.detail-hero-content h1{
  font-size:clamp(2.2rem,5vw,3.4rem);
  font-weight:800;
  margin:0;
}
 
.detail-body{
  max-width:900px;
  margin:0 auto;
  padding:56px 6vw 100px;
}
.detail-body h2{
  font-size:1.4rem;
  font-weight:700;
  color:var(--navy-deep);
  margin:36px 0 14px;
}
.detail-body h2:first-of-type{margin-top:0;}
.detail-body p{
  color:var(--muted);
  line-height:1.75;
  margin:0 0 16px;
}
.stat-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:30px 0 10px;
}
@media (max-width:600px){.stat-row{grid-template-columns:1fr;}}
.stat{
  background:var(--white);
  border:1px solid #e9ebf3;
  border-radius:14px;
  padding:18px 20px;
}
.stat .label{font-size:.78rem;color:var(--muted);font-weight:600;text-transform:uppercase;letter-spacing:.5px;}
.stat .value{font-size:1.15rem;font-weight:800;color:var(--navy-deep);margin-top:4px;}
 
.list{
  list-style:none;
  margin:0 0 20px;
  padding:0;
  display:grid;
  gap:12px;
}
.list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--ink);
  line-height:1.5;
  font-size:.96rem;
}
.list li::before{
  content:'✓';
  flex:none;
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--gold);
  color:var(--navy-deep);
  font-weight:800;
  font-size:.75rem;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:2px;
}
 
.cta-bar{
  margin-top:40px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 28px;
  border-radius:40px;
  font-weight:700;
  font-size:.95rem;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary{
  background:var(--gold);
  color:var(--navy-deep);
  border:2px solid var(--gold);
}
.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(245,166,35,.35);
  background:var(--gold-soft);
}
.btn-outline{
  background:transparent;
  color:var(--navy-deep);
  border:2px solid var(--navy-deep);
}
.btn-outline:hover{
  transform:translateY(-3px);
  background:rgba(22,38,92,.06);
}