* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0ea144;
  --primary-dark: #0a6b2f;
  --secondary-color: #f4c430;
  --dark-color: #0d3f1f;
  --light-color: #e8f5e9;
  --text-color: #2c3e50;
  --border-color: #c8e6c9;
  --success-color: #f4c430;
  --danger-color: #d32f2f;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: #ffffff;
  padding-top: 0;
  margin: 0;
}

/* ============ NAVBAR ============ */
header {
  background: linear-gradient(
    135deg,
    rgba(14, 161, 68, 0.95) 0%,
    rgba(10, 107, 47, 0.95) 100%
  );
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.hidden {
  transform: translateY(-100%);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand i {
  font-size: 1.8rem;
}

.navbar-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  max-width: 60px;
  display: block;
  border-radius: 8px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  transition: all 0.3s ease;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ============ HERO SECTION ============ */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url("/assets/images/hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: white;
  padding: 12rem 2rem;
  text-align: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: slideInDown 0.8s ease;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: slideInUp 0.8s ease 0.2s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease 0.4s forwards;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ BUTTONS ============ */
.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #f4c430 0%, #d97706 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(244, 196, 48, 0.4);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(244, 196, 48, 0.6);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
}

.btn-secondary:hover {
  background: transparent;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary-color);
}

/* ============ CONTAINER ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============ SECTIONS ============ */
section {
  padding: 5rem 2rem;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--dark-color);
}

.section-subtitle {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* ============ TENTANG KAMI ============ */
#tentang {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.tentang-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.tentang-text h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.tentang-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.misi-list {
  list-style: none;
  padding-left: 0;
}

.misi-list li {
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.8;
}

.misi-list li::before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.tentang-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-box {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h4 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-box p {
  color: var(--text-color);
  margin: 0;
}

.tentang-image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tentang-image-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  text-align: center;
  font-weight: 600;
  margin: 0;
}

.tentang-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 20px;
  height: 400px;
  overflow: hidden;
}

.tentang-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ============ AKADEMIK ============ */
#akademik {
  background: white;
}

.akademik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.akademik-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: none;
  border-bottom: 5px solid var(--primary-color);
}

.akademik-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.akademik-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  padding: 2rem;
  text-align: center;
  font-size: 3rem;
}

.akademik-content {
  padding: 2rem;
}

