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

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

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

:root {
  --navy:         #1a2a5e;
  --navy-dark:    #12204a;
  --orange:       #e87722;
  --white:        #ffffff;
  --grey-line:    rgba(255,255,255,0.15);
  --dropdown-bg:  #ffffff;
  --dropdown-text:#4A4949;
  --font-main:    'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  background: #f0f2f5;
}

/* ═══════════════════════════════════════
   HEADER / NAVBAR
═══════════════════════════════════════ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.navbar {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 80px;
  position: relative;
  z-index: 1000;
}

/* pushes nav + CTA to the far right */
.navbar__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}

/* ── Logo ── */
.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
}

.navbar__logo img {
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

/* ──Hamburger (hidden on desktop) ── */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 1100;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

/* Animate to X when open */
.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav links ── */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding-right: 20px;
}

.navbar__nav > li {
  position: relative;
}

.navbar__nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  padding: 0 14px;
  height: 80px;
  transition: background 0.2s;
  white-space: nowrap;
}

.navbar__nav > li > a:hover,
.navbar__nav > li.active > a {
  background: rgba(255,255,255,0.08);
}

/* chevron icon */
.chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--white);
  transition: transform 0.2s;
}

.navbar__nav > li:hover .chevron {
  transform: rotate(180deg);
}

/* ── Dropdown (desktop: CSS hover) ── */
.dropdown {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  min-width: 240px;
  background: var(--dropdown-bg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 2000;
  padding: 0px 0;
}

.navbar__nav > li:hover .dropdown {
  display: block;
}

.dropdown__item {
  display: block;
  padding: 14px 24px;
  color: var(--dropdown-text);
  font-family: var(--font-main);
  font-size: 0.9rem;
  text-decoration: none;
  #border-bottom: 1px solid #e8eaf0;
  transition: background 0.15s, color 0.15s;
}

.dropdown__item:last-child {
  border-bottom: none;
}

.dropdown__item:hover {
  background: #f3f3f3;
  color: var(--orange);
}

/* ── CTA Button ── */
.navbar__cta {
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.3;
  text-align: center;
  border-radius: 10px;
}

.navbar__cta:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-back-wrap {
  padding: 16px 30px 0;
}
 
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  border: 1.5px solid;
}
 
/* ── Navy version (default — on white backgrounds) ── */
.btn-back--navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
 
.btn-back--navy:hover {
  background: var(--navy);
  color: var(--white);
}
 
/* ── White version (on dark/image/colored backgrounds) ── */
.btn-back--white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
 
.btn-back--white:hover {
  background: var(--white);
  color: var(--navy);
}
 
@media (max-width: 768px) {
  .btn-back-wrap {
    padding: 20px 24px 0;
  }
}

/* ═══════════════════════════════════════
   HERO PLACEHOLDER
═══════════════════════════════════════ */
.hero-placeholder {
  background: linear-gradient(to bottom, transparent, #1D245E 100%),
              url('images/background_homepage.webp') center 0px /cover no-repeat;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-placeholder__inner {
  text-align: center;
  color: var(--white);
  font-family: var(--font-main);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Hero logo — sits centered above the heading */
.hero-placeholder__logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin-bottom: 8px;
}

.hero-placeholder__inner p {
  opacity: 1;
  margin-top: 8px;
}

.hero-placeholder__title {
  font-family: var(--font-main);
  font-size: 50px;
  font-weight: 700;
}

.hero-placeholder__desc {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 400;
  margin: 20px auto 0;
  padding: 0 120px;
  max-width: 900px;
}


/* ═══════════════════════════════════════
   STATS BAR
═══════════════════════════════════════ */
.stats-bar {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 48px 80px;
  gap: 0;
}

.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-right: 24px;
}

.stats-bar__number {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}

.stats-bar__label {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.4;
  text-align: center;
}

/* ═══════════════════════════════════════
   ACCREDITATION BANNER
═══════════════════════════════════════ */
.accreditation {
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 52px 40px;
  gap: 10px;
}

.accreditation__title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.01em;
}

.accreditation__sub {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.12em;
}


