*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {

    --navy:       #0f1829;
    --navy-mid:   #172034;
    --navy-light: #1e2d47;
    --gold:       #c99a2e;
    --gold-light: #e8b84b;
    --white:      #ffffff;
    --text:       #e8edf5;
    --muted:      rgba(232,237,245,0.55);
    --border:     rgba(255,255,255,0.08);
    --radius:     0px;

    /* FONT */
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Playfair Display', serif;

}

html{
    scroll-behavior:smooth;
}

body{

    background:var(--white);
    color:#1a2540;
    line-height:1.6;
    overflow-x:hidden;

    font-family:var(--body-font);

}

/* Semua heading */
.serif,
h1,
h2,
h3,
h4,
h5,
h6{

    font-family:var(--heading-font);

}

/* ─── CONTAINER ─────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ─── NAVBAR ────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 20px 0;
  transition: all .35s ease;
}
#navbar.scrolled {
  background: rgba(15,24,41,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}
.nav-brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    cursor:pointer;

    flex:0 0 auto;
}
.nav-brand svg { width: 28px; height: 28px; color: var(--gold); }
.nav-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--white);
  letter-spacing: -.5px;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.8); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.btn-nav {
  background: var(--gold); color: var(--navy);
  padding: 10px 22px; font-weight: 700; font-size: .875rem;
  border: none; cursor: pointer; text-decoration: none;
  transition: background .2s;
  letter-spacing: .02em;
}
.btn-nav:hover { background: var(--gold-light); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy-mid);
  padding: 24px;
  border-top: 1px solid var(--border);
  gap: 16px;
}
.mobile-menu a {
  color: var(--text); text-decoration: none;
  font-size: 1rem; font-weight: 500;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn-nav { margin-top: 8px; display: inline-block; text-align: center; }

/*LOGO*?
/* Logo Navbar */
.logo-pugar{
    display:block;
    width:auto;
    height:60px;
    max-width:none;
    object-fit:contain;
}

/* ─── HERO ──────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1120 0%, #0f1829 50%, #172034 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
  padding: 120px 0 80px;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .05;
  background-image: repeating-linear-gradient(45deg,
    #c99a2e 0, #c99a2e 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.hero-line-v {
  position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: .35;
}
.hero-line-h {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: .25;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(201,154,46,.4);
  background: rgba(201,154,46,.1);
  color: var(--gold); font-size: .875rem; font-weight: 500;
  margin-bottom: 32px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800; color: var(--white); line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title .gold { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem; color: rgba(232,237,245,.7);
  max-width: 620px; margin: 0 auto 40px; line-height: 1.75;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 16px 36px; font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-block; transition: background .2s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 15px 36px; font-weight: 600; font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,.4); cursor: pointer;
  text-decoration: none; display: inline-block; transition: background .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.08); }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 32px; max-width: 540px; margin: 60px auto 0;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: .7rem; color: rgba(232,237,245,.55);
  text-transform: uppercase; letter-spacing: .12em; margin-top: 6px;
}
.scroll-down {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.4); animation: bounce 1.5s infinite;
  cursor: pointer; background: none; border: none;
}
.scroll-down svg { width: 32px; height: 32px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }

/* ─── SECTIONS COMMON ───────────────────────────────── */
section { padding: 96px 0; }
.section-label {
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.2; margin-bottom: 0;
}
.section-center { text-align: center; }
.section-center .section-title { margin-bottom: 16px; }
.section-sub {
  color: #5a6a8a; font-size: 1.05rem;
  max-width: 560px; margin: 12px auto 0;
}

/* fade-in on scroll */
.fade-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ─── ABOUT ─────────────────────────────────────────── */
#tentang { background: #f8fafd; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-navy { color: #1e3a5f; }
.about-text { font-size: 1.05rem; color: #4a5a7a; line-height: 1.8; margin-bottom: 20px; }
.about-divider {
  display: flex; align-items: center; gap: 16px; margin-top: 32px;
}
.about-divider-line { flex: 1; height: 1px; background: var(--gold); }
.about-divider-text {
  font-style: italic; font-family: 'Playfair Display', serif;
  font-size: .85rem; color: #7a8a9a; padding: 0 8px;
}
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pillar-card {
  padding: 24px; border: 1px solid #e0e8f0; background: var(--white);
  transition: box-shadow .2s;
}
.pillar-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.pillar-icon {
  width: 40px; height: 40px; background: var(--navy); display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.pillar-icon svg { width: 20px; height: 20px; color: var(--gold); }
.pillar-title { font-weight: 700; font-size: .95rem; color: #1a2540; margin-bottom: 8px; }
.pillar-desc { font-size: .85rem; color: #5a6a8a; line-height: 1.6; }

/* ─── SERVICES ──────────────────────────────────────── */
#layanan {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
#layanan .section-title, #layanan .section-sub { color: var(--white); }
#layanan .section-sub { color: rgba(255,255,255,.55); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.service-card {
  padding: 40px; border: 1px solid rgba(201,154,46,.25);
  position: relative; overflow: hidden;
  transition: border-color .25s;
}
.service-card:hover { border-color: rgba(201,154,46,.55); }
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--gold); opacity: .04;
  transform: translate(40%, -40%);
}
.service-type {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--gold); margin-bottom: 12px;
}
.service-icon {
  width: 52px; height: 52px; background: var(--gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--navy); }