.akademik-content h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.akademik-content p {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.akademik-features {
  list-style: none;
  margin-top: 1rem;
}

.akademik-features li {
  color: var(--text-color);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.akademik-features li::before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============ PPDB ============ */
#ppdb {
  background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
}

.ppdb-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ppdb-info h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.ppdb-steps {
  list-style: none;
  margin-bottom: 2rem;
}

.ppdb-steps li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.ppdb-step-number {
  background: var(--secondary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.ppdb-step-content h4 {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.ppdb-step-content p {
  color: var(--text-color);
  margin: 0;
}

.ppdb-requirements {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.ppdb-requirements h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.ppdb-requirements ul {
  list-style: none;
}

.ppdb-requirements li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ppdb-requirements li:last-child {
  border-bottom: none;
}

.ppdb-requirements li::before {
  content: "→";
  color: var(--secondary-color);
  font-weight: bold;
}

/* ============ KONTAK ============ */
#kontak {
  background: #0ea144;
  color: white;
}

#kontak h2 {
  color: white;
}

#kontak .section-subtitle {
  color: white;
}

.kontak-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.kontak-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.kontak-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.kontak-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.kontak-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.kontak-item h3 {
  margin-bottom: 0.5rem;
}

.kontak-item p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.kontak-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 500px;
  margin: 0 auto;
}

.kontak-form h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============ GALERI ============ */
#galeri {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.galeri-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}

.galeri-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.galeri-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galeri-item:hover .galeri-overlay {
  opacity: 1;
}

.galeri-overlay span {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

@media (max-width: 768px) {
  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .galeri-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ============ FOOTER ============ */
footer {
  background: #0a6b2f;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 2rem 1rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary-color);
  color: white;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero {
    background-position: center top;
    background-attachment: scroll;
    padding: 8rem 1rem;
    min-height: 70vh;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 1.5rem;
    min-height: 550px;
    margin-top: 60px;
    background-position: center top;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: linear-gradient(
      180deg,
      var(--primary-color) 0%,
      var(--primary-dark) 100%
    );
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    gap: 0;
    padding: 1.5rem 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
  }

  .nav-menu li:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-link {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    transition: all 0.2s ease;
  }

  .nav-link:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
  }

  nav {
    padding: 0.75rem 1rem;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .navbar-logo {
    height: 50px;
  }

  .hero {
    padding: 4rem 1.5rem;
    min-height: 500px;
    margin-top: 65px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  section {
    padding: 4rem 1.5rem;
  }

  section h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .tentang-content,
  .ppdb-container {
    grid-template-columns: 1fr;
  }

  .tentang-stats {
    grid-template-columns: 1fr;
  }

  .tentang-image-title {
    font-size: 1.3rem;
  }

  .tentang-image {
    height: 300px;
  }

  .akademik-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .akademik-card {
    margin-bottom: 1rem;
  }

  .ppdb-steps li {
    gap: 1.5rem;
  }

  .ppdb-step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .kontak-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .kontak-form {
    max-width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }
}

@media (max-width: 600px) {
  body {
    margin: 0;
  }

  nav {
    padding: 0.5rem 1rem;
  }

  .navbar-brand {
    font-size: 1rem;
    gap: 0.5rem;
  }

  .navbar-logo {
    height: 45px;
  }

  .hero {
    padding: 3rem 1rem;
    min-height: 400px;
    margin-top: 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    gap: 0.75rem;
  }

  section {
    padding: 3rem 1rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .tentang-text h3 {
    font-size: 1.5rem;
  }

  .tentang-text p {
    font-size: 0.95rem;
  }

  .tentang-image-title {
    font-size: 1.2rem;
  }

  .stat-box {
    padding: 1.2rem;
  }

  .stat-box h4 {
    font-size: 2rem;
  }

  .akademik-card {
    border-radius: 10px;
  }

  .akademik-icon {
    padding: 1.5rem;
    font-size: 2.5rem;
  }

  .akademik-content {
    padding: 1.5rem;
  }

  .akademik-content h3 {
    font-size: 1.2rem;
  }

  .akademik-content p {
    font-size: 0.95rem;
  }

  .akademik-features li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }

  .ppdb-info h3 {
    font-size: 1.5rem;
  }

  .ppdb-steps li {
    gap: 1rem;
  }

  .ppdb-step-number {
    width: 35px;
    height: 35px;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .ppdb-step-content h4 {
    font-size: 1rem;
  }

  .ppdb-step-content p {
    font-size: 0.9rem;
  }

  .ppdb-requirements {
    padding: 1.5rem;
  }

  .ppdb-requirements h4 {
    font-size: 1rem;
  }

  .ppdb-requirements li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }

  .kontak-item {
    padding: 1.5rem;
  }

  .kontak-icon {
    font-size: 2rem;
  }

  .kontak-item h3 {
    font-size: 1.1rem;
  }

  .kontak-item p {
    font-size: 0.9rem;
  }

  .kontak-form {
    padding: 1.5rem;
  }

  .kontak-form h3 {
    font-size: 1.3rem;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 1rem;
    padding: 0.7rem;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .footer-section ul li {
    font-size: 0.9rem;
  }

  .social-links {
    margin-top: 1.2rem;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  body {
    margin: 0;
  }

  nav {
    padding: 0.5rem 0.75rem;
  }

  .navbar-brand {
    font-size: 0.95rem;
    gap: 0.3rem;
  }

  .navbar-logo {
    height: 40px;
  }

  .hero {
    padding: 2.5rem 0.75rem;
    min-height: 350px;
    margin-top: 55px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero-buttons {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }

  section {
    padding: 2.5rem 0.75rem;
  }

  section h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .tentang-text h3 {
    font-size: 1.3rem;
  }

  .tentang-text p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .tentang-image-title {
    font-size: 1rem;
  }

  .stat-box {
    padding: 1rem;
  }

  .stat-box h4 {
    font-size: 1.8rem;
  }

  .stat-box p {
    font-size: 0.85rem;
  }

  .akademik-card {
    margin-bottom: 0.75rem;
  }

  .akademik-icon {
    padding: 1.25rem;
    font-size: 2rem;
  }

  .akademik-content {
    padding: 1.25rem;
  }

  .akademik-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .akademik-content p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .akademik-features li {
    font-size: 0.85rem;
    padding: 0.35rem 0;
  }

  .ppdb-info h3 {
    font-size: 1.4rem;
  }

  .ppdb-steps {
    margin-bottom: 1.5rem;
  }

  .ppdb-steps li {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .ppdb-step-number {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .ppdb-step-content h4 {
    font-size: 0.95rem;
  }

  .ppdb-step-content p {
    font-size: 0.85rem;
  }

  .ppdb-requirements {
    padding: 1.25rem;
  }

  .ppdb-requirements h4 {
    font-size: 0.95rem;
  }

  .ppdb-requirements li {
    font-size: 0.85rem;
    padding: 0.4rem 0;
  }

  .kontak-item {
    padding: 1.25rem;
  }

  .kontak-icon {
    font-size: 1.8rem;
  }

  .kontak-item h3 {
    font-size: 1rem;
  }

  .kontak-item p {
    font-size: 0.85rem;
  }

  .kontak-form {
    padding: 1.25rem;
  }

  .kontak-form h3 {
    font-size: 1.2rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
    padding: 0.6rem;
  }

  .form-group textarea {
    min-height: 90px;
  }

  .footer-content {
    gap: 1.25rem;
  }

  .footer-section h4 {
    font-size: 1rem;
  }

  .footer-section ul li {
    font-size: 0.85rem;
  }

  .social-links {
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}