/* ═══════════════════════════════════════
   MENGAPA INFORMATIKA
═══════════════════════════════════════ */
.mengapa {
  background: #ffffff;
  padding: 72px 72px 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mengapa__heading {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  text-align: left;
  margin-bottom: 48px;
}

.mengapa__question {
  color: var(--orange);
}

/* ── Each row is a 2-col grid ── */
.mengapa__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.mengapa__row:last-child {
  margin-bottom: 0;
}



/* ── Image containers ── */
/* Images fill their column and maintain their aspect ratio.
   Swap the src to any image — it will always fill this box. */
.mengapa__image-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
}

.mengapa__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Tall variant (rows 1 & 3) — portrait feel */
.mengapa__image-wrap--tall {
  aspect-ratio: 2 / 1;
}

/* Medium variant (row 2) — landscape feel */
.mengapa__image-wrap--medium {
  aspect-ratio: 2 / 1;
  align-self: center;
}

/* ── Text block ── */
.mengapa__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8px;
}

.mengapa__subtitle {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.mengapa__subtitle--orange {
  color: var(--orange);
}

.mengapa__body {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #444444;
  line-height: 1.75;
  margin-bottom: 14px;
}

.mengapa__body:last-child {
  margin-bottom: 0;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .mengapa {
    padding: 56px 40px 64px;
  }
  .mengapa__row {
    gap: 32px;
  }
  .mengapa__subtitle {
    font-size: 1.3rem;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .mengapa {
    padding: 40px 24px 48px;
  }
  .mengapa__heading {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }
  .mengapa__row,
  .mengapa__row--reverse {
    grid-template-columns: minmax(0, 1fr);
    direction: ltr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .mengapa__image-wrap--tall,
  .mengapa__image-wrap--medium {
    aspect-ratio: 4 / 3;
  }
  .mengapa__image-wrap {
    order: 1;
  }
  .mengapa__text {
    order: 2;
  }
  .mengapa__subtitle {
    font-size: 1.2rem;
  }
}

/* ═══════════════════════════════════════
   PEMINATAN
═══════════════════════════════════════ */
.peminatan {
  background: linear-gradient(to bottom, var(--orange) 0%, var(--navy) 100%);
  padding: 56px 48px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.peminatan__heading {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
}

/* 3-column grid for the cards — centered */
.peminatan__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  align-items: start;
}

/* ── Card stagger ── */
.peminatan__card--high {
  margin-top: 0;
}
.peminatan__card--low {
  margin-top: 60px;
}

/* ── Card: just a column container, no bg, no overflow ── */
.peminatan__card {
  display: flex;
  flex-direction: column;
  background: transparent;
}

/* ── Image box: fully independent, rounded top corners ── */
.peminatan__card-image {
  width: 100%;
  height: 360px;
  border-radius: 14px 14px 14px 14px;
  overflow: hidden;
  background: #c0c8dd;
  flex-shrink: 0;
}

.peminatan__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Body box: fully independent, rounded bottom corners ── */
.peminatan__card-body {
  background: transparent;
  border-radius: 0 0 14px 14px;
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.peminatan__card-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1rem;
  color: white;
  line-height: 1.3;
}

.peminatan__card-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: white;
  line-height: 1.65;
  flex: 1;
  text-align: justify;
}

/* ── BACA SELENGKAPNYA button ── */
.peminatan__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.75rem;
  color: white;
  text-decoration: none;
  letter-spacing: 0.06em;
  border: 1.5px solid white;
  border-radius: 999px;
  padding: 7px 14px;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}

.peminatan__card-btn:hover {
  background: var(--white);
  color: var(--navy);
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .peminatan {
    padding: 48px 32px 64px;
  }
  .peminatan__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .peminatan__card--low {
    margin-top: 40px;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .peminatan {
    padding: 40px 20px 56px;
  }
  .peminatan__heading {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }
  .peminatan__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .peminatan__card--low {
    margin-top: 0;
  }
  .peminatan__card-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}


/* ═══════════════════════════════════════
   PENGAJAR
═══════════════════════════════════════ */
.pengajar {
  background: var(--navy);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 64px 0 64px 60px;
  overflow: hidden;
  position: relative;
}

/* Full-height gradient on the left side of the section */
.pengajar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 520px;
  height: 100%;
  background: linear-gradient(to right, var(--navy) 50%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* ── Left panel ── */
.pengajar__left {
  flex-shrink: 0;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 40px;
  position: relative;
  z-index: 4;
}

.pengajar__title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--orange);
  line-height: 1.25;
}

.pengajar__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  border: 1.5px solid var(--white);
  border-radius: 999px;
  padding: 8px 16px;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}

