/* RESET & ROOT */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #346739;
  --navy2: #79AE6F;
  --gold: #9FCB98;
  --gold2: #79AE6F;
  --cream: #f4faf4;
  --gray: #6b7280;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: #2d3a2e;
}

/* ── NAV ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background: rgba(52, 103, 57, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(159, 203, 152, 0.25);
  transition: .3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 38px;
  width: 38px;
  object-fit: contain;
}

.nav-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo span em {
  color: var(--gold);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: .2s;
}

.nav-links a:hover {
  color: #ffffff;
}

.btn-login {
  background: #ffffff;
  color: #346739 !important;
  padding: .45rem 1.2rem;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: .2s !important;
  border: 2px solid transparent;
}

.btn-login:hover {
  background: #f0faf0;
  transform: translateY(-1px);
}

/* ── HERO ─────────────────────────────────────────── */
#home {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .5);
  color: var(--white);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: .05em;
}

.hero-badge::before {
  content: '\2726';
}

#home h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

#home h1 span {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .25);
}

#home p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ffffff;
  color: #346739;
  padding: .8rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  transition: .2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
  background: #f0faf0;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, .7);
  color: var(--white);
  padding: .8rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: .2s;
}

.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, .15);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .6);
  font-size: .75rem;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ── SECTION STYLES ───────────────────────────────── */
section {
  padding: 90px 5%;
}

.section-tag {
  display: inline-block;
  background: rgba(52, 103, 57, .1);
  color: #2e6b33;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(52, 103, 57, .2);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #1e3d20;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title span {
  color: #346739;
}

.section-desc {
  font-size: 1rem;
  color: #4b5e4d;
  line-height: 1.8;
  max-width: 600px;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #346739, #79AE6F);
  border-radius: 2px;
  margin: 1rem 0;
}

/* ── PERKANTAS ────────────────────────────────────── */
#perkantas {
  background: var(--white);
}

.perkantas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.perkantas-img-box {
  position: relative;
}

.perkantas-card-big {
  background: linear-gradient(135deg, #1e4022, #346739);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.perkantas-card-big::after {
  content: '\271D';
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 8rem;
  opacity: .08;
  color: white;
}

.perkantas-card-big h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: .6rem;
  color: #ffffff;
}

.perkantas-card-big p {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .85);
}

.perkantas-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-item {
  background: rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .1);
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .75);
}

.perkantas-text .section-desc {
  max-width: 100%;
}

.perkantas-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  width: 40px;
  height: 40px;
  background: #346739;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(52, 103, 57, .3);
}

.value-item h4 {
  font-weight: 700;
  color: #1e3d20;
  margin-bottom: .2rem;
}

.value-item p {
  font-size: .875rem;
  color: #4b5e4d;
}

/* ── KTB ──────────────────────────────────────────── */
#ktb {
  background: linear-gradient(180deg, var(--cream) 0%, #e8f5e8 100%);
}

.ktb-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ktb-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ktb-header .section-desc {
  margin: 0 auto;
}

.ktb-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ktb-step {
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
  box-shadow: 0 2px 16px rgba(52, 103, 57, .08);
  border-top: 3px solid #346739;
  transition: .3s;
}

.ktb-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(52, 103, 57, .15);
}

.step-num {
  width: 36px;
  height: 36px;
  background: #346739;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 1rem;
}

.ktb-step h4 {
  font-weight: 700;
  color: #1e3d20;
  margin-bottom: .5rem;
}

.ktb-step p {
  font-size: .875rem;
  color: #4b5e4d;
  line-height: 1.7;
}

.ktb-quote {
  background: linear-gradient(135deg, #1e4022, #346739);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  color: white;
  box-shadow: 0 4px 24px rgba(52, 103, 57, .3);
}

.ktb-quote blockquote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255, 255, 255, .95);
  margin-bottom: 1rem;
}

.ktb-quote cite {
  color: #9FCB98;
  font-size: .85rem;
  font-weight: 600;
}

