body {
  font-family: var(--body-font);
  font-size: clamp(var(--normal-font-size), 1rem + 0.3vw, 1.1rem);
  background-color: var(--body-color);
  overflow-x: hidden;
  line-height: 1.6;
  padding: 85px 0 0 0;
}
/* Section */
#ppdb {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(to bottom right, #1e3a8a, #1e40af, #1e3a8a);
  color: #fff;
  overflow: hidden;
}

/* Background blur circles */
.ppdb-bg::before,
.ppdb-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.ppdb-bg::before {
  top: 0; 
  left: 0;
  width: 300px; 
  height: 300px;
  background: #fff;
  opacity: 0.1;
}

.ppdb-bg::after {
  bottom: 0; 
  right: 0;
  width: 300px; 
  height: 300px;
  background: #60a5fa;
  opacity: 0.2;
}

/* Container */
.ppdb-container { 
  max-width: 1200px; 
  margin: 0 auto; 
  position: relative; 
  z-index: 1;
  padding: 0 20px;
}

/* Header */
.ppdb-header { 
  text-align: center; 
  margin-bottom: 40px; 
}

.ppdb-header h2 { 
  font-size: clamp(28px, 5vw, 40px); 
  font-weight: 700; 
  margin-bottom: 10px;
  line-height: 1.2;
}

.ppdb-divider { 
  width: 96px; 
  height: 6px; 
  background: #fff; 
  margin: 0 auto 20px; 
  border-radius: 999px; 
}

.ppdb-header p { 
  color: #bfdbfe; 
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Grid */
.ppdb-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); 
  gap: 30px; 
  margin-bottom: 40px; 
}

.ppdb-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ppdb-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ppdb-box h3 { 
  font-size: clamp(20px, 3vw, 24px); 
  font-weight: 700; 
  margin-bottom: 20px;
  line-height: 1.3;
}

.ppdb-box ul { 
  list-style: none; 
}

.ppdb-box li { 
  margin-bottom: 10px; 
  color: #e0f2fe;
  font-size: clamp(14px, 2vw, 15px);
  line-height: 1.6;
}

/* Steps */
.ppdb-step { 
  display: flex; 
  align-items: flex-start; 
  margin-bottom: 20px; 
}

.step-number {
  min-width: 40px;
  width: 40px; 
  height: 40px;
  background: #2563eb;
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-weight: 700;
  margin-right: 15px;
  flex-shrink: 0;
}

.ppdb-step h4 { 
  font-weight: 700; 
  margin-bottom: 5px;
  font-size: clamp(15px, 2.5vw, 16px);
  line-height: 1.4;
}

.ppdb-step p { 
  font-size: clamp(13px, 2vw, 14px); 
  color: #bfdbfe;
  line-height: 1.6;
}

/* Form */
.ppdb-form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  color: #1e3a8a;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ppdb-form h3 { 
  font-size: clamp(22px, 4vw, 28px); 
  font-weight: 700; 
  text-align: center; 
  margin-bottom: 30px;
  line-height: 1.3;
}

.form-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); 
  gap: 20px; 
  margin-bottom: 20px; 
}

.form-group {
  width: 100%;
}

.daftarSekarang {
  text-align: center;
}

.daftarSekarang a {
  display: inline-block;
  padding: 15px 30px;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 600;
  color: #fff;
  background: #2563eb;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 4px 10px 12px rgba(0, 0, 0, 0.2);
}

.daftarSekarang a:hover {
  background: #f9f9f9;
  transform: translateY(-2px);
  color: #000;
}

.ppdb-form label { 
  font-size: clamp(13px, 2vw, 14px); 
  font-weight: 600; 
  display: block; 
  margin-bottom: 6px;
  color: #1e3a8a;
}

.ppdb-form input,
.ppdb-form select,
.ppdb-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: clamp(13px, 2vw, 14px);
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.ppdb-form input:focus,
.ppdb-form select:focus,
.ppdb-form textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.ppdb-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Tombol Submit */
.ppdb-form button {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 600;
  color: #fff;
  background: #2563eb;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

.ppdb-form button:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

.ppdb-form button:active {
  transform: translateY(0);
}

/* ===== Responsive Breakpoints ===== */

/* Tablet */
@media (max-width: 1024px) {
  #ppdb {
    padding: 60px 15px;
  }
  
  .ppdb-header {
    margin-bottom: 35px;
  }
  
  .ppdb-grid {
    gap: 25px;
    margin-bottom: 35px;
  }
  
  .ppdb-box {
    padding: 25px;
  }
  
  .ppdb-form {
    padding: 35px;
  }
}