.pengajar__btn:hover {
  background: var(--white);
  color: var(--navy);
}

/* ── Carousel wrapper ── */
.pengajar__carousel-wrapper {
  flex: 1;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  position: relative;
}

.pengajar__carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.pengajar__carousel {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: max-content;
}

/* ── Individual card ── */
.pengajar__card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pengajar__card-image {
  width: 360px;
  height: 400px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background: #2e3f7a;
}

.pengajar__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.pengajar__card-name {
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  padding-top: 8px; 
  text-align: center;
  font-style: italic;
  width: 360px;
}

.pengajar__card-jabatan {
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-style: italic;
  margin-top: 6px;
  width: 360px;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .pengajar {
    padding: 56px 0 56px 40px;
  }
  .pengajar__left {
    width: 220px;
  }
  .pengajar__title {
    font-size: 1.3rem;
  }
  .pengajar::before {
    width: 340px;
  }
  .pengajar__card-image {
    width: 260px;
    height: 300px;
  }
  .pengajar__card-name,
  .pengajar__card-jabatan {
    width: 260px;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .pengajar {
    flex-direction: column;
    padding: 40px 24px;
    gap: 32px;
  }
  .pengajar__left {
    width: 100%;
    padding-right: 0;
  }
  .pengajar__carousel-wrapper {
    width: 100%;
  }
  .pengajar::before {
    display: none;
  }
  .pengajar__card-image {
    width: 220px;
    height: 260px;
  }
  .pengajar__card-name {
    font-size: 0.82rem;
    width: 220px;
  }
  .pengajar__card-jabatan {
    font-size: 0.72rem;
    width: 220px;
  }
}


/* ═══════════════════════════════════════
   BERITA
═══════════════════════════════════════ */
.berita {
  background: #ffffff;
  padding: 24px 60px;
}

/* ── Header row ── */
.berita__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.berita__heading {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--navy);
}

.berita__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--navy);
  background: linear-gradient(to right, var(--navy), var(--orange)) text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--navy);
  background-clip: text;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 10px 10px 10px 22px;
  background-image: linear-gradient(white, white),
                    linear-gradient(to right, var(--navy), var(--orange));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: background 0.2s, color 0.2s, -webkit-text-fill-color 0.2s;
}

.berita__btn:hover {
  background-image: linear-gradient(to right, var(--navy), var(--orange)),
                    linear-gradient(to right, var(--navy), var(--orange));
  -webkit-text-fill-color: var(--white);
}

/* ── Main grid ── */
.berita__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

/* ── Featured article (left) ── */
.berita__featured-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  background: #d0d5e8;
  margin-bottom: 16px;
}

.berita__featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.berita__featured-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.berita__featured-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.35;
  text-transform: uppercase;
}

/* ── Tags ── */
.berita__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.berita__tag {
  background: linear-gradient(to right, var(--navy) 0%, var(--orange) 100%);
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Arrow button ── */
.berita__arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--navy);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
  align-self: flex-start;
  flex-shrink: 0;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(to right, var(--navy), var(--orange)) border-box;
  border: 1.5px solid transparent;
}

.berita__arrow-btn:hover {
  background: linear-gradient(to right, var(--navy), var(--orange)) padding-box,
              linear-gradient(to right, var(--navy), var(--orange)) border-box;
  color: var(--white);
}

/* ── Small articles list (right) ── */
.berita__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.berita__item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px 0;
}

.berita__item-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #d0d5e8;
  flex-shrink: 0;
}

.berita__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.berita__item-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.berita__item-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.4;
  text-transform: uppercase;
}