/* ── PROFILES ─────────────────────────────────────── */
#profil {
  background: var(--white);
}

.profil-header {
  text-align: center;
  margin-bottom: 4rem;
}

.profil-header .section-desc {
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.profile-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
  transition: .3s;
  position: relative;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
}

.card-header {
  padding: 2rem 2rem 1.5rem;
  position: relative;
}

.card-pkk .card-header {
  background: linear-gradient(135deg, #1e4022, #346739);
}

.card-cpkk .card-header {
  background: linear-gradient(135deg, #346739, #79AE6F);
}

.card-akk .card-header {
  background: linear-gradient(135deg, #79AE6F, #9FCB98);
}

.card-role-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .2);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.card-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
}

.card-header p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  margin-top: .3rem;
}

.card-body {
  padding: 1.5rem 2rem 2rem;
  background: white;
}

.card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.card-body li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .875rem;
  color: #374151;
}

.card-body li::before {
  content: '\2713';
  color: #346739;
  font-weight: 800;
  margin-top: .05rem;
  flex-shrink: 0;
}

/* ── VOICE OF STUDENT ─────────────────────────────── */
#vos {
  background: linear-gradient(180deg, #e8f5e8 0%, var(--cream) 100%);
}

.vos-header {
  text-align: center;
  margin-bottom: 3rem;
}

.vos-header .section-desc {
  margin: 0 auto;
}

.vos-track-wrap {
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: #79AE6F #e8f5e8;
}

.vos-track-wrap::-webkit-scrollbar {
  height: 6px;
}

.vos-track-wrap::-webkit-scrollbar-track {
  background: #e8f5e8;
  border-radius: 3px;
}

.vos-track-wrap::-webkit-scrollbar-thumb {
  background: #79AE6F;
  border-radius: 3px;
}

.vos-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.vos-card {
  width: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(52, 103, 57, .1);
  transition: .3s;
  flex-shrink: 0;
  border: 1px solid rgba(52, 103, 57, .08);
}

.vos-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(52, 103, 57, .18);
}

.vos-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.vos-body {
  padding: 1.1rem 1.2rem 1.4rem;
}

.vos-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(52, 103, 57, .08);
  color: #346739;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 50px;
  margin-bottom: .7rem;
  border: 1px solid rgba(52, 103, 57, .15);
}

.vos-badge svg {
  width: 12px;
  height: 12px;
}

.vos-name {
  font-size: .95rem;
  font-weight: 700;
  color: #1e3d20;
  margin-bottom: .4rem;
  line-height: 1.3;
}

.vos-excerpt {
  font-size: .8rem;
  color: #4b5e4d;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: .9rem;
}

.vos-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: #346739;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
}

.vos-link:hover {
  color: #79AE6F;
  gap: .55rem;
}

.vos-link svg {
  width: 14px;
  height: 14px;
}

.vos-ig-icon {
  width: 18px;
  height: 18px;
  margin-left: .2rem;
  vertical-align: middle;
}

/* ── KONTAK ───────────────────────────────────────── */
#kontak {
  background: linear-gradient(135deg, #1e4022, #346739);
  padding: 90px 5%;
}

.kontak-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.kontak-inner .section-title {
  color: white;
}

.kontak-inner .section-desc {
  color: rgba(255, 255, 255, .7);
  margin: 0 auto 2.5rem;
}

.kontak-form {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  text-align: left;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  padding: .75rem 1rem;
  color: white;
  font-family: inherit;
  font-size: .9rem;
  outline: none;
  transition: .2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, .35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #9FCB98;
  background: rgba(255, 255, 255, .15);
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  background: #ffffff;
  color: #346739;
  padding: .85rem;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  margin-top: .5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .15);
}

.btn-submit:hover {
  background: #f0faf0;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: #0e1f10;
  padding: 2rem 5%;
  text-align: center;
  color: rgba(255, 255, 255, .4);
  font-size: .8rem;
}

footer span {
  color: #9FCB98;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
  .perkantas-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links a:not(.btn-login) {
    display: none;
  }
}