/* Tablet Small */
@media (max-width: 768px) {
  body {
    padding: 20px 0;
  }
  
  #ppdb {
    padding: 50px 15px;
  }
  
  .ppdb-container {
    padding: 0 10px;
  }
  
  .ppdb-header {
    margin-bottom: 30px;
  }
  
  .ppdb-divider {
    width: 80px;
    height: 5px;
  }
  
  .ppdb-bg::before,
  .ppdb-bg::after {
    width: 200px;
    height: 200px;
    filter: blur(80px);
  }
  
  .ppdb-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .ppdb-box {
    padding: 22px;
    border-radius: 20px;
  }
  
  .ppdb-box h3 {
    margin-bottom: 16px;
  }
  
  .ppdb-box li {
    margin-bottom: 8px;
  }
  
  .ppdb-step {
    margin-bottom: 16px;
  }
  
  .step-number {
    width: 36px;
    height: 36px;
    margin-right: 12px;
    font-size: 14px;
  }
  
  .ppdb-form {
    padding: 30px;
    border-radius: 20px;
  }
  
  .ppdb-form h3 {
    margin-bottom: 25px;
  }
  
  .form-grid {
    gap: 16px;
    margin-bottom: 16px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  body {
    padding: 45px 0 0 0;
  }
  
  #ppdb {
    padding: 40px 10px;
  }
  
  .ppdb-container {
    padding: 0 5px;
  }
  
  .ppdb-header {
    margin-bottom: 25px;
  }
  
  .ppdb-divider {
    width: 70px;
    height: 4px;
  }
  
  .ppdb-bg::before,
  .ppdb-bg::after {
    width: 150px;
    height: 150px;
    filter: blur(60px);
  }
  
  .ppdb-grid {
    gap: 16px;
    margin-bottom: 25px;
  }
  
  .ppdb-box {
    padding: 20px;
    border-radius: 16px;
  }
  
  .ppdb-box:hover {
    transform: translateY(-2px);
  }
  
  .ppdb-box h3 {
    margin-bottom: 14px;
  }
  
  .ppdb-step {
    margin-bottom: 14px;
  }
  
  .step-number {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    font-size: 13px;
  }
  
  .ppdb-step h4 {
    margin-bottom: 4px;
  }
  
  .ppdb-form {
    padding: 24px;
    border-radius: 16px;
  }
  
  .ppdb-form h3 {
    margin-bottom: 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  
  .ppdb-form input,
  .ppdb-form select,
  .ppdb-form textarea {
    padding: 10px;
  }
  
  .ppdb-form button {
    padding: 14px;
    margin-top: 16px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  #ppdb {
    padding: 35px 10px;
  }
  
  .ppdb-box {
    padding: 16px;
  }
  
  .ppdb-form {
    padding: 20px;
  }
  
  .ppdb-form input,
  .ppdb-form select,
  .ppdb-form textarea {
    padding: 9px;
  }
  
  .ppdb-form button {
    padding: 12px;
    font-size: 15px;
  }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
  #ppdb {
    padding: 40px 15px;
  }
  
  .ppdb-header {
    margin-bottom: 25px;
  }
  
  .ppdb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
  }
  
  .ppdb-box {
    padding: 18px;
  }
  
  .ppdb-form {
    padding: 25px;
  }
  
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
  .ppdb-box:active {
    transform: translateY(-2px);
  }
  
  .ppdb-form button:active {
    background: #1e40af;
  }
}

/* High Resolution Screens */
@media (min-width: 1400px) {
  .ppdb-container {
    max-width: 1400px;
  }
  
  .ppdb-grid {
    gap: 35px;
  }
  
  .ppdb-box {
    padding: 35px;
  }
  
  .ppdb-form {
    max-width: 900px;
    padding: 50px;
  }
} 