.berita__divider {
  border: none;
  border-top: 1px solid #e0e3ee;
  margin: 0;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .berita {
    padding: 48px 32px;
  }
  .berita__item {
    grid-template-columns: 140px minmax(0, 1fr);
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .berita {
    padding: 40px 24px;
  }
  .berita__heading {
    font-size: 1.6rem;
  }
  .berita__header {
    gap: 12px;
  }
  .berita__btn {
    font-size: 0.62rem;
    gap: 6px;
    padding: 8px 8px 8px 14px;
    white-space: nowrap;
  }
  .berita__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .berita__item {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
  }
  .berita__featured-title {
    font-size: 1rem;
  }
}


/* ═══════════════════════════════════════
   APA KATA ALUMNI
═══════════════════════════════════════ */
.alumni {
  background: var(--navy);
  padding: 64px 60px;
}

.alumni__heading {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 40px;
}

/* ── Carousel wrapper ── */
.alumni__carousel-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.alumni__carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.alumni__carousel {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
}

/* ── Card ── */
.alumni__card {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(to bottom, transparent 0%, var(--orange) 100%);
  min-height: 260px;
  width: 640px;
  position: relative;
}

/* ── Photo ── */
.alumni__card-image {
  width: 240px;
  aspect-ratio: 3 / 4;
  padding: 16px 8px 16px 16px;
  display: flex;
  align-items: center;
  align-self: start;
}

.alumni__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: flex;
  border-radius: 12px;
}

/* ── Text content ── */
.alumni__card-content {
  padding: 28px 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  text-align: justify;
}

.alumni__quote {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
  line-height: 1.6;
  flex: 1;
}

.alumni__name {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--white);
  font-style: italic;
}

.alumni__jabatan {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--white);
  font-style: italic;
  margin-top: auto;
}

.alumni__angkatan {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  text-align: right;
  margin-top: auto;
  padding-top: 12px;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .alumni {
    padding: 48px 32px;
  }
  .alumni__heading {
    font-size: 2.2rem;
  }
  .alumni__card {
    grid-template-columns: 150px minmax(0, 1fr);
    width: 480px;
  }
  .alumni__card-image {
    width: 150px;
    aspect-ratio: 3 / 4;
  }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .alumni {
    padding: 40px 24px;
  }
  .alumni__heading {
    font-size: 1.8rem;
  }
  .alumni__card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    min-height: 0;
    width: calc(100vw - 48px);
  }
  .alumni__card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    padding: 0;
  }
  .alumni__card-image img {
    border-radius: 0;
  }
  .alumni__card-content {
    padding: 16px 20px 20px;
  }
  .alumni__quote {
    font-size: 0.85rem;
  }
}


/* ═══════════════════════════════════════
   CEK INSTAGRAM
═══════════════════════════════════════ */
.instagram {
  background: linear-gradient(to bottom, transparent 50%, var(--orange) 100%),
              url('images/handphone.webp') right top / cover no-repeat;
  min-height: 700px;
  align-items: center;
  justify-content: space-between;
  display: flex;
  overflow: hidden;
}

/* ── Left panel ── */
.instagram__left {
  position: relative;
  z-index: 1;
  padding: 64px 40px 64px 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  flex: 0 1 50%;
  box-sizing: border-box;
}

.instagram__heading {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--navy);
  line-height: 1.0;
}

.instagram__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  text-decoration: none;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  padding: 9px 18px;
  transition: background 0.2s, color 0.2s;
}

.instagram__btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Right panel (kept as a spacer so the left text column stays
     width-limited; the phone image itself lives on the section
     background above, where it has room to be enlarged) ── */
