/* ===============================
   SKALER MAKE ORDER FORM
   Scoped & Collision-Safe
================================ */

#orderForm {
  max-width: 720px;
  margin: 40px auto;
  padding: 28px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  font-family: "Inter", system-ui, sans-serif;
}

/* Headings */
#orderForm h3 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0c6b67;
  text-align: center;
}

/* Labels */
#orderForm label {
  display: block;
  margin-top: 16px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2f3e3e;
}

/* Inputs / Textareas / Selects */
#orderForm input,
#orderForm textarea,
#orderForm select {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1.6px solid #d7e3e3;
  background: #f9fefe;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#orderForm textarea {
  resize: vertical;
  min-height: 90px;
}

#orderForm input:focus,
#orderForm textarea:focus,
#orderForm select:focus {
  border-color: #0c6b67;
  box-shadow: 0 0 0 3px rgba(12, 107, 103, 0.15);
}

/* Upload link */
#uploadLink {
  display: inline-block;
  margin-top: 6px;
  padding: 10px 14px;
  background: rgba(12, 107, 103, 0.08);
  color: #0c6b67;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

#uploadLink:hover {
  background: rgba(12, 107, 103, 0.15);
}

/* Cost box */
#costBox {
  margin-top: 16px;
  padding: 14px;
  border-radius: 10px;
  background: #f2f9f9;
  font-weight: 700;
  font-size: 1rem;
  color: #0c6b67;
  text-align: center;
}

/* QR */
#qr {
  display: block;
  margin: 14px auto 10px;
}

/* Submit button */
#submitBtn {
  margin-top: 28px;
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: #0c6b67;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

#submitBtn:hover {
  background: #095c58;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(12, 107, 103, 0.35);
}

#submitBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Loading text */
#loading {
  margin-top: 14px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0c6b67;
}

/* Hidden utility */
.hidden {
  display: none !important;
}

/* Section spacing */
#assignmentFields,
#pptFields,
#printFields,
#paymentBox {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed #dbeaea;
}

/* Mobile */
@media (max-width: 600px) {
  #orderForm {
    padding: 20px;
    margin: 20px;
  }

  #orderForm h3 {
    font-size: 1.4rem;
  }
}


.sk-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 15px;
}

.sk-card {
  background: #ffff;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  cursor: pointer;
  color: #000;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sk-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 255, 200, 0.25);
  border-color: rgba(0, 255, 200, 0.4);
}

.sk-card.active {
  outline: 2px solid #00ffd5;
  box-shadow: 0 0 25px rgba(0, 255, 213, 0.5);
}

.sk-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
}

.sk-card h3 {
  margin: 10px 0 6px;
  font-size: 1.2rem;
}

.sk-card p {
  font-size: 0.9rem;
  opacity: 0.85;
}