.service-alt .service-icon {
  background: transparent; border: 1px solid rgba(255,255,255,.2);
}
.service-alt .service-icon svg { color: rgba(255,255,255,.6); }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.service-text { color: rgba(255,255,255,.55); line-height: 1.75; font-size: .95rem; }
.service-list { list-style: none; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07); }
.service-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem; color: rgba(255,255,255,.65); padding: 5px 0;
}
.service-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ─── INSTRUCTORS ───────────────────────────────────── */
#pengajar { background: var(--white); }
.instructors-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px;
}
.instructor-card {
  padding: 32px; border: 1px solid #e0e8f0;
  position: relative; overflow: hidden;
  transition: box-shadow .25s;
}
.instructor-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--gold);
}
.instructor-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.09); }
.instructor-avatar {
  width: 52px; height: 52px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--gold);
  margin-bottom: 20px;
}
.instructor-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1rem; color: #1a2540;
  line-height: 1.4; margin-bottom: 12px;
}
.instructor-divider { width: 28px; height: 2px; background: var(--gold); margin-bottom: 16px; }
.instructor-creds { font-size: .82rem; color: #5a6a8a; line-height: 1.65; }
.instructor-tag {
  display: flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold); margin-top: 20px;
}
.instructor-tag svg { width: 15px; height: 15px; }

.instructor-photo{
    width:96px;
    height:96px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    margin-bottom:24px;

    border:4px solid #D4AF37;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* ─── PROGRAMS ──────────────────────────────────────── */
#pelatihan {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
#pelatihan .section-title { color: var(--white); }
#pelatihan .section-sub { color: rgba(255,255,255,.55); }
.programs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.05);
  margin-top: 48px;
}
.program-card {
  padding: 36px; background: #0f1829;
  position: relative; overflow: hidden;
  cursor: pointer; transition: background .2s;
}
.program-card:hover { background: #172034; }
.program-card:hover .program-arrow { opacity: 1; }
.program-card:hover .program-line { width: 100%; }
.program-num {
  position: absolute; top: 28px; right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 800;
  color: var(--gold); opacity: .08;
  transition: opacity .2s;
  line-height: 1;
}
.program-card:hover .program-num { opacity: .18; }
.program-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--gold); margin-bottom: 12px;
}
.program-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  line-height: 1.4; margin-bottom: 16px; padding-right: 48px;
}
.program-desc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.program-arrow {
  display: flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold);
  opacity: 0; transition: opacity .2s;
}
.program-arrow svg { width: 14px; height: 14px; }
.program-line {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: var(--gold); width: 0; transition: width .5s ease;
}

/* ─── CONTACT ───────────────────────────────────────── */
#kontak { background: #f8fafd; }
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; margin-top: 48px; }
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: #1a2540; margin-bottom: 28px;
}
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item-icon {
  width: 40px; height: 40px; flex-shrink: 0; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-item-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: #8a9aaa; margin-bottom: 4px;
}
.contact-item-val { font-size: .9rem; color: #1a2540; line-height: 1.5; }
.contact-quote {
  margin-top: 32px; padding: 20px 20px 20px 24px;
  background: var(--navy);
  border-left: 4px solid var(--gold);
}
.contact-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-style: italic; color: var(--white); line-height: 1.6;
}
.contact-quote span { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 8px; display: block; }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: #7a8a9a; margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid #dde6f0; background: var(--white);
  font-size: .9rem; font-family: 'Inter', sans-serif;
  color: #1a2540; outline: none;
  transition: border-color .2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; background: var(--navy); color: var(--white);
  padding: 16px; font-size: 1rem; font-weight: 700;
  border: none; cursor: pointer; letter-spacing: .04em;
  transition: background .2s;
}
.btn-submit:hover { background: var(--navy-light); }
.form-success {
  display: none; text-align: center; padding: 48px 24px;
  border: 1px solid var(--gold);
}
.form-success-icon {
  width: 60px; height: 60px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--navy); margin: 0 auto 16px;
}
.form-success h3 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #1a2540; margin-bottom: 8px;
}
.form-success p { color: #5a6a8a; }

/* ─── FOOTER ────────────────────────────────────────── */
footer {
  background: #070e1a;
  border-top: 1px solid rgba(201,154,46,.15);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand svg { width: 26px; height: 26px; color: var(--gold); }
.footer-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--white);
}
.footer-full { font-size: .8rem; color: rgba(255,255,255,.35); margin-bottom: 6px; }
.footer-tagline { font-family: 'Playfair Display', serif; font-size: .9rem; font-style: italic; color: rgba(255,255,255,.55); }
.footer-heading {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--gold); margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .875rem; color: rgba(255,255,255,.45); text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.25); }
.footer-badge {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold);
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .instructors-grid { grid-template-columns: 1fr 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .btn-nav.desktop { display: none; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: 1fr; gap: 24px; }
  .pillars { grid-template-columns: 1fr; }
  .instructors-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}