.instagram__right {
  position: relative;
  z-index: 1;
  align-self: stretch;
  flex: 1 1 50%;
  min-width: 0;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .instagram {
    min-height: 560px;
  }
  .instagram__heading {
    font-size: 2.4rem;
  }
  .instagram__left {
    padding: 48px 32px 48px 40px;
    flex-basis: 48%;
  }
  .instagram__right {
    flex-basis: 52%;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .instagram {
    min-height: 300px;
  }
  .instagram__left {
    padding: 40px 16px 40px 24px;
    gap: 22px;
    flex-basis: 54%;
  }
  .instagram__heading {
    font-size: 1.7rem;
  }
  .instagram__btn {
    font-size: 0.78rem;
    padding: 8px 14px;
  }
  .instagram__right {
    flex-basis: 46%;
  }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
  .instagram {
    min-height: 230px;
  }
  .instagram__left {
    padding: 32px 12px 32px 16px;
    gap: 16px;
  }
  .instagram__heading {
    font-size: 1.35rem;
  }
  .instagram__btn {
    font-size: 0.72rem;
    padding: 7px 12px;
    gap: 6px;
  }
}

/* ═══════════════════════════════════════
   LEBIH LANJUT TENTANG KAMI
═══════════════════════════════════════ */
.lebihlanjut {
  background: linear-gradient(to bottom, var(--orange) 0%, var(--navy) 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lebihlanjut__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  padding: 80px 40px;
}

.lebihlanjut__heading {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 3.6rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.lebihlanjut__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  border: 1.5px solid var(--white);
  border-radius: 999px;
  padding: 9px 20px;
  transition: background 0.2s, color 0.2s;
}

.lebihlanjut__btn:hover {
  background: var(--white);
  color: var(--navy);
}

@media (max-width: 768px) {
  .lebihlanjut {
    min-height: 400px;
  }
  .lebihlanjut__heading {
    font-size: 2.4rem;
  }
  .lebihlanjut__inner {
    padding: 60px 24px;
  }
}

@media (max-width: 480px) {
  .lebihlanjut__heading {
    font-size: 2rem;
  }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: var(--white);
  border-top: 1.5px solid rgba(255,255,255,0.35);
  padding: 0;
}

.footer__main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 124px;
  padding: 52px 60px 1px;
  align-items: start;
}

/* ── Brand column ── */

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  img { align-self: center; }
}

.footer__brand-title {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2px;
}

.footer__brand-name {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}

/* ── Nav columns ── */
.footer__col-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: color 0.15s;
}

.footer__links a:hover {
  color: var(--orange);
}

/* ── Contact & Address row ── */
.footer__bottom-info {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  padding: 1px 60px 48px;
  border-bottom: 1px solid var(--grey-line);
  align-items: start;
}

.footer__contact-group p {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer__address-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__address-text {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.7;
}

/* ── Copyright bar ── */
.footer__copyright {
  text-align: center;
  padding: 22px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════
   TABLET  (≤ 1024px)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 20px;
  }

  .navbar__nav > li > a {
    font-size: 0.8rem;
    padding: 0 10px;
  }

  .navbar__cta {
    font-size: 0.78rem;
    padding: 10px 14px;
  }

  .footer__main {
    grid-template-columns: 220px minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    padding: 40px 32px 36px;
    gap: 16px;
  }

  .footer__brand-name {
    font-size: 1.6rem;
  }

  .footer__logo-placeholder {
    width: 140px;
    height: 140px;
  }

  .footer__bottom-info {
    grid-template-columns: 220px minmax(0, 1fr) minmax(0, 1fr);
    padding: 28px 32px 40px;
    gap: 16px;
  }

  .stats-bar {
    padding: 36px 32px;
  }
  .stats-bar__number {
    font-size: 2.2rem;
  }
  .accreditation__title {
    font-size: 2rem;
  }

  .mengapa {
    padding: 56px 40px;
    gap: 48px;
  }
  .mengapa__row {
    gap: 36px;
  }
  .mengapa__subtitle {
    font-size: 1.3rem;
  }

  .hero-placeholder__title {
    font-size: 2.6rem;
  }
  .hero-placeholder__desc {
    font-size: 1.1rem;
    padding: 0 48px;
    margin-top: 16px;
  }
}

/* ═══════════════════════════════════════
   MOBILE  (≤ 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .navbar {
    padding: 0 20px;
    height: 64px;
    flex-wrap: nowrap;
    align-items: center;
  }

  .navbar__logo img {
    height: 40px;
  }

  /* Show hamburger */
  .navbar__hamburger {
    display: flex;
  }

  /* Full-width slide-down menu, hidden by default */
  .navbar__right {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: var(--navy-dark);
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;
    padding-bottom: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    margin-left: 0;
  }

  .navbar__right.is-open {
    display: flex;
  }

  /* Nav list stacked */
  .navbar__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .navbar__nav > li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .navbar__nav > li > a {
    height: auto;
    padding: 14px 20px;
    font-size: 0.95rem;
    justify-content: space-between;
  }

  /* On mobile, disable CSS hover dropdown; use JS .mobile-open instead */
  .navbar__nav > li:hover .dropdown {
    display: none;
  }

  .navbar__nav > li.mobile-open .dropdown {
    display: block;
  }

  .navbar__nav > li.mobile-open .chevron {
    transform: rotate(180deg);
  }

  /* Dropdown becomes inline, not absolute */
  .dropdown {
    position: static;
    box-shadow: none;
    border-top: 1px solid #dde1f0;
    padding: 4px 0;
  }

  .dropdown__item {
    padding: 12px 36px;
    font-size: 0.88rem;
  }

  /* CTA full width at bottom of menu */
  .navbar__cta {
    display: block;
    margin: 16px 20px 4px;
    text-align: center;
    padding: 14px;
    font-size: 0.9rem;
  }

  /* ── Hero ── */
  .hero-placeholder {
    min-height: 280px;
  }

  .hero-placeholder__inner {
    padding: 24px;
  }

  .hero-placeholder__logo {
    width: 140px;
    height: 140px;
  }

  .hero-placeholder__title {
    font-size: 1.6rem;
  }

  .hero-placeholder__desc {
    font-size: 0.95rem;
    padding: 0 8px;
    margin-top: 12px;
    line-height: 1.55;
  }

  /* ── Footer ── */
  .footer__main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 36px 24px 28px;
    gap: 28px;
  }

  /* Brand spans full width on mobile */
  .footer__brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__brand-name {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .footer__logo-placeholder {
    width: 120px;
    height: 120px;
  }

  .footer__col-title {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }

  .footer__links {
    gap: 12px;
  }

  .footer__links a {
    font-size: 0.9rem;
  }

  /* Contact & address stack vertically */
  .footer__bottom-info {
    grid-template-columns: minmax(0, 1fr);
    padding: 28px 24px 36px;
    gap: 24px;
  }

  /* Hide the empty spacer on mobile */
  .footer__spacer {
    display: none;
  }

  .footer__contact-group p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .footer__address-title {
    font-size: 0.95rem;
  }

  .footer__address-text {
    font-size: 0.9rem;
  }

  .footer__copyright {
    font-size: 0.78rem;
    padding: 18px 16px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 32px 24px;
    gap: 28px;
  }
  .stats-bar__item {
    padding-right: 0;
  }
  .stats-bar__number {
    font-size: 2rem;
  }
  .accreditation {
    padding: 40px 24px;
  }
  .accreditation__title {
    font-size: 1.6rem;
  }
  .accreditation__sub {
    font-size: 0.88rem;
  }

  .mengapa {
    padding: 40px 24px;
    gap: 40px;
  }
  .mengapa__heading {
    font-size: 1.6rem;
  }
  .mengapa__row,
  .mengapa__row--reverse {
    grid-template-columns: minmax(0, 1fr);
    direction: ltr;
    gap: 24px;
  }
  .mengapa__row--reverse .mengapa__text {
    order: 2;
  }
  .mengapa__row--reverse .mengapa__image {
    order: 1;
  }
  .mengapa__subtitle {
    font-size: 1.2rem;
  }
}

/* ═══════════════════════════════════════
   SMALL MOBILE  (≤ 480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .footer__main {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__brand-name {
    font-size: 1.4rem;
  }

  .hero-placeholder__title {
    font-size: 1.35rem;
  }

  .hero-placeholder__desc {
    font-size: 0.88rem;
    padding: 0;
  }
}

/* ═══════════════════════════════════════
   INNER PAGES
═══════════════════════════════════════ */
.page-main {
  min-height: 60vh;
  background: #ffffff;
}

.page-hero {
  background: linear-gradient(to bottom, transparent, #1D245E 100%),
              url("images/background_homepage.webp") center/cover no-repeat;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 48px;
}

.page-hero__title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--white);
}

.page-content {
  padding: 56px 60px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #333;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 180px;
    padding: 0 24px 32px;
  }
  .page-hero__title {
    font-size: 1.6rem;
  }
  .page-content {
    padding: 36px 24px;
  }